From af101f7f3660b40348eb59a45f898d580b368f53 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 9 Jul 2026 14:48:31 -0400 Subject: [PATCH 1/2] chore: game server mono repo --- generated/schema.graphql | 399 +- generated/schema.ts | 443 +- generated/types.ts | 46818 ++++++++-------- hasura/enums/plugin-runtimes.sql | 4 + .../game-server-node/plugin-supported.sql | 6 +- .../plugin-versions/active-plugin-runtime.sql | 15 + .../game-version-supports-plugin.sql | 21 +- .../tables/public_e_plugin_runtimes.yaml | 19 + .../tables/public_game_server_nodes.yaml | 2 + .../tables/public_plugin_versions.yaml | 1 + .../default/tables/public_servers.yaml | 4 + .../databases/default/tables/tables.yaml | 1 + .../1870000000000_plugin_runtimes/down.sql | 41 + .../1870000000000_plugin_runtimes/up.sql | 66 + src/configs/game-servers.ts | 9 +- src/configs/types/GameServersConfig.ts | 13 +- .../dedicated-servers.module.ts | 2 + .../dedicated-servers.service.ts | 34 +- .../game-server-node.controller.ts | 24 +- .../game-server-node.module.ts | 24 +- .../game-server-node.service.ts | 411 +- .../jobs/CheckServerPluginVersions.ts | 25 + .../jobs/GetPluginVersions.ts | 91 +- src/game-server-node/jobs/ValidateGamedata.ts | 77 +- src/k8s/logging/logging.service.ts | 14 + .../match-assistant.service.spec.ts | 6 + .../match-assistant.service.ts | 15 +- src/matches/matches.module.ts | 2 + src/plugin-runtime/plugin-runtime.module.ts | 10 + src/plugin-runtime/plugin-runtime.service.ts | 67 + src/system/enums/SystemSettingName.ts | 2 + src/system/system.gateway.ts.ts | 6 +- src/system/system.service.ts | 20 + 33 files changed, 25240 insertions(+), 23452 deletions(-) create mode 100644 hasura/enums/plugin-runtimes.sql create mode 100644 hasura/functions/plugin-versions/active-plugin-runtime.sql create mode 100644 hasura/metadata/databases/default/tables/public_e_plugin_runtimes.yaml create mode 100644 hasura/migrations/default/1870000000000_plugin_runtimes/down.sql create mode 100644 hasura/migrations/default/1870000000000_plugin_runtimes/up.sql create mode 100644 src/plugin-runtime/plugin-runtime.module.ts create mode 100644 src/plugin-runtime/plugin-runtime.service.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index 2b3f1707f..2c2b79e79 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -9252,6 +9252,177 @@ input e_player_roles_updates { where: e_player_roles_bool_exp! } +""" +columns and relationships of "e_plugin_runtimes" +""" +type e_plugin_runtimes { + description: String! + value: String! +} + +""" +aggregated selection of "e_plugin_runtimes" +""" +type e_plugin_runtimes_aggregate { + aggregate: e_plugin_runtimes_aggregate_fields + nodes: [e_plugin_runtimes!]! +} + +""" +aggregate fields of "e_plugin_runtimes" +""" +type e_plugin_runtimes_aggregate_fields { + count(columns: [e_plugin_runtimes_select_column!], distinct: Boolean): Int! + max: e_plugin_runtimes_max_fields + min: e_plugin_runtimes_min_fields +} + +""" +Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. +""" +input e_plugin_runtimes_bool_exp { + _and: [e_plugin_runtimes_bool_exp!] + _not: e_plugin_runtimes_bool_exp + _or: [e_plugin_runtimes_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_plugin_runtimes_pkey +} + +enum e_plugin_runtimes_enum { + """Plugin loads under Metamod and CounterStrikeSharp""" + counterstrikesharp + + """Plugin loads under the SwiftlyS2 framework""" + swiftlys2 +} + +""" +Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. +""" +input e_plugin_runtimes_enum_comparison_exp { + _eq: e_plugin_runtimes_enum + _in: [e_plugin_runtimes_enum!] + _is_null: Boolean + _neq: e_plugin_runtimes_enum + _nin: [e_plugin_runtimes_enum!] +} + +""" +input type for inserting data into table "e_plugin_runtimes" +""" +input e_plugin_runtimes_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_plugin_runtimes_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_plugin_runtimes_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_plugin_runtimes" +""" +type e_plugin_runtimes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_plugin_runtimes!]! +} + +""" +on_conflict condition type for table "e_plugin_runtimes" +""" +input e_plugin_runtimes_on_conflict { + constraint: e_plugin_runtimes_constraint! + update_columns: [e_plugin_runtimes_update_column!]! = [] + where: e_plugin_runtimes_bool_exp +} + +"""Ordering options when selecting data from "e_plugin_runtimes".""" +input e_plugin_runtimes_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_plugin_runtimes""" +input e_plugin_runtimes_pk_columns_input { + value: String! +} + +""" +select columns of table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_plugin_runtimes" +""" +input e_plugin_runtimes_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_plugin_runtimes" +""" +input e_plugin_runtimes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_plugin_runtimes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_plugin_runtimes_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_update_column { + """column name""" + description + + """column name""" + value +} + +input e_plugin_runtimes_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + + """filter the rows which have to be updated""" + where: e_plugin_runtimes_bool_exp! +} + """ columns and relationships of "e_ready_settings" """ @@ -12517,6 +12688,7 @@ type game_server_nodes { node_ip: inet offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String """An object relationship""" @@ -12755,6 +12927,7 @@ input game_server_nodes_bool_exp { node_ip: inet_comparison_exp offline_at: timestamptz_comparison_exp pin_build_id: Int_comparison_exp + pin_plugin_runtime: String_comparison_exp pin_plugin_version: String_comparison_exp pinned_version: game_versions_bool_exp plugin_supported: Boolean_comparison_exp @@ -12872,6 +13045,7 @@ input game_server_nodes_insert_input { node_ip: inet offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String pinned_version: game_versions_obj_rel_insert_input public_ip: inet @@ -12909,6 +13083,7 @@ type game_server_nodes_max_fields { label: String offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String region: String shader_bake_progress: numeric @@ -12941,6 +13116,7 @@ input game_server_nodes_max_order_by { label: order_by offline_at: order_by pin_build_id: order_by + pin_plugin_runtime: order_by pin_plugin_version: order_by region: order_by shader_bake_progress: order_by @@ -12970,6 +13146,7 @@ type game_server_nodes_min_fields { label: String offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String region: String shader_bake_progress: numeric @@ -13002,6 +13179,7 @@ input game_server_nodes_min_order_by { label: order_by offline_at: order_by pin_build_id: order_by + pin_plugin_runtime: order_by pin_plugin_version: order_by region: order_by shader_bake_progress: order_by @@ -13073,6 +13251,7 @@ input game_server_nodes_order_by { node_ip: order_by offline_at: order_by pin_build_id: order_by + pin_plugin_runtime: order_by pin_plugin_version: order_by pinned_version: game_versions_order_by plugin_supported: order_by @@ -13190,6 +13369,9 @@ enum game_server_nodes_select_column { """column name""" pin_build_id + """column name""" + pin_plugin_runtime + """column name""" pin_plugin_version @@ -13318,6 +13500,7 @@ input game_server_nodes_set_input { node_ip: inet offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String public_ip: inet region: String @@ -13501,6 +13684,7 @@ input game_server_nodes_stream_cursor_value_input { node_ip: inet offline_at: timestamptz pin_build_id: Int + pin_plugin_runtime: String pin_plugin_version: String public_ip: inet region: String @@ -13641,6 +13825,9 @@ enum game_server_nodes_update_column { """column name""" pin_build_id + """column name""" + pin_plugin_runtime + """column name""" pin_plugin_version @@ -14887,7 +15074,6 @@ input league_award_forfeit_args { columns and relationships of "league_divisions" """ type league_divisions { - active: Boolean! created_at: timestamptz! id: uuid! name: String! @@ -14967,7 +15153,6 @@ input league_divisions_bool_exp { _and: [league_divisions_bool_exp!] _not: league_divisions_bool_exp _or: [league_divisions_bool_exp!] - active: Boolean_comparison_exp created_at: timestamptz_comparison_exp id: uuid_comparison_exp name: String_comparison_exp @@ -15007,7 +15192,6 @@ input league_divisions_inc_input { input type for inserting data into table "league_divisions" """ input league_divisions_insert_input { - active: Boolean created_at: timestamptz id: uuid name: String @@ -15063,7 +15247,6 @@ input league_divisions_on_conflict { """Ordering options when selecting data from "league_divisions".""" input league_divisions_order_by { - active: order_by created_at: order_by id: order_by name: order_by @@ -15080,9 +15263,6 @@ input league_divisions_pk_columns_input { select columns of table "league_divisions" """ enum league_divisions_select_column { - """column name""" - active - """column name""" created_at @@ -15100,7 +15280,6 @@ enum league_divisions_select_column { input type for updating data in table "league_divisions" """ input league_divisions_set_input { - active: Boolean created_at: timestamptz id: uuid name: String @@ -15135,7 +15314,6 @@ input league_divisions_stream_cursor_input { """Initial value of the column from where the streaming should start""" input league_divisions_stream_cursor_value_input { - active: Boolean created_at: timestamptz id: uuid name: String @@ -15151,9 +15329,6 @@ type league_divisions_sum_fields { update columns of table "league_divisions" """ enum league_divisions_update_column { - """column name""" - active - """column name""" created_at @@ -30900,6 +31075,19 @@ type mutation_root { """ delete_e_player_roles_by_pk(value: String!): e_player_roles + """ + delete data from the table: "e_plugin_runtimes" + """ + delete_e_plugin_runtimes( + """filter the rows which have to be deleted""" + where: e_plugin_runtimes_bool_exp! + ): e_plugin_runtimes_mutation_response + + """ + delete single row from the table: "e_plugin_runtimes" + """ + delete_e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + """ delete data from the table: "e_ready_settings" """ @@ -31845,7 +32033,7 @@ type mutation_root { """ delete single row from the table: "plugin_versions" """ - delete_plugin_versions_by_pk(version: String!): plugin_versions + delete_plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions """ delete data from the table: "seasons" @@ -32942,6 +33130,28 @@ type mutation_root { on_conflict: e_player_roles_on_conflict ): e_player_roles + """ + insert data into the table: "e_plugin_runtimes" + """ + insert_e_plugin_runtimes( + """the rows to be inserted""" + objects: [e_plugin_runtimes_insert_input!]! + + """upsert condition""" + on_conflict: e_plugin_runtimes_on_conflict + ): e_plugin_runtimes_mutation_response + + """ + insert a single row into the table: "e_plugin_runtimes" + """ + insert_e_plugin_runtimes_one( + """the row to be inserted""" + object: e_plugin_runtimes_insert_input! + + """upsert condition""" + on_conflict: e_plugin_runtimes_on_conflict + ): e_plugin_runtimes + """ insert data into the table: "e_ready_settings" """ @@ -36492,6 +36702,34 @@ type mutation_root { updates: [e_player_roles_updates!]! ): [e_player_roles_mutation_response] + """ + update data of the table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes( + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + + """filter the rows which have to be updated""" + where: e_plugin_runtimes_bool_exp! + ): e_plugin_runtimes_mutation_response + + """ + update single row of the table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + pk_columns: e_plugin_runtimes_pk_columns_input! + ): e_plugin_runtimes + + """ + update multiples rows of table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes_many( + """updates to execute, in order""" + updates: [e_plugin_runtimes_updates!]! + ): [e_plugin_runtimes_mutation_response] + """ update data of the table: "e_ready_settings" """ @@ -61588,6 +61826,7 @@ columns and relationships of "plugin_versions" type plugin_versions { min_game_build_id: Int published_at: timestamptz! + runtime: e_plugin_runtimes_enum! version: String! } @@ -61630,6 +61869,7 @@ input plugin_versions_bool_exp { _or: [plugin_versions_bool_exp!] min_game_build_id: Int_comparison_exp published_at: timestamptz_comparison_exp + runtime: e_plugin_runtimes_enum_comparison_exp version: String_comparison_exp } @@ -61638,7 +61878,7 @@ unique or primary key constraints on table "plugin_versions" """ enum plugin_versions_constraint { """ - unique or primary key constraint on columns "version" + unique or primary key constraint on columns "version", "runtime" """ plugin_versions_pkey } @@ -61656,6 +61896,7 @@ input type for inserting data into table "plugin_versions" input plugin_versions_insert_input { min_game_build_id: Int published_at: timestamptz + runtime: e_plugin_runtimes_enum version: String } @@ -61697,11 +61938,13 @@ input plugin_versions_on_conflict { input plugin_versions_order_by { min_game_build_id: order_by published_at: order_by + runtime: order_by version: order_by } """primary key columns input for table: plugin_versions""" input plugin_versions_pk_columns_input { + runtime: e_plugin_runtimes_enum! version: String! } @@ -61715,6 +61958,9 @@ enum plugin_versions_select_column { """column name""" published_at + """column name""" + runtime + """column name""" version } @@ -61725,6 +61971,7 @@ input type for updating data in table "plugin_versions" input plugin_versions_set_input { min_game_build_id: Int published_at: timestamptz + runtime: e_plugin_runtimes_enum version: String } @@ -61758,6 +62005,7 @@ input plugin_versions_stream_cursor_input { input plugin_versions_stream_cursor_value_input { min_game_build_id: Int published_at: timestamptz + runtime: e_plugin_runtimes_enum version: String } @@ -61776,6 +62024,9 @@ enum plugin_versions_update_column { """column name""" published_at + """column name""" + runtime + """column name""" version } @@ -63212,6 +63463,51 @@ type query_root { """fetch data from the table: "e_player_roles" using primary key columns""" e_player_roles_by_pk(value: String!): e_player_roles + """ + fetch data from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + + """ + fetch aggregated fields from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes_aggregate( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): e_plugin_runtimes_aggregate! + + """ + fetch data from the table: "e_plugin_runtimes" using primary key columns + """ + e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + """ fetch data from the table: "e_ready_settings" """ @@ -66818,7 +67114,7 @@ type query_root { ): plugin_versions_aggregate! """fetch data from the table: "plugin_versions" using primary key columns""" - plugin_versions_by_pk(version: String!): plugin_versions + plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions """Read file content from game server""" readServerFile(file_path: String!, node_id: String!, server_id: String): FileContentResponse! @@ -70001,6 +70297,7 @@ type servers { ): matches_aggregate! max_players: Int offline_at: timestamptz + plugin_runtime: e_plugin_runtimes_enum plugin_version: String port: Int! rcon_password: bytea! @@ -70138,6 +70435,7 @@ input servers_bool_exp { matches_aggregate: matches_aggregate_bool_exp max_players: Int_comparison_exp offline_at: timestamptz_comparison_exp + plugin_runtime: e_plugin_runtimes_enum_comparison_exp plugin_version: String_comparison_exp port: Int_comparison_exp rcon_password: bytea_comparison_exp @@ -70196,6 +70494,7 @@ input servers_insert_input { matches: matches_arr_rel_insert_input max_players: Int offline_at: timestamptz + plugin_runtime: e_plugin_runtimes_enum plugin_version: String port: Int rcon_password: bytea @@ -70372,6 +70671,7 @@ input servers_order_by { matches_aggregate: matches_aggregate_order_by max_players: order_by offline_at: order_by + plugin_runtime: order_by plugin_version: order_by port: order_by rcon_password: order_by @@ -70436,6 +70736,9 @@ enum servers_select_column { """column name""" offline_at + """column name""" + plugin_runtime + """column name""" plugin_version @@ -70519,6 +70822,7 @@ input servers_set_input { label: String max_players: Int offline_at: timestamptz + plugin_runtime: e_plugin_runtimes_enum plugin_version: String port: Int rcon_password: bytea @@ -70606,6 +70910,7 @@ input servers_stream_cursor_value_input { label: String max_players: Int offline_at: timestamptz + plugin_runtime: e_plugin_runtimes_enum plugin_version: String port: Int rcon_password: bytea @@ -70680,6 +70985,9 @@ enum servers_update_column { """column name""" offline_at + """column name""" + plugin_runtime + """column name""" plugin_version @@ -73471,6 +73779,65 @@ type subscription_root { where: e_player_roles_bool_exp ): [e_player_roles!]! + """ + fetch data from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + + """ + fetch aggregated fields from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes_aggregate( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): e_plugin_runtimes_aggregate! + + """ + fetch data from the table: "e_plugin_runtimes" using primary key columns + """ + e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + + """ + fetch data from the table in a streaming manner: "e_plugin_runtimes" + """ + e_plugin_runtimes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_plugin_runtimes_stream_cursor_input]! + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + """ fetch data from the table: "e_ready_settings" """ @@ -78104,7 +78471,7 @@ type subscription_root { ): plugin_versions_aggregate! """fetch data from the table: "plugin_versions" using primary key columns""" - plugin_versions_by_pk(version: String!): plugin_versions + plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions """ fetch data from the table in a streaming manner: "plugin_versions" diff --git a/generated/schema.ts b/generated/schema.ts index 73bf909b1..118e445a3 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -3570,6 +3570,71 @@ export type e_player_roles_select_column = 'description' | 'value' export type e_player_roles_update_column = 'description' | 'value' +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimes { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_plugin_runtimes' +} + + +/** aggregated selection of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate { + aggregate: (e_plugin_runtimes_aggregate_fields | null) + nodes: e_plugin_runtimes[] + __typename: 'e_plugin_runtimes_aggregate' +} + + +/** aggregate fields of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate_fields { + count: Scalars['Int'] + max: (e_plugin_runtimes_max_fields | null) + min: (e_plugin_runtimes_min_fields | null) + __typename: 'e_plugin_runtimes_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_plugin_runtimes" */ +export type e_plugin_runtimes_constraint = 'e_plugin_runtimes_pkey' + +export type e_plugin_runtimes_enum = 'counterstrikesharp' | 'swiftlys2' + + +/** aggregate max on columns */ +export interface e_plugin_runtimes_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_plugin_runtimes_max_fields' +} + + +/** aggregate min on columns */ +export interface e_plugin_runtimes_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_plugin_runtimes_min_fields' +} + + +/** response of any mutation on the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_plugin_runtimes[] + __typename: 'e_plugin_runtimes_mutation_response' +} + + +/** select columns of table "e_plugin_runtimes" */ +export type e_plugin_runtimes_select_column = 'description' | 'value' + + +/** update columns of table "e_plugin_runtimes" */ +export type e_plugin_runtimes_update_column = 'description' | 'value' + + /** columns and relationships of "e_ready_settings" */ export interface e_ready_settings { description: Scalars['String'] @@ -4692,6 +4757,7 @@ export interface game_server_nodes { node_ip: (Scalars['inet'] | null) offline_at: (Scalars['timestamptz'] | null) pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) pin_plugin_version: (Scalars['String'] | null) /** An object relationship */ pinned_version: (game_versions | null) @@ -4789,6 +4855,7 @@ export interface game_server_nodes_max_fields { label: (Scalars['String'] | null) offline_at: (Scalars['timestamptz'] | null) pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) pin_plugin_version: (Scalars['String'] | null) region: (Scalars['String'] | null) shader_bake_progress: (Scalars['numeric'] | null) @@ -4820,6 +4887,7 @@ export interface game_server_nodes_min_fields { label: (Scalars['String'] | null) offline_at: (Scalars['timestamptz'] | null) pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) pin_plugin_version: (Scalars['String'] | null) region: (Scalars['String'] | null) shader_bake_progress: (Scalars['numeric'] | null) @@ -4845,7 +4913,7 @@ export interface game_server_nodes_mutation_response { /** select columns of table "game_server_nodes" */ -export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' +export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' /** select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" */ @@ -4945,7 +5013,7 @@ export interface game_server_nodes_sum_fields { /** update columns of table "game_server_nodes" */ -export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' +export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' /** aggregate var_pop on columns */ @@ -5450,7 +5518,6 @@ export interface leaderboard_entries_variance_fields { /** columns and relationships of "league_divisions" */ export interface league_divisions { - active: Scalars['Boolean'] created_at: Scalars['timestamptz'] id: Scalars['uuid'] name: Scalars['String'] @@ -5530,7 +5597,7 @@ export interface league_divisions_mutation_response { /** select columns of table "league_divisions" */ -export type league_divisions_select_column = 'active' | 'created_at' | 'id' | 'name' | 'tier' +export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' /** aggregate stddev on columns */ @@ -5562,7 +5629,7 @@ export interface league_divisions_sum_fields { /** update columns of table "league_divisions" */ -export type league_divisions_update_column = 'active' | 'created_at' | 'id' | 'name' | 'tier' +export type league_divisions_update_column = 'created_at' | 'id' | 'name' | 'tier' /** aggregate var_pop on columns */ @@ -10248,6 +10315,10 @@ export interface mutation_root { delete_e_player_roles: (e_player_roles_mutation_response | null) /** delete single row from the table: "e_player_roles" */ delete_e_player_roles_by_pk: (e_player_roles | null) + /** delete data from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** delete single row from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) /** delete data from the table: "e_ready_settings" */ delete_e_ready_settings: (e_ready_settings_mutation_response | null) /** delete single row from the table: "e_ready_settings" */ @@ -10787,6 +10858,10 @@ export interface mutation_root { insert_e_player_roles: (e_player_roles_mutation_response | null) /** insert a single row into the table: "e_player_roles" */ insert_e_player_roles_one: (e_player_roles | null) + /** insert data into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** insert a single row into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes_one: (e_plugin_runtimes | null) /** insert data into the table: "e_ready_settings" */ insert_e_ready_settings: (e_ready_settings_mutation_response | null) /** insert a single row into the table: "e_ready_settings" */ @@ -11526,6 +11601,12 @@ export interface mutation_root { update_e_player_roles_by_pk: (e_player_roles | null) /** update multiples rows of table: "e_player_roles" */ update_e_player_roles_many: ((e_player_roles_mutation_response | null)[] | null) + /** update data of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** update single row of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** update multiples rows of table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_many: ((e_plugin_runtimes_mutation_response | null)[] | null) /** update data of the table: "e_ready_settings" */ update_e_ready_settings: (e_ready_settings_mutation_response | null) /** update single row of the table: "e_ready_settings" */ @@ -20143,6 +20224,7 @@ export interface players_variance_fields { export interface plugin_versions { min_game_build_id: (Scalars['Int'] | null) published_at: Scalars['timestamptz'] + runtime: e_plugin_runtimes_enum version: Scalars['String'] __typename: 'plugin_versions' } @@ -20213,7 +20295,7 @@ export interface plugin_versions_mutation_response { /** select columns of table "plugin_versions" */ -export type plugin_versions_select_column = 'min_game_build_id' | 'published_at' | 'version' +export type plugin_versions_select_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' /** aggregate stddev on columns */ @@ -20245,7 +20327,7 @@ export interface plugin_versions_sum_fields { /** update columns of table "plugin_versions" */ -export type plugin_versions_update_column = 'min_game_build_id' | 'published_at' | 'version' +export type plugin_versions_update_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' /** aggregate var_pop on columns */ @@ -20462,6 +20544,12 @@ export interface query_root { e_player_roles_aggregate: e_player_roles_aggregate /** fetch data from the table: "e_player_roles" using primary key columns */ e_player_roles_by_pk: (e_player_roles | null) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes: e_plugin_runtimes[] + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) /** fetch data from the table: "e_ready_settings" */ e_ready_settings: e_ready_settings[] /** fetch aggregated fields from the table: "e_ready_settings" */ @@ -21616,6 +21704,7 @@ export interface servers { matches_aggregate: matches_aggregate max_players: (Scalars['Int'] | null) offline_at: (Scalars['timestamptz'] | null) + plugin_runtime: (e_plugin_runtimes_enum | null) plugin_version: (Scalars['String'] | null) port: Scalars['Int'] rcon_password: Scalars['bytea'] @@ -21737,7 +21826,7 @@ export interface servers_mutation_response { /** select columns of table "servers" */ -export type servers_select_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' +export type servers_select_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' /** select "servers_aggregate_bool_exp_bool_and_arguments_columns" columns of table "servers" */ @@ -21785,7 +21874,7 @@ export interface servers_sum_fields { /** update columns of table "servers" */ -export type servers_update_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' +export type servers_update_column = 'api_password' | 'boot_status' | 'boot_status_detail' | 'connect_password' | 'connected' | 'enabled' | 'game' | 'game_server_node_id' | 'host' | 'id' | 'is_dedicated' | 'label' | 'max_players' | 'offline_at' | 'plugin_runtime' | 'plugin_version' | 'port' | 'rcon_password' | 'rcon_status' | 'region' | 'reserved_by_match_id' | 'steam_relay' | 'tv_port' | 'type' | 'updated_at' /** aggregate var_pop on columns */ @@ -22386,6 +22475,14 @@ export interface subscription_root { e_player_roles_by_pk: (e_player_roles | null) /** fetch data from the table in a streaming manner: "e_player_roles" */ e_player_roles_stream: e_player_roles[] + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes: e_plugin_runtimes[] + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ + e_plugin_runtimes_stream: e_plugin_runtimes[] /** fetch data from the table: "e_ready_settings" */ e_ready_settings: e_ready_settings[] /** fetch aggregated fields from the table: "e_ready_settings" */ @@ -38016,6 +38113,109 @@ _set?: (e_player_roles_set_input | null), where: e_player_roles_bool_exp} +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregateGenqlSelection{ + aggregate?: e_plugin_runtimes_aggregate_fieldsGenqlSelection + nodes?: e_plugin_runtimesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_plugin_runtimes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_plugin_runtimes_max_fieldsGenqlSelection + min?: e_plugin_runtimes_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. */ +export interface e_plugin_runtimes_bool_exp {_and?: (e_plugin_runtimes_bool_exp[] | null),_not?: (e_plugin_runtimes_bool_exp | null),_or?: (e_plugin_runtimes_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. */ +export interface e_plugin_runtimes_enum_comparison_exp {_eq?: (e_plugin_runtimes_enum | null),_in?: (e_plugin_runtimes_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_plugin_runtimes_enum | null),_nin?: (e_plugin_runtimes_enum[] | null)} + + +/** input type for inserting data into table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_plugin_runtimes_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_plugin_runtimes_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_plugin_runtimesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_on_conflict {constraint: e_plugin_runtimes_constraint,update_columns?: e_plugin_runtimes_update_column[],where?: (e_plugin_runtimes_bool_exp | null)} + + +/** Ordering options when selecting data from "e_plugin_runtimes". */ +export interface e_plugin_runtimes_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_plugin_runtimes */ +export interface e_plugin_runtimes_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_plugin_runtimes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_plugin_runtimes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_plugin_runtimes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_plugin_runtimes_set_input | null), +/** filter the rows which have to be updated */ +where: e_plugin_runtimes_bool_exp} + + /** columns and relationships of "e_ready_settings" */ export interface e_ready_settingsGenqlSelection{ description?: boolean | number @@ -39958,6 +40158,7 @@ export interface game_server_nodesGenqlSelection{ node_ip?: boolean | number offline_at?: boolean | number pin_build_id?: boolean | number + pin_plugin_runtime?: boolean | number pin_plugin_version?: boolean | number /** An object relationship */ pinned_version?: game_versionsGenqlSelection @@ -40087,7 +40288,7 @@ export interface game_server_nodes_avg_order_by {build_id?: (order_by | null),cp /** Boolean expression to filter rows from the table "game_server_nodes". All fields are combined with a logical 'AND'. */ -export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cs2_launch_options?: (jsonb_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} +export interface game_server_nodes_bool_exp {_and?: (game_server_nodes_bool_exp[] | null),_not?: (game_server_nodes_bool_exp | null),_or?: (game_server_nodes_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),build_id?: (Int_comparison_exp | null),cpu_cores_per_socket?: (Int_comparison_exp | null),cpu_frequency_info?: (jsonb_comparison_exp | null),cpu_governor_info?: (jsonb_comparison_exp | null),cpu_sockets?: (Int_comparison_exp | null),cpu_threads_per_core?: (Int_comparison_exp | null),cs2_launch_options?: (jsonb_comparison_exp | null),cs2_video_settings?: (jsonb_comparison_exp | null),csgo_build_id?: (Int_comparison_exp | null),demo_network_limiter?: (Int_comparison_exp | null),disk_available_gb?: (Int_comparison_exp | null),disk_used_percent?: (Int_comparison_exp | null),e_region?: (server_regions_bool_exp | null),e_status?: (e_game_server_node_statuses_bool_exp | null),enabled?: (Boolean_comparison_exp | null),enabled_for_match_making?: (Boolean_comparison_exp | null),end_port_range?: (Int_comparison_exp | null),gpu?: (Boolean_comparison_exp | null),gpu_demos_enabled?: (Boolean_comparison_exp | null),gpu_info?: (jsonb_comparison_exp | null),gpu_rendering_enabled?: (Boolean_comparison_exp | null),gpu_streaming_enabled?: (Boolean_comparison_exp | null),id?: (String_comparison_exp | null),label?: (String_comparison_exp | null),lan_ip?: (inet_comparison_exp | null),node_ip?: (inet_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),pin_build_id?: (Int_comparison_exp | null),pin_plugin_runtime?: (String_comparison_exp | null),pin_plugin_version?: (String_comparison_exp | null),pinned_version?: (game_versions_bool_exp | null),plugin_supported?: (Boolean_comparison_exp | null),public_ip?: (inet_comparison_exp | null),region?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),shader_bake_progress?: (numeric_comparison_exp | null),shader_bake_progress_stage?: (String_comparison_exp | null),shader_bake_status?: (String_comparison_exp | null),shader_bake_status_history?: (jsonb_comparison_exp | null),start_port_range?: (Int_comparison_exp | null),status?: (e_game_server_node_statuses_enum_comparison_exp | null),supports_cpu_pinning?: (Boolean_comparison_exp | null),supports_low_latency?: (Boolean_comparison_exp | null),token?: (String_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),update_status?: (String_comparison_exp | null),version?: (game_versions_bool_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -40107,7 +40308,7 @@ export interface game_server_nodes_inc_input {build_id?: (Scalars['Int'] | null) /** input type for inserting data into table "game_server_nodes" */ -export interface game_server_nodes_insert_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_version?: (Scalars['String'] | null),pinned_version?: (game_versions_obj_rel_insert_input | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} +export interface game_server_nodes_insert_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),e_region?: (server_regions_obj_rel_insert_input | null),e_status?: (e_game_server_node_statuses_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),pinned_version?: (game_versions_obj_rel_insert_input | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null),version?: (game_versions_obj_rel_insert_input | null)} /** aggregate max on columns */ @@ -40127,6 +40328,7 @@ export interface game_server_nodes_max_fieldsGenqlSelection{ label?: boolean | number offline_at?: boolean | number pin_build_id?: boolean | number + pin_plugin_runtime?: boolean | number pin_plugin_version?: boolean | number region?: boolean | number shader_bake_progress?: boolean | number @@ -40143,7 +40345,7 @@ export interface game_server_nodes_max_fieldsGenqlSelection{ /** order by max() on columns of table "game_server_nodes" */ -export interface game_server_nodes_max_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} +export interface game_server_nodes_max_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} /** aggregate min on columns */ @@ -40163,6 +40365,7 @@ export interface game_server_nodes_min_fieldsGenqlSelection{ label?: boolean | number offline_at?: boolean | number pin_build_id?: boolean | number + pin_plugin_runtime?: boolean | number pin_plugin_version?: boolean | number region?: boolean | number shader_bake_progress?: boolean | number @@ -40179,7 +40382,7 @@ export interface game_server_nodes_min_fieldsGenqlSelection{ /** order by min() on columns of table "game_server_nodes" */ -export interface game_server_nodes_min_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} +export interface game_server_nodes_min_order_by {build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),end_port_range?: (order_by | null),id?: (order_by | null),label?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),region?: (order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),start_port_range?: (order_by | null),token?: (order_by | null),update_status?: (order_by | null)} /** response of any mutation on the table "game_server_nodes" */ @@ -40204,7 +40407,7 @@ export interface game_server_nodes_on_conflict {constraint: game_server_nodes_co /** Ordering options when selecting data from "game_server_nodes". */ -export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cs2_launch_options?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} +export interface game_server_nodes_order_by {available_server_count?: (order_by | null),build_id?: (order_by | null),cpu_cores_per_socket?: (order_by | null),cpu_frequency_info?: (order_by | null),cpu_governor_info?: (order_by | null),cpu_sockets?: (order_by | null),cpu_threads_per_core?: (order_by | null),cs2_launch_options?: (order_by | null),cs2_video_settings?: (order_by | null),csgo_build_id?: (order_by | null),demo_network_limiter?: (order_by | null),disk_available_gb?: (order_by | null),disk_used_percent?: (order_by | null),e_region?: (server_regions_order_by | null),e_status?: (e_game_server_node_statuses_order_by | null),enabled?: (order_by | null),enabled_for_match_making?: (order_by | null),end_port_range?: (order_by | null),gpu?: (order_by | null),gpu_demos_enabled?: (order_by | null),gpu_info?: (order_by | null),gpu_rendering_enabled?: (order_by | null),gpu_streaming_enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lan_ip?: (order_by | null),node_ip?: (order_by | null),offline_at?: (order_by | null),pin_build_id?: (order_by | null),pin_plugin_runtime?: (order_by | null),pin_plugin_version?: (order_by | null),pinned_version?: (game_versions_order_by | null),plugin_supported?: (order_by | null),public_ip?: (order_by | null),region?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),shader_bake_progress?: (order_by | null),shader_bake_progress_stage?: (order_by | null),shader_bake_status?: (order_by | null),shader_bake_status_history?: (order_by | null),start_port_range?: (order_by | null),status?: (order_by | null),supports_cpu_pinning?: (order_by | null),supports_low_latency?: (order_by | null),token?: (order_by | null),total_server_count?: (order_by | null),update_status?: (order_by | null),version?: (game_versions_order_by | null)} /** primary key columns input for table: game_server_nodes */ @@ -40216,7 +40419,7 @@ export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars[ /** input type for updating data in table "game_server_nodes" */ -export interface game_server_nodes_set_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_set_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate stddev on columns */ @@ -40309,7 +40512,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface game_server_nodes_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} +export interface game_server_nodes_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),cpu_cores_per_socket?: (Scalars['Int'] | null),cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_sockets?: (Scalars['Int'] | null),cpu_threads_per_core?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),csgo_build_id?: (Scalars['Int'] | null),demo_network_limiter?: (Scalars['Int'] | null),disk_available_gb?: (Scalars['Int'] | null),disk_used_percent?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),enabled_for_match_making?: (Scalars['Boolean'] | null),end_port_range?: (Scalars['Int'] | null),gpu?: (Scalars['Boolean'] | null),gpu_demos_enabled?: (Scalars['Boolean'] | null),gpu_info?: (Scalars['jsonb'] | null),gpu_rendering_enabled?: (Scalars['Boolean'] | null),gpu_streaming_enabled?: (Scalars['Boolean'] | null),id?: (Scalars['String'] | null),label?: (Scalars['String'] | null),lan_ip?: (Scalars['inet'] | null),node_ip?: (Scalars['inet'] | null),offline_at?: (Scalars['timestamptz'] | null),pin_build_id?: (Scalars['Int'] | null),pin_plugin_runtime?: (Scalars['String'] | null),pin_plugin_version?: (Scalars['String'] | null),public_ip?: (Scalars['inet'] | null),region?: (Scalars['String'] | null),shader_bake_progress?: (Scalars['numeric'] | null),shader_bake_progress_stage?: (Scalars['String'] | null),shader_bake_status?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null),start_port_range?: (Scalars['Int'] | null),status?: (e_game_server_node_statuses_enum | null),supports_cpu_pinning?: (Scalars['Boolean'] | null),supports_low_latency?: (Scalars['Boolean'] | null),token?: (Scalars['String'] | null),update_status?: (Scalars['String'] | null)} /** aggregate sum on columns */ @@ -41126,7 +41329,6 @@ export interface league_award_forfeit_args {_tournament_bracket_id?: (Scalars['u /** columns and relationships of "league_divisions" */ export interface league_divisionsGenqlSelection{ - active?: boolean | number created_at?: boolean | number id?: boolean | number name?: boolean | number @@ -41196,7 +41398,7 @@ export interface league_divisions_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "league_divisions". All fields are combined with a logical 'AND'. */ -export interface league_divisions_bool_exp {_and?: (league_divisions_bool_exp[] | null),_not?: (league_divisions_bool_exp | null),_or?: (league_divisions_bool_exp[] | null),active?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),tier?: (smallint_comparison_exp | null)} +export interface league_divisions_bool_exp {_and?: (league_divisions_bool_exp[] | null),_not?: (league_divisions_bool_exp | null),_or?: (league_divisions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),tier?: (smallint_comparison_exp | null)} /** input type for incrementing numeric columns in table "league_divisions" */ @@ -41204,7 +41406,7 @@ export interface league_divisions_inc_input {tier?: (Scalars['smallint'] | null) /** input type for inserting data into table "league_divisions" */ -export interface league_divisions_insert_input {active?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),tier?: (Scalars['smallint'] | null)} +export interface league_divisions_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),tier?: (Scalars['smallint'] | null)} /** aggregate max on columns */ @@ -41251,7 +41453,7 @@ export interface league_divisions_on_conflict {constraint: league_divisions_cons /** Ordering options when selecting data from "league_divisions". */ -export interface league_divisions_order_by {active?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),tier?: (order_by | null)} +export interface league_divisions_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),tier?: (order_by | null)} /** primary key columns input for table: league_divisions */ @@ -41259,7 +41461,7 @@ export interface league_divisions_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "league_divisions" */ -export interface league_divisions_set_input {active?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} +export interface league_divisions_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} /** aggregate stddev on columns */ @@ -41295,7 +41497,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface league_divisions_stream_cursor_value_input {active?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} +export interface league_divisions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} /** aggregate sum on columns */ @@ -49520,6 +49722,12 @@ export interface mutation_rootGenqlSelection{ where: e_player_roles_bool_exp} }) /** delete single row from the table: "e_player_roles" */ delete_e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_plugin_runtimes_bool_exp} }) + /** delete single row from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_ready_settings" */ delete_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -49957,7 +50165,7 @@ export interface mutation_rootGenqlSelection{ /** filter the rows which have to be deleted */ where: plugin_versions_bool_exp} }) /** delete single row from the table: "plugin_versions" */ - delete_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {version: Scalars['String']} }) + delete_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) /** delete data from the table: "seasons" */ delete_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -50525,6 +50733,18 @@ export interface mutation_rootGenqlSelection{ object: e_player_roles_insert_input, /** upsert condition */ on_conflict?: (e_player_roles_on_conflict | null)} }) + /** insert data into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_plugin_runtimes_insert_input[], + /** upsert condition */ + on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) + /** insert a single row into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes_one?: (e_plugin_runtimesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_plugin_runtimes_insert_input, + /** upsert condition */ + on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) /** insert data into the table: "e_ready_settings" */ insert_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -52440,6 +52660,20 @@ export interface mutation_rootGenqlSelection{ update_e_player_roles_many?: (e_player_roles_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_player_roles_updates[]} }) + /** update data of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_plugin_runtimes_set_input | null), + /** filter the rows which have to be updated */ + where: e_plugin_runtimes_bool_exp} }) + /** update single row of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_plugin_runtimes_set_input | null), pk_columns: e_plugin_runtimes_pk_columns_input} }) + /** update multiples rows of table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_many?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_plugin_runtimes_updates[]} }) /** update data of the table: "e_ready_settings" */ update_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -65771,6 +66005,7 @@ export interface players_variance_fieldsGenqlSelection{ export interface plugin_versionsGenqlSelection{ min_game_build_id?: boolean | number published_at?: boolean | number + runtime?: boolean | number version?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -65813,7 +66048,7 @@ export interface plugin_versions_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "plugin_versions". All fields are combined with a logical 'AND'. */ -export interface plugin_versions_bool_exp {_and?: (plugin_versions_bool_exp[] | null),_not?: (plugin_versions_bool_exp | null),_or?: (plugin_versions_bool_exp[] | null),min_game_build_id?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),version?: (String_comparison_exp | null)} +export interface plugin_versions_bool_exp {_and?: (plugin_versions_bool_exp[] | null),_not?: (plugin_versions_bool_exp | null),_or?: (plugin_versions_bool_exp[] | null),min_game_build_id?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),runtime?: (e_plugin_runtimes_enum_comparison_exp | null),version?: (String_comparison_exp | null)} /** input type for incrementing numeric columns in table "plugin_versions" */ @@ -65821,7 +66056,7 @@ export interface plugin_versions_inc_input {min_game_build_id?: (Scalars['Int'] /** input type for inserting data into table "plugin_versions" */ -export interface plugin_versions_insert_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} +export interface plugin_versions_insert_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} /** aggregate max on columns */ @@ -65860,15 +66095,15 @@ export interface plugin_versions_on_conflict {constraint: plugin_versions_constr /** Ordering options when selecting data from "plugin_versions". */ -export interface plugin_versions_order_by {min_game_build_id?: (order_by | null),published_at?: (order_by | null),version?: (order_by | null)} +export interface plugin_versions_order_by {min_game_build_id?: (order_by | null),published_at?: (order_by | null),runtime?: (order_by | null),version?: (order_by | null)} /** primary key columns input for table: plugin_versions */ -export interface plugin_versions_pk_columns_input {version: Scalars['String']} +export interface plugin_versions_pk_columns_input {runtime: e_plugin_runtimes_enum,version: Scalars['String']} /** input type for updating data in table "plugin_versions" */ -export interface plugin_versions_set_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} +export interface plugin_versions_set_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} /** aggregate stddev on columns */ @@ -65904,7 +66139,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface plugin_versions_stream_cursor_value_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} +export interface plugin_versions_stream_cursor_value_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} /** aggregate sum on columns */ @@ -66780,6 +67015,32 @@ export interface query_rootGenqlSelection{ where?: (e_player_roles_bool_exp | null)} }) /** fetch data from the table: "e_player_roles" using primary key columns */ e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_ready_settings" */ e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -68943,7 +69204,7 @@ export interface query_rootGenqlSelection{ /** filter the rows returned */ where?: (plugin_versions_bool_exp | null)} }) /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {version: Scalars['String']} }) + plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) /** Read file content from game server */ readServerFile?: (FileContentResponseGenqlSelection & { __args: {file_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) /** fetch data from the table: "seasons" */ @@ -70901,6 +71162,7 @@ export interface serversGenqlSelection{ where?: (matches_bool_exp | null)} }) max_players?: boolean | number offline_at?: boolean | number + plugin_runtime?: boolean | number plugin_version?: boolean | number port?: boolean | number rcon_password?: boolean | number @@ -70978,7 +71240,7 @@ export interface servers_avg_order_by {max_players?: (order_by | null),port?: (o /** Boolean expression to filter rows from the table "servers". All fields are combined with a logical 'AND'. */ -export interface servers_bool_exp {_and?: (servers_bool_exp[] | null),_not?: (servers_bool_exp | null),_or?: (servers_bool_exp[] | null),api_password?: (uuid_comparison_exp | null),boot_status?: (String_comparison_exp | null),boot_status_detail?: (String_comparison_exp | null),connect_password?: (String_comparison_exp | null),connected?: (Boolean_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),current_match?: (matches_bool_exp | null),enabled?: (Boolean_comparison_exp | null),game?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),host?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_dedicated?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),max_players?: (Int_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),plugin_version?: (String_comparison_exp | null),port?: (Int_comparison_exp | null),rcon_password?: (bytea_comparison_exp | null),rcon_status?: (Boolean_comparison_exp | null),region?: (String_comparison_exp | null),reserved_by_match_id?: (uuid_comparison_exp | null),server_region?: (server_regions_bool_exp | null),steam_relay?: (String_comparison_exp | null),tv_port?: (Int_comparison_exp | null),type?: (e_server_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +export interface servers_bool_exp {_and?: (servers_bool_exp[] | null),_not?: (servers_bool_exp | null),_or?: (servers_bool_exp[] | null),api_password?: (uuid_comparison_exp | null),boot_status?: (String_comparison_exp | null),boot_status_detail?: (String_comparison_exp | null),connect_password?: (String_comparison_exp | null),connected?: (Boolean_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),current_match?: (matches_bool_exp | null),enabled?: (Boolean_comparison_exp | null),game?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),host?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_dedicated?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),max_players?: (Int_comparison_exp | null),offline_at?: (timestamptz_comparison_exp | null),plugin_runtime?: (e_plugin_runtimes_enum_comparison_exp | null),plugin_version?: (String_comparison_exp | null),port?: (Int_comparison_exp | null),rcon_password?: (bytea_comparison_exp | null),rcon_status?: (Boolean_comparison_exp | null),region?: (String_comparison_exp | null),reserved_by_match_id?: (uuid_comparison_exp | null),server_region?: (server_regions_bool_exp | null),steam_relay?: (String_comparison_exp | null),tv_port?: (Int_comparison_exp | null),type?: (e_server_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} /** input type for incrementing numeric columns in table "servers" */ @@ -70986,7 +71248,7 @@ export interface servers_inc_input {max_players?: (Scalars['Int'] | null),port?: /** input type for inserting data into table "servers" */ -export interface servers_insert_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),current_match?: (matches_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),matches?: (matches_arr_rel_insert_input | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),server_region?: (server_regions_obj_rel_insert_input | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_insert_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),current_match?: (matches_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),matches?: (matches_arr_rel_insert_input | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),server_region?: (server_regions_obj_rel_insert_input | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ @@ -71077,7 +71339,7 @@ export interface servers_on_conflict {constraint: servers_constraint,update_colu /** Ordering options when selecting data from "servers". */ -export interface servers_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),connected?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),current_match?: (matches_order_by | null),enabled?: (order_by | null),game?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),is_dedicated?: (order_by | null),label?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_version?: (order_by | null),port?: (order_by | null),rcon_password?: (order_by | null),rcon_status?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),server_region?: (server_regions_order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} +export interface servers_order_by {api_password?: (order_by | null),boot_status?: (order_by | null),boot_status_detail?: (order_by | null),connect_password?: (order_by | null),connected?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),current_match?: (matches_order_by | null),enabled?: (order_by | null),game?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),host?: (order_by | null),id?: (order_by | null),is_dedicated?: (order_by | null),label?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),max_players?: (order_by | null),offline_at?: (order_by | null),plugin_runtime?: (order_by | null),plugin_version?: (order_by | null),port?: (order_by | null),rcon_password?: (order_by | null),rcon_status?: (order_by | null),region?: (order_by | null),reserved_by_match_id?: (order_by | null),server_region?: (server_regions_order_by | null),steam_relay?: (order_by | null),tv_port?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} /** primary key columns input for table: servers */ @@ -71085,7 +71347,7 @@ export interface servers_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "servers" */ -export interface servers_set_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_set_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate stddev on columns */ @@ -71139,7 +71401,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface servers_stream_cursor_value_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +export interface servers_stream_cursor_value_input {api_password?: (Scalars['uuid'] | null),boot_status?: (Scalars['String'] | null),boot_status_detail?: (Scalars['String'] | null),connect_password?: (Scalars['String'] | null),connected?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),game?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),host?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_dedicated?: (Scalars['Boolean'] | null),label?: (Scalars['String'] | null),max_players?: (Scalars['Int'] | null),offline_at?: (Scalars['timestamptz'] | null),plugin_runtime?: (e_plugin_runtimes_enum | null),plugin_version?: (Scalars['String'] | null),port?: (Scalars['Int'] | null),rcon_password?: (Scalars['bytea'] | null),rcon_status?: (Scalars['Boolean'] | null),region?: (Scalars['String'] | null),reserved_by_match_id?: (Scalars['uuid'] | null),steam_relay?: (Scalars['String'] | null),tv_port?: (Scalars['Int'] | null),type?: (e_server_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate sum on columns */ @@ -72783,6 +73045,40 @@ export interface subscription_rootGenqlSelection{ cursor: (e_player_roles_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_player_roles_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ + e_plugin_runtimes_stream?: (e_plugin_runtimesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_plugin_runtimes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) /** fetch data from the table: "e_ready_settings" */ e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -75528,7 +75824,7 @@ export interface subscription_rootGenqlSelection{ /** filter the rows returned */ where?: (plugin_versions_bool_exp | null)} }) /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {version: Scalars['String']} }) + plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) /** fetch data from the table in a streaming manner: "plugin_versions" */ plugin_versions_stream?: (plugin_versionsGenqlSelection & { __args: { /** maximum number of rows returned in a single batch */ @@ -92938,6 +93234,54 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_plugin_runtimes_possibleTypes: string[] = ['e_plugin_runtimes'] + export const ise_plugin_runtimes = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes"') + return e_plugin_runtimes_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_aggregate_possibleTypes: string[] = ['e_plugin_runtimes_aggregate'] + export const ise_plugin_runtimes_aggregate = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate"') + return e_plugin_runtimes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_aggregate_fields_possibleTypes: string[] = ['e_plugin_runtimes_aggregate_fields'] + export const ise_plugin_runtimes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate_fields"') + return e_plugin_runtimes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_max_fields_possibleTypes: string[] = ['e_plugin_runtimes_max_fields'] + export const ise_plugin_runtimes_max_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_max_fields"') + return e_plugin_runtimes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_min_fields_possibleTypes: string[] = ['e_plugin_runtimes_min_fields'] + export const ise_plugin_runtimes_min_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_min_fields"') + return e_plugin_runtimes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_mutation_response_possibleTypes: string[] = ['e_plugin_runtimes_mutation_response'] + export const ise_plugin_runtimes_mutation_response = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_mutation_response"') + return e_plugin_runtimes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_ready_settings_possibleTypes: string[] = ['e_ready_settings'] export const ise_ready_settings = (obj?: { __typename?: any } | null): obj is e_ready_settings => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings"') @@ -107032,6 +107376,25 @@ export const enumEPlayerRolesUpdateColumn = { value: 'value' as const } +export const enumEPluginRuntimesConstraint = { + e_plugin_runtimes_pkey: 'e_plugin_runtimes_pkey' as const +} + +export const enumEPluginRuntimesEnum = { + counterstrikesharp: 'counterstrikesharp' as const, + swiftlys2: 'swiftlys2' as const +} + +export const enumEPluginRuntimesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEPluginRuntimesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEReadySettingsConstraint = { e_ready_settings_pkey: 'e_ready_settings_pkey' as const } @@ -107385,6 +107748,7 @@ export const enumGameServerNodesSelectColumn = { node_ip: 'node_ip' as const, offline_at: 'offline_at' as const, pin_build_id: 'pin_build_id' as const, + pin_plugin_runtime: 'pin_plugin_runtime' as const, pin_plugin_version: 'pin_plugin_version' as const, public_ip: 'public_ip' as const, region: 'region' as const, @@ -107449,6 +107813,7 @@ export const enumGameServerNodesUpdateColumn = { node_ip: 'node_ip' as const, offline_at: 'offline_at' as const, pin_build_id: 'pin_build_id' as const, + pin_plugin_runtime: 'pin_plugin_runtime' as const, pin_plugin_version: 'pin_plugin_version' as const, public_ip: 'public_ip' as const, region: 'region' as const, @@ -107530,7 +107895,6 @@ export const enumLeagueDivisionsConstraint = { } export const enumLeagueDivisionsSelectColumn = { - active: 'active' as const, created_at: 'created_at' as const, id: 'id' as const, name: 'name' as const, @@ -107538,7 +107902,6 @@ export const enumLeagueDivisionsSelectColumn = { } export const enumLeagueDivisionsUpdateColumn = { - active: 'active' as const, created_at: 'created_at' as const, id: 'id' as const, name: 'name' as const, @@ -109652,12 +110015,14 @@ export const enumPluginVersionsConstraint = { export const enumPluginVersionsSelectColumn = { min_game_build_id: 'min_game_build_id' as const, published_at: 'published_at' as const, + runtime: 'runtime' as const, version: 'version' as const } export const enumPluginVersionsUpdateColumn = { min_game_build_id: 'min_game_build_id' as const, published_at: 'published_at' as const, + runtime: 'runtime' as const, version: 'version' as const } @@ -109723,6 +110088,7 @@ export const enumServersSelectColumn = { label: 'label' as const, max_players: 'max_players' as const, offline_at: 'offline_at' as const, + plugin_runtime: 'plugin_runtime' as const, plugin_version: 'plugin_version' as const, port: 'port' as const, rcon_password: 'rcon_password' as const, @@ -109764,6 +110130,7 @@ export const enumServersUpdateColumn = { label: 'label' as const, max_players: 'max_players' as const, offline_at: 'offline_at' as const, + plugin_runtime: 'plugin_runtime' as const, plugin_version: 'plugin_version' as const, port: 'port' as const, rcon_password: 'rcon_password' as const, diff --git a/generated/types.ts b/generated/types.ts index 28a3dd2a7..35406cf03 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -142,10 +142,10 @@ export default { 914, 920, 921, - 931, - 935, + 930, + 934, + 940, 941, - 942, 951, 955, 961, @@ -162,10 +162,10 @@ export default { 1015, 1021, 1022, - 1032, - 1036, + 1031, + 1035, + 1041, 1042, - 1043, 1052, 1056, 1062, @@ -174,14 +174,14 @@ export default { 1076, 1082, 1083, - 1093, - 1097, + 1092, + 1096, + 1102, 1103, - 1104, - 1114, - 1118, + 1113, + 1117, + 1123, 1124, - 1125, 1134, 1138, 1144, @@ -192,394 +192,398 @@ export default { 1165, 1174, 1178, - 1180, - 1187, - 1196, - 1204, - 1222, - 1238, - 1239, - 1240, - 1252, - 1266, - 1280, - 1288, - 1299, - 1312, - 1320, - 1328, - 1330, + 1184, + 1185, + 1194, + 1198, + 1200, + 1207, + 1216, + 1224, + 1242, + 1258, + 1259, + 1260, + 1272, + 1286, + 1300, + 1308, + 1319, 1332, - 1346, - 1364, - 1374, - 1382, - 1397, - 1408, - 1420, - 1438, - 1449, - 1461, - 1479, - 1490, - 1502, - 1518, - 1529, - 1533, - 1541, - 1555, - 1563, - 1578, - 1589, - 1601, - 1619, - 1630, - 1642, - 1660, - 1672, - 1684, - 1696, - 1705, - 1709, - 1715, - 1724, - 1728, - 1742, - 1753, - 1754, - 1755, - 1767, - 1779, - 1788, - 1792, - 1804, - 1815, - 1816, - 1817, - 1821, - 1833, - 1845, - 1857, - 1876, - 1891, - 1903, + 1340, + 1348, + 1350, + 1352, + 1366, + 1384, + 1394, + 1402, + 1417, + 1428, + 1440, + 1458, + 1469, + 1481, + 1499, + 1510, + 1522, + 1538, + 1549, + 1553, + 1561, + 1575, + 1583, + 1598, + 1609, + 1621, + 1639, + 1650, + 1662, + 1680, + 1692, + 1704, + 1716, + 1725, + 1729, + 1735, + 1744, + 1748, + 1762, + 1773, + 1774, + 1775, + 1787, + 1799, + 1808, + 1812, + 1824, + 1835, + 1836, + 1837, + 1841, + 1853, + 1865, + 1877, + 1896, + 1911, 1923, - 1934, - 1935, - 1936, - 1948, - 1966, - 1978, - 1990, - 2011, - 2027, - 2028, - 2029, - 2041, - 2059, - 2070, - 2082, - 2098, - 2108, - 2112, - 2124, - 2136, - 2148, - 2161, - 2171, - 2179, - 2192, - 2202, - 2206, - 2221, - 2236, - 2237, - 2238, - 2250, - 2262, + 1943, + 1954, + 1955, + 1956, + 1968, + 1986, + 1998, + 2010, + 2031, + 2047, + 2048, + 2049, + 2061, + 2079, + 2090, + 2102, + 2118, + 2128, + 2132, + 2144, + 2156, + 2168, + 2181, + 2191, + 2199, + 2212, + 2222, + 2226, + 2241, + 2256, + 2257, + 2258, 2270, - 2274, - 2286, - 2298, - 2310, - 2322, + 2282, + 2290, + 2294, + 2306, + 2318, 2330, - 2334, - 2361, - 2362, - 2363, - 2387, - 2396, - 2404, - 2422, - 2437, - 2438, - 2439, - 2451, + 2342, + 2350, + 2354, + 2381, + 2382, + 2383, + 2407, + 2416, + 2424, + 2442, + 2457, + 2458, 2459, - 2461, - 2472, - 2483, - 2495, - 2508, - 2518, - 2526, - 2536, - 2545, - 2553, - 2568, - 2579, - 2591, + 2471, + 2479, + 2481, + 2492, + 2503, + 2515, + 2528, + 2538, + 2546, + 2556, + 2565, + 2573, + 2588, + 2599, 2611, - 2622, - 2623, - 2624, - 2636, - 2652, + 2631, + 2642, + 2643, + 2644, + 2656, 2672, - 2683, - 2695, - 2708, - 2717, - 2725, - 2740, - 2751, - 2763, + 2692, + 2703, + 2715, + 2728, + 2737, + 2745, + 2760, + 2771, 2783, - 2794, - 2795, - 2796, - 2808, - 2838, - 2849, - 2861, + 2803, + 2814, + 2815, + 2816, + 2828, + 2858, 2869, - 2880, 2881, - 2882, - 2894, - 2913, - 2935, - 2946, - 2958, - 2974, - 3000, - 3027, - 3038, - 3050, - 3066, + 2889, + 2900, + 2901, + 2902, + 2914, + 2933, + 2955, + 2966, + 2978, + 2994, + 3020, + 3047, + 3058, + 3070, 3086, - 3097, - 3109, - 3127, - 3138, - 3150, - 3178, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, + 3106, + 3117, + 3129, + 3147, + 3158, + 3170, + 3198, 3209, - 3222, - 3232, - 3240, - 3251, - 3264, - 3272, - 3282, - 3291, - 3299, - 3314, - 3325, - 3337, - 3355, - 3366, - 3378, - 3402, - 3424, - 3434, - 3442, - 3452, - 3461, - 3469, - 3483, - 3493, - 3501, - 3511, - 3520, - 3528, - 3545, - 3557, - 3558, - 3559, - 3571, - 3583, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3229, + 3242, + 3252, + 3260, + 3271, + 3284, + 3292, + 3302, + 3311, + 3319, + 3334, + 3345, + 3357, + 3375, + 3386, + 3398, + 3422, + 3444, + 3454, + 3462, + 3472, + 3481, + 3489, + 3503, + 3513, + 3521, + 3531, + 3540, + 3548, + 3565, + 3577, + 3578, + 3579, 3591, - 3595, - 3597, - 3607, + 3603, + 3611, + 3615, 3617, - 3621, - 3628, - 3638, - 3646, - 3656, - 3665, - 3673, - 3688, - 3699, - 3711, + 3627, + 3637, + 3641, + 3648, + 3658, + 3666, + 3676, + 3685, + 3693, + 3708, + 3719, 3731, - 3742, - 3743, - 3744, - 3756, - 3769, - 3778, - 3786, - 3801, - 3811, - 3812, - 3813, - 3817, - 3829, - 3840, - 3852, + 3751, + 3762, + 3763, + 3764, + 3776, + 3789, + 3798, + 3806, + 3821, + 3831, + 3832, + 3833, + 3837, + 3849, + 3860, 3872, - 3884, - 3885, - 3886, - 3898, - 3911, - 3921, - 3929, - 3939, - 3948, - 3956, - 3971, - 3983, - 3995, + 3892, + 3904, + 3905, + 3906, + 3918, + 3931, + 3941, + 3949, + 3959, + 3968, + 3976, + 3991, 4003, - 4004, - 4018, - 4030, - 4031, - 4032, - 4044, - 4062, - 4073, - 4085, - 4103, - 4114, - 4126, - 4147, - 4163, - 4164, - 4165, - 4177, - 4195, - 4206, - 4218, - 4236, - 4247, - 4259, - 4277, - 4289, - 4301, + 4015, + 4023, + 4024, + 4038, + 4050, + 4051, + 4052, + 4064, + 4082, + 4093, + 4105, + 4123, + 4134, + 4146, + 4167, + 4183, + 4184, + 4185, + 4197, + 4215, + 4226, + 4238, + 4256, + 4267, + 4279, + 4297, + 4309, 4321, - 4332, - 4333, - 4334, - 4346, - 4364, - 4376, - 4388, + 4341, + 4352, + 4353, + 4354, + 4366, + 4384, + 4396, 4408, - 4420, - 4421, - 4422, - 4434, + 4428, + 4440, + 4441, 4442, - 4453, - 4479, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4559, - 4587, - 4612, - 4630, - 4648, - 4669, + 4454, + 4462, + 4473, + 4499, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4579, + 4607, + 4632, + 4650, + 4668, 4689, - 4715, - 4740, - 4758, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4827, - 4845, - 4863, - 4891, - 4918, - 4936, - 4954, - 4980, - 5005, - 5023, - 5050, - 5051, - 5052, - 5065, + 4709, + 4735, + 4760, + 4778, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4847, + 4865, + 4883, + 4911, + 4938, + 4956, + 4974, + 5000, + 5025, + 5043, + 5070, + 5071, + 5072, 5085, 5105, - 5135, - 5147, - 5148, - 5149, - 5150, - 5151, - 5152, - 5153, - 5154, + 5125, 5155, 5167, - 5201, - 5202, - 5203, - 5204, - 5205, - 5206, - 5207, - 5208, - 5209, - 5252, - 5253, - 5254, - 5255, - 5256, - 5257, - 5258, - 5259, - 5260 + 5168, + 5169, + 5170, + 5171, + 5172, + 5173, + 5174, + 5175, + 5187, + 5221, + 5222, + 5223, + 5224, + 5225, + 5226, + 5227, + 5228, + 5229, + 5272, + 5273, + 5274, + 5275, + 5276, + 5277, + 5278, + 5279, + 5280 ], "types": { "ActiveConnection": { @@ -596,7 +600,7 @@ export default { 78 ], "query_start": [ - 4003 + 4023 ], "state": [ 78 @@ -625,7 +629,7 @@ export default { 78 ], "query_start": [ - 4003 + 4023 ], "state": [ 78 @@ -723,7 +727,7 @@ export default { 38 ], "payload": [ - 1332 + 1352 ], "start_ms": [ 38 @@ -757,7 +761,7 @@ export default { 78 ], "match_map_id": [ - 4442 + 4462 ], "output": [ 6 @@ -817,7 +821,7 @@ export default { }, "CpuStat": { "time": [ - 4003 + 4023 ], "total": [ 180 @@ -834,7 +838,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4442 + 4462 ], "success": [ 3 @@ -845,7 +849,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4442 + 4462 ], "__typename": [ 78 @@ -853,7 +857,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4442 + 4462 ], "__typename": [ 78 @@ -1009,7 +1013,7 @@ export default { 20 ], "time": [ - 4003 + 4023 ], "__typename": [ 78 @@ -1035,7 +1039,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "mode": [ 78 @@ -1114,7 +1118,7 @@ export default { 3 ], "modified": [ - 4003 + 4023 ], "name": [ 78 @@ -1218,7 +1222,7 @@ export default { 32 ], "time": [ - 4003 + 4023 ], "__typename": [ 78 @@ -1460,7 +1464,7 @@ export default { 78 ], "player": [ - 3419 + 3439 ], "profile_url": [ 78 @@ -1477,7 +1481,7 @@ export default { }, "MemoryStat": { "time": [ - 4003 + 4023 ], "total": [ 180 @@ -1494,7 +1498,7 @@ export default { 49 ], "time": [ - 4003 + 4023 ], "__typename": [ 78 @@ -1514,7 +1518,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "published_at": [ 78 @@ -2272,16 +2276,16 @@ export default { 38 ], "last_analyze": [ - 4003 + 4023 ], "last_autoanalyze": [ - 4003 + 4023 ], "last_autovacuum": [ - 4003 + 4023 ], "last_vacuum": [ - 4003 + 4023 ], "n_dead_tup": [ 38 @@ -2355,7 +2359,7 @@ export default { 78 ], "next_start": [ - 4003 + 4023 ], "__typename": [ 78 @@ -2377,7 +2381,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4442 + 4462 ], "depth": [ 38 @@ -2386,7 +2390,7 @@ export default { 3 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 @@ -2429,10 +2433,10 @@ export default { }, "_map_pool": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2483,10 +2487,10 @@ export default { 95 ], "map_id": [ - 4444 + 4464 ], "map_pool_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -2495,10 +2499,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2506,10 +2510,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2517,10 +2521,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2553,10 +2557,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2461 + 2481 ], "map_pool_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2564,10 +2568,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2576,10 +2580,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2598,10 +2602,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2622,10 +2626,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -2722,7 +2726,7 @@ export default { 119 ], "count": [ - 2461 + 2481 ], "max": [ 125 @@ -2776,7 +2780,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2793,10 +2797,10 @@ export default { 120 ], "abandoned_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "steam_id": [ 182 @@ -2816,10 +2820,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -2830,10 +2834,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -2844,13 +2848,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2858,10 +2862,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -2872,13 +2876,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2911,13 +2915,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2925,7 +2929,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -2934,10 +2938,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -2956,7 +2960,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2972,7 +2976,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -2988,7 +2992,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3007,10 +3011,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -3029,7 +3033,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3060,7 +3064,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3076,7 +3080,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3092,7 +3096,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3100,16 +3104,16 @@ export default { }, "api_keys": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3195,16 +3199,16 @@ export default { 156 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "label": [ 80 ], "last_used_at": [ - 4005 + 4025 ], "steam_id": [ 182 @@ -3224,16 +3228,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3244,16 +3248,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3264,16 +3268,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3309,19 +3313,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "last_used_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3329,7 +3333,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -3338,16 +3342,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3393,16 +3397,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "last_used_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -3460,7 +3464,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -3572,49 +3576,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 1823 + 1843 ], "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 ], "game_server_node": [ - 1209 + 1229 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map": [ - 2114 + 2134 ], "match_map_demo": [ - 1998 + 2018 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "paused": [ 3 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -3623,7 +3627,7 @@ export default { 38 ], "spec": [ - 1332, + 1352, { "path": [ 78 @@ -3634,7 +3638,7 @@ export default { 78 ], "status_history": [ - 1332, + 1352, { "path": [ 78 @@ -3642,7 +3646,7 @@ export default { } ], "user": [ - 3419 + 3439 ], "user_steam_id": [ 180 @@ -3779,7 +3783,7 @@ export default { 196 ], "count": [ - 2461 + 2481 ], "max": [ 205 @@ -3814,10 +3818,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1332 + 1352 ], "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -3850,13 +3854,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -3873,49 +3877,49 @@ export default { 197 ], "clip": [ - 1832 + 1852 ], "clip_id": [ - 4444 + 4464 ], "created_at": [ - 4005 + 4025 ], "error_message": [ 80 ], "game_server_node": [ - 1221 + 1241 ], "game_server_node_id": [ 80 ], "id": [ - 4444 + 4464 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4005 + 4025 ], "match_map": [ - 2123 + 2143 ], "match_map_demo": [ - 2010 + 2030 ], "match_map_demo_id": [ - 4444 + 4464 ], "match_map_id": [ - 4444 + 4464 ], "paused": [ 4 ], "progress": [ - 2460 + 2480 ], "session_token": [ 80 @@ -3924,16 +3928,16 @@ export default { 39 ], "spec": [ - 1334 + 1354 ], "status": [ 80 ], "status_history": [ - 1334 + 1354 ], "user": [ - 3423 + 3443 ], "user_steam_id": [ 182 @@ -3978,7 +3982,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2459 + 2479 ], "sort_index": [ 38 @@ -3992,49 +3996,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 1841 + 1861 ], "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 ], "game_server_node": [ - 1233 + 1253 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map": [ - 2132 + 2152 ], "match_map_demo": [ - 2022 + 2042 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "paused": [ 3 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -4043,16 +4047,16 @@ export default { 38 ], "spec": [ - 1332 + 1352 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "user": [ - 3430 + 3450 ], "user_steam_id": [ 180 @@ -4063,10 +4067,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -4075,22 +4079,22 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -4110,46 +4114,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "progress": [ - 2461 + 2481 ], "session_token": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4157,10 +4161,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -4169,22 +4173,22 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -4204,46 +4208,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "progress": [ - 2461 + 2481 ], "session_token": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4276,70 +4280,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 1843 + 1863 ], "clip_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node": [ - 1235 + 1255 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_demo": [ - 2024 + 2044 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "paused": [ - 2461 + 2481 ], "progress": [ - 2461 + 2481 ], "session_token": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "spec": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "status_history": [ - 2461 + 2481 ], "user": [ - 3432 + 3452 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4347,7 +4351,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -4355,10 +4359,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1332 + 1352 ], "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -4369,10 +4373,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -4381,25 +4385,25 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "paused": [ 3 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -4408,13 +4412,13 @@ export default { 38 ], "spec": [ - 1332 + 1352 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "user_steam_id": [ 180 @@ -4439,13 +4443,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4467,13 +4471,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4495,13 +4499,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4520,10 +4524,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -4532,25 +4536,25 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "paused": [ 3 ], "progress": [ - 2459 + 2479 ], "session_token": [ 78 @@ -4559,13 +4563,13 @@ export default { 38 ], "spec": [ - 1332 + 1352 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "user_steam_id": [ 180 @@ -4576,7 +4580,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2459 + 2479 ], "sort_index": [ 38 @@ -4590,13 +4594,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4648,13 +4652,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4676,13 +4680,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4704,13 +4708,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2461 + 2481 ], "sort_index": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4718,7 +4722,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -4727,10 +4731,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -4819,10 +4823,10 @@ export default { 241 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "name": [ 80 @@ -4845,10 +4849,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -4862,10 +4866,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -4879,10 +4883,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -4921,16 +4925,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "__typename": [ 78 @@ -4938,7 +4942,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -4947,10 +4951,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -4999,10 +5003,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -5066,22 +5070,22 @@ export default { 3 ], "captain": [ - 3419 + 3439 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "draft_game": [ 354 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "is_organizer": [ 3 @@ -5090,7 +5094,7 @@ export default { 38 ], "picked": [ - 3419 + 3439 ], "picked_steam_id": [ 180 @@ -5227,7 +5231,7 @@ export default { 274 ], "count": [ - 2461 + 2481 ], "max": [ 280 @@ -5287,13 +5291,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5313,22 +5317,22 @@ export default { 4 ], "captain": [ - 3423 + 3443 ], "captain_steam_id": [ 182 ], "created_at": [ - 4005 + 4025 ], "draft_game": [ 365 ], "draft_game_id": [ - 4444 + 4464 ], "id": [ - 4444 + 4464 ], "is_organizer": [ 4 @@ -5337,7 +5341,7 @@ export default { 39 ], "picked": [ - 3423 + 3443 ], "picked_steam_id": [ 182 @@ -5366,28 +5370,28 @@ export default { 3 ], "captain": [ - 3430 + 3450 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "draft_game": [ 374 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "lineup": [ 38 ], "picked": [ - 3430 + 3450 ], "picked_steam_id": [ 180 @@ -5401,13 +5405,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "lineup": [ 38 @@ -5421,22 +5425,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "draft_game_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5447,13 +5451,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "lineup": [ 38 @@ -5467,22 +5471,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "draft_game_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5515,37 +5519,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2461 + 2481 ], "captain": [ - 3432 + 3452 ], "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "draft_game": [ 376 ], "draft_game_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_organizer": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked": [ - 3432 + 3452 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5553,7 +5557,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -5570,13 +5574,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "lineup": [ 38 @@ -5604,13 +5608,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5632,13 +5636,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5660,13 +5664,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5691,13 +5695,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "draft_game_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "lineup": [ 38 @@ -5725,13 +5729,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5768,13 +5772,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5796,13 +5800,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5824,13 +5828,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "picked_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -5841,7 +5845,7 @@ export default { 354 ], "draft_game_id": [ - 4442 + 4462 ], "e_draft_game_player_status": [ 483 @@ -5856,7 +5860,7 @@ export default { 3 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -5865,7 +5869,7 @@ export default { 38 ], "player": [ - 3419 + 3439 ], "status": [ 488 @@ -6005,7 +6009,7 @@ export default { 319 ], "count": [ - 2461 + 2481 ], "max": [ 325 @@ -6068,16 +6072,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6097,7 +6101,7 @@ export default { 365 ], "draft_game_id": [ - 4444 + 4464 ], "e_draft_game_player_status": [ 486 @@ -6112,7 +6116,7 @@ export default { 4 ], "joined_at": [ - 4005 + 4025 ], "lineup": [ 39 @@ -6121,7 +6125,7 @@ export default { 39 ], "player": [ - 3423 + 3443 ], "status": [ 489 @@ -6156,7 +6160,7 @@ export default { 374 ], "draft_game_id": [ - 4442 + 4462 ], "e_draft_game_player_status": [ 494 @@ -6168,7 +6172,7 @@ export default { 3 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -6177,7 +6181,7 @@ export default { 38 ], "player": [ - 3430 + 3450 ], "status": [ 488 @@ -6191,13 +6195,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4442 + 4462 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -6214,22 +6218,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2461 + 2481 ], "elo_snapshot": [ - 2461 + 2481 ], "joined_at": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6237,13 +6241,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4442 + 4462 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -6260,22 +6264,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2461 + 2481 ], "elo_snapshot": [ - 2461 + 2481 ], "joined_at": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6311,37 +6315,37 @@ export default { 376 ], "draft_game_id": [ - 2461 + 2481 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2461 + 2481 ], "is_captain": [ - 2461 + 2481 ], "is_organizer": [ - 2461 + 2481 ], "joined_at": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "status": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6349,7 +6353,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -6363,7 +6367,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 4442 + 4462 ], "elo_snapshot": [ 38 @@ -6372,7 +6376,7 @@ export default { 3 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -6409,16 +6413,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6443,16 +6447,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6477,16 +6481,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6505,7 +6509,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4442 + 4462 ], "elo_snapshot": [ 38 @@ -6514,7 +6518,7 @@ export default { 3 ], "joined_at": [ - 4004 + 4024 ], "lineup": [ 38 @@ -6551,16 +6555,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6600,16 +6604,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6634,16 +6638,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6668,16 +6672,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2461 + 2481 ], "lineup": [ - 2461 + 2481 ], "pick_order": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -6694,7 +6698,7 @@ export default { 425 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 @@ -6718,40 +6722,40 @@ export default { 671 ], "expires_at": [ - 4004 + 4024 ], "host": [ - 3419 + 3439 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "inner_squad": [ 3 ], "invite_code": [ - 4442 + 4462 ], "is_organizer": [ 3 ], "map_pool": [ - 1775 + 1795 ], "map_pool_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -6763,10 +6767,10 @@ export default { 467 ], "options": [ - 2156 + 2176 ], "pattern": [ - 1332, + 1352, { "path": [ 78 @@ -6774,7 +6778,7 @@ export default { } ], "pick_deadline": [ - 4004 + 4024 ], "picks": [ 264, @@ -6871,28 +6875,28 @@ export default { 3 ], "scheduled_at": [ - 4004 + 4024 ], "status": [ 509 ], "team_1": [ - 3961 + 3981 ], "team_1_id": [ - 4442 + 4462 ], "team_2": [ - 3961 + 3981 ], "team_2_id": [ - 4442 + 4462 ], "type": [ 820 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -7026,7 +7030,7 @@ export default { 364 ], "count": [ - 2461 + 2481 ], "max": [ 370 @@ -7092,19 +7096,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7130,7 +7134,7 @@ export default { 426 ], "created_at": [ - 4005 + 4025 ], "current_pick_lineup": [ 39 @@ -7154,40 +7158,40 @@ export default { 674 ], "expires_at": [ - 4005 + 4025 ], "host": [ - 3423 + 3443 ], "host_steam_id": [ 182 ], "id": [ - 4444 + 4464 ], "inner_squad": [ 4 ], "invite_code": [ - 4444 + 4464 ], "is_organizer": [ 4 ], "map_pool": [ - 1778 + 1798 ], "map_pool_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_options_id": [ - 4444 + 4464 ], "max_elo": [ 39 @@ -7199,13 +7203,13 @@ export default { 468 ], "options": [ - 2160 + 2180 ], "pattern": [ - 1334 + 1354 ], "pick_deadline": [ - 4005 + 4025 ], "picks": [ 275 @@ -7226,28 +7230,28 @@ export default { 4 ], "scheduled_at": [ - 4005 + 4025 ], "status": [ 510 ], "team_1": [ - 3970 + 3990 ], "team_1_id": [ - 4444 + 4464 ], "team_2": [ - 3970 + 3990 ], "team_2_id": [ - 4444 + 4464 ], "type": [ 821 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -7285,7 +7289,7 @@ export default { 425 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 @@ -7309,37 +7313,37 @@ export default { 682 ], "expires_at": [ - 4004 + 4024 ], "host": [ - 3430 + 3450 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "inner_squad": [ 3 ], "invite_code": [ - 4442 + 4462 ], "map_pool": [ - 1784 + 1804 ], "map_pool_id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -7351,10 +7355,10 @@ export default { 467 ], "options": [ - 2167 + 2187 ], "pick_deadline": [ - 4004 + 4024 ], "picks": [ 272 @@ -7369,28 +7373,28 @@ export default { 3 ], "scheduled_at": [ - 4004 + 4024 ], "status": [ 509 ], "team_1": [ - 3979 + 3999 ], "team_1_id": [ - 4442 + 4462 ], "team_2": [ - 3979 + 3999 ], "team_2_id": [ - 4442 + 4462 ], "type": [ 820 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -7401,31 +7405,31 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4004 + 4024 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "invite_code": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -7434,22 +7438,22 @@ export default { 38 ], "pick_deadline": [ - 4004 + 4024 ], "regions": [ 78 ], "scheduled_at": [ - 4004 + 4024 ], "team_1_id": [ - 4442 + 4462 ], "team_2_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -7457,58 +7461,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invite_code": [ - 2461 + 2481 ], "map_pool_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "pick_deadline": [ - 2461 + 2481 ], "regions": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "team_1_id": [ - 2461 + 2481 ], "team_2_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7519,31 +7523,31 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4004 + 4024 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "invite_code": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -7552,22 +7556,22 @@ export default { 38 ], "pick_deadline": [ - 4004 + 4024 ], "regions": [ 78 ], "scheduled_at": [ - 4004 + 4024 ], "team_1_id": [ - 4442 + 4462 ], "team_2_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -7575,58 +7579,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invite_code": [ - 2461 + 2481 ], "map_pool_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "pick_deadline": [ - 2461 + 2481 ], "regions": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "team_1_id": [ - 2461 + 2481 ], "team_2_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7670,22 +7674,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2461 + 2481 ], "capacity": [ - 2461 + 2481 ], "captain_selection": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "draft_order": [ - 2461 + 2481 ], "e_draft_game_captain_selection": [ 433 @@ -7703,58 +7707,58 @@ export default { 684 ], "expires_at": [ - 2461 + 2481 ], "host": [ - 3432 + 3452 ], "host_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "inner_squad": [ - 2461 + 2481 ], "invite_code": [ - 2461 + 2481 ], "is_organizer": [ - 2461 + 2481 ], "map_pool": [ - 1786 + 1806 ], "map_pool_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "mode": [ - 2461 + 2481 ], "options": [ - 2169 + 2189 ], "pattern": [ - 2461 + 2481 ], "pick_deadline": [ - 2461 + 2481 ], "picks_aggregate": [ 271 @@ -7763,34 +7767,34 @@ export default { 316 ], "regions": [ - 2461 + 2481 ], "require_approval": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "team_1": [ - 3981 + 4001 ], "team_1_id": [ - 2461 + 2481 ], "team_2": [ - 3981 + 4001 ], "team_2_id": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7798,7 +7802,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -7818,7 +7822,7 @@ export default { 425 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 @@ -7827,28 +7831,28 @@ export default { 446 ], "expires_at": [ - 4004 + 4024 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "inner_squad": [ 3 ], "invite_code": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -7860,7 +7864,7 @@ export default { 467 ], "pick_deadline": [ - 4004 + 4024 ], "regions": [ 78 @@ -7869,22 +7873,22 @@ export default { 3 ], "scheduled_at": [ - 4004 + 4024 ], "status": [ 509 ], "team_1_id": [ - 4442 + 4462 ], "team_2_id": [ - 4442 + 4462 ], "type": [ 820 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -7912,19 +7916,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7952,19 +7956,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -7992,19 +7996,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8032,7 +8036,7 @@ export default { 425 ], "created_at": [ - 4004 + 4024 ], "current_pick_lineup": [ 38 @@ -8041,28 +8045,28 @@ export default { 446 ], "expires_at": [ - 4004 + 4024 ], "host_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "inner_squad": [ 3 ], "invite_code": [ - 4442 + 4462 ], "map_pool_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_elo": [ 38 @@ -8074,7 +8078,7 @@ export default { 467 ], "pick_deadline": [ - 4004 + 4024 ], "regions": [ 78 @@ -8083,22 +8087,22 @@ export default { 3 ], "scheduled_at": [ - 4004 + 4024 ], "status": [ 509 ], "team_1_id": [ - 4442 + 4462 ], "team_2_id": [ - 4442 + 4462 ], "type": [ 820 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -8126,19 +8130,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8181,19 +8185,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8221,19 +8225,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8261,19 +8265,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2461 + 2481 ], "current_pick_lineup": [ - 2461 + 2481 ], "host_steam_id": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8426,10 +8430,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8647,10 +8651,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -8868,10 +8872,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -9089,10 +9093,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -9310,10 +9314,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -9531,10 +9535,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -9752,10 +9756,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -9962,10 +9966,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -10183,10 +10187,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -10404,10 +10408,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -10625,10 +10629,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -10846,10 +10850,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -11067,10 +11071,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -11288,10 +11292,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -11498,10 +11502,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -11719,10 +11723,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -11787,10 +11791,10 @@ export default { 78 ], "match_clips": [ - 1823, + 1843, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -11800,19 +11804,19 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_aggregate": [ - 1824, + 1844, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -11822,11 +11826,11 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], @@ -11885,10 +11889,10 @@ export default { 80 ], "match_clips": [ - 1832 + 1852 ], "match_clips_aggregate": [ - 1825 + 1845 ], "value": [ 80 @@ -11924,7 +11928,7 @@ export default { 78 ], "match_clips": [ - 1829 + 1849 ], "value": [ 78 @@ -11982,13 +11986,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2461 + 2481 ], "match_clips_aggregate": [ - 1828 + 1848 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -12053,10 +12057,10 @@ export default { 78 ], "match_maps": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -12066,19 +12070,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -12088,11 +12092,11 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], @@ -12151,10 +12155,10 @@ export default { 80 ], "match_maps": [ - 2123 + 2143 ], "match_maps_aggregate": [ - 2116 + 2136 ], "value": [ 80 @@ -12190,7 +12194,7 @@ export default { 78 ], "match_maps": [ - 2120 + 2140 ], "value": [ 78 @@ -12259,13 +12263,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2461 + 2481 ], "match_maps_aggregate": [ - 2119 + 2139 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -12472,10 +12476,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -12540,10 +12544,10 @@ export default { 78 ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -12553,19 +12557,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_aggregate": [ - 2277, + 2297, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -12575,11 +12579,11 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], @@ -12638,10 +12642,10 @@ export default { 80 ], "matches": [ - 2285 + 2305 ], "matches_aggregate": [ - 2278 + 2298 ], "value": [ 80 @@ -12677,7 +12681,7 @@ export default { 78 ], "matches": [ - 2282 + 2302 ], "value": [ 78 @@ -12746,13 +12750,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2461 + 2481 ], "matches_aggregate": [ - 2281 + 2301 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -12817,10 +12821,10 @@ export default { 78 ], "maps": [ - 1794, + 1814, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -12830,19 +12834,19 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], "maps_aggregate": [ - 1795, + 1815, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -12852,11 +12856,11 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], @@ -12915,10 +12919,10 @@ export default { 80 ], "maps": [ - 1803 + 1823 ], "maps_aggregate": [ - 1796 + 1816 ], "value": [ 80 @@ -12954,7 +12958,7 @@ export default { 78 ], "maps": [ - 1802 + 1822 ], "value": [ 78 @@ -13023,13 +13027,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2461 + 2481 ], "maps_aggregate": [ - 1801 + 1821 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -13236,10 +13240,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -13304,10 +13308,10 @@ export default { 78 ], "player_objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -13317,19 +13321,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -13339,11 +13343,11 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], @@ -13402,10 +13406,10 @@ export default { 80 ], "player_objectives": [ - 3026 + 3046 ], "player_objectives_aggregate": [ - 3019 + 3039 ], "value": [ 80 @@ -13441,7 +13445,7 @@ export default { 78 ], "player_objectives": [ - 3023 + 3043 ], "value": [ 78 @@ -13499,13 +13503,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2461 + 2481 ], "player_objectives_aggregate": [ - 3022 + 3042 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -13712,10 +13716,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -13775,7 +13779,7 @@ export default { 78 ] }, - "e_ready_settings": { + "e_plugin_runtimes": { "description": [ 78 ], @@ -13786,7 +13790,7 @@ export default { 78 ] }, - "e_ready_settings_aggregate": { + "e_plugin_runtimes_aggregate": { "aggregate": [ 898 ], @@ -13797,13 +13801,13 @@ export default { 78 ] }, - "e_ready_settings_aggregate_fields": { + "e_plugin_runtimes_aggregate_fields": { "count": [ 38, { "columns": [ 910, - "[e_ready_settings_select_column!]" + "[e_plugin_runtimes_select_column!]" ], "distinct": [ 3 @@ -13820,7 +13824,7 @@ export default { 78 ] }, - "e_ready_settings_bool_exp": { + "e_plugin_runtimes_bool_exp": { "_and": [ 899 ], @@ -13840,9 +13844,9 @@ export default { 78 ] }, - "e_ready_settings_constraint": {}, - "e_ready_settings_enum": {}, - "e_ready_settings_enum_comparison_exp": { + "e_plugin_runtimes_constraint": {}, + "e_plugin_runtimes_enum": {}, + "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ 901 ], @@ -13862,6 +13866,216 @@ export default { 78 ] }, + "e_plugin_runtimes_insert_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_max_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_min_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 896 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_on_conflict": { + "constraint": [ + 900 + ], + "update_columns": [ + 914 + ], + "where": [ + 899 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_order_by": { + "description": [ + 2481 + ], + "value": [ + 2481 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_pk_columns_input": { + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_select_column": {}, + "e_plugin_runtimes_set_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_stream_cursor_input": { + "initial_value": [ + 913 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_stream_cursor_value_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_plugin_runtimes_update_column": {}, + "e_plugin_runtimes_updates": { + "_set": [ + 911 + ], + "where": [ + 899 + ], + "__typename": [ + 78 + ] + }, + "e_ready_settings": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_ready_settings_aggregate": { + "aggregate": [ + 918 + ], + "nodes": [ + 916 + ], + "__typename": [ + 78 + ] + }, + "e_ready_settings_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 930, + "[e_ready_settings_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 924 + ], + "min": [ + 925 + ], + "__typename": [ + 78 + ] + }, + "e_ready_settings_bool_exp": { + "_and": [ + 919 + ], + "_not": [ + 919 + ], + "_or": [ + 919 + ], + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_ready_settings_constraint": {}, + "e_ready_settings_enum": {}, + "e_ready_settings_enum_comparison_exp": { + "_eq": [ + 921 + ], + "_in": [ + 921 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 921 + ], + "_nin": [ + 921 + ], + "__typename": [ + 78 + ] + }, "e_ready_settings_insert_input": { "description": [ 78 @@ -13900,7 +14114,7 @@ export default { 38 ], "returning": [ - 896 + 916 ], "__typename": [ 78 @@ -13908,13 +14122,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 900 + 920 ], "update_columns": [ - 914 + 934 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -13922,10 +14136,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -13953,7 +14167,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 913 + 933 ], "ordering": [ 236 @@ -13976,10 +14190,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 911 + 931 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -13998,10 +14212,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 918 + 938 ], "nodes": [ - 916 + 936 ], "__typename": [ 78 @@ -14012,7 +14226,7 @@ export default { 38, { "columns": [ - 931, + 951, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14021,10 +14235,10 @@ export default { } ], "max": [ - 924 + 944 ], "min": [ - 925 + 945 ], "__typename": [ 78 @@ -14032,13 +14246,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 919 + 939 ], "_not": [ - 919 + 939 ], "_or": [ - 919 + 939 ], "description": [ 80 @@ -14054,19 +14268,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 921 + 941 ], "_in": [ - 921 + 941 ], "_is_null": [ 3 ], "_neq": [ - 921 + 941 ], "_nin": [ - 921 + 941 ], "__typename": [ 78 @@ -14110,7 +14324,7 @@ export default { 38 ], "returning": [ - 916 + 936 ], "__typename": [ 78 @@ -14118,10 +14332,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 923 + 943 ], "on_conflict": [ - 928 + 948 ], "__typename": [ 78 @@ -14129,13 +14343,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 920 + 940 ], "update_columns": [ - 935 + 955 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14143,10 +14357,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -14174,7 +14388,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 934 + 954 ], "ordering": [ 236 @@ -14197,10 +14411,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 932 + 952 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14211,10 +14425,10 @@ export default { 78 ], "scrim_requests": [ - 3860, + 3880, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14224,19 +14438,19 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], "scrim_requests_aggregate": [ - 3861, + 3881, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14246,11 +14460,11 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], @@ -14263,10 +14477,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 939 + 959 ], "nodes": [ - 937 + 957 ], "__typename": [ 78 @@ -14277,7 +14491,7 @@ export default { 38, { "columns": [ - 951, + 971, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14286,10 +14500,10 @@ export default { } ], "max": [ - 945 + 965 ], "min": [ - 946 + 966 ], "__typename": [ 78 @@ -14297,22 +14511,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 940 + 960 ], "_not": [ - 940 + 960 ], "_or": [ - 940 + 960 ], "description": [ 80 ], "scrim_requests": [ - 3871 + 3891 ], "scrim_requests_aggregate": [ - 3862 + 3882 ], "value": [ 80 @@ -14325,19 +14539,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 942 + 962 ], "_in": [ - 942 + 962 ], "_is_null": [ 3 ], "_neq": [ - 942 + 962 ], "_nin": [ - 942 + 962 ], "__typename": [ 78 @@ -14348,7 +14562,7 @@ export default { 78 ], "scrim_requests": [ - 3868 + 3888 ], "value": [ 78 @@ -14384,7 +14598,7 @@ export default { 38 ], "returning": [ - 937 + 957 ], "__typename": [ 78 @@ -14392,13 +14606,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 941 + 961 ], "update_columns": [ - 955 + 975 ], "where": [ - 940 + 960 ], "__typename": [ 78 @@ -14406,13 +14620,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2461 + 2481 ], "scrim_requests_aggregate": [ - 3867 + 3887 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -14440,7 +14654,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 954 + 974 ], "ordering": [ 236 @@ -14463,10 +14677,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 952 + 972 ], "where": [ - 940 + 960 ], "__typename": [ 78 @@ -14477,10 +14691,10 @@ export default { 78 ], "servers": [ - 3533, + 3553, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -14490,19 +14704,19 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_aggregate": [ - 3534, + 3554, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -14512,11 +14726,11 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], @@ -14529,10 +14743,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 959 + 979 ], "nodes": [ - 957 + 977 ], "__typename": [ 78 @@ -14543,7 +14757,7 @@ export default { 38, { "columns": [ - 971, + 991, "[e_server_types_select_column!]" ], "distinct": [ @@ -14552,10 +14766,10 @@ export default { } ], "max": [ - 965 + 985 ], "min": [ - 966 + 986 ], "__typename": [ 78 @@ -14563,22 +14777,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 960 + 980 ], "_not": [ - 960 + 980 ], "_or": [ - 960 + 980 ], "description": [ 80 ], "servers": [ - 3544 + 3564 ], "servers_aggregate": [ - 3535 + 3555 ], "value": [ 80 @@ -14591,19 +14805,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 962 + 982 ], "_in": [ - 962 + 982 ], "_is_null": [ 3 ], "_neq": [ - 962 + 982 ], "_nin": [ - 962 + 982 ], "__typename": [ 78 @@ -14614,7 +14828,7 @@ export default { 78 ], "servers": [ - 3541 + 3561 ], "value": [ 78 @@ -14650,7 +14864,7 @@ export default { 38 ], "returning": [ - 957 + 977 ], "__typename": [ 78 @@ -14658,13 +14872,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 961 + 981 ], "update_columns": [ - 975 + 995 ], "where": [ - 960 + 980 ], "__typename": [ 78 @@ -14672,13 +14886,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2461 + 2481 ], "servers_aggregate": [ - 3540 + 3560 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -14706,7 +14920,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 974 + 994 ], "ordering": [ 236 @@ -14729,10 +14943,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 972 + 992 ], "where": [ - 960 + 980 ], "__typename": [ 78 @@ -14743,10 +14957,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -14756,19 +14970,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_map_lineup_1_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -14778,19 +14992,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_map_lineup_2": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -14800,19 +15014,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_map_lineup_2_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -14822,11 +15036,11 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], @@ -14839,10 +15053,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 979 + 999 ], "nodes": [ - 977 + 997 ], "__typename": [ 78 @@ -14853,7 +15067,7 @@ export default { 38, { "columns": [ - 991, + 1011, "[e_sides_select_column!]" ], "distinct": [ @@ -14862,10 +15076,10 @@ export default { } ], "max": [ - 985 + 1005 ], "min": [ - 986 + 1006 ], "__typename": [ 78 @@ -14873,28 +15087,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 980 + 1000 ], "_not": [ - 980 + 1000 ], "_or": [ - 980 + 1000 ], "description": [ 80 ], "match_map_lineup_1": [ - 2123 + 2143 ], "match_map_lineup_1_aggregate": [ - 2116 + 2136 ], "match_map_lineup_2": [ - 2123 + 2143 ], "match_map_lineup_2_aggregate": [ - 2116 + 2136 ], "value": [ 80 @@ -14907,19 +15121,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 982 + 1002 ], "_in": [ - 982 + 1002 ], "_is_null": [ 3 ], "_neq": [ - 982 + 1002 ], "_nin": [ - 982 + 1002 ], "__typename": [ 78 @@ -14930,10 +15144,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2120 + 2140 ], "match_map_lineup_2": [ - 2120 + 2140 ], "value": [ 78 @@ -14969,7 +15183,7 @@ export default { 38 ], "returning": [ - 977 + 997 ], "__typename": [ 78 @@ -14977,13 +15191,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 981 + 1001 ], "update_columns": [ - 995 + 1015 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -14991,16 +15205,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2461 + 2481 ], "match_map_lineup_1_aggregate": [ - 2119 + 2139 ], "match_map_lineup_2_aggregate": [ - 2119 + 2139 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -15028,7 +15242,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 994 + 1014 ], "ordering": [ 236 @@ -15051,10 +15265,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 992 + 1012 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -15073,10 +15287,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 999 + 1019 ], "nodes": [ - 997 + 1017 ], "__typename": [ 78 @@ -15087,7 +15301,7 @@ export default { 38, { "columns": [ - 1011, + 1031, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15096,10 +15310,10 @@ export default { } ], "max": [ - 1005 + 1025 ], "min": [ - 1006 + 1026 ], "__typename": [ 78 @@ -15107,13 +15321,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1000 + 1020 ], "_not": [ - 1000 + 1020 ], "_or": [ - 1000 + 1020 ], "description": [ 80 @@ -15129,19 +15343,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1002 + 1022 ], "_in": [ - 1002 + 1022 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 1022 ], "_nin": [ - 1002 + 1022 ], "__typename": [ 78 @@ -15185,7 +15399,7 @@ export default { 38 ], "returning": [ - 997 + 1017 ], "__typename": [ 78 @@ -15193,13 +15407,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1001 + 1021 ], "update_columns": [ - 1015 + 1035 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15207,10 +15421,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -15238,7 +15452,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1014 + 1034 ], "ordering": [ 236 @@ -15261,10 +15475,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1012 + 1032 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15275,10 +15489,10 @@ export default { 78 ], "team_rosters": [ - 3719, + 3739, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -15288,19 +15502,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_rosters_aggregate": [ - 3720, + 3740, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -15310,19 +15524,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "tournament_team_rosters": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15332,19 +15546,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_team_rosters_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15354,11 +15568,11 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], @@ -15371,10 +15585,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1019 + 1039 ], "nodes": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15385,7 +15599,7 @@ export default { 38, { "columns": [ - 1032, + 1052, "[e_team_roles_select_column!]" ], "distinct": [ @@ -15394,10 +15608,10 @@ export default { } ], "max": [ - 1025 + 1045 ], "min": [ - 1026 + 1046 ], "__typename": [ 78 @@ -15405,28 +15619,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1020 + 1040 ], "_not": [ - 1020 + 1040 ], "_or": [ - 1020 + 1040 ], "description": [ 80 ], "team_rosters": [ - 3730 + 3750 ], "team_rosters_aggregate": [ - 3721 + 3741 ], "tournament_team_rosters": [ - 4235 + 4255 ], "tournament_team_rosters_aggregate": [ - 4228 + 4248 ], "value": [ 80 @@ -15439,19 +15653,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1022 + 1042 ], "_in": [ - 1022 + 1042 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1042 ], "_nin": [ - 1022 + 1042 ], "__typename": [ 78 @@ -15462,10 +15676,10 @@ export default { 78 ], "team_rosters": [ - 3727 + 3747 ], "tournament_team_rosters": [ - 4232 + 4252 ], "value": [ 78 @@ -15501,7 +15715,7 @@ export default { 38 ], "returning": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15509,10 +15723,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1024 + 1044 ], "on_conflict": [ - 1029 + 1049 ], "__typename": [ 78 @@ -15520,13 +15734,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1021 + 1041 ], "update_columns": [ - 1036 + 1056 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15534,16 +15748,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2461 + 2481 ], "team_rosters_aggregate": [ - 3726 + 3746 ], "tournament_team_rosters_aggregate": [ - 4231 + 4251 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -15571,7 +15785,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1035 + 1055 ], "ordering": [ 236 @@ -15594,10 +15808,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1033 + 1053 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15616,10 +15830,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1040 + 1060 ], "nodes": [ - 1038 + 1058 ], "__typename": [ 78 @@ -15630,7 +15844,7 @@ export default { 38, { "columns": [ - 1052, + 1072, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -15639,10 +15853,10 @@ export default { } ], "max": [ - 1046 + 1066 ], "min": [ - 1047 + 1067 ], "__typename": [ 78 @@ -15650,13 +15864,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1041 + 1061 ], "_not": [ - 1041 + 1061 ], "_or": [ - 1041 + 1061 ], "description": [ 80 @@ -15672,19 +15886,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1043 + 1063 ], "_in": [ - 1043 + 1063 ], "_is_null": [ 3 ], "_neq": [ - 1043 + 1063 ], "_nin": [ - 1043 + 1063 ], "__typename": [ 78 @@ -15728,7 +15942,7 @@ export default { 38 ], "returning": [ - 1038 + 1058 ], "__typename": [ 78 @@ -15736,13 +15950,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1042 + 1062 ], "update_columns": [ - 1056 + 1076 ], "where": [ - 1041 + 1061 ], "__typename": [ 78 @@ -15750,10 +15964,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -15781,7 +15995,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1055 + 1075 ], "ordering": [ 236 @@ -15804,10 +16018,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1053 + 1073 ], "where": [ - 1041 + 1061 ], "__typename": [ 78 @@ -15826,10 +16040,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1060 + 1080 ], "nodes": [ - 1058 + 1078 ], "__typename": [ 78 @@ -15840,7 +16054,7 @@ export default { 38, { "columns": [ - 1072, + 1092, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -15849,10 +16063,10 @@ export default { } ], "max": [ - 1066 + 1086 ], "min": [ - 1067 + 1087 ], "__typename": [ 78 @@ -15860,13 +16074,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1061 + 1081 ], "_not": [ - 1061 + 1081 ], "_or": [ - 1061 + 1081 ], "description": [ 80 @@ -15882,19 +16096,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1063 + 1083 ], "_in": [ - 1063 + 1083 ], "_is_null": [ 3 ], "_neq": [ - 1063 + 1083 ], "_nin": [ - 1063 + 1083 ], "__typename": [ 78 @@ -15938,7 +16152,7 @@ export default { 38 ], "returning": [ - 1058 + 1078 ], "__typename": [ 78 @@ -15946,13 +16160,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1062 + 1082 ], "update_columns": [ - 1076 + 1096 ], "where": [ - 1061 + 1081 ], "__typename": [ 78 @@ -15960,10 +16174,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -15991,7 +16205,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1075 + 1095 ], "ordering": [ 236 @@ -16014,10 +16228,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1073 + 1093 ], "where": [ - 1061 + 1081 ], "__typename": [ 78 @@ -16028,10 +16242,10 @@ export default { 78 ], "tournament_stages": [ - 4134, + 4154, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -16041,19 +16255,19 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "tournament_stages_aggregate": [ - 4135, + 4155, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -16063,11 +16277,11 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], @@ -16080,10 +16294,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1080 + 1100 ], "nodes": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16094,7 +16308,7 @@ export default { 38, { "columns": [ - 1093, + 1113, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16103,10 +16317,10 @@ export default { } ], "max": [ - 1086 + 1106 ], "min": [ - 1087 + 1107 ], "__typename": [ 78 @@ -16114,22 +16328,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1081 + 1101 ], "_not": [ - 1081 + 1101 ], "_or": [ - 1081 + 1101 ], "description": [ 80 ], "tournament_stages": [ - 4146 + 4166 ], "tournament_stages_aggregate": [ - 4136 + 4156 ], "value": [ 80 @@ -16142,19 +16356,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1083 + 1103 ], "_in": [ - 1083 + 1103 ], "_is_null": [ 3 ], "_neq": [ - 1083 + 1103 ], "_nin": [ - 1083 + 1103 ], "__typename": [ 78 @@ -16165,7 +16379,7 @@ export default { 78 ], "tournament_stages": [ - 4143 + 4163 ], "value": [ 78 @@ -16201,7 +16415,7 @@ export default { 38 ], "returning": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16209,10 +16423,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1085 + 1105 ], "on_conflict": [ - 1090 + 1110 ], "__typename": [ 78 @@ -16220,13 +16434,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1082 + 1102 ], "update_columns": [ - 1097 + 1117 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16234,13 +16448,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2461 + 2481 ], "tournament_stages_aggregate": [ - 4141 + 4161 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -16268,7 +16482,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1096 + 1116 ], "ordering": [ 236 @@ -16291,10 +16505,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1094 + 1114 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16305,10 +16519,10 @@ export default { 78 ], "tournaments": [ - 4396, + 4416, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -16318,19 +16532,19 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_aggregate": [ - 4397, + 4417, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -16340,11 +16554,11 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], @@ -16357,10 +16571,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1101 + 1121 ], "nodes": [ - 1099 + 1119 ], "__typename": [ 78 @@ -16371,7 +16585,7 @@ export default { 38, { "columns": [ - 1114, + 1134, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -16380,10 +16594,10 @@ export default { } ], "max": [ - 1107 + 1127 ], "min": [ - 1108 + 1128 ], "__typename": [ 78 @@ -16391,22 +16605,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1102 + 1122 ], "_not": [ - 1102 + 1122 ], "_or": [ - 1102 + 1122 ], "description": [ 80 ], "tournaments": [ - 4407 + 4427 ], "tournaments_aggregate": [ - 4398 + 4418 ], "value": [ 80 @@ -16419,19 +16633,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1104 + 1124 ], "_in": [ - 1104 + 1124 ], "_is_null": [ 3 ], "_neq": [ - 1104 + 1124 ], "_nin": [ - 1104 + 1124 ], "__typename": [ 78 @@ -16442,7 +16656,7 @@ export default { 78 ], "tournaments": [ - 4404 + 4424 ], "value": [ 78 @@ -16478,7 +16692,7 @@ export default { 38 ], "returning": [ - 1099 + 1119 ], "__typename": [ 78 @@ -16486,10 +16700,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1106 + 1126 ], "on_conflict": [ - 1111 + 1131 ], "__typename": [ 78 @@ -16497,13 +16711,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1103 + 1123 ], "update_columns": [ - 1118 + 1138 ], "where": [ - 1102 + 1122 ], "__typename": [ 78 @@ -16511,13 +16725,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2461 + 2481 ], "tournaments_aggregate": [ - 4403 + 4423 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -16545,7 +16759,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1117 + 1137 ], "ordering": [ 236 @@ -16568,10 +16782,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1115 + 1135 ], "where": [ - 1102 + 1122 ], "__typename": [ 78 @@ -16582,10 +16796,10 @@ export default { 78 ], "player_utilities": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -16595,19 +16809,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utilities_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -16617,11 +16831,11 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], @@ -16634,10 +16848,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1122 + 1142 ], "nodes": [ - 1120 + 1140 ], "__typename": [ 78 @@ -16648,7 +16862,7 @@ export default { 38, { "columns": [ - 1134, + 1154, "[e_utility_types_select_column!]" ], "distinct": [ @@ -16657,10 +16871,10 @@ export default { } ], "max": [ - 1128 + 1148 ], "min": [ - 1129 + 1149 ], "__typename": [ 78 @@ -16668,22 +16882,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1123 + 1143 ], "_not": [ - 1123 + 1143 ], "_or": [ - 1123 + 1143 ], "description": [ 80 ], "player_utilities": [ - 3354 + 3374 ], "player_utilities_aggregate": [ - 3347 + 3367 ], "value": [ 80 @@ -16696,19 +16910,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1125 + 1145 ], "_in": [ - 1125 + 1145 ], "_is_null": [ 3 ], "_neq": [ - 1125 + 1145 ], "_nin": [ - 1125 + 1145 ], "__typename": [ 78 @@ -16719,7 +16933,7 @@ export default { 78 ], "player_utilities": [ - 3351 + 3371 ], "value": [ 78 @@ -16755,7 +16969,7 @@ export default { 38 ], "returning": [ - 1120 + 1140 ], "__typename": [ 78 @@ -16763,13 +16977,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1124 + 1144 ], "update_columns": [ - 1138 + 1158 ], "where": [ - 1123 + 1143 ], "__typename": [ 78 @@ -16777,13 +16991,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2461 + 2481 ], "player_utilities_aggregate": [ - 3350 + 3370 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -16811,7 +17025,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1137 + 1157 ], "ordering": [ 236 @@ -16834,10 +17048,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1135 + 1155 ], "where": [ - 1123 + 1143 ], "__typename": [ 78 @@ -16848,10 +17062,10 @@ export default { 78 ], "match_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -16861,19 +17075,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -16883,11 +17097,11 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], @@ -16900,10 +17114,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1142 + 1162 ], "nodes": [ - 1140 + 1160 ], "__typename": [ 78 @@ -16914,7 +17128,7 @@ export default { 38, { "columns": [ - 1154, + 1174, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -16923,10 +17137,10 @@ export default { } ], "max": [ - 1148 + 1168 ], "min": [ - 1149 + 1169 ], "__typename": [ 78 @@ -16934,22 +17148,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1143 + 1163 ], "_not": [ - 1143 + 1163 ], "_or": [ - 1143 + 1163 ], "description": [ 80 ], "match_veto_picks": [ - 2097 + 2117 ], "match_veto_picks_aggregate": [ - 2092 + 2112 ], "value": [ 80 @@ -16962,19 +17176,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1145 + 1165 ], "_in": [ - 1145 + 1165 ], "_is_null": [ 3 ], "_neq": [ - 1145 + 1165 ], "_nin": [ - 1145 + 1165 ], "__typename": [ 78 @@ -16985,7 +17199,7 @@ export default { 78 ], "match_veto_picks": [ - 2096 + 2116 ], "value": [ 78 @@ -17021,7 +17235,7 @@ export default { 38 ], "returning": [ - 1140 + 1160 ], "__typename": [ 78 @@ -17029,13 +17243,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1144 + 1164 ], "update_columns": [ - 1158 + 1178 ], "where": [ - 1143 + 1163 ], "__typename": [ 78 @@ -17043,13 +17257,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2461 + 2481 ], "match_veto_picks_aggregate": [ - 2095 + 2115 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -17077,7 +17291,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1157 + 1177 ], "ordering": [ 236 @@ -17100,10 +17314,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1155 + 1175 ], "where": [ - 1143 + 1163 ], "__typename": [ 78 @@ -17122,10 +17336,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1162 + 1182 ], "nodes": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17136,7 +17350,7 @@ export default { 38, { "columns": [ - 1174, + 1194, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17145,10 +17359,10 @@ export default { } ], "max": [ - 1168 + 1188 ], "min": [ - 1169 + 1189 ], "__typename": [ 78 @@ -17156,13 +17370,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1163 + 1183 ], "_not": [ - 1163 + 1183 ], "_or": [ - 1163 + 1183 ], "description": [ 80 @@ -17178,19 +17392,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1165 + 1185 ], "_in": [ - 1165 + 1185 ], "_is_null": [ 3 ], "_neq": [ - 1165 + 1185 ], "_nin": [ - 1165 + 1185 ], "__typename": [ 78 @@ -17234,7 +17448,7 @@ export default { 38 ], "returning": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17242,13 +17456,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1164 + 1184 ], "update_columns": [ - 1178 + 1198 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17256,10 +17470,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -17287,7 +17501,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1177 + 1197 ], "ordering": [ 236 @@ -17310,10 +17524,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1175 + 1195 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17322,31 +17536,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1180 + 1200 ], "_gt": [ - 1180 + 1200 ], "_gte": [ - 1180 + 1200 ], "_in": [ - 1180 + 1200 ], "_is_null": [ 3 ], "_lt": [ - 1180 + 1200 ], "_lte": [ - 1180 + 1200 ], "_neq": [ - 1180 + 1200 ], "_nin": [ - 1180 + 1200 ], "__typename": [ 78 @@ -17371,10 +17585,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1184 + 1204 ], "nodes": [ - 1182 + 1202 ], "__typename": [ 78 @@ -17382,13 +17596,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1185 + 1205 ], "count": [ 38, { "columns": [ - 1196, + 1216, "[friends_select_column!]" ], "distinct": [ @@ -17397,31 +17611,31 @@ export default { } ], "max": [ - 1190 + 1210 ], "min": [ - 1191 + 1211 ], "stddev": [ - 1198 + 1218 ], "stddev_pop": [ - 1199 + 1219 ], "stddev_samp": [ - 1200 + 1220 ], "sum": [ - 1203 + 1223 ], "var_pop": [ - 1206 + 1226 ], "var_samp": [ - 1207 + 1227 ], "variance": [ - 1208 + 1228 ], "__typename": [ 78 @@ -17440,13 +17654,13 @@ export default { }, "friends_bool_exp": { "_and": [ - 1186 + 1206 ], "_not": [ - 1186 + 1206 ], "_or": [ - 1186 + 1206 ], "e_status": [ 528 @@ -17520,7 +17734,7 @@ export default { 38 ], "returning": [ - 1182 + 1202 ], "__typename": [ 78 @@ -17528,13 +17742,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1187 + 1207 ], "update_columns": [ - 1204 + 1224 ], "where": [ - 1186 + 1206 ], "__typename": [ 78 @@ -17545,13 +17759,13 @@ export default { 538 ], "other_player_steam_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "__typename": [ 78 @@ -17618,7 +17832,7 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1202 + 1222 ], "ordering": [ 236 @@ -17655,13 +17869,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1188 + 1208 ], "_set": [ - 1197 + 1217 ], "where": [ - 1186 + 1206 ], "__typename": [ 78 @@ -17711,7 +17925,7 @@ export default { 38 ], "cpu_frequency_info": [ - 1332, + 1352, { "path": [ 78 @@ -17719,7 +17933,7 @@ export default { } ], "cpu_governor_info": [ - 1332, + 1352, { "path": [ 78 @@ -17733,7 +17947,7 @@ export default { 38 ], "cs2_launch_options": [ - 1332, + 1352, { "path": [ 78 @@ -17741,7 +17955,7 @@ export default { } ], "cs2_video_settings": [ - 1332, + 1352, { "path": [ 78 @@ -17761,7 +17975,7 @@ export default { 38 ], "e_region": [ - 3506 + 3526 ], "e_status": [ 566 @@ -17782,7 +17996,7 @@ export default { 3 ], "gpu_info": [ - 1332, + 1352, { "path": [ 78 @@ -17802,37 +18016,40 @@ export default { 78 ], "lan_ip": [ - 1328 + 1348 ], "node_ip": [ - 1328 + 1348 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], "pinned_version": [ - 1260 + 1280 ], "plugin_supported": [ 3 ], "public_ip": [ - 1328 + 1348 ], "region": [ 78 ], "servers": [ - 3533, + 3553, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -17842,19 +18059,19 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_aggregate": [ - 3534, + 3554, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -17864,16 +18081,16 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -17882,7 +18099,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1332, + 1352, { "path": [ 78 @@ -17911,7 +18128,7 @@ export default { 78 ], "version": [ - 1260 + 1280 ], "__typename": [ 78 @@ -17919,10 +18136,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1215 + 1235 ], "nodes": [ - 1209 + 1229 ], "__typename": [ 78 @@ -17930,13 +18147,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1212 + 1232 ], "bool_or": [ - 1213 + 1233 ], "count": [ - 1214 + 1234 ], "__typename": [ 78 @@ -17944,13 +18161,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1239 + 1259 ], "distinct": [ 3 ], "filter": [ - 1221 + 1241 ], "predicate": [ 4 @@ -17961,13 +18178,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1240 + 1260 ], "distinct": [ 3 ], "filter": [ - 1221 + 1241 ], "predicate": [ 4 @@ -17978,13 +18195,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1238 + 1258 ], "distinct": [ 3 ], "filter": [ - 1221 + 1241 ], "predicate": [ 39 @@ -17995,13 +18212,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1219 + 1239 ], "count": [ 38, { "columns": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -18010,31 +18227,31 @@ export default { } ], "max": [ - 1228 + 1248 ], "min": [ - 1230 + 1250 ], "stddev": [ - 1242 + 1262 ], "stddev_pop": [ - 1244 + 1264 ], "stddev_samp": [ - 1246 + 1266 ], "sum": [ - 1250 + 1270 ], "var_pop": [ - 1254 + 1274 ], "var_samp": [ - 1256 + 1276 ], "variance": [ - 1258 + 1278 ], "__typename": [ 78 @@ -18042,37 +18259,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1220 + 1240 ], "count": [ - 2461 + 2481 ], "max": [ - 1229 + 1249 ], "min": [ - 1231 + 1251 ], "stddev": [ - 1243 + 1263 ], "stddev_pop": [ - 1245 + 1265 ], "stddev_samp": [ - 1247 + 1267 ], "sum": [ - 1251 + 1271 ], "var_pop": [ - 1255 + 1275 ], "var_samp": [ - 1257 + 1277 ], "variance": [ - 1259 + 1279 ], "__typename": [ 78 @@ -18080,22 +18297,22 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1332 + 1352 ], "cpu_governor_info": [ - 1332 + 1352 ], "cs2_launch_options": [ - 1332 + 1352 ], "cs2_video_settings": [ - 1332 + 1352 ], "gpu_info": [ - 1332 + 1352 ], "shader_bake_status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -18103,10 +18320,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1227 + 1247 ], "on_conflict": [ - 1234 + 1254 ], "__typename": [ 78 @@ -18161,40 +18378,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -18202,13 +18419,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1221 + 1241 ], "_not": [ - 1221 + 1241 ], "_or": [ - 1221 + 1241 ], "available_server_count": [ 39 @@ -18220,10 +18437,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1334 + 1354 ], "cpu_governor_info": [ - 1334 + 1354 ], "cpu_sockets": [ 39 @@ -18232,10 +18449,10 @@ export default { 39 ], "cs2_launch_options": [ - 1334 + 1354 ], "cs2_video_settings": [ - 1334 + 1354 ], "csgo_build_id": [ 39 @@ -18250,7 +18467,7 @@ export default { 39 ], "e_region": [ - 3510 + 3530 ], "e_status": [ 569 @@ -18271,7 +18488,7 @@ export default { 4 ], "gpu_info": [ - 1334 + 1354 ], "gpu_rendering_enabled": [ 4 @@ -18286,40 +18503,43 @@ export default { 80 ], "lan_ip": [ - 1329 + 1349 ], "node_ip": [ - 1329 + 1349 ], "offline_at": [ - 4005 + 4025 ], "pin_build_id": [ 39 ], + "pin_plugin_runtime": [ + 80 + ], "pin_plugin_version": [ 80 ], "pinned_version": [ - 1265 + 1285 ], "plugin_supported": [ 4 ], "public_ip": [ - 1329 + 1349 ], "region": [ 80 ], "servers": [ - 3544 + 3564 ], "servers_aggregate": [ - 3535 + 3555 ], "shader_bake_progress": [ - 2460 + 2480 ], "shader_bake_progress_stage": [ 80 @@ -18328,7 +18548,7 @@ export default { 80 ], "shader_bake_status_history": [ - 1334 + 1354 ], "start_port_range": [ 39 @@ -18352,7 +18572,7 @@ export default { 80 ], "version": [ - 1265 + 1285 ], "__typename": [ 78 @@ -18460,7 +18680,7 @@ export default { 38 ], "shader_bake_progress": [ - 2459 + 2479 ], "start_port_range": [ 38 @@ -18477,10 +18697,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1332 + 1352 ], "cpu_governor_info": [ - 1332 + 1352 ], "cpu_sockets": [ 38 @@ -18489,10 +18709,10 @@ export default { 38 ], "cs2_launch_options": [ - 1332 + 1352 ], "cs2_video_settings": [ - 1332 + 1352 ], "csgo_build_id": [ 38 @@ -18507,7 +18727,7 @@ export default { 38 ], "e_region": [ - 3516 + 3536 ], "e_status": [ 577 @@ -18528,7 +18748,7 @@ export default { 3 ], "gpu_info": [ - 1332 + 1352 ], "gpu_rendering_enabled": [ 3 @@ -18543,34 +18763,37 @@ export default { 78 ], "lan_ip": [ - 1328 + 1348 ], "node_ip": [ - 1328 + 1348 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], "pinned_version": [ - 1275 + 1295 ], "public_ip": [ - 1328 + 1348 ], "region": [ 78 ], "servers": [ - 3541 + 3561 ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -18579,7 +18802,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1332 + 1352 ], "start_port_range": [ 38 @@ -18600,7 +18823,7 @@ export default { 78 ], "version": [ - 1275 + 1295 ], "__typename": [ 78 @@ -18644,11 +18867,14 @@ export default { 78 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], @@ -18656,7 +18882,7 @@ export default { 78 ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -18682,67 +18908,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 + ], + "pin_plugin_runtime": [ + 2481 ], "pin_plugin_version": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "shader_bake_progress_stage": [ - 2461 + 2481 ], "shader_bake_status": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "token": [ - 2461 + 2481 ], "update_status": [ - 2461 + 2481 ], "__typename": [ 78 @@ -18786,11 +19015,14 @@ export default { 78 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], @@ -18798,7 +19030,7 @@ export default { 78 ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -18824,67 +19056,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 + ], + "pin_plugin_runtime": [ + 2481 ], "pin_plugin_version": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "shader_bake_progress_stage": [ - 2461 + 2481 ], "shader_bake_status": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "token": [ - 2461 + 2481 ], "update_status": [ - 2461 + 2481 ], "__typename": [ 78 @@ -18895,7 +19130,7 @@ export default { 38 ], "returning": [ - 1209 + 1229 ], "__typename": [ 78 @@ -18903,10 +19138,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1227 + 1247 ], "on_conflict": [ - 1234 + 1254 ], "__typename": [ 78 @@ -18914,13 +19149,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1222 + 1242 ], "update_columns": [ - 1252 + 1272 ], "where": [ - 1221 + 1241 ], "__typename": [ 78 @@ -18928,145 +19163,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2461 + 2481 ], "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_frequency_info": [ - 2461 + 2481 ], "cpu_governor_info": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "cs2_launch_options": [ - 2461 + 2481 ], "cs2_video_settings": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "e_region": [ - 3518 + 3538 ], "e_status": [ 579 ], "enabled": [ - 2461 + 2481 ], "enabled_for_match_making": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "gpu": [ - 2461 + 2481 ], "gpu_demos_enabled": [ - 2461 + 2481 ], "gpu_info": [ - 2461 + 2481 ], "gpu_rendering_enabled": [ - 2461 + 2481 ], "gpu_streaming_enabled": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "lan_ip": [ - 2461 + 2481 ], "node_ip": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 + ], + "pin_plugin_runtime": [ + 2481 ], "pin_plugin_version": [ - 2461 + 2481 ], "pinned_version": [ - 1277 + 1297 ], "plugin_supported": [ - 2461 + 2481 ], "public_ip": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "servers_aggregate": [ - 3540 + 3560 ], "shader_bake_progress": [ - 2461 + 2481 ], "shader_bake_progress_stage": [ - 2461 + 2481 ], "shader_bake_status": [ - 2461 + 2481 ], "shader_bake_status_history": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "supports_cpu_pinning": [ - 2461 + 2481 ], "supports_low_latency": [ - 2461 + 2481 ], "token": [ - 2461 + 2481 ], "total_server_count": [ - 2461 + 2481 ], "update_status": [ - 2461 + 2481 ], "version": [ - 1277 + 1297 ], "__typename": [ 78 @@ -19082,22 +19320,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1332 + 1352 ], "cpu_governor_info": [ - 1332 + 1352 ], "cs2_launch_options": [ - 1332 + 1352 ], "cs2_video_settings": [ - 1332 + 1352 ], "gpu_info": [ - 1332 + 1352 ], "shader_bake_status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -19114,10 +19352,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1332 + 1352 ], "cpu_governor_info": [ - 1332 + 1352 ], "cpu_sockets": [ 38 @@ -19126,10 +19364,10 @@ export default { 38 ], "cs2_launch_options": [ - 1332 + 1352 ], "cs2_video_settings": [ - 1332 + 1352 ], "csgo_build_id": [ 38 @@ -19159,7 +19397,7 @@ export default { 3 ], "gpu_info": [ - 1332 + 1352 ], "gpu_rendering_enabled": [ 3 @@ -19174,28 +19412,31 @@ export default { 78 ], "lan_ip": [ - 1328 + 1348 ], "node_ip": [ - 1328 + 1348 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], "public_ip": [ - 1328 + 1348 ], "region": [ 78 ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -19204,7 +19445,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1332 + 1352 ], "start_port_range": [ 38 @@ -19277,40 +19518,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19365,40 +19606,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19453,40 +19694,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19494,7 +19735,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1249 + 1269 ], "ordering": [ 236 @@ -19511,10 +19752,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1332 + 1352 ], "cpu_governor_info": [ - 1332 + 1352 ], "cpu_sockets": [ 38 @@ -19523,10 +19764,10 @@ export default { 38 ], "cs2_launch_options": [ - 1332 + 1352 ], "cs2_video_settings": [ - 1332 + 1352 ], "csgo_build_id": [ 38 @@ -19556,7 +19797,7 @@ export default { 3 ], "gpu_info": [ - 1332 + 1352 ], "gpu_rendering_enabled": [ 3 @@ -19571,28 +19812,31 @@ export default { 78 ], "lan_ip": [ - 1328 + 1348 ], "node_ip": [ - 1328 + 1348 ], "offline_at": [ - 4004 + 4024 ], "pin_build_id": [ 38 ], + "pin_plugin_runtime": [ + 78 + ], "pin_plugin_version": [ 78 ], "public_ip": [ - 1328 + 1348 ], "region": [ 78 ], "shader_bake_progress": [ - 2459 + 2479 ], "shader_bake_progress_stage": [ 78 @@ -19601,7 +19845,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1332 + 1352 ], "start_port_range": [ 38 @@ -19660,7 +19904,7 @@ export default { 38 ], "shader_bake_progress": [ - 2459 + 2479 ], "start_port_range": [ 38 @@ -19674,40 +19918,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19716,28 +19960,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1217 + 1237 ], "_delete_at_path": [ - 1223 + 1243 ], "_delete_elem": [ - 1224 + 1244 ], "_delete_key": [ - 1225 + 1245 ], "_inc": [ - 1226 + 1246 ], "_prepend": [ - 1237 + 1257 ], "_set": [ - 1241 + 1261 ], "where": [ - 1221 + 1241 ], "__typename": [ 78 @@ -19792,40 +20036,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19880,40 +20124,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -19968,40 +20212,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2461 + 2481 ], "cpu_cores_per_socket": [ - 2461 + 2481 ], "cpu_sockets": [ - 2461 + 2481 ], "cpu_threads_per_core": [ - 2461 + 2481 ], "csgo_build_id": [ - 2461 + 2481 ], "demo_network_limiter": [ - 2461 + 2481 ], "disk_available_gb": [ - 2461 + 2481 ], "disk_used_percent": [ - 2461 + 2481 ], "end_port_range": [ - 2461 + 2481 ], "pin_build_id": [ - 2461 + 2481 ], "shader_bake_progress": [ - 2461 + 2481 ], "start_port_range": [ - 2461 + 2481 ], "__typename": [ 78 @@ -20021,7 +20265,7 @@ export default { 78 ], "downloads": [ - 1332, + 1352, { "path": [ 78 @@ -20029,7 +20273,7 @@ export default { } ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20040,10 +20284,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1262 + 1282 ], "nodes": [ - 1260 + 1280 ], "__typename": [ 78 @@ -20051,13 +20295,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1264 + 1284 ], "count": [ 38, { "columns": [ - 1280, + 1300, "[game_versions_select_column!]" ], "distinct": [ @@ -20066,31 +20310,31 @@ export default { } ], "max": [ - 1272 + 1292 ], "min": [ - 1273 + 1293 ], "stddev": [ - 1282 + 1302 ], "stddev_pop": [ - 1283 + 1303 ], "stddev_samp": [ - 1284 + 1304 ], "sum": [ - 1287 + 1307 ], "var_pop": [ - 1290 + 1310 ], "var_samp": [ - 1291 + 1311 ], "variance": [ - 1292 + 1312 ], "__typename": [ 78 @@ -20098,7 +20342,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1332 + 1352 ], "__typename": [ 78 @@ -20114,13 +20358,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1265 + 1285 ], "_not": [ - 1265 + 1285 ], "_or": [ - 1265 + 1285 ], "build_id": [ 39 @@ -20135,10 +20379,10 @@ export default { 80 ], "downloads": [ - 1334 + 1354 ], "updated_at": [ - 4005 + 4025 ], "version": [ 80 @@ -20194,10 +20438,10 @@ export default { 78 ], "downloads": [ - 1332 + 1352 ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20214,7 +20458,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20231,7 +20475,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20245,7 +20489,7 @@ export default { 38 ], "returning": [ - 1260 + 1280 ], "__typename": [ 78 @@ -20253,10 +20497,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1271 + 1291 ], "on_conflict": [ - 1276 + 1296 ], "__typename": [ 78 @@ -20264,13 +20508,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1266 + 1286 ], "update_columns": [ - 1288 + 1308 ], "where": [ - 1265 + 1285 ], "__typename": [ 78 @@ -20278,25 +20522,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2461 + 2481 ], "current": [ - 2461 + 2481 ], "cvars": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "downloads": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "version": [ - 2461 + 2481 ], "__typename": [ 78 @@ -20312,7 +20556,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1332 + 1352 ], "__typename": [ 78 @@ -20333,10 +20577,10 @@ export default { 78 ], "downloads": [ - 1332 + 1352 ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20371,7 +20615,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1286 + 1306 ], "ordering": [ 236 @@ -20394,10 +20638,10 @@ export default { 78 ], "downloads": [ - 1332 + 1352 ], "updated_at": [ - 4004 + 4024 ], "version": [ 78 @@ -20417,28 +20661,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1263 + 1283 ], "_delete_at_path": [ - 1267 + 1287 ], "_delete_elem": [ - 1268 + 1288 ], "_delete_key": [ - 1269 + 1289 ], "_inc": [ - 1270 + 1290 ], "_prepend": [ - 1279 + 1299 ], "_set": [ - 1281 + 1301 ], "where": [ - 1265 + 1285 ], "__typename": [ 78 @@ -20476,13 +20720,13 @@ export default { 38 ], "game_version": [ - 1260 + 1280 ], "id": [ - 4442 + 4462 ], "results": [ - 1332, + 1352, { "path": [ 78 @@ -20493,7 +20737,7 @@ export default { 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20501,10 +20745,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1295 + 1315 ], "nodes": [ - 1293 + 1313 ], "__typename": [ 78 @@ -20512,13 +20756,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1297 + 1317 ], "count": [ 38, { "columns": [ - 1312, + 1332, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -20527,31 +20771,31 @@ export default { } ], "max": [ - 1305 + 1325 ], "min": [ - 1306 + 1326 ], "stddev": [ - 1314 + 1334 ], "stddev_pop": [ - 1315 + 1335 ], "stddev_samp": [ - 1316 + 1336 ], "sum": [ - 1319 + 1339 ], "var_pop": [ - 1322 + 1342 ], "var_samp": [ - 1323 + 1343 ], "variance": [ - 1324 + 1344 ], "__typename": [ 78 @@ -20559,7 +20803,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1332 + 1352 ], "__typename": [ 78 @@ -20575,13 +20819,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1298 + 1318 ], "_not": [ - 1298 + 1318 ], "_or": [ - 1298 + 1318 ], "branch": [ 80 @@ -20590,19 +20834,19 @@ export default { 39 ], "game_version": [ - 1265 + 1285 ], "id": [ - 4444 + 4464 ], "results": [ - 1334 + 1354 ], "status": [ 80 ], "validated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -20649,19 +20893,19 @@ export default { 38 ], "game_version": [ - 1275 + 1295 ], "id": [ - 4442 + 4462 ], "results": [ - 1332 + 1352 ], "status": [ 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20675,13 +20919,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "status": [ 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20695,13 +20939,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "status": [ 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20712,7 +20956,7 @@ export default { 38 ], "returning": [ - 1293 + 1313 ], "__typename": [ 78 @@ -20720,13 +20964,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1299 + 1319 ], "update_columns": [ - 1320 + 1340 ], "where": [ - 1298 + 1318 ], "__typename": [ 78 @@ -20734,25 +20978,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2461 + 2481 ], "build_id": [ - 2461 + 2481 ], "game_version": [ - 1277 + 1297 ], "id": [ - 2461 + 2481 ], "results": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "validated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -20760,7 +21004,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -20768,7 +21012,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1332 + 1352 ], "__typename": [ 78 @@ -20783,16 +21027,16 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "results": [ - 1332 + 1352 ], "status": [ 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20824,7 +21068,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1318 + 1338 ], "ordering": [ 236 @@ -20841,16 +21085,16 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "results": [ - 1332 + 1352 ], "status": [ 78 ], "validated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -20867,28 +21111,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1296 + 1316 ], "_delete_at_path": [ - 1300 + 1320 ], "_delete_elem": [ - 1301 + 1321 ], "_delete_key": [ - 1302 + 1322 ], "_inc": [ - 1303 + 1323 ], "_prepend": [ - 1311 + 1331 ], "_set": [ - 1313 + 1333 ], "where": [ - 1298 + 1318 ], "__typename": [ 78 @@ -20932,7 +21176,7 @@ export default { 78 ], "_season_id": [ - 4442 + 4462 ], "_window_days": [ 38 @@ -20946,7 +21190,7 @@ export default { 78 ], "_league_season_id": [ - 4442 + 4462 ], "_role": [ 78 @@ -20969,7 +21213,7 @@ export default { 78 ], "_season_id": [ - 4442 + 4462 ], "_window_days": [ 38 @@ -20981,31 +21225,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1328 + 1348 ], "_gt": [ - 1328 + 1348 ], "_gte": [ - 1328 + 1348 ], "_in": [ - 1328 + 1348 ], "_is_null": [ 3 ], "_lt": [ - 1328 + 1348 ], "_lte": [ - 1328 + 1348 ], "_neq": [ - 1328 + 1348 ], "_nin": [ - 1328 + 1348 ], "__typename": [ 78 @@ -21014,31 +21258,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1330 + 1350 ], "_gt": [ - 1330 + 1350 ], "_gte": [ - 1330 + 1350 ], "_in": [ - 1330 + 1350 ], "_is_null": [ 3 ], "_lt": [ - 1330 + 1350 ], "_lte": [ - 1330 + 1350 ], "_neq": [ - 1330 + 1350 ], "_nin": [ - 1330 + 1350 ], "__typename": [ 78 @@ -21055,22 +21299,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1333 + 1353 ], "_contained_in": [ - 1332 + 1352 ], "_contains": [ - 1332 + 1352 ], "_eq": [ - 1332 + 1352 ], "_gt": [ - 1332 + 1352 ], "_gte": [ - 1332 + 1352 ], "_has_key": [ 78 @@ -21082,22 +21326,22 @@ export default { 78 ], "_in": [ - 1332 + 1352 ], "_is_null": [ 3 ], "_lt": [ - 1332 + 1352 ], "_lte": [ - 1332 + 1352 ], "_neq": [ - 1332 + 1352 ], "_nin": [ - 1332 + 1352 ], "__typename": [ 78 @@ -21120,13 +21364,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21134,10 +21378,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1337 + 1357 ], "nodes": [ - 1335 + 1355 ], "__typename": [ 78 @@ -21145,13 +21389,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1338 + 1358 ], "count": [ 38, { "columns": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -21160,31 +21404,31 @@ export default { } ], "max": [ - 1342 + 1362 ], "min": [ - 1343 + 1363 ], "stddev": [ - 1348 + 1368 ], "stddev_pop": [ - 1349 + 1369 ], "stddev_samp": [ - 1350 + 1370 ], "sum": [ - 1353 + 1373 ], "var_pop": [ - 1355 + 1375 ], "var_samp": [ - 1356 + 1376 ], "variance": [ - 1357 + 1377 ], "__typename": [ 78 @@ -21209,13 +21453,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1339 + 1359 ], "_not": [ - 1339 + 1359 ], "_or": [ - 1339 + 1359 ], "matches_played": [ 39 @@ -21233,13 +21477,13 @@ export default { 80 ], "secondary_value": [ - 1181 + 1201 ], "tertiary_value": [ - 1181 + 1201 ], "value": [ - 1181 + 1201 ], "__typename": [ 78 @@ -21250,13 +21494,13 @@ export default { 38 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21279,13 +21523,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21308,13 +21552,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21337,13 +21581,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21354,7 +21598,7 @@ export default { 38 ], "returning": [ - 1335 + 1355 ], "__typename": [ 78 @@ -21362,28 +21606,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2461 + 2481 ], "player_avatar_url": [ - 2461 + 2481 ], "player_country": [ - 2461 + 2481 ], "player_name": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "secondary_value": [ - 2461 + 2481 ], "tertiary_value": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -21407,13 +21651,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21472,7 +21716,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1352 + 1372 ], "ordering": [ 236 @@ -21498,13 +21742,13 @@ export default { 78 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21515,13 +21759,13 @@ export default { 38 ], "secondary_value": [ - 1180 + 1200 ], "tertiary_value": [ - 1180 + 1200 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -21529,13 +21773,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1340 + 1360 ], "_set": [ - 1347 + 1367 ], "where": [ - 1339 + 1359 ], "__typename": [ 78 @@ -21594,33 +21838,30 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4442 + 4462 ], "_winning_tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 ] }, "league_divisions": { - "active": [ - 3 - ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "season_divisions": [ - 1510, + 1530, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21630,19 +21871,19 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "season_divisions_aggregate": [ - 1511, + 1531, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21652,16 +21893,16 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21669,10 +21910,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1361 + 1381 ], "nodes": [ - 1359 + 1379 ], "__typename": [ 78 @@ -21680,13 +21921,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1362 + 1382 ], "count": [ 38, { "columns": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "distinct": [ @@ -21695,31 +21936,31 @@ export default { } ], "max": [ - 1367 + 1387 ], "min": [ - 1368 + 1388 ], "stddev": [ - 1376 + 1396 ], "stddev_pop": [ - 1377 + 1397 ], "stddev_samp": [ - 1378 + 1398 ], "sum": [ - 1381 + 1401 ], "var_pop": [ - 1384 + 1404 ], "var_samp": [ - 1385 + 1405 ], "variance": [ - 1386 + 1406 ], "__typename": [ 78 @@ -21735,34 +21976,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1363 + 1383 ], "_not": [ - 1363 + 1383 ], "_or": [ - 1363 - ], - "active": [ - 4 + 1383 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "name": [ 80 ], "season_divisions": [ - 1517 + 1537 ], "season_divisions_aggregate": [ - 1512 + 1532 ], "tier": [ - 3598 + 3618 ], "__typename": [ 78 @@ -21771,30 +22009,27 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3597 + 3617 ], "__typename": [ 78 ] }, "league_divisions_insert_input": { - "active": [ - 3 - ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "season_divisions": [ - 1516 + 1536 ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21802,16 +22037,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21819,16 +22054,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21839,7 +22074,7 @@ export default { 38 ], "returning": [ - 1359 + 1379 ], "__typename": [ 78 @@ -21847,10 +22082,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1366 + 1386 ], "on_conflict": [ - 1371 + 1391 ], "__typename": [ 78 @@ -21858,36 +22093,33 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1364 + 1384 ], "update_columns": [ - 1382 + 1402 ], "where": [ - 1363 + 1383 ], "__typename": [ 78 ] }, "league_divisions_order_by": { - "active": [ - 2461 - ], "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "season_divisions_aggregate": [ - 1515 + 1535 ], "tier": [ - 2461 + 2481 ], "__typename": [ 78 @@ -21895,7 +22127,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -21903,20 +22135,17 @@ export default { }, "league_divisions_select_column": {}, "league_divisions_set_input": { - "active": [ - 3 - ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21948,7 +22177,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1380 + 1400 ], "ordering": [ 236 @@ -21958,20 +22187,17 @@ export default { ] }, "league_divisions_stream_cursor_value_input": { - "active": [ - 3 - ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 ], "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21979,7 +22205,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3597 + 3617 ], "__typename": [ 78 @@ -21988,13 +22214,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1365 + 1385 ], "_set": [ - 1375 + 1395 ], "where": [ - 1363 + 1383 ], "__typename": [ 78 @@ -22026,25 +22252,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "season": [ - 1535 + 1555 ], "week_number": [ 38 @@ -22055,10 +22281,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1391 + 1411 ], "nodes": [ - 1387 + 1407 ], "__typename": [ 78 @@ -22066,7 +22292,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1390 + 1410 ], "__typename": [ 78 @@ -22074,13 +22300,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1408 + 1428 ], "distinct": [ 3 ], "filter": [ - 1396 + 1416 ], "predicate": [ 39 @@ -22091,13 +22317,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1394 + 1414 ], "count": [ 38, { "columns": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -22106,31 +22332,31 @@ export default { } ], "max": [ - 1400 + 1420 ], "min": [ - 1402 + 1422 ], "stddev": [ - 1410 + 1430 ], "stddev_pop": [ - 1412 + 1432 ], "stddev_samp": [ - 1414 + 1434 ], "sum": [ - 1418 + 1438 ], "var_pop": [ - 1422 + 1442 ], "var_samp": [ - 1424 + 1444 ], "variance": [ - 1426 + 1446 ], "__typename": [ 78 @@ -22138,37 +22364,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1395 + 1415 ], "count": [ - 2461 + 2481 ], "max": [ - 1401 + 1421 ], "min": [ - 1403 + 1423 ], "stddev": [ - 1411 + 1431 ], "stddev_pop": [ - 1413 + 1433 ], "stddev_samp": [ - 1415 + 1435 ], "sum": [ - 1419 + 1439 ], "var_pop": [ - 1423 + 1443 ], "var_samp": [ - 1425 + 1445 ], "variance": [ - 1427 + 1447 ], "__typename": [ 78 @@ -22176,10 +22402,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1399 + 1419 ], "on_conflict": [ - 1405 + 1425 ], "__typename": [ 78 @@ -22195,7 +22421,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22203,34 +22429,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1396 + 1416 ], "_not": [ - 1396 + 1416 ], "_or": [ - 1396 + 1416 ], "closes_at": [ - 4005 + 4025 ], "created_at": [ - 4005 + 4025 ], "default_match_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "opens_at": [ - 4005 + 4025 ], "season": [ - 1540 + 1560 ], "week_number": [ 39 @@ -22250,25 +22476,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "season": [ - 1550 + 1570 ], "week_number": [ 38 @@ -22279,22 +22505,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "week_number": [ 38 @@ -22305,25 +22531,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22331,22 +22557,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "week_number": [ 38 @@ -22357,25 +22583,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22386,7 +22612,7 @@ export default { 38 ], "returning": [ - 1387 + 1407 ], "__typename": [ 78 @@ -22394,13 +22620,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1397 + 1417 ], "update_columns": [ - 1420 + 1440 ], "where": [ - 1396 + 1416 ], "__typename": [ 78 @@ -22408,28 +22634,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "season": [ - 1552 + 1572 ], "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22437,7 +22663,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -22446,22 +22672,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "week_number": [ 38 @@ -22480,7 +22706,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22496,7 +22722,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22512,7 +22738,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22520,7 +22746,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1417 + 1437 ], "ordering": [ 236 @@ -22531,22 +22757,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "week_number": [ 38 @@ -22565,7 +22791,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22574,13 +22800,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1398 + 1418 ], "_set": [ - 1409 + 1429 ], "where": [ - 1396 + 1416 ], "__typename": [ 78 @@ -22596,7 +22822,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22612,7 +22838,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22628,7 +22854,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22636,40 +22862,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4004 + 4024 ], "higher_division": [ - 1359 + 1379 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division": [ - 1359 + 1379 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "season": [ - 1535 + 1555 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -22677,10 +22903,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1432 + 1452 ], "nodes": [ - 1428 + 1448 ], "__typename": [ 78 @@ -22688,7 +22914,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1431 + 1451 ], "__typename": [ 78 @@ -22696,13 +22922,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1449 + 1469 ], "distinct": [ 3 ], "filter": [ - 1437 + 1457 ], "predicate": [ 39 @@ -22713,13 +22939,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1435 + 1455 ], "count": [ 38, { "columns": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -22728,31 +22954,31 @@ export default { } ], "max": [ - 1441 + 1461 ], "min": [ - 1443 + 1463 ], "stddev": [ - 1451 + 1471 ], "stddev_pop": [ - 1453 + 1473 ], "stddev_samp": [ - 1455 + 1475 ], "sum": [ - 1459 + 1479 ], "var_pop": [ - 1463 + 1483 ], "var_samp": [ - 1465 + 1485 ], "variance": [ - 1467 + 1487 ], "__typename": [ 78 @@ -22760,37 +22986,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1436 + 1456 ], "count": [ - 2461 + 2481 ], "max": [ - 1442 + 1462 ], "min": [ - 1444 + 1464 ], "stddev": [ - 1452 + 1472 ], "stddev_pop": [ - 1454 + 1474 ], "stddev_samp": [ - 1456 + 1476 ], "sum": [ - 1460 + 1480 ], "var_pop": [ - 1464 + 1484 ], "var_samp": [ - 1466 + 1486 ], "variance": [ - 1468 + 1488 ], "__typename": [ 78 @@ -22798,10 +23024,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1440 + 1460 ], "on_conflict": [ - 1446 + 1466 ], "__typename": [ 78 @@ -22817,7 +23043,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22825,49 +23051,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1437 + 1457 ], "_not": [ - 1437 + 1457 ], "_or": [ - 1437 + 1457 ], "created_at": [ - 4005 + 4025 ], "higher_division": [ - 1363 + 1383 ], "higher_division_id": [ - 4444 + 4464 ], "higher_slots": [ 39 ], "id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "lower_division": [ - 1363 + 1383 ], "lower_division_id": [ - 4444 + 4464 ], "resolved_at": [ - 4005 + 4025 ], "season": [ - 1540 + 1560 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -22884,40 +23110,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4004 + 4024 ], "higher_division": [ - 1370 + 1390 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division": [ - 1370 + 1390 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "season": [ - 1550 + 1570 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -22925,28 +23151,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4004 + 4024 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -22954,28 +23180,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2461 + 2481 ], "higher_division_id": [ - 2461 + 2481 ], "higher_slots": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "lower_division_id": [ - 2461 + 2481 ], "resolved_at": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -22983,28 +23209,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4004 + 4024 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23012,28 +23238,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2461 + 2481 ], "higher_division_id": [ - 2461 + 2481 ], "higher_slots": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "lower_division_id": [ - 2461 + 2481 ], "resolved_at": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23044,7 +23270,7 @@ export default { 38 ], "returning": [ - 1428 + 1448 ], "__typename": [ 78 @@ -23052,13 +23278,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1438 + 1458 ], "update_columns": [ - 1461 + 1481 ], "where": [ - 1437 + 1457 ], "__typename": [ 78 @@ -23066,40 +23292,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2461 + 2481 ], "higher_division": [ - 1372 + 1392 ], "higher_division_id": [ - 2461 + 2481 ], "higher_slots": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "lower_division": [ - 1372 + 1392 ], "lower_division_id": [ - 2461 + 2481 ], "resolved_at": [ - 2461 + 2481 ], "season": [ - 1552 + 1572 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23107,7 +23333,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23116,28 +23342,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4004 + 4024 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23153,7 +23379,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23169,7 +23395,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23185,7 +23411,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23193,7 +23419,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1458 + 1478 ], "ordering": [ 236 @@ -23204,28 +23430,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "higher_division_id": [ - 4442 + 4462 ], "higher_slots": [ 38 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "lower_division_id": [ - 4442 + 4462 ], "resolved_at": [ - 4004 + 4024 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23241,7 +23467,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23250,13 +23476,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1439 + 1459 ], "_set": [ - 1450 + 1470 ], "where": [ - 1437 + 1457 ], "__typename": [ 78 @@ -23272,7 +23498,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23288,7 +23514,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23304,7 +23530,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23312,34 +23538,34 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4006 + 4026 ], "created_at": [ - 4004 + 4024 ], "e_proposal_status": [ 608 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by": [ - 3419 + 3439 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by": [ - 3419 + 3439 ], "responded_by_steam_id": [ 180 @@ -23348,10 +23574,10 @@ export default { 613 ], "team_season": [ - 1650 + 1670 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23359,10 +23585,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1473 + 1493 ], "nodes": [ - 1469 + 1489 ], "__typename": [ 78 @@ -23370,7 +23596,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1472 + 1492 ], "__typename": [ 78 @@ -23378,13 +23604,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1490 + 1510 ], "distinct": [ 3 ], "filter": [ - 1478 + 1498 ], "predicate": [ 39 @@ -23395,13 +23621,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1476 + 1496 ], "count": [ 38, { "columns": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -23410,31 +23636,31 @@ export default { } ], "max": [ - 1482 + 1502 ], "min": [ - 1484 + 1504 ], "stddev": [ - 1492 + 1512 ], "stddev_pop": [ - 1494 + 1514 ], "stddev_samp": [ - 1496 + 1516 ], "sum": [ - 1500 + 1520 ], "var_pop": [ - 1504 + 1524 ], "var_samp": [ - 1506 + 1526 ], "variance": [ - 1508 + 1528 ], "__typename": [ 78 @@ -23442,37 +23668,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1477 + 1497 ], "count": [ - 2461 + 2481 ], "max": [ - 1483 + 1503 ], "min": [ - 1485 + 1505 ], "stddev": [ - 1493 + 1513 ], "stddev_pop": [ - 1495 + 1515 ], "stddev_samp": [ - 1497 + 1517 ], "sum": [ - 1501 + 1521 ], "var_pop": [ - 1505 + 1525 ], "var_samp": [ - 1507 + 1527 ], "variance": [ - 1509 + 1529 ], "__typename": [ 78 @@ -23480,10 +23706,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1481 + 1501 ], "on_conflict": [ - 1487 + 1507 ], "__typename": [ 78 @@ -23502,10 +23728,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23513,43 +23739,43 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1478 + 1498 ], "_not": [ - 1478 + 1498 ], "_or": [ - 1478 + 1498 ], "bracket": [ - 4017 + 4037 ], "created_at": [ - 4005 + 4025 ], "e_proposal_status": [ 611 ], "id": [ - 4444 + 4464 ], "message": [ 80 ], "proposed_by": [ - 3423 + 3443 ], "proposed_by_league_team_season_id": [ - 4444 + 4464 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4005 + 4025 ], "responded_by": [ - 3423 + 3443 ], "responded_by_steam_id": [ 182 @@ -23558,10 +23784,10 @@ export default { 614 ], "team_season": [ - 1659 + 1679 ], "tournament_bracket_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -23581,34 +23807,34 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4026 + 4046 ], "created_at": [ - 4004 + 4024 ], "e_proposal_status": [ 619 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by": [ - 3430 + 3450 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by": [ - 3430 + 3450 ], "responded_by_steam_id": [ 180 @@ -23617,10 +23843,10 @@ export default { 613 ], "team_season": [ - 1668 + 1688 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23628,28 +23854,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23657,28 +23883,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "proposed_by_league_team_season_id": [ - 2461 + 2481 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_time": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "tournament_bracket_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23686,28 +23912,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23715,28 +23941,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "proposed_by_league_team_season_id": [ - 2461 + 2481 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_time": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "tournament_bracket_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23747,7 +23973,7 @@ export default { 38 ], "returning": [ - 1469 + 1489 ], "__typename": [ 78 @@ -23755,13 +23981,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1479 + 1499 ], "update_columns": [ - 1502 + 1522 ], "where": [ - 1478 + 1498 ], "__typename": [ 78 @@ -23769,46 +23995,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4028 + 4048 ], "created_at": [ - 2461 + 2481 ], "e_proposal_status": [ 621 ], "id": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "proposed_by": [ - 3432 + 3452 ], "proposed_by_league_team_season_id": [ - 2461 + 2481 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_time": [ - 2461 + 2481 ], "responded_by": [ - 3432 + 3452 ], "responded_by_steam_id": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "team_season": [ - 1670 + 1690 ], "tournament_bracket_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23816,7 +24042,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23825,22 +24051,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by_steam_id": [ 180 @@ -23849,7 +24075,7 @@ export default { 613 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23868,10 +24094,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23890,10 +24116,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23912,10 +24138,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23923,7 +24149,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1499 + 1519 ], "ordering": [ 236 @@ -23934,22 +24160,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4004 + 4024 ], "responded_by_steam_id": [ 180 @@ -23958,7 +24184,7 @@ export default { 613 ], "tournament_bracket_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -23977,10 +24203,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -23989,13 +24215,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1480 + 1500 ], "_set": [ - 1491 + 1511 ], "where": [ - 1478 + 1498 ], "__typename": [ 78 @@ -24014,10 +24240,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24036,10 +24262,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24058,10 +24284,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "responded_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24069,28 +24295,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4004 + 4024 ], "division": [ - 1359 + 1379 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "season": [ - 1535 + 1555 ], "standings": [ - 4463, + 4483, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24100,19 +24326,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "standings_aggregate": [ - 4464, + 4484, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24122,19 +24348,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24142,10 +24368,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1514 + 1534 ], "nodes": [ - 1510 + 1530 ], "__typename": [ 78 @@ -24153,7 +24379,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1513 + 1533 ], "__typename": [ 78 @@ -24161,13 +24387,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1529 + 1549 ], "distinct": [ 3 ], "filter": [ - 1517 + 1537 ], "predicate": [ 39 @@ -24181,7 +24407,7 @@ export default { 38, { "columns": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -24190,10 +24416,10 @@ export default { } ], "max": [ - 1520 + 1540 ], "min": [ - 1522 + 1542 ], "__typename": [ 78 @@ -24201,13 +24427,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 1521 + 1541 ], "min": [ - 1523 + 1543 ], "__typename": [ 78 @@ -24215,10 +24441,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1519 + 1539 ], "on_conflict": [ - 1526 + 1546 ], "__typename": [ 78 @@ -24226,43 +24452,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1517 + 1537 ], "_not": [ - 1517 + 1537 ], "_or": [ - 1517 + 1537 ], "created_at": [ - 4005 + 4025 ], "division": [ - 1363 + 1383 ], "id": [ - 4444 + 4464 ], "league_division_id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "season": [ - 1540 + 1560 ], "standings": [ - 4472 + 4492 ], "standings_aggregate": [ - 4465 + 4485 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -24271,31 +24497,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4004 + 4024 ], "division": [ - 1370 + 1390 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "season": [ - 1550 + 1570 ], "standings": [ - 4469 + 4489 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24303,19 +24529,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24323,19 +24549,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24343,19 +24569,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24363,19 +24589,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24386,7 +24612,7 @@ export default { 38 ], "returning": [ - 1510 + 1530 ], "__typename": [ 78 @@ -24394,10 +24620,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1519 + 1539 ], "on_conflict": [ - 1526 + 1546 ], "__typename": [ 78 @@ -24405,13 +24631,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1518 + 1538 ], "update_columns": [ - 1533 + 1553 ], "where": [ - 1517 + 1537 ], "__typename": [ 78 @@ -24419,31 +24645,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2461 + 2481 ], "division": [ - 1372 + 1392 ], "id": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "season": [ - 1552 + 1572 ], "standings_aggregate": [ - 4468 + 4488 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -24451,7 +24677,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24460,19 +24686,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24480,7 +24706,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1532 + 1552 ], "ordering": [ 236 @@ -24491,19 +24717,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "league_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -24512,10 +24738,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1530 + 1550 ], "where": [ - 1517 + 1537 ], "__typename": [ 78 @@ -24529,7 +24755,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -24550,7 +24776,7 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "is_league_admin": [ 3 @@ -24559,13 +24785,13 @@ export default { 3 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks": [ - 1387, + 1407, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24575,19 +24801,19 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], "match_weeks_aggregate": [ - 1388, + 1408, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24597,11 +24823,11 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], @@ -24615,10 +24841,10 @@ export default { 38 ], "movements": [ - 1568, + 1588, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -24628,19 +24854,19 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "movements_aggregate": [ - 1569, + 1589, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -24650,19 +24876,19 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "my_registration": [ - 1650, + 1670, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -24672,11 +24898,11 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], @@ -24684,13 +24910,13 @@ export default { 78 ], "options": [ - 2156 + 2176 ], "player_stats": [ - 4496, + 4516, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24700,19 +24926,19 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], "player_stats_aggregate": [ - 4497, + 4517, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24722,11 +24948,11 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], @@ -24734,7 +24960,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1332, + 1352, { "path": [ 78 @@ -24745,7 +24971,7 @@ export default { 38 ], "playoff_stage_type": [ - 1083 + 1103 ], "playoff_third_place_match": [ 3 @@ -24754,7 +24980,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1083 + 1103 ], "relegate_count": [ 38 @@ -24763,10 +24989,10 @@ export default { 38 ], "relegation_playoffs": [ - 1428, + 1448, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -24776,19 +25002,19 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], "relegation_playoffs_aggregate": [ - 1429, + 1449, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -24798,11 +25024,11 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], @@ -24810,13 +25036,13 @@ export default { 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_divisions": [ - 1510, + 1530, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -24826,19 +25052,19 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "season_divisions_aggregate": [ - 1511, + 1531, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -24848,11 +25074,11 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], @@ -24860,16 +25086,16 @@ export default { 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "standings": [ - 4463, + 4483, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24879,19 +25105,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "standings_aggregate": [ - 4464, + 4484, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24901,25 +25127,25 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "starts_at": [ - 4004 + 4024 ], "status": [ 655 ], "team_seasons": [ - 1650, + 1670, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -24929,19 +25155,19 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "team_seasons_aggregate": [ - 1651, + 1671, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -24951,16 +25177,16 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "week_best_of": [ - 1332, + 1352, { "path": [ 78 @@ -24973,10 +25199,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1537 + 1557 ], "nodes": [ - 1535 + 1555 ], "__typename": [ 78 @@ -24984,13 +25210,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1539 + 1559 ], "count": [ 38, { "columns": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "distinct": [ @@ -24999,31 +25225,31 @@ export default { } ], "max": [ - 1547 + 1567 ], "min": [ - 1548 + 1568 ], "stddev": [ - 1557 + 1577 ], "stddev_pop": [ - 1558 + 1578 ], "stddev_samp": [ - 1559 + 1579 ], "sum": [ - 1562 + 1582 ], "var_pop": [ - 1565 + 1585 ], "var_samp": [ - 1566 + 1586 ], "variance": [ - 1567 + 1587 ], "__typename": [ 78 @@ -25031,10 +25257,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1332 + 1352 ], "week_best_of": [ - 1332 + 1352 ], "__typename": [ 78 @@ -25092,13 +25318,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1540 + 1560 ], "_not": [ - 1540 + 1560 ], "_or": [ - 1540 + 1560 ], "auto_regular_season_format": [ 4 @@ -25107,7 +25333,7 @@ export default { 4 ], "created_at": [ - 4005 + 4025 ], "created_by_steam_id": [ 182 @@ -25128,7 +25354,7 @@ export default { 39 ], "id": [ - 4444 + 4464 ], "is_league_admin": [ 4 @@ -25137,13 +25363,13 @@ export default { 4 ], "match_options_id": [ - 4444 + 4464 ], "match_weeks": [ - 1396 + 1416 ], "match_weeks_aggregate": [ - 1389 + 1409 ], "match_weeks_count": [ 39 @@ -25155,37 +25381,37 @@ export default { 39 ], "movements": [ - 1577 + 1597 ], "movements_aggregate": [ - 1570 + 1590 ], "my_registration": [ - 1659 + 1679 ], "name": [ 80 ], "options": [ - 2160 + 2180 ], "player_stats": [ - 4515 + 4535 ], "player_stats_aggregate": [ - 4498 + 4518 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1334 + 1354 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1084 + 1104 ], "playoff_third_place_match": [ 4 @@ -25194,7 +25420,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1084 + 1104 ], "relegate_count": [ 39 @@ -25203,52 +25429,52 @@ export default { 39 ], "relegation_playoffs": [ - 1437 + 1457 ], "relegation_playoffs_aggregate": [ - 1430 + 1450 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4005 + 4025 ], "season_divisions": [ - 1517 + 1537 ], "season_divisions_aggregate": [ - 1512 + 1532 ], "season_number": [ 39 ], "signup_closes_at": [ - 4005 + 4025 ], "signup_opens_at": [ - 4005 + 4025 ], "standings": [ - 4472 + 4492 ], "standings_aggregate": [ - 4465 + 4485 ], "starts_at": [ - 4005 + 4025 ], "status": [ 656 ], "team_seasons": [ - 1659 + 1679 ], "team_seasons_aggregate": [ - 1652 + 1672 ], "week_best_of": [ - 1334 + 1354 ], "__typename": [ 78 @@ -25343,7 +25569,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -25364,13 +25590,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks": [ - 1393 + 1413 ], "match_weeks_count": [ 38 @@ -25382,28 +25608,28 @@ export default { 38 ], "movements": [ - 1574 + 1594 ], "name": [ 78 ], "options": [ - 2167 + 2187 ], "player_stats": [ - 4512 + 4532 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1332 + 1352 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1083 + 1103 ], "playoff_third_place_match": [ 3 @@ -25412,7 +25638,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1083 + 1103 ], "relegate_count": [ 38 @@ -25421,40 +25647,40 @@ export default { 38 ], "relegation_playoffs": [ - 1434 + 1454 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_divisions": [ - 1516 + 1536 ], "season_number": [ 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "standings": [ - 4469 + 4489 ], "starts_at": [ - 4004 + 4024 ], "status": [ 655 ], "team_seasons": [ - 1656 + 1676 ], "week_best_of": [ - 1332 + 1352 ], "__typename": [ 78 @@ -25462,7 +25688,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -25480,10 +25706,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks_count": [ 38 @@ -25516,19 +25742,19 @@ export default { 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_number": [ 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -25536,7 +25762,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -25554,10 +25780,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks_count": [ 38 @@ -25590,19 +25816,19 @@ export default { 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_number": [ 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -25613,7 +25839,7 @@ export default { 38 ], "returning": [ - 1535 + 1555 ], "__typename": [ 78 @@ -25621,10 +25847,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1546 + 1566 ], "on_conflict": [ - 1551 + 1571 ], "__typename": [ 78 @@ -25632,13 +25858,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1541 + 1561 ], "update_columns": [ - 1563 + 1583 ], "where": [ - 1540 + 1560 ], "__typename": [ 78 @@ -25646,133 +25872,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2461 + 2481 ], "can_register": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "created_by_steam_id": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "direct_promote_count": [ - 2461 + 2481 ], "direct_relegate_count": [ - 2461 + 2481 ], "e_league_season_status": [ 663 ], "games_per_week": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_league_admin": [ - 2461 + 2481 ], "is_roster_locked": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "match_weeks_aggregate": [ - 1392 + 1412 ], "match_weeks_count": [ - 2461 + 2481 ], "max_roster_size": [ - 2461 + 2481 ], "min_roster_size": [ - 2461 + 2481 ], "movements_aggregate": [ - 1573 + 1593 ], "my_registration_aggregate": [ - 1655 + 1675 ], "name": [ - 2461 + 2481 ], "options": [ - 2169 + 2189 ], "player_stats_aggregate": [ - 4511 + 4531 ], "playoff_best_of": [ - 2461 + 2481 ], "playoff_round_best_of": [ - 2461 + 2481 ], "playoff_seats": [ - 2461 + 2481 ], "playoff_stage_type": [ - 2461 + 2481 ], "playoff_third_place_match": [ - 2461 + 2481 ], "promote_count": [ - 2461 + 2481 ], "regular_season_stage_type": [ - 2461 + 2481 ], "relegate_count": [ - 2461 + 2481 ], "relegation_down_count": [ - 2461 + 2481 ], "relegation_playoffs_aggregate": [ - 1433 + 1453 ], "relegation_up_count": [ - 2461 + 2481 ], "roster_lock_at": [ - 2461 + 2481 ], "season_divisions_aggregate": [ - 1515 + 1535 ], "season_number": [ - 2461 + 2481 ], "signup_closes_at": [ - 2461 + 2481 ], "signup_opens_at": [ - 2461 + 2481 ], "standings_aggregate": [ - 4468 + 4488 ], "starts_at": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "team_seasons_aggregate": [ - 1655 + 1675 ], "week_best_of": [ - 2461 + 2481 ], "__typename": [ 78 @@ -25780,7 +26006,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -25788,10 +26014,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1332 + 1352 ], "week_best_of": [ - 1332 + 1352 ], "__typename": [ 78 @@ -25803,7 +26029,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -25821,10 +26047,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks_count": [ 38 @@ -25842,13 +26068,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1332 + 1352 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1083 + 1103 ], "playoff_third_place_match": [ 3 @@ -25857,7 +26083,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1083 + 1103 ], "relegate_count": [ 38 @@ -25869,25 +26095,25 @@ export default { 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_number": [ 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "starts_at": [ - 4004 + 4024 ], "status": [ 655 ], "week_best_of": [ - 1332 + 1352 ], "__typename": [ 78 @@ -26045,7 +26271,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1561 + 1581 ], "ordering": [ 236 @@ -26059,7 +26285,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "created_by_steam_id": [ 180 @@ -26077,10 +26303,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_weeks_count": [ 38 @@ -26098,13 +26324,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1332 + 1352 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1083 + 1103 ], "playoff_third_place_match": [ 3 @@ -26113,7 +26339,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1083 + 1103 ], "relegate_count": [ 38 @@ -26125,25 +26351,25 @@ export default { 38 ], "roster_lock_at": [ - 4004 + 4024 ], "season_number": [ 38 ], "signup_closes_at": [ - 4004 + 4024 ], "signup_opens_at": [ - 4004 + 4024 ], "starts_at": [ - 4004 + 4024 ], "status": [ 655 ], "week_best_of": [ - 1332 + 1352 ], "__typename": [ 78 @@ -26202,28 +26428,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1538 + 1558 ], "_delete_at_path": [ - 1542 + 1562 ], "_delete_elem": [ - 1543 + 1563 ], "_delete_key": [ - 1544 + 1564 ], "_inc": [ - 1545 + 1565 ], "_prepend": [ - 1554 + 1574 ], "_set": [ - 1556 + 1576 ], "where": [ - 1540 + 1560 ], "__typename": [ 78 @@ -26381,22 +26607,22 @@ export default { }, "league_team_movements": { "approved_at": [ - 4004 + 4024 ], "approved_by": [ - 3419 + 3439 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1359 + 1379 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "e_movement_type": [ 587 @@ -26405,31 +26631,31 @@ export default { 38 ], "final_to_division": [ - 1359 + 1379 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division": [ - 1359 + 1379 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1692 + 1712 ], "league_team_id": [ - 4442 + 4462 ], "season": [ - 1535 + 1555 ], "type": [ 592 @@ -26440,10 +26666,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1572 + 1592 ], "nodes": [ - 1568 + 1588 ], "__typename": [ 78 @@ -26451,7 +26677,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1571 + 1591 ], "__typename": [ 78 @@ -26459,13 +26685,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1589 + 1609 ], "distinct": [ 3 ], "filter": [ - 1577 + 1597 ], "predicate": [ 39 @@ -26476,13 +26702,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1575 + 1595 ], "count": [ 38, { "columns": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "distinct": [ @@ -26491,31 +26717,31 @@ export default { } ], "max": [ - 1581 + 1601 ], "min": [ - 1583 + 1603 ], "stddev": [ - 1591 + 1611 ], "stddev_pop": [ - 1593 + 1613 ], "stddev_samp": [ - 1595 + 1615 ], "sum": [ - 1599 + 1619 ], "var_pop": [ - 1603 + 1623 ], "var_samp": [ - 1605 + 1625 ], "variance": [ - 1607 + 1627 ], "__typename": [ 78 @@ -26523,37 +26749,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1576 + 1596 ], "count": [ - 2461 + 2481 ], "max": [ - 1582 + 1602 ], "min": [ - 1584 + 1604 ], "stddev": [ - 1592 + 1612 ], "stddev_pop": [ - 1594 + 1614 ], "stddev_samp": [ - 1596 + 1616 ], "sum": [ - 1600 + 1620 ], "var_pop": [ - 1604 + 1624 ], "var_samp": [ - 1606 + 1626 ], "variance": [ - 1608 + 1628 ], "__typename": [ 78 @@ -26561,10 +26787,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1580 + 1600 ], "on_conflict": [ - 1586 + 1606 ], "__typename": [ 78 @@ -26583,10 +26809,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -26594,31 +26820,31 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1577 + 1597 ], "_not": [ - 1577 + 1597 ], "_or": [ - 1577 + 1597 ], "approved_at": [ - 4005 + 4025 ], "approved_by": [ - 3423 + 3443 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1363 + 1383 ], "computed_to_division_id": [ - 4444 + 4464 ], "created_at": [ - 4005 + 4025 ], "e_movement_type": [ 590 @@ -26627,31 +26853,31 @@ export default { 39 ], "final_to_division": [ - 1363 + 1383 ], "final_to_division_id": [ - 4444 + 4464 ], "from_division": [ - 1363 + 1383 ], "from_division_id": [ - 4444 + 4464 ], "id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "league_team": [ - 1695 + 1715 ], "league_team_id": [ - 4444 + 4464 ], "season": [ - 1540 + 1560 ], "type": [ 593 @@ -26674,22 +26900,22 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4004 + 4024 ], "approved_by": [ - 3430 + 3450 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1370 + 1390 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "e_movement_type": [ 598 @@ -26698,31 +26924,31 @@ export default { 38 ], "final_to_division": [ - 1370 + 1390 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division": [ - 1370 + 1390 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1701 + 1721 ], "league_team_id": [ - 4442 + 4462 ], "season": [ - 1550 + 1570 ], "type": [ 592 @@ -26733,34 +26959,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4004 + 4024 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -26768,34 +26994,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2461 + 2481 ], "approved_by_steam_id": [ - 2461 + 2481 ], "computed_to_division_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "final_to_division_id": [ - 2461 + 2481 ], "from_division_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -26803,34 +27029,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4004 + 4024 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -26838,34 +27064,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2461 + 2481 ], "approved_by_steam_id": [ - 2461 + 2481 ], "computed_to_division_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "final_to_division_id": [ - 2461 + 2481 ], "from_division_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -26876,7 +27102,7 @@ export default { 38 ], "returning": [ - 1568 + 1588 ], "__typename": [ 78 @@ -26884,13 +27110,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1578 + 1598 ], "update_columns": [ - 1601 + 1621 ], "where": [ - 1577 + 1597 ], "__typename": [ 78 @@ -26898,58 +27124,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2461 + 2481 ], "approved_by": [ - 3432 + 3452 ], "approved_by_steam_id": [ - 2461 + 2481 ], "computed_to_division": [ - 1372 + 1392 ], "computed_to_division_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "e_movement_type": [ 600 ], "final_rank": [ - 2461 + 2481 ], "final_to_division": [ - 1372 + 1392 ], "final_to_division_id": [ - 2461 + 2481 ], "from_division": [ - 1372 + 1392 ], "from_division_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team": [ - 1703 + 1723 ], "league_team_id": [ - 2461 + 2481 ], "season": [ - 1552 + 1572 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -26957,7 +27183,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -26966,34 +27192,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4004 + 4024 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "type": [ 592 @@ -27015,10 +27241,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27037,10 +27263,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27059,10 +27285,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27070,7 +27296,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1598 + 1618 ], "ordering": [ 236 @@ -27081,34 +27307,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4004 + 4024 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4442 + 4462 ], "from_division_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "type": [ 592 @@ -27130,10 +27356,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27142,13 +27368,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1579 + 1599 ], "_set": [ - 1590 + 1610 ], "where": [ - 1577 + 1597 ], "__typename": [ 78 @@ -27167,10 +27393,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27189,10 +27415,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27211,10 +27437,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2461 + 2481 ], "final_rank": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27222,28 +27448,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 ], "status": [ - 1043 + 1063 ], "team_season": [ - 1650 + 1670 ], "__typename": [ 78 @@ -27251,10 +27477,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1613 + 1633 ], "nodes": [ - 1609 + 1629 ], "__typename": [ 78 @@ -27262,7 +27488,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1612 + 1632 ], "__typename": [ 78 @@ -27270,13 +27496,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1630 + 1650 ], "distinct": [ 3 ], "filter": [ - 1618 + 1638 ], "predicate": [ 39 @@ -27287,13 +27513,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1616 + 1636 ], "count": [ 38, { "columns": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -27302,31 +27528,31 @@ export default { } ], "max": [ - 1622 + 1642 ], "min": [ - 1624 + 1644 ], "stddev": [ - 1632 + 1652 ], "stddev_pop": [ - 1634 + 1654 ], "stddev_samp": [ - 1636 + 1656 ], "sum": [ - 1640 + 1660 ], "var_pop": [ - 1644 + 1664 ], "var_samp": [ - 1646 + 1666 ], "variance": [ - 1648 + 1668 ], "__typename": [ 78 @@ -27334,37 +27560,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1617 + 1637 ], "count": [ - 2461 + 2481 ], "max": [ - 1623 + 1643 ], "min": [ - 1625 + 1645 ], "stddev": [ - 1633 + 1653 ], "stddev_pop": [ - 1635 + 1655 ], "stddev_samp": [ - 1637 + 1657 ], "sum": [ - 1641 + 1661 ], "var_pop": [ - 1645 + 1665 ], "var_samp": [ - 1647 + 1667 ], "variance": [ - 1649 + 1669 ], "__typename": [ 78 @@ -27372,10 +27598,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1621 + 1641 ], "on_conflict": [ - 1627 + 1647 ], "__typename": [ 78 @@ -27391,7 +27617,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27399,37 +27625,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1618 + 1638 ], "_not": [ - 1618 + 1638 ], "_or": [ - 1618 + 1638 ], "added_at": [ - 4005 + 4025 ], "league_team_season_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "removed_at": [ - 4005 + 4025 ], "removed_reason": [ 80 ], "status": [ - 1044 + 1064 ], "team_season": [ - 1659 + 1679 ], "__typename": [ 78 @@ -27446,28 +27672,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 ], "status": [ - 1043 + 1063 ], "team_season": [ - 1668 + 1688 ], "__typename": [ 78 @@ -27475,16 +27701,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 @@ -27495,19 +27721,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "removed_at": [ - 2461 + 2481 ], "removed_reason": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27515,16 +27741,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 @@ -27535,19 +27761,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "removed_at": [ - 2461 + 2481 ], "removed_reason": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27558,7 +27784,7 @@ export default { 38 ], "returning": [ - 1609 + 1629 ], "__typename": [ 78 @@ -27566,13 +27792,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1619 + 1639 ], "update_columns": [ - 1642 + 1662 ], "where": [ - 1618 + 1638 ], "__typename": [ 78 @@ -27580,28 +27806,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "removed_at": [ - 2461 + 2481 ], "removed_reason": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "team_season": [ - 1670 + 1690 ], "__typename": [ 78 @@ -27609,7 +27835,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -27621,22 +27847,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 ], "status": [ - 1043 + 1063 ], "__typename": [ 78 @@ -27652,7 +27878,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27668,7 +27894,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27684,7 +27910,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27692,7 +27918,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1639 + 1659 ], "ordering": [ 236 @@ -27703,22 +27929,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4004 + 4024 ], "league_team_season_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 ], "removed_at": [ - 4004 + 4024 ], "removed_reason": [ 78 ], "status": [ - 1043 + 1063 ], "__typename": [ 78 @@ -27734,7 +27960,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27743,13 +27969,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1620 + 1640 ], "_set": [ - 1631 + 1651 ], "where": [ - 1618 + 1638 ], "__typename": [ 78 @@ -27765,7 +27991,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27781,7 +28007,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27797,7 +28023,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -27805,19 +28031,19 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1359 + 1379 ], "assigned_division_id": [ - 4442 + 4462 ], "captain": [ - 3419 + 3439 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 @@ -27826,34 +28052,34 @@ export default { 629 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1692 + 1712 ], "league_team_id": [ - 4442 + 4462 ], "registered_by": [ - 3419 + 3439 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1359 + 1379 ], "requested_division_id": [ - 4442 + 4462 ], "roster": [ - 1609, + 1629, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -27863,19 +28089,19 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "roster_aggregate": [ - 1610, + 1630, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -27885,16 +28111,16 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "season": [ - 1535 + 1555 ], "seed": [ 38 @@ -27903,10 +28129,10 @@ export default { 634 ], "tournament_team": [ - 4267 + 4287 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -27914,10 +28140,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1654 + 1674 ], "nodes": [ - 1650 + 1670 ], "__typename": [ 78 @@ -27925,7 +28151,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1653 + 1673 ], "__typename": [ 78 @@ -27933,13 +28159,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1672 + 1692 ], "distinct": [ 3 ], "filter": [ - 1659 + 1679 ], "predicate": [ 39 @@ -27950,13 +28176,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1657 + 1677 ], "count": [ 38, { "columns": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -27965,31 +28191,31 @@ export default { } ], "max": [ - 1663 + 1683 ], "min": [ - 1665 + 1685 ], "stddev": [ - 1674 + 1694 ], "stddev_pop": [ - 1676 + 1696 ], "stddev_samp": [ - 1678 + 1698 ], "sum": [ - 1682 + 1702 ], "var_pop": [ - 1686 + 1706 ], "var_samp": [ - 1688 + 1708 ], "variance": [ - 1690 + 1710 ], "__typename": [ 78 @@ -27997,37 +28223,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1658 + 1678 ], "count": [ - 2461 + 2481 ], "max": [ - 1664 + 1684 ], "min": [ - 1666 + 1686 ], "stddev": [ - 1675 + 1695 ], "stddev_pop": [ - 1677 + 1697 ], "stddev_samp": [ - 1679 + 1699 ], "sum": [ - 1683 + 1703 ], "var_pop": [ - 1687 + 1707 ], "var_samp": [ - 1689 + 1709 ], "variance": [ - 1691 + 1711 ], "__typename": [ 78 @@ -28035,10 +28261,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1662 + 1682 ], "on_conflict": [ - 1669 + 1689 ], "__typename": [ 78 @@ -28060,13 +28286,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28074,28 +28300,28 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1659 + 1679 ], "_not": [ - 1659 + 1679 ], "_or": [ - 1659 + 1679 ], "assigned_division": [ - 1363 + 1383 ], "assigned_division_id": [ - 4444 + 4464 ], "captain": [ - 3423 + 3443 ], "captain_steam_id": [ 182 ], "created_at": [ - 4005 + 4025 ], "decline_reason": [ 80 @@ -28104,37 +28330,37 @@ export default { 632 ], "id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "league_team": [ - 1695 + 1715 ], "league_team_id": [ - 4444 + 4464 ], "registered_by": [ - 3423 + 3443 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1363 + 1383 ], "requested_division_id": [ - 4444 + 4464 ], "roster": [ - 1618 + 1638 ], "roster_aggregate": [ - 1611 + 1631 ], "season": [ - 1540 + 1560 ], "seed": [ 39 @@ -28143,10 +28369,10 @@ export default { 635 ], "tournament_team": [ - 4276 + 4296 ], "tournament_team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -28169,19 +28395,19 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1370 + 1390 ], "assigned_division_id": [ - 4442 + 4462 ], "captain": [ - 3430 + 3450 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 @@ -28190,34 +28416,34 @@ export default { 640 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1701 + 1721 ], "league_team_id": [ - 4442 + 4462 ], "registered_by": [ - 3430 + 3450 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1370 + 1390 ], "requested_division_id": [ - 4442 + 4462 ], "roster": [ - 1615 + 1635 ], "season": [ - 1550 + 1570 ], "seed": [ 38 @@ -28226,10 +28452,10 @@ export default { 634 ], "tournament_team": [ - 4285 + 4305 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28237,37 +28463,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4442 + 4462 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4442 + 4462 ], "seed": [ 38 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28275,37 +28501,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2461 + 2481 ], "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "decline_reason": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "requested_division_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28313,37 +28539,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4442 + 4462 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4442 + 4462 ], "seed": [ 38 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28351,37 +28577,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2461 + 2481 ], "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "decline_reason": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "requested_division_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28392,7 +28618,7 @@ export default { 38 ], "returning": [ - 1650 + 1670 ], "__typename": [ 78 @@ -28400,10 +28626,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1662 + 1682 ], "on_conflict": [ - 1669 + 1689 ], "__typename": [ 78 @@ -28411,13 +28637,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1660 + 1680 ], "update_columns": [ - 1684 + 1704 ], "where": [ - 1659 + 1679 ], "__typename": [ 78 @@ -28425,67 +28651,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1372 + 1392 ], "assigned_division_id": [ - 2461 + 2481 ], "captain": [ - 3432 + 3452 ], "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "decline_reason": [ - 2461 + 2481 ], "e_registration_status": [ 642 ], "id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team": [ - 1703 + 1723 ], "league_team_id": [ - 2461 + 2481 ], "registered_by": [ - 3432 + 3452 ], "registered_by_steam_id": [ - 2461 + 2481 ], "requested_division": [ - 1372 + 1392 ], "requested_division_id": [ - 2461 + 2481 ], "roster_aggregate": [ - 1614 + 1634 ], "season": [ - 1552 + 1572 ], "seed": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "tournament_team": [ - 4287 + 4307 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28493,7 +28719,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28502,31 +28728,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4442 + 4462 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4442 + 4462 ], "seed": [ 38 @@ -28535,7 +28761,7 @@ export default { 634 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28557,13 +28783,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28585,13 +28811,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28613,13 +28839,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28627,7 +28853,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 1681 + 1701 ], "ordering": [ 236 @@ -28638,31 +28864,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4442 + 4462 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "decline_reason": [ 78 ], "id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4442 + 4462 ], "seed": [ 38 @@ -28671,7 +28897,7 @@ export default { 634 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -28693,13 +28919,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28708,13 +28934,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1661 + 1681 ], "_set": [ - 1673 + 1693 ], "where": [ - 1659 + 1679 ], "__typename": [ 78 @@ -28736,13 +28962,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28764,13 +28990,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28792,13 +29018,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "registered_by_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -28806,16 +29032,16 @@ export default { }, "league_teams": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "movements": [ - 1568, + 1588, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -28825,19 +29051,19 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "movements_aggregate": [ - 1569, + 1589, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -28847,25 +29073,25 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "team_seasons": [ - 1650, + 1670, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -28875,19 +29101,19 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "team_seasons_aggregate": [ - 1651, + 1671, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -28897,11 +29123,11 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], @@ -28911,10 +29137,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 1694 + 1714 ], "nodes": [ - 1692 + 1712 ], "__typename": [ 78 @@ -28925,7 +29151,7 @@ export default { 38, { "columns": [ - 1705, + 1725, "[league_teams_select_column!]" ], "distinct": [ @@ -28934,10 +29160,10 @@ export default { } ], "max": [ - 1698 + 1718 ], "min": [ - 1699 + 1719 ], "__typename": [ 78 @@ -28945,37 +29171,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 1695 + 1715 ], "_not": [ - 1695 + 1715 ], "_or": [ - 1695 + 1715 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "movements": [ - 1577 + 1597 ], "movements_aggregate": [ - 1570 + 1590 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "team_seasons": [ - 1659 + 1679 ], "team_seasons_aggregate": [ - 1652 + 1672 ], "__typename": [ 78 @@ -28984,22 +29210,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "movements": [ - 1574 + 1594 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "team_seasons": [ - 1656 + 1676 ], "__typename": [ 78 @@ -29007,13 +29233,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29021,13 +29247,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29038,7 +29264,7 @@ export default { 38 ], "returning": [ - 1692 + 1712 ], "__typename": [ 78 @@ -29046,10 +29272,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 1697 + 1717 ], "on_conflict": [ - 1702 + 1722 ], "__typename": [ 78 @@ -29057,13 +29283,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 1696 + 1716 ], "update_columns": [ - 1709 + 1729 ], "where": [ - 1695 + 1715 ], "__typename": [ 78 @@ -29071,22 +29297,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "movements_aggregate": [ - 1573 + 1593 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "team_seasons_aggregate": [ - 1655 + 1675 ], "__typename": [ 78 @@ -29094,7 +29320,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29103,13 +29329,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29117,7 +29343,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 1708 + 1728 ], "ordering": [ 236 @@ -29128,13 +29354,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29143,10 +29369,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 1706 + 1726 ], "where": [ - 1695 + 1715 ], "__typename": [ 78 @@ -29157,19 +29383,19 @@ export default { 676 ], "created_at": [ - 4004 + 4024 ], "e_lobby_access": [ 671 ], "id": [ - 4442 + 4462 ], "players": [ - 1730, + 1750, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -29179,19 +29405,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "players_aggregate": [ - 1731, + 1751, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -29201,11 +29427,11 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], @@ -29215,10 +29441,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 1713 + 1733 ], "nodes": [ - 1711 + 1731 ], "__typename": [ 78 @@ -29229,7 +29455,7 @@ export default { 38, { "columns": [ - 1724, + 1744, "[lobbies_select_column!]" ], "distinct": [ @@ -29238,10 +29464,10 @@ export default { } ], "max": [ - 1717 + 1737 ], "min": [ - 1718 + 1738 ], "__typename": [ 78 @@ -29249,31 +29475,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 1714 + 1734 ], "_not": [ - 1714 + 1734 ], "_or": [ - 1714 + 1734 ], "access": [ 677 ], "created_at": [ - 4005 + 4025 ], "e_lobby_access": [ 674 ], "id": [ - 4444 + 4464 ], "players": [ - 1741 + 1761 ], "players_aggregate": [ - 1732 + 1752 ], "__typename": [ 78 @@ -29285,16 +29511,16 @@ export default { 676 ], "created_at": [ - 4004 + 4024 ], "e_lobby_access": [ 682 ], "id": [ - 4442 + 4462 ], "players": [ - 1738 + 1758 ], "__typename": [ 78 @@ -29302,10 +29528,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29313,10 +29539,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29327,7 +29553,7 @@ export default { 38 ], "returning": [ - 1711 + 1731 ], "__typename": [ 78 @@ -29335,10 +29561,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 1716 + 1736 ], "on_conflict": [ - 1721 + 1741 ], "__typename": [ 78 @@ -29346,13 +29572,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 1715 + 1735 ], "update_columns": [ - 1728 + 1748 ], "where": [ - 1714 + 1734 ], "__typename": [ 78 @@ -29360,19 +29586,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "e_lobby_access": [ 684 ], "id": [ - 2461 + 2481 ], "players_aggregate": [ - 1737 + 1757 ], "__typename": [ 78 @@ -29380,7 +29606,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29392,10 +29618,10 @@ export default { 676 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29403,7 +29629,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 1727 + 1747 ], "ordering": [ 236 @@ -29417,10 +29643,10 @@ export default { 676 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -29429,10 +29655,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1725 + 1745 ], "where": [ - 1714 + 1734 ], "__typename": [ 78 @@ -29446,13 +29672,13 @@ export default { 180 ], "lobby": [ - 1711 + 1731 ], "lobby_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "status": [ 697 @@ -29466,10 +29692,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 1736 + 1756 ], "nodes": [ - 1730 + 1750 ], "__typename": [ 78 @@ -29477,13 +29703,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1733 + 1753 ], "bool_or": [ - 1734 + 1754 ], "count": [ - 1735 + 1755 ], "__typename": [ 78 @@ -29491,13 +29717,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1754 + 1774 ], "distinct": [ 3 ], "filter": [ - 1741 + 1761 ], "predicate": [ 4 @@ -29508,13 +29734,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1755 + 1775 ], "distinct": [ 3 ], "filter": [ - 1741 + 1761 ], "predicate": [ 4 @@ -29525,13 +29751,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1753 + 1773 ], "distinct": [ 3 ], "filter": [ - 1741 + 1761 ], "predicate": [ 39 @@ -29542,13 +29768,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 1739 + 1759 ], "count": [ 38, { "columns": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "distinct": [ @@ -29557,31 +29783,31 @@ export default { } ], "max": [ - 1745 + 1765 ], "min": [ - 1747 + 1767 ], "stddev": [ - 1757 + 1777 ], "stddev_pop": [ - 1759 + 1779 ], "stddev_samp": [ - 1761 + 1781 ], "sum": [ - 1765 + 1785 ], "var_pop": [ - 1769 + 1789 ], "var_samp": [ - 1771 + 1791 ], "variance": [ - 1773 + 1793 ], "__typename": [ 78 @@ -29589,37 +29815,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 1740 + 1760 ], "count": [ - 2461 + 2481 ], "max": [ - 1746 + 1766 ], "min": [ - 1748 + 1768 ], "stddev": [ - 1758 + 1778 ], "stddev_pop": [ - 1760 + 1780 ], "stddev_samp": [ - 1762 + 1782 ], "sum": [ - 1766 + 1786 ], "var_pop": [ - 1770 + 1790 ], "var_samp": [ - 1772 + 1792 ], "variance": [ - 1774 + 1794 ], "__typename": [ 78 @@ -29627,10 +29853,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 1744 + 1764 ], "on_conflict": [ - 1750 + 1770 ], "__typename": [ 78 @@ -29649,10 +29875,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29660,13 +29886,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 1741 + 1761 ], "_not": [ - 1741 + 1761 ], "_or": [ - 1741 + 1761 ], "captain": [ 4 @@ -29675,13 +29901,13 @@ export default { 182 ], "lobby": [ - 1714 + 1734 ], "lobby_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "status": [ 698 @@ -29713,13 +29939,13 @@ export default { 180 ], "lobby": [ - 1720 + 1740 ], "lobby_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "status": [ 697 @@ -29736,7 +29962,7 @@ export default { 180 ], "lobby_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -29747,13 +29973,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "lobby_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29764,7 +29990,7 @@ export default { 180 ], "lobby_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -29775,13 +30001,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "lobby_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29792,7 +30018,7 @@ export default { 38 ], "returning": [ - 1730 + 1750 ], "__typename": [ 78 @@ -29800,13 +30026,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 1742 + 1762 ], "update_columns": [ - 1767 + 1787 ], "where": [ - 1741 + 1761 ], "__typename": [ 78 @@ -29814,25 +30040,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "lobby": [ - 1722 + 1742 ], "lobby_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "status": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29840,7 +30066,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -29860,7 +30086,7 @@ export default { 180 ], "lobby_id": [ - 4442 + 4462 ], "status": [ 697 @@ -29885,10 +30111,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29907,10 +30133,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29929,10 +30155,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29940,7 +30166,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1764 + 1784 ], "ordering": [ 236 @@ -29957,7 +30183,7 @@ export default { 180 ], "lobby_id": [ - 4442 + 4462 ], "status": [ 697 @@ -29982,10 +30208,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -29994,13 +30220,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1743 + 1763 ], "_set": [ - 1756 + 1776 ], "where": [ - 1741 + 1761 ], "__typename": [ 78 @@ -30019,10 +30245,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30041,10 +30267,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30063,10 +30289,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30080,13 +30306,13 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "maps": [ - 5033, + 5053, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30096,19 +30322,19 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], "maps_aggregate": [ - 5034, + 5054, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30118,11 +30344,11 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], @@ -30138,10 +30364,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 1777 + 1797 ], "nodes": [ - 1775 + 1795 ], "__typename": [ 78 @@ -30152,7 +30378,7 @@ export default { 38, { "columns": [ - 1788, + 1808, "[map_pools_select_column!]" ], "distinct": [ @@ -30161,10 +30387,10 @@ export default { } ], "max": [ - 1781 + 1801 ], "min": [ - 1782 + 1802 ], "__typename": [ 78 @@ -30172,13 +30398,13 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 1778 + 1798 ], "_not": [ - 1778 + 1798 ], "_or": [ - 1778 + 1798 ], "e_type": [ 715 @@ -30187,13 +30413,13 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "maps": [ - 5042 + 5062 ], "maps_aggregate": [ - 5035 + 5055 ], "seed": [ 4 @@ -30214,10 +30440,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "maps": [ - 5041 + 5061 ], "seed": [ 3 @@ -30231,7 +30457,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -30239,7 +30465,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -30250,7 +30476,7 @@ export default { 38 ], "returning": [ - 1775 + 1795 ], "__typename": [ 78 @@ -30258,10 +30484,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 1780 + 1800 ], "on_conflict": [ - 1785 + 1805 ], "__typename": [ 78 @@ -30269,13 +30495,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 1779 + 1799 ], "update_columns": [ - 1792 + 1812 ], "where": [ - 1778 + 1798 ], "__typename": [ 78 @@ -30286,19 +30512,19 @@ export default { 725 ], "enabled": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "maps_aggregate": [ - 5040 + 5060 ], "seed": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30306,7 +30532,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -30318,7 +30544,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "seed": [ 3 @@ -30332,7 +30558,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 1791 + 1811 ], "ordering": [ 236 @@ -30346,7 +30572,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "seed": [ 3 @@ -30361,10 +30587,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1789 + 1809 ], "where": [ - 1778 + 1798 ], "__typename": [ 78 @@ -30381,16 +30607,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "match_maps": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -30400,19 +30626,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -30422,19 +30648,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30444,19 +30670,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30466,11 +30692,11 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], @@ -30495,10 +30721,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 1800 + 1820 ], "nodes": [ - 1794 + 1814 ], "__typename": [ 78 @@ -30506,13 +30732,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 1797 + 1817 ], "bool_or": [ - 1798 + 1818 ], "count": [ - 1799 + 1819 ], "__typename": [ 78 @@ -30520,13 +30746,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1816 + 1836 ], "distinct": [ 3 ], "filter": [ - 1803 + 1823 ], "predicate": [ 4 @@ -30537,13 +30763,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1817 + 1837 ], "distinct": [ 3 ], "filter": [ - 1803 + 1823 ], "predicate": [ 4 @@ -30554,13 +30780,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1815 + 1835 ], "distinct": [ 3 ], "filter": [ - 1803 + 1823 ], "predicate": [ 39 @@ -30574,7 +30800,7 @@ export default { 38, { "columns": [ - 1815, + 1835, "[maps_select_column!]" ], "distinct": [ @@ -30583,10 +30809,10 @@ export default { } ], "max": [ - 1806 + 1826 ], "min": [ - 1808 + 1828 ], "__typename": [ 78 @@ -30594,13 +30820,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 1807 + 1827 ], "min": [ - 1809 + 1829 ], "__typename": [ 78 @@ -30608,10 +30834,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 1805 + 1825 ], "on_conflict": [ - 1812 + 1832 ], "__typename": [ 78 @@ -30619,13 +30845,13 @@ export default { }, "maps_bool_exp": { "_and": [ - 1803 + 1823 ], "_not": [ - 1803 + 1823 ], "_or": [ - 1803 + 1823 ], "active_pool": [ 4 @@ -30637,22 +30863,22 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "label": [ 80 ], "match_maps": [ - 2123 + 2143 ], "match_maps_aggregate": [ - 2116 + 2136 ], "match_veto_picks": [ - 2097 + 2117 ], "match_veto_picks_aggregate": [ - 2092 + 2112 ], "name": [ 80 @@ -30685,16 +30911,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "match_maps": [ - 2120 + 2140 ], "match_veto_picks": [ - 2096 + 2116 ], "name": [ 78 @@ -30717,7 +30943,7 @@ export default { }, "maps_max_fields": { "id": [ - 4442 + 4462 ], "label": [ 78 @@ -30740,22 +30966,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30763,7 +30989,7 @@ export default { }, "maps_min_fields": { "id": [ - 4442 + 4462 ], "label": [ 78 @@ -30786,22 +31012,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30812,7 +31038,7 @@ export default { 38 ], "returning": [ - 1794 + 1814 ], "__typename": [ 78 @@ -30820,10 +31046,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 1805 + 1825 ], "on_conflict": [ - 1812 + 1832 ], "__typename": [ 78 @@ -30831,13 +31057,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 1804 + 1824 ], "update_columns": [ - 1821 + 1841 ], "where": [ - 1803 + 1823 ], "__typename": [ 78 @@ -30845,40 +31071,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2461 + 2481 ], "e_match_type": [ 828 ], "enabled": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "match_maps_aggregate": [ - 2119 + 2139 ], "match_veto_picks_aggregate": [ - 2095 + 2115 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -30886,7 +31112,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -30903,7 +31129,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 @@ -30929,7 +31155,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 1820 + 1840 ], "ordering": [ 236 @@ -30946,7 +31172,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 @@ -30973,10 +31199,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 1818 + 1838 ], "where": [ - 1803 + 1823 ], "__typename": [ 78 @@ -30984,7 +31210,7 @@ export default { }, "match_clips": { "created_at": [ - 4004 + 4024 ], "download_url": [ 78 @@ -30996,22 +31222,22 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map": [ - 2114 + 2134 ], "match_map_demo": [ - 1998 + 2018 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "render_jobs": [ 185, @@ -31064,7 +31290,7 @@ export default { 180 ], "target": [ - 3419 + 3439 ], "target_steam_id": [ 180 @@ -31079,7 +31305,7 @@ export default { 78 ], "user": [ - 3419 + 3439 ], "user_steam_id": [ 180 @@ -31096,10 +31322,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 1827 + 1847 ], "nodes": [ - 1823 + 1843 ], "__typename": [ 78 @@ -31107,7 +31333,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 1826 + 1846 ], "__typename": [ 78 @@ -31115,13 +31341,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1845 + 1865 ], "distinct": [ 3 ], "filter": [ - 1832 + 1852 ], "predicate": [ 39 @@ -31132,13 +31358,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 1830 + 1850 ], "count": [ 38, { "columns": [ - 1845, + 1865, "[match_clips_select_column!]" ], "distinct": [ @@ -31147,31 +31373,31 @@ export default { } ], "max": [ - 1836 + 1856 ], "min": [ - 1838 + 1858 ], "stddev": [ - 1847 + 1867 ], "stddev_pop": [ - 1849 + 1869 ], "stddev_samp": [ - 1851 + 1871 ], "sum": [ - 1855 + 1875 ], "var_pop": [ - 1859 + 1879 ], "var_samp": [ - 1861 + 1881 ], "variance": [ - 1863 + 1883 ], "__typename": [ 78 @@ -31179,37 +31405,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 1831 + 1851 ], "count": [ - 2461 + 2481 ], "max": [ - 1837 + 1857 ], "min": [ - 1839 + 1859 ], "stddev": [ - 1848 + 1868 ], "stddev_pop": [ - 1850 + 1870 ], "stddev_samp": [ - 1852 + 1872 ], "sum": [ - 1856 + 1876 ], "var_pop": [ - 1860 + 1880 ], "var_samp": [ - 1862 + 1882 ], "variance": [ - 1864 + 1884 ], "__typename": [ 78 @@ -31217,10 +31443,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 1835 + 1855 ], "on_conflict": [ - 1842 + 1862 ], "__typename": [ 78 @@ -31254,25 +31480,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31280,16 +31506,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 1832 + 1852 ], "_not": [ - 1832 + 1852 ], "_or": [ - 1832 + 1852 ], "created_at": [ - 4005 + 4025 ], "download_url": [ 80 @@ -31301,22 +31527,22 @@ export default { 80 ], "id": [ - 4444 + 4464 ], "kills_count": [ 39 ], "match_map": [ - 2123 + 2143 ], "match_map_demo": [ - 2010 + 2030 ], "match_map_demo_id": [ - 4444 + 4464 ], "match_map_id": [ - 4444 + 4464 ], "render_jobs": [ 197 @@ -31331,7 +31557,7 @@ export default { 182 ], "target": [ - 3423 + 3443 ], "target_steam_id": [ 182 @@ -31346,7 +31572,7 @@ export default { 80 ], "user": [ - 3423 + 3443 ], "user_steam_id": [ 182 @@ -31390,7 +31616,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4004 + 4024 ], "duration_ms": [ 38 @@ -31399,22 +31625,22 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map": [ - 2132 + 2152 ], "match_map_demo": [ - 2022 + 2042 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "render_jobs": [ 194 @@ -31426,7 +31652,7 @@ export default { 180 ], "target": [ - 3430 + 3450 ], "target_steam_id": [ 180 @@ -31438,7 +31664,7 @@ export default { 78 ], "user": [ - 3430 + 3450 ], "user_steam_id": [ 180 @@ -31455,7 +31681,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4004 + 4024 ], "download_url": [ 78 @@ -31467,16 +31693,16 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -31508,46 +31734,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2461 + 2481 ], "duration_ms": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "thumbnail_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31555,7 +31781,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4004 + 4024 ], "download_url": [ 78 @@ -31567,16 +31793,16 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -31608,46 +31834,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2461 + 2481 ], "duration_ms": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "thumbnail_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31658,7 +31884,7 @@ export default { 38 ], "returning": [ - 1823 + 1843 ], "__typename": [ 78 @@ -31666,10 +31892,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 1835 + 1855 ], "on_conflict": [ - 1842 + 1862 ], "__typename": [ 78 @@ -31677,13 +31903,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 1833 + 1853 ], "update_columns": [ - 1857 + 1877 ], "where": [ - 1832 + 1852 ], "__typename": [ 78 @@ -31691,70 +31917,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2461 + 2481 ], "download_url": [ - 2461 + 2481 ], "duration_ms": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_demo": [ - 2024 + 2044 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target": [ - 3432 + 3452 ], "target_steam_id": [ - 2461 + 2481 ], "thumbnail_download_url": [ - 2461 + 2481 ], "thumbnail_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "user": [ - 3432 + 3452 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "visibility": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31762,7 +31988,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -31771,7 +31997,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4004 + 4024 ], "duration_ms": [ 38 @@ -31780,16 +32006,16 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -31847,25 +32073,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31899,25 +32125,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31951,25 +32177,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -31977,7 +32203,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 1854 + 1874 ], "ordering": [ 236 @@ -31988,7 +32214,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "duration_ms": [ 38 @@ -31997,16 +32223,16 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -32064,25 +32290,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32091,13 +32317,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1834 + 1854 ], "_set": [ - 1846 + 1866 ], "where": [ - 1832 + 1852 ], "__typename": [ 78 @@ -32131,25 +32357,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32183,25 +32409,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32235,25 +32461,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2461 + 2481 ], "kills_count": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "target_steam_id": [ - 2461 + 2481 ], "user_steam_id": [ - 2461 + 2481 ], "views_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32261,52 +32487,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 ], "game_server_node": [ - 1209 + 1229 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_demo": [ - 1998 + 2018 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 ], "status_history": [ - 1332, + 1352, { "path": [ 78 @@ -32317,7 +32543,7 @@ export default { 78 ], "watcher": [ - 3419 + 3439 ], "watcher_steam_id": [ 180 @@ -32328,10 +32554,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 1869 + 1889 ], "nodes": [ - 1865 + 1885 ], "__typename": [ 78 @@ -32339,7 +32565,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1868 + 1888 ], "__typename": [ 78 @@ -32347,13 +32573,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1891 + 1911 ], "distinct": [ 3 ], "filter": [ - 1875 + 1895 ], "predicate": [ 39 @@ -32364,13 +32590,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1873 + 1893 ], "count": [ 38, { "columns": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -32379,31 +32605,31 @@ export default { } ], "max": [ - 1882 + 1902 ], "min": [ - 1884 + 1904 ], "stddev": [ - 1893 + 1913 ], "stddev_pop": [ - 1895 + 1915 ], "stddev_samp": [ - 1897 + 1917 ], "sum": [ - 1901 + 1921 ], "var_pop": [ - 1905 + 1925 ], "var_samp": [ - 1907 + 1927 ], "variance": [ - 1909 + 1929 ], "__typename": [ 78 @@ -32411,37 +32637,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1874 + 1894 ], "count": [ - 2461 + 2481 ], "max": [ - 1883 + 1903 ], "min": [ - 1885 + 1905 ], "stddev": [ - 1894 + 1914 ], "stddev_pop": [ - 1896 + 1916 ], "stddev_samp": [ - 1898 + 1918 ], "sum": [ - 1902 + 1922 ], "var_pop": [ - 1906 + 1926 ], "var_samp": [ - 1908 + 1928 ], "variance": [ - 1910 + 1930 ], "__typename": [ 78 @@ -32449,7 +32675,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -32457,10 +32683,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1881 + 1901 ], "on_conflict": [ - 1887 + 1907 ], "__typename": [ 78 @@ -32476,7 +32702,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32484,67 +32710,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 1875 + 1895 ], "_not": [ - 1875 + 1895 ], "_or": [ - 1875 + 1895 ], "created_at": [ - 4005 + 4025 ], "error_message": [ 80 ], "game_server_node": [ - 1221 + 1241 ], "game_server_node_id": [ 80 ], "id": [ - 4444 + 4464 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4005 + 4025 ], "last_status_at": [ - 4005 + 4025 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_demo": [ - 2010 + 2030 ], "match_map_demo_id": [ - 4444 + 4464 ], "match_map_id": [ - 4444 + 4464 ], "status": [ 80 ], "status_history": [ - 1334 + 1354 ], "stream_url": [ 80 ], "watcher": [ - 3423 + 3443 ], "watcher_steam_id": [ 182 @@ -32588,58 +32814,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 ], "game_server_node": [ - 1233 + 1253 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_demo": [ - 2022 + 2042 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 ], "watcher": [ - 3430 + 3450 ], "watcher_steam_id": [ 180 @@ -32650,7 +32876,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -32659,25 +32885,25 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 @@ -32694,43 +32920,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_activity_at": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32738,7 +32964,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -32747,25 +32973,25 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 @@ -32782,43 +33008,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_activity_at": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32829,7 +33055,7 @@ export default { 38 ], "returning": [ - 1865 + 1885 ], "__typename": [ 78 @@ -32837,13 +33063,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 1876 + 1896 ], "update_columns": [ - 1903 + 1923 ], "where": [ - 1875 + 1895 ], "__typename": [ 78 @@ -32851,61 +33077,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node": [ - 1235 + 1255 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "last_activity_at": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_demo": [ - 2024 + 2044 ], "match_map_demo_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "status_history": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "watcher": [ - 3432 + 3452 ], "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -32913,7 +33139,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -32921,7 +33147,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -32930,7 +33156,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -32939,31 +33165,31 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 @@ -32985,7 +33211,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33001,7 +33227,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33017,7 +33243,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33025,7 +33251,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1900 + 1920 ], "ordering": [ 236 @@ -33036,7 +33262,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "error_message": [ 78 @@ -33045,31 +33271,31 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4004 + 4024 ], "last_status_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "status": [ 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 @@ -33091,7 +33317,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33100,28 +33326,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1871 + 1891 ], "_delete_at_path": [ - 1877 + 1897 ], "_delete_elem": [ - 1878 + 1898 ], "_delete_key": [ - 1879 + 1899 ], "_inc": [ - 1880 + 1900 ], "_prepend": [ - 1890 + 1910 ], "_set": [ - 1892 + 1912 ], "where": [ - 1875 + 1895 ], "__typename": [ 78 @@ -33137,7 +33363,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33153,7 +33379,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33169,7 +33395,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33186,19 +33412,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 @@ -33209,10 +33435,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 1917 + 1937 ], "nodes": [ - 1911 + 1931 ], "__typename": [ 78 @@ -33220,13 +33446,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1914 + 1934 ], "bool_or": [ - 1915 + 1935 ], "count": [ - 1916 + 1936 ], "__typename": [ 78 @@ -33234,13 +33460,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1935 + 1955 ], "distinct": [ 3 ], "filter": [ - 1922 + 1942 ], "predicate": [ 4 @@ -33251,13 +33477,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1936 + 1956 ], "distinct": [ 3 ], "filter": [ - 1922 + 1942 ], "predicate": [ 4 @@ -33268,13 +33494,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1934 + 1954 ], "distinct": [ 3 ], "filter": [ - 1922 + 1942 ], "predicate": [ 39 @@ -33285,13 +33511,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 1920 + 1940 ], "count": [ 38, { "columns": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -33300,31 +33526,31 @@ export default { } ], "max": [ - 1926 + 1946 ], "min": [ - 1928 + 1948 ], "stddev": [ - 1938 + 1958 ], "stddev_pop": [ - 1940 + 1960 ], "stddev_samp": [ - 1942 + 1962 ], "sum": [ - 1946 + 1966 ], "var_pop": [ - 1950 + 1970 ], "var_samp": [ - 1952 + 1972 ], "variance": [ - 1954 + 1974 ], "__typename": [ 78 @@ -33332,37 +33558,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1921 + 1941 ], "count": [ - 2461 + 2481 ], "max": [ - 1927 + 1947 ], "min": [ - 1929 + 1949 ], "stddev": [ - 1939 + 1959 ], "stddev_pop": [ - 1941 + 1961 ], "stddev_samp": [ - 1943 + 1963 ], "sum": [ - 1947 + 1967 ], "var_pop": [ - 1951 + 1971 ], "var_samp": [ - 1953 + 1973 ], "variance": [ - 1955 + 1975 ], "__typename": [ 78 @@ -33370,10 +33596,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1925 + 1945 ], "on_conflict": [ - 1931 + 1951 ], "__typename": [ 78 @@ -33389,7 +33615,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33397,13 +33623,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 1922 + 1942 ], "_not": [ - 1922 + 1942 ], "_or": [ - 1922 + 1942 ], "captain": [ 4 @@ -33415,19 +33641,19 @@ export default { 80 ], "id": [ - 4444 + 4464 ], "lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "placeholder_name": [ 80 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 @@ -33456,19 +33682,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 @@ -33482,10 +33708,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -33499,19 +33725,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "placeholder_name": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33522,10 +33748,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -33539,19 +33765,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "placeholder_name": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33562,7 +33788,7 @@ export default { 38 ], "returning": [ - 1911 + 1931 ], "__typename": [ 78 @@ -33570,13 +33796,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 1923 + 1943 ], "update_columns": [ - 1948 + 1968 ], "where": [ - 1922 + 1942 ], "__typename": [ 78 @@ -33584,31 +33810,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2461 + 2481 ], "checked_in": [ - 2461 + 2481 ], "discord_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "placeholder_name": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33616,7 +33842,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -33636,10 +33862,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -33661,7 +33887,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33677,7 +33903,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33693,7 +33919,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33701,7 +33927,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1945 + 1965 ], "ordering": [ 236 @@ -33721,10 +33947,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -33746,7 +33972,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33755,13 +33981,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1924 + 1944 ], "_set": [ - 1937 + 1957 ], "where": [ - 1922 + 1942 ], "__typename": [ 78 @@ -33777,7 +34003,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33793,7 +34019,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33809,7 +34035,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -33826,16 +34052,16 @@ export default { 3 ], "captain": [ - 4547 + 4567 ], "coach": [ - 3419 + 3439 ], "coach_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "is_on_lineup": [ 3 @@ -33850,10 +34076,10 @@ export default { 3 ], "lineup_players": [ - 1911, + 1931, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -33863,19 +34089,19 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "lineup_players_aggregate": [ - 1912, + 1932, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -33885,25 +34111,25 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33913,19 +34139,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33935,11 +34161,11 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], @@ -33947,10 +34173,10 @@ export default { 78 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -33961,10 +34187,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 1960 + 1980 ], "nodes": [ - 1956 + 1976 ], "__typename": [ 78 @@ -33972,7 +34198,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 1959 + 1979 ], "__typename": [ 78 @@ -33980,13 +34206,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1978 + 1998 ], "distinct": [ 3 ], "filter": [ - 1965 + 1985 ], "predicate": [ 39 @@ -33997,13 +34223,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 1963 + 1983 ], "count": [ 38, { "columns": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "distinct": [ @@ -34012,31 +34238,31 @@ export default { } ], "max": [ - 1969 + 1989 ], "min": [ - 1971 + 1991 ], "stddev": [ - 1980 + 2000 ], "stddev_pop": [ - 1982 + 2002 ], "stddev_samp": [ - 1984 + 2004 ], "sum": [ - 1988 + 2008 ], "var_pop": [ - 1992 + 2012 ], "var_samp": [ - 1994 + 2014 ], "variance": [ - 1996 + 2016 ], "__typename": [ 78 @@ -34044,37 +34270,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 1964 + 1984 ], "count": [ - 2461 + 2481 ], "max": [ - 1970 + 1990 ], "min": [ - 1972 + 1992 ], "stddev": [ - 1981 + 2001 ], "stddev_pop": [ - 1983 + 2003 ], "stddev_samp": [ - 1985 + 2005 ], "sum": [ - 1989 + 2009 ], "var_pop": [ - 1993 + 2013 ], "var_samp": [ - 1995 + 2015 ], "variance": [ - 1997 + 2017 ], "__typename": [ 78 @@ -34082,10 +34308,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 1968 + 1988 ], "on_conflict": [ - 1975 + 1995 ], "__typename": [ 78 @@ -34101,7 +34327,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34109,13 +34335,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 1965 + 1985 ], "_not": [ - 1965 + 1985 ], "_or": [ - 1965 + 1985 ], "can_pick_map_veto": [ 4 @@ -34127,16 +34353,16 @@ export default { 4 ], "captain": [ - 4551 + 4571 ], "coach": [ - 3423 + 3443 ], "coach_steam_id": [ 182 ], "id": [ - 4444 + 4464 ], "is_on_lineup": [ 4 @@ -34151,31 +34377,31 @@ export default { 4 ], "lineup_players": [ - 1922 + 1942 ], "lineup_players_aggregate": [ - 1913 + 1933 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_veto_picks": [ - 2097 + 2117 ], "match_veto_picks_aggregate": [ - 2092 + 2112 ], "name": [ 80 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "team_name": [ 80 @@ -34195,34 +34421,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4557 + 4577 ], "coach": [ - 3430 + 3450 ], "coach_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "lineup_players": [ - 1919 + 1939 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_veto_picks": [ - 2096 + 2116 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -34236,16 +34462,16 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "name": [ 78 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -34256,19 +34482,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "team_name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34279,16 +34505,16 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "name": [ 78 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -34299,19 +34525,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "team_name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34322,7 +34548,7 @@ export default { 38 ], "returning": [ - 1956 + 1976 ], "__typename": [ 78 @@ -34330,10 +34556,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 1968 + 1988 ], "on_conflict": [ - 1975 + 1995 ], "__typename": [ 78 @@ -34341,13 +34567,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 1966 + 1986 ], "update_columns": [ - 1990 + 2010 ], "where": [ - 1965 + 1985 ], "__typename": [ 78 @@ -34355,61 +34581,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2461 + 2481 ], "can_pick_region_veto": [ - 2461 + 2481 ], "can_update_lineup": [ - 2461 + 2481 ], "captain": [ - 4558 + 4578 ], "coach": [ - 3432 + 3452 ], "coach_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_on_lineup": [ - 2461 + 2481 ], "is_picking_map_veto": [ - 2461 + 2481 ], "is_picking_region_veto": [ - 2461 + 2481 ], "is_ready": [ - 2461 + 2481 ], "lineup_players_aggregate": [ - 1918 + 1938 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_veto_picks_aggregate": [ - 2095 + 2115 ], "name": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "team_name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34417,7 +34643,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -34429,13 +34655,13 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -34454,7 +34680,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34470,7 +34696,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34486,7 +34712,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34494,7 +34720,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1987 + 2007 ], "ordering": [ 236 @@ -34508,13 +34734,13 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "team_id": [ - 4442 + 4462 ], "team_name": [ 78 @@ -34533,7 +34759,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34542,13 +34768,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1967 + 1987 ], "_set": [ - 1979 + 1999 ], "where": [ - 1965 + 1985 ], "__typename": [ 78 @@ -34564,7 +34790,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34580,7 +34806,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34596,7 +34822,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -34604,7 +34830,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1332, + 1352, { "path": [ 78 @@ -34656,16 +34882,16 @@ export default { } ], "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1865, + 1885, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34675,19 +34901,19 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], "demo_sessions_aggregate": [ - 1866, + 1886, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34697,11 +34923,11 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], @@ -34718,10 +34944,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "kills": [ - 1332, + 1352, { "path": [ 78 @@ -34732,13 +34958,13 @@ export default { 78 ], "match": [ - 2276 + 2296 ], "match_clips": [ - 1823, + 1843, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -34748,19 +34974,19 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_aggregate": [ - 1824, + 1844, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -34770,25 +34996,25 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -34800,7 +35026,7 @@ export default { 78 ], "players": [ - 1332, + 1352, { "path": [ 78 @@ -34808,7 +35034,7 @@ export default { } ], "round_ticks": [ - 1332, + 1352, { "path": [ 78 @@ -34833,10 +35059,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2004 + 2024 ], "nodes": [ - 1998 + 2018 ], "__typename": [ 78 @@ -34844,13 +35070,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2001 + 2021 ], "bool_or": [ - 2002 + 2022 ], "count": [ - 2003 + 2023 ], "__typename": [ 78 @@ -34858,13 +35084,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2028 + 2048 ], "distinct": [ 3 ], "filter": [ - 2010 + 2030 ], "predicate": [ 4 @@ -34875,13 +35101,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2029 + 2049 ], "distinct": [ 3 ], "filter": [ - 2010 + 2030 ], "predicate": [ 4 @@ -34892,13 +35118,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2027 + 2047 ], "distinct": [ 3 ], "filter": [ - 2010 + 2030 ], "predicate": [ 39 @@ -34909,13 +35135,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2008 + 2028 ], "count": [ 38, { "columns": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "distinct": [ @@ -34924,31 +35150,31 @@ export default { } ], "max": [ - 2017 + 2037 ], "min": [ - 2019 + 2039 ], "stddev": [ - 2031 + 2051 ], "stddev_pop": [ - 2033 + 2053 ], "stddev_samp": [ - 2035 + 2055 ], "sum": [ - 2039 + 2059 ], "var_pop": [ - 2043 + 2063 ], "var_samp": [ - 2045 + 2065 ], "variance": [ - 2047 + 2067 ], "__typename": [ 78 @@ -34956,37 +35182,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2009 + 2029 ], "count": [ - 2461 + 2481 ], "max": [ - 2018 + 2038 ], "min": [ - 2020 + 2040 ], "stddev": [ - 2032 + 2052 ], "stddev_pop": [ - 2034 + 2054 ], "stddev_samp": [ - 2036 + 2056 ], "sum": [ - 2040 + 2060 ], "var_pop": [ - 2044 + 2064 ], "var_samp": [ - 2046 + 2066 ], "variance": [ - 2048 + 2068 ], "__typename": [ 78 @@ -34994,16 +35220,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1332 + 1352 ], "kills": [ - 1332 + 1352 ], "players": [ - 1332 + 1352 ], "round_ticks": [ - 1332 + 1352 ], "__typename": [ 78 @@ -35011,10 +35237,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2016 + 2036 ], "on_conflict": [ - 2023 + 2043 ], "__typename": [ 78 @@ -35042,19 +35268,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35062,16 +35288,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2010 + 2030 ], "_not": [ - 2010 + 2030 ], "_or": [ - 2010 + 2030 ], "bombs": [ - 1334 + 1354 ], "clip_render_jobs": [ 197 @@ -35080,16 +35306,16 @@ export default { 187 ], "created_at": [ - 4005 + 4025 ], "cs2_build": [ 80 ], "demo_sessions": [ - 1875 + 1895 ], "demo_sessions_aggregate": [ - 1867 + 1887 ], "download_url": [ 80 @@ -35104,34 +35330,34 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "kills": [ - 1334 + 1354 ], "map_name": [ 80 ], "match": [ - 2285 + 2305 ], "match_clips": [ - 1832 + 1852 ], "match_clips_aggregate": [ - 1825 + 1845 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "metadata_parsed_at": [ - 4005 + 4025 ], "playback_file": [ 80 @@ -35143,10 +35369,10 @@ export default { 80 ], "players": [ - 1334 + 1354 ], "round_ticks": [ - 1334 + 1354 ], "size": [ 39 @@ -35235,19 +35461,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1332 + 1352 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1872 + 1892 ], "file": [ 78 @@ -35256,31 +35482,31 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "kills": [ - 1332 + 1352 ], "map_name": [ 78 ], "match": [ - 2294 + 2314 ], "match_clips": [ - 1829 + 1849 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -35289,10 +35515,10 @@ export default { 38 ], "players": [ - 1332 + 1352 ], "round_ticks": [ - 1332 + 1352 ], "size": [ 38 @@ -35312,7 +35538,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 @@ -35327,19 +35553,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "map_name": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -35368,49 +35594,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2461 + 2481 ], "cs2_build": [ - 2461 + 2481 ], "duration_seconds": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map_name": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "metadata_parsed_at": [ - 2461 + 2481 ], "playback_file": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "workshop_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35418,7 +35644,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 @@ -35433,19 +35659,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "map_name": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -35474,49 +35700,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2461 + 2481 ], "cs2_build": [ - 2461 + 2481 ], "duration_seconds": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map_name": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "metadata_parsed_at": [ - 2461 + 2481 ], "playback_file": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "workshop_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35527,7 +35753,7 @@ export default { 38 ], "returning": [ - 1998 + 2018 ], "__typename": [ 78 @@ -35535,10 +35761,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2016 + 2036 ], "on_conflict": [ - 2023 + 2043 ], "__typename": [ 78 @@ -35546,13 +35772,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2011 + 2031 ], "update_columns": [ - 2041 + 2061 ], "where": [ - 2010 + 2030 ], "__typename": [ 78 @@ -35560,85 +35786,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2461 + 2481 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2461 + 2481 ], "cs2_build": [ - 2461 + 2481 ], "demo_sessions_aggregate": [ - 1870 + 1890 ], "download_url": [ - 2461 + 2481 ], "duration_seconds": [ - 2461 + 2481 ], "file": [ - 2461 + 2481 ], "geometry_validated": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_name": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_clips_aggregate": [ - 1828 + 1848 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "metadata_parsed_at": [ - 2461 + 2481 ], "playback_file": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "playback_url": [ - 2461 + 2481 ], "players": [ - 2461 + 2481 ], "round_ticks": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "workshop_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35646,7 +35872,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -35654,16 +35880,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1332 + 1352 ], "kills": [ - 1332 + 1352 ], "players": [ - 1332 + 1352 ], "round_ticks": [ - 1332 + 1352 ], "__typename": [ 78 @@ -35674,10 +35900,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1332 + 1352 ], "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 @@ -35689,22 +35915,22 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "kills": [ - 1332 + 1352 ], "map_name": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -35713,10 +35939,10 @@ export default { 38 ], "players": [ - 1332 + 1352 ], "round_ticks": [ - 1332 + 1352 ], "size": [ 38 @@ -35756,19 +35982,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35796,19 +36022,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35836,19 +36062,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35856,7 +36082,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2038 + 2058 ], "ordering": [ 236 @@ -35867,10 +36093,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1332 + 1352 ], "created_at": [ - 4004 + 4024 ], "cs2_build": [ 78 @@ -35885,22 +36111,22 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "kills": [ - 1332 + 1352 ], "map_name": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "metadata_parsed_at": [ - 4004 + 4024 ], "playback_file": [ 78 @@ -35909,10 +36135,10 @@ export default { 38 ], "players": [ - 1332 + 1352 ], "round_ticks": [ - 1332 + 1352 ], "size": [ 38 @@ -35952,19 +36178,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -35973,28 +36199,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2006 + 2026 ], "_delete_at_path": [ - 2012 + 2032 ], "_delete_elem": [ - 2013 + 2033 ], "_delete_key": [ - 2014 + 2034 ], "_inc": [ - 2015 + 2035 ], "_prepend": [ - 2026 + 2046 ], "_set": [ - 2030 + 2050 ], "where": [ - 2010 + 2030 ], "__typename": [ 78 @@ -36022,19 +36248,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36062,19 +36288,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36102,19 +36328,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2461 + 2481 ], "playback_size": [ - 2461 + 2481 ], "size": [ - 2461 + 2481 ], "tick_rate": [ - 2461 + 2481 ], "total_ticks": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36122,10 +36348,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -36135,19 +36361,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -36157,11 +36383,11 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], @@ -36169,22 +36395,22 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "has_backup_file": [ 3 ], "id": [ - 4442 + 4462 ], "kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -36194,19 +36420,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -36216,11 +36442,11 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], @@ -36231,7 +36457,7 @@ export default { 38 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 @@ -36243,25 +36469,25 @@ export default { 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_reason": [ - 1165 + 1185 ], "winning_side": [ 78 @@ -36272,10 +36498,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2053 + 2073 ], "nodes": [ - 2049 + 2069 ], "__typename": [ 78 @@ -36283,7 +36509,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2052 + 2072 ], "__typename": [ 78 @@ -36291,13 +36517,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2070 + 2090 ], "distinct": [ 3 ], "filter": [ - 2058 + 2078 ], "predicate": [ 39 @@ -36308,13 +36534,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2056 + 2076 ], "count": [ 38, { "columns": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -36323,31 +36549,31 @@ export default { } ], "max": [ - 2062 + 2082 ], "min": [ - 2064 + 2084 ], "stddev": [ - 2072 + 2092 ], "stddev_pop": [ - 2074 + 2094 ], "stddev_samp": [ - 2076 + 2096 ], "sum": [ - 2080 + 2100 ], "var_pop": [ - 2084 + 2104 ], "var_samp": [ - 2086 + 2106 ], "variance": [ - 2088 + 2108 ], "__typename": [ 78 @@ -36355,37 +36581,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2057 + 2077 ], "count": [ - 2461 + 2481 ], "max": [ - 2063 + 2083 ], "min": [ - 2065 + 2085 ], "stddev": [ - 2073 + 2093 ], "stddev_pop": [ - 2075 + 2095 ], "stddev_samp": [ - 2077 + 2097 ], "sum": [ - 2081 + 2101 ], "var_pop": [ - 2085 + 2105 ], "var_samp": [ - 2087 + 2107 ], "variance": [ - 2089 + 2109 ], "__typename": [ 78 @@ -36393,10 +36619,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2061 + 2081 ], "on_conflict": [ - 2067 + 2087 ], "__typename": [ 78 @@ -36430,25 +36656,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36456,40 +36682,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2058 + 2078 ], "_not": [ - 2058 + 2078 ], "_or": [ - 2058 + 2078 ], "assists": [ - 2610 + 2630 ], "assists_aggregate": [ - 2601 + 2621 ], "backup_file": [ 80 ], "created_at": [ - 4005 + 4025 ], "deleted_at": [ - 4005 + 4025 ], "has_backup_file": [ 4 ], "id": [ - 4444 + 4464 ], "kills": [ - 2827 + 2847 ], "kills_aggregate": [ - 2818 + 2838 ], "lineup_1_money": [ 39 @@ -36498,7 +36724,7 @@ export default { 39 ], "lineup_1_side": [ - 983 + 1003 ], "lineup_1_timeouts_available": [ 39 @@ -36510,25 +36736,25 @@ export default { 39 ], "lineup_2_side": [ - 983 + 1003 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "round": [ 39 ], "time": [ - 4005 + 4025 ], "winning_reason": [ - 1166 + 1186 ], "winning_side": [ 80 @@ -36566,22 +36792,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2607 + 2627 ], "backup_file": [ 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "kills": [ - 2824 + 2844 ], "lineup_1_money": [ 38 @@ -36590,7 +36816,7 @@ export default { 38 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 @@ -36602,25 +36828,25 @@ export default { 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_reason": [ - 1165 + 1185 ], "winning_side": [ 78 @@ -36634,13 +36860,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "lineup_1_money": [ 38 @@ -36661,13 +36887,13 @@ export default { 38 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_side": [ 78 @@ -36678,46 +36904,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "winning_side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36728,13 +36954,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "lineup_1_money": [ 38 @@ -36755,13 +36981,13 @@ export default { 38 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_side": [ 78 @@ -36772,46 +36998,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "winning_side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36822,7 +37048,7 @@ export default { 38 ], "returning": [ - 2049 + 2069 ], "__typename": [ 78 @@ -36830,13 +37056,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2059 + 2079 ], "update_columns": [ - 2082 + 2102 ], "where": [ - 2058 + 2078 ], "__typename": [ 78 @@ -36844,67 +37070,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2606 + 2626 ], "backup_file": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "has_backup_file": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "kills_aggregate": [ - 2823 + 2843 ], "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_side": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_side": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "winning_reason": [ - 2461 + 2481 ], "winning_side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -36912,7 +37138,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -36924,13 +37150,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "lineup_1_money": [ 38 @@ -36939,7 +37165,7 @@ export default { 38 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 @@ -36951,22 +37177,22 @@ export default { 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_reason": [ - 1165 + 1185 ], "winning_side": [ 78 @@ -37003,25 +37229,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37055,25 +37281,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37107,25 +37333,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37133,7 +37359,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2079 + 2099 ], "ordering": [ 236 @@ -37147,13 +37373,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "lineup_1_money": [ 38 @@ -37162,7 +37388,7 @@ export default { 38 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 @@ -37174,22 +37400,22 @@ export default { 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "winning_reason": [ - 1165 + 1185 ], "winning_side": [ 78 @@ -37226,25 +37452,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37253,13 +37479,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2060 + 2080 ], "_set": [ - 2071 + 2091 ], "where": [ - 2058 + 2078 ], "__typename": [ 78 @@ -37293,25 +37519,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37345,25 +37571,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37397,25 +37623,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_money": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37423,34 +37649,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -37458,10 +37684,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2094 + 2114 ], "nodes": [ - 2090 + 2110 ], "__typename": [ 78 @@ -37469,7 +37695,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2093 + 2113 ], "__typename": [ 78 @@ -37477,13 +37703,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2108 + 2128 ], "distinct": [ 3 ], "filter": [ - 2097 + 2117 ], "predicate": [ 39 @@ -37497,7 +37723,7 @@ export default { 38, { "columns": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -37506,10 +37732,10 @@ export default { } ], "max": [ - 2100 + 2120 ], "min": [ - 2102 + 2122 ], "__typename": [ 78 @@ -37517,13 +37743,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 2101 + 2121 ], "min": [ - 2103 + 2123 ], "__typename": [ 78 @@ -37531,10 +37757,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2099 + 2119 ], "on_conflict": [ - 2105 + 2125 ], "__typename": [ 78 @@ -37542,43 +37768,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2097 + 2117 ], "_not": [ - 2097 + 2117 ], "_or": [ - 2097 + 2117 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "side": [ 80 ], "type": [ - 1146 + 1166 ], "__typename": [ 78 @@ -37587,34 +37813,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map": [ - 1811 + 1831 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -37622,19 +37848,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 @@ -37645,22 +37871,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37668,19 +37894,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 @@ -37691,22 +37917,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37717,7 +37943,7 @@ export default { 38 ], "returning": [ - 2090 + 2110 ], "__typename": [ 78 @@ -37725,13 +37951,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2098 + 2118 ], "update_columns": [ - 2112 + 2132 ], "where": [ - 2097 + 2117 ], "__typename": [ 78 @@ -37739,34 +37965,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -37774,7 +38000,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -37783,25 +38009,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -37809,7 +38035,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2111 + 2131 ], "ordering": [ 236 @@ -37820,25 +38046,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "side": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -37847,10 +38073,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2109 + 2129 ], "where": [ - 2097 + 2117 ], "__typename": [ 78 @@ -37861,13 +38087,13 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "demos": [ - 1998, + 2018, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -37877,19 +38103,19 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "demos_aggregate": [ - 1999, + 2019, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -37899,11 +38125,11 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], @@ -37917,13 +38143,13 @@ export default { 753 ], "ended_at": [ - 4004 + 4024 ], "flashes": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -37933,19 +38159,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "flashes_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -37955,28 +38181,28 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "id": [ - 4442 + 4462 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 @@ -37985,25 +38211,25 @@ export default { 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_clips": [ - 1823, + 1843, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -38013,19 +38239,19 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_aggregate": [ - 1824, + 1844, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -38035,22 +38261,22 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_id": [ - 4442 + 4462 ], "objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -38060,19 +38286,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -38082,11 +38308,11 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], @@ -38094,10 +38320,10 @@ export default { 38 ], "player_assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -38107,19 +38333,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -38129,19 +38355,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_damages": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -38151,19 +38377,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -38173,19 +38399,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -38195,19 +38421,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -38217,19 +38443,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_unused_utilities": [ - 3304, + 3324, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38239,19 +38465,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utilities_aggregate": [ - 3305, + 3325, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38261,11 +38487,11 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], @@ -38273,13 +38499,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "rounds": [ - 2049, + 2069, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38289,19 +38515,19 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "rounds_aggregate": [ - 2050, + 2070, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38311,25 +38537,25 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "started_at": [ - 4004 + 4024 ], "status": [ 758 ], "utility": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -38339,19 +38565,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "utility_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -38361,19 +38587,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "vetos": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38383,19 +38609,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "vetos_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38405,16 +38631,16 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -38422,10 +38648,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2118 + 2138 ], "nodes": [ - 2114 + 2134 ], "__typename": [ 78 @@ -38433,7 +38659,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2117 + 2137 ], "__typename": [ 78 @@ -38441,13 +38667,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2136 + 2156 ], "distinct": [ 3 ], "filter": [ - 2123 + 2143 ], "predicate": [ 39 @@ -38458,13 +38684,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2121 + 2141 ], "count": [ 38, { "columns": [ - 2136, + 2156, "[match_maps_select_column!]" ], "distinct": [ @@ -38473,31 +38699,31 @@ export default { } ], "max": [ - 2127 + 2147 ], "min": [ - 2129 + 2149 ], "stddev": [ - 2138 + 2158 ], "stddev_pop": [ - 2140 + 2160 ], "stddev_samp": [ - 2142 + 2162 ], "sum": [ - 2146 + 2166 ], "var_pop": [ - 2150 + 2170 ], "var_samp": [ - 2152 + 2172 ], "variance": [ - 2154 + 2174 ], "__typename": [ 78 @@ -38505,37 +38731,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2122 + 2142 ], "count": [ - 2461 + 2481 ], "max": [ - 2128 + 2148 ], "min": [ - 2130 + 2150 ], "stddev": [ - 2139 + 2159 ], "stddev_pop": [ - 2141 + 2161 ], "stddev_samp": [ - 2143 + 2163 ], "sum": [ - 2147 + 2167 ], "var_pop": [ - 2151 + 2171 ], "var_samp": [ - 2153 + 2173 ], "variance": [ - 2155 + 2175 ], "__typename": [ 78 @@ -38543,10 +38769,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2126 + 2146 ], "on_conflict": [ - 2133 + 2153 ], "__typename": [ 78 @@ -38583,19 +38809,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -38603,25 +38829,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2123 + 2143 ], "_not": [ - 2123 + 2143 ], "_or": [ - 2123 + 2143 ], "clips_count": [ 39 ], "created_at": [ - 4005 + 4025 ], "demos": [ - 2010 + 2030 ], "demos_aggregate": [ - 2000 + 2020 ], "demos_download_url": [ 80 @@ -38633,28 +38859,28 @@ export default { 756 ], "ended_at": [ - 4005 + 4025 ], "flashes": [ - 2782 + 2802 ], "flashes_aggregate": [ - 2773 + 2793 ], "id": [ - 4444 + 4464 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4005 + 4025 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 983 + 1003 ], "lineup_1_timeouts_available": [ 39 @@ -38663,94 +38889,94 @@ export default { 39 ], "lineup_2_side": [ - 983 + 1003 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_clips": [ - 1832 + 1852 ], "match_clips_aggregate": [ - 1825 + 1845 ], "match_id": [ - 4444 + 4464 ], "objectives": [ - 3026 + 3046 ], "objectives_aggregate": [ - 3019 + 3039 ], "order": [ 39 ], "player_assists": [ - 2610 + 2630 ], "player_assists_aggregate": [ - 2601 + 2621 ], "player_damages": [ - 2671 + 2691 ], "player_damages_aggregate": [ - 2664 + 2684 ], "player_kills": [ - 2827 + 2847 ], "player_kills_aggregate": [ - 2818 + 2838 ], "player_unused_utilities": [ - 3313 + 3333 ], "player_unused_utilities_aggregate": [ - 3306 + 3326 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4005 + 4025 ], "rounds": [ - 2058 + 2078 ], "rounds_aggregate": [ - 2051 + 2071 ], "started_at": [ - 4005 + 4025 ], "status": [ 759 ], "utility": [ - 3354 + 3374 ], "utility_aggregate": [ - 3347 + 3367 ], "vetos": [ - 2097 + 2117 ], "vetos_aggregate": [ - 2092 + 2112 ], "winning_lineup_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -38782,94 +39008,94 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "demos": [ - 2007 + 2027 ], "e_match_map_status": [ 764 ], "ended_at": [ - 4004 + 4024 ], "flashes": [ - 2779 + 2799 ], "id": [ - 4442 + 4462 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1811 + 1831 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_clips": [ - 1829 + 1849 ], "match_id": [ - 4442 + 4462 ], "objectives": [ - 3023 + 3043 ], "order": [ 38 ], "player_assists": [ - 2607 + 2627 ], "player_damages": [ - 2668 + 2688 ], "player_kills": [ - 2824 + 2844 ], "player_unused_utilities": [ - 3310 + 3330 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "rounds": [ - 2055 + 2075 ], "started_at": [ - 4004 + 4024 ], "status": [ 758 ], "utility": [ - 3351 + 3371 ], "vetos": [ - 2096 + 2116 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -38880,7 +39106,7 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "demos_download_url": [ 78 @@ -38889,13 +39115,13 @@ export default { 38 ], "ended_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_score": [ 38 @@ -38910,10 +39136,10 @@ export default { 38 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "order": [ 38 @@ -38922,13 +39148,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "started_at": [ - 4004 + 4024 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -38936,46 +39162,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "ended_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "latest_clip_at": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "public_latest_clip_at": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -38986,7 +39212,7 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "demos_download_url": [ 78 @@ -38995,13 +39221,13 @@ export default { 38 ], "ended_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_score": [ 38 @@ -39016,10 +39242,10 @@ export default { 38 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "order": [ 38 @@ -39028,13 +39254,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "started_at": [ - 4004 + 4024 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -39042,46 +39268,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "ended_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "latest_clip_at": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "public_latest_clip_at": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39092,7 +39318,7 @@ export default { 38 ], "returning": [ - 2114 + 2134 ], "__typename": [ 78 @@ -39100,10 +39326,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2126 + 2146 ], "on_conflict": [ - 2133 + 2153 ], "__typename": [ 78 @@ -39111,13 +39337,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2124 + 2144 ], "update_columns": [ - 2148 + 2168 ], "where": [ - 2123 + 2143 ], "__typename": [ 78 @@ -39125,112 +39351,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "demos_aggregate": [ - 2005 + 2025 ], "demos_download_url": [ - 2461 + 2481 ], "demos_total_size": [ - 2461 + 2481 ], "e_match_map_status": [ 766 ], "ended_at": [ - 2461 + 2481 ], "flashes_aggregate": [ - 2778 + 2798 ], "id": [ - 2461 + 2481 ], "is_current_map": [ - 2461 + 2481 ], "latest_clip_at": [ - 2461 + 2481 ], "lineup_1_score": [ - 2461 + 2481 ], "lineup_1_side": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_score": [ - 2461 + 2481 ], "lineup_2_side": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_clips_aggregate": [ - 1828 + 1848 ], "match_id": [ - 2461 + 2481 ], "objectives_aggregate": [ - 3022 + 3042 ], "order": [ - 2461 + 2481 ], "player_assists_aggregate": [ - 2606 + 2626 ], "player_damages_aggregate": [ - 2667 + 2687 ], "player_kills_aggregate": [ - 2823 + 2843 ], "player_unused_utilities_aggregate": [ - 3309 + 3329 ], "public_clips_count": [ - 2461 + 2481 ], "public_latest_clip_at": [ - 2461 + 2481 ], "rounds_aggregate": [ - 2054 + 2074 ], "started_at": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "utility_aggregate": [ - 3350 + 3370 ], "vetos_aggregate": [ - 2095 + 2115 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39238,7 +39464,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -39250,34 +39476,34 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "order": [ 38 @@ -39286,16 +39512,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "started_at": [ - 4004 + 4024 ], "status": [ 758 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -39332,19 +39558,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39381,19 +39607,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39430,19 +39656,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39450,7 +39676,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2145 + 2165 ], "ordering": [ 236 @@ -39464,34 +39690,34 @@ export default { 38 ], "created_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "latest_clip_at": [ - 4004 + 4024 ], "lineup_1_side": [ - 982 + 1002 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 982 + 1002 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "order": [ 38 @@ -39500,16 +39726,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4004 + 4024 ], "started_at": [ - 4004 + 4024 ], "status": [ 758 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -39546,19 +39772,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39567,13 +39793,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2125 + 2145 ], "_set": [ - 2137 + 2157 ], "where": [ - 2123 + 2143 ], "__typename": [ 78 @@ -39610,19 +39836,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39659,19 +39885,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39708,19 +39934,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2461 + 2481 ], "lineup_1_timeouts_available": [ - 2461 + 2481 ], "lineup_2_timeouts_available": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "public_clips_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -39749,7 +39975,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -39761,10 +39987,10 @@ export default { 38 ], "map_pool": [ - 1775 + 1795 ], "map_pool_id": [ - 4442 + 4462 ], "map_veto": [ 3 @@ -39773,10 +39999,10 @@ export default { 779 ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -39786,19 +40012,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_aggregate": [ - 2277, + 2297, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -39808,11 +40034,11 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], @@ -39829,7 +40055,7 @@ export default { 3 ], "ready_setting": [ - 901 + 921 ], "region_veto": [ 3 @@ -39838,19 +40064,19 @@ export default { 78 ], "tech_timeout_setting": [ - 1063 + 1083 ], "timeout_setting": [ - 1063 + 1083 ], "tournament": [ - 4396 + 4416 ], "tournament_bracket": [ - 4006 + 4026 ], "tournament_stage": [ - 4134 + 4154 ], "tv_delay": [ 38 @@ -39864,10 +40090,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2158 + 2178 ], "nodes": [ - 2156 + 2176 ], "__typename": [ 78 @@ -39875,13 +40101,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2159 + 2179 ], "count": [ 38, { "columns": [ - 2171, + 2191, "[match_options_select_column!]" ], "distinct": [ @@ -39890,31 +40116,31 @@ export default { } ], "max": [ - 2164 + 2184 ], "min": [ - 2165 + 2185 ], "stddev": [ - 2173 + 2193 ], "stddev_pop": [ - 2174 + 2194 ], "stddev_samp": [ - 2175 + 2195 ], "sum": [ - 2178 + 2198 ], "var_pop": [ - 2181 + 2201 ], "var_samp": [ - 2182 + 2202 ], "variance": [ - 2183 + 2203 ], "__typename": [ 78 @@ -39945,13 +40171,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2160 + 2180 ], "_not": [ - 2160 + 2180 ], "_or": [ - 2160 + 2180 ], "auto_cancel_duration": [ 39 @@ -39975,7 +40201,7 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "invite_code": [ 80 @@ -39987,10 +40213,10 @@ export default { 39 ], "map_pool": [ - 1778 + 1798 ], "map_pool_id": [ - 4444 + 4464 ], "map_veto": [ 4 @@ -39999,10 +40225,10 @@ export default { 780 ], "matches": [ - 2285 + 2305 ], "matches_aggregate": [ - 2278 + 2298 ], "mr": [ 39 @@ -40017,7 +40243,7 @@ export default { 4 ], "ready_setting": [ - 902 + 922 ], "region_veto": [ 4 @@ -40026,19 +40252,19 @@ export default { 79 ], "tech_timeout_setting": [ - 1064 + 1084 ], "timeout_setting": [ - 1064 + 1084 ], "tournament": [ - 4407 + 4427 ], "tournament_bracket": [ - 4017 + 4037 ], "tournament_stage": [ - 4146 + 4166 ], "tv_delay": [ 39 @@ -40094,7 +40320,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -40106,10 +40332,10 @@ export default { 38 ], "map_pool": [ - 1784 + 1804 ], "map_pool_id": [ - 4442 + 4462 ], "map_veto": [ 3 @@ -40118,7 +40344,7 @@ export default { 779 ], "matches": [ - 2282 + 2302 ], "mr": [ 38 @@ -40133,7 +40359,7 @@ export default { 3 ], "ready_setting": [ - 901 + 921 ], "region_veto": [ 3 @@ -40142,19 +40368,19 @@ export default { 78 ], "tech_timeout_setting": [ - 1063 + 1083 ], "timeout_setting": [ - 1063 + 1083 ], "tournament": [ - 4416 + 4436 ], "tournament_bracket": [ - 4026 + 4046 ], "tournament_stage": [ - 4158 + 4178 ], "tv_delay": [ 38 @@ -40174,7 +40400,7 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -40183,7 +40409,7 @@ export default { 38 ], "map_pool_id": [ - 4442 + 4462 ], "mr": [ 38 @@ -40209,7 +40435,7 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -40218,7 +40444,7 @@ export default { 38 ], "map_pool_id": [ - 4442 + 4462 ], "mr": [ 38 @@ -40241,7 +40467,7 @@ export default { 38 ], "returning": [ - 2156 + 2176 ], "__typename": [ 78 @@ -40249,10 +40475,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2163 + 2183 ], "on_conflict": [ - 2168 + 2188 ], "__typename": [ 78 @@ -40260,13 +40486,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2161 + 2181 ], "update_columns": [ - 2179 + 2199 ], "where": [ - 2160 + 2180 ], "__typename": [ 78 @@ -40274,94 +40500,94 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2461 + 2481 ], "auto_cancellation": [ - 2461 + 2481 ], "best_of": [ - 2461 + 2481 ], "check_in_setting": [ - 2461 + 2481 ], "coaches": [ - 2461 + 2481 ], "default_models": [ - 2461 + 2481 ], "has_active_matches": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invite_code": [ - 2461 + 2481 ], "knife_round": [ - 2461 + 2481 ], "live_match_timeout": [ - 2461 + 2481 ], "map_pool": [ - 1786 + 1806 ], "map_pool_id": [ - 2461 + 2481 ], "map_veto": [ - 2461 + 2481 ], "match_mode": [ - 2461 + 2481 ], "matches_aggregate": [ - 2281 + 2301 ], "mr": [ - 2461 + 2481 ], "number_of_substitutes": [ - 2461 + 2481 ], "overtime": [ - 2461 + 2481 ], "prefer_dedicated_server": [ - 2461 + 2481 ], "ready_setting": [ - 2461 + 2481 ], "region_veto": [ - 2461 + 2481 ], "regions": [ - 2461 + 2481 ], "tech_timeout_setting": [ - 2461 + 2481 ], "timeout_setting": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_bracket": [ - 4028 + 4048 ], "tournament_stage": [ - 4160 + 4180 ], "tv_delay": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -40369,7 +40595,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -40396,7 +40622,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -40408,7 +40634,7 @@ export default { 38 ], "map_pool_id": [ - 4442 + 4462 ], "map_veto": [ 3 @@ -40429,7 +40655,7 @@ export default { 3 ], "ready_setting": [ - 901 + 921 ], "region_veto": [ 3 @@ -40438,10 +40664,10 @@ export default { 78 ], "tech_timeout_setting": [ - 1063 + 1083 ], "timeout_setting": [ - 1063 + 1083 ], "tv_delay": [ 38 @@ -40524,7 +40750,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2177 + 2197 ], "ordering": [ 236 @@ -40553,7 +40779,7 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -40565,7 +40791,7 @@ export default { 38 ], "map_pool_id": [ - 4442 + 4462 ], "map_veto": [ 3 @@ -40586,7 +40812,7 @@ export default { 3 ], "ready_setting": [ - 901 + 921 ], "region_veto": [ 3 @@ -40595,10 +40821,10 @@ export default { 78 ], "tech_timeout_setting": [ - 1063 + 1083 ], "timeout_setting": [ - 1063 + 1083 ], "tv_delay": [ 38 @@ -40636,13 +40862,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2162 + 2182 ], "_set": [ - 2172 + 2192 ], "where": [ - 2160 + 2180 ], "__typename": [ 78 @@ -40719,28 +40945,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -40748,10 +40974,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2188 + 2208 ], "nodes": [ - 2184 + 2204 ], "__typename": [ 78 @@ -40759,7 +40985,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2187 + 2207 ], "__typename": [ 78 @@ -40767,13 +40993,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2202 + 2222 ], "distinct": [ 3 ], "filter": [ - 2191 + 2211 ], "predicate": [ 39 @@ -40787,7 +41013,7 @@ export default { 38, { "columns": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -40796,10 +41022,10 @@ export default { } ], "max": [ - 2194 + 2214 ], "min": [ - 2196 + 2216 ], "__typename": [ 78 @@ -40807,13 +41033,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 2195 + 2215 ], "min": [ - 2197 + 2217 ], "__typename": [ 78 @@ -40821,10 +41047,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2193 + 2213 ], "on_conflict": [ - 2199 + 2219 ], "__typename": [ 78 @@ -40832,37 +41058,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2191 + 2211 ], "_not": [ - 2191 + 2211 ], "_or": [ - 2191 + 2211 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "region": [ 80 ], "type": [ - 1146 + 1166 ], "__typename": [ 78 @@ -40871,28 +41097,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -40900,16 +41126,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 @@ -40920,19 +41146,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "__typename": [ 78 @@ -40940,16 +41166,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 @@ -40960,19 +41186,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "__typename": [ 78 @@ -40983,7 +41209,7 @@ export default { 38 ], "returning": [ - 2184 + 2204 ], "__typename": [ 78 @@ -40991,13 +41217,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2192 + 2212 ], "update_columns": [ - 2206 + 2226 ], "where": [ - 2191 + 2211 ], "__typename": [ 78 @@ -41005,28 +41231,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41034,7 +41260,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -41043,22 +41269,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -41066,7 +41292,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2205 + 2225 ], "ordering": [ 236 @@ -41077,22 +41303,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "region": [ 78 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -41101,10 +41327,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2203 + 2223 ], "where": [ - 2191 + 2211 ], "__typename": [ 78 @@ -41118,13 +41344,13 @@ export default { 78 ], "game_server_node": [ - 1209 + 1229 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_game_streamer": [ 3 @@ -41136,16 +41362,16 @@ export default { 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41157,7 +41383,7 @@ export default { 78 ], "status_history": [ - 1332, + 1352, { "path": [ 78 @@ -41176,10 +41402,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2214 + 2234 ], "nodes": [ - 2208 + 2228 ], "__typename": [ 78 @@ -41187,13 +41413,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2211 + 2231 ], "bool_or": [ - 2212 + 2232 ], "count": [ - 2213 + 2233 ], "__typename": [ 78 @@ -41201,13 +41427,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2237 + 2257 ], "distinct": [ 3 ], "filter": [ - 2220 + 2240 ], "predicate": [ 4 @@ -41218,13 +41444,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2238 + 2258 ], "distinct": [ 3 ], "filter": [ - 2220 + 2240 ], "predicate": [ 4 @@ -41235,13 +41461,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2236 + 2256 ], "distinct": [ 3 ], "filter": [ - 2220 + 2240 ], "predicate": [ 39 @@ -41252,13 +41478,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2218 + 2238 ], "count": [ 38, { "columns": [ - 2236, + 2256, "[match_streams_select_column!]" ], "distinct": [ @@ -41267,31 +41493,31 @@ export default { } ], "max": [ - 2227 + 2247 ], "min": [ - 2229 + 2249 ], "stddev": [ - 2240 + 2260 ], "stddev_pop": [ - 2242 + 2262 ], "stddev_samp": [ - 2244 + 2264 ], "sum": [ - 2248 + 2268 ], "var_pop": [ - 2252 + 2272 ], "var_samp": [ - 2254 + 2274 ], "variance": [ - 2256 + 2276 ], "__typename": [ 78 @@ -41299,37 +41525,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2219 + 2239 ], "count": [ - 2461 + 2481 ], "max": [ - 2228 + 2248 ], "min": [ - 2230 + 2250 ], "stddev": [ - 2241 + 2261 ], "stddev_pop": [ - 2243 + 2263 ], "stddev_samp": [ - 2245 + 2265 ], "sum": [ - 2249 + 2269 ], "var_pop": [ - 2253 + 2273 ], "var_samp": [ - 2255 + 2275 ], "variance": [ - 2257 + 2277 ], "__typename": [ 78 @@ -41337,7 +41563,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -41345,10 +41571,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2226 + 2246 ], "on_conflict": [ - 2232 + 2252 ], "__typename": [ 78 @@ -41364,7 +41590,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41372,13 +41598,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2220 + 2240 ], "_not": [ - 2220 + 2240 ], "_or": [ - 2220 + 2240 ], "autodirector": [ 4 @@ -41387,13 +41613,13 @@ export default { 80 ], "game_server_node": [ - 1221 + 1241 ], "game_server_node_id": [ 80 ], "id": [ - 4444 + 4464 ], "is_game_streamer": [ 4 @@ -41405,16 +41631,16 @@ export default { 80 ], "last_status_at": [ - 4005 + 4025 ], "link": [ 80 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "mode": [ 80 @@ -41426,7 +41652,7 @@ export default { 80 ], "status_history": [ - 1334 + 1354 ], "stream_url": [ 80 @@ -41479,13 +41705,13 @@ export default { 78 ], "game_server_node": [ - 1233 + 1253 ], "game_server_node_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_game_streamer": [ 3 @@ -41497,16 +41723,16 @@ export default { 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41518,7 +41744,7 @@ export default { 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 @@ -41538,19 +41764,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41573,40 +41799,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_service_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "link": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "mode": [ - 2461 + 2481 ], "priority": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41620,19 +41846,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41655,40 +41881,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_service_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "link": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "mode": [ - 2461 + 2481 ], "priority": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41699,7 +41925,7 @@ export default { 38 ], "returning": [ - 2208 + 2228 ], "__typename": [ 78 @@ -41707,13 +41933,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2221 + 2241 ], "update_columns": [ - 2250 + 2270 ], "where": [ - 2220 + 2240 ], "__typename": [ 78 @@ -41721,58 +41947,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2461 + 2481 ], "error_message": [ - 2461 + 2481 ], "game_server_node": [ - 1235 + 1255 ], "game_server_node_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_game_streamer": [ - 2461 + 2481 ], "is_live": [ - 2461 + 2481 ], "k8s_service_name": [ - 2461 + 2481 ], "last_status_at": [ - 2461 + 2481 ], "link": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "mode": [ - 2461 + 2481 ], "priority": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "status_history": [ - 2461 + 2481 ], "stream_url": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41780,7 +42006,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -41788,7 +42014,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1332 + 1352 ], "__typename": [ 78 @@ -41808,7 +42034,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_game_streamer": [ 3 @@ -41820,13 +42046,13 @@ export default { 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41838,7 +42064,7 @@ export default { 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 @@ -41860,7 +42086,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41876,7 +42102,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41892,7 +42118,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41900,7 +42126,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2247 + 2267 ], "ordering": [ 236 @@ -41920,7 +42146,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_game_streamer": [ 3 @@ -41932,13 +42158,13 @@ export default { 78 ], "last_status_at": [ - 4004 + 4024 ], "link": [ 78 ], "match_id": [ - 4442 + 4462 ], "mode": [ 78 @@ -41950,7 +42176,7 @@ export default { 78 ], "status_history": [ - 1332 + 1352 ], "stream_url": [ 78 @@ -41972,7 +42198,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -41981,28 +42207,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2216 + 2236 ], "_delete_at_path": [ - 2222 + 2242 ], "_delete_elem": [ - 2223 + 2243 ], "_delete_key": [ - 2224 + 2244 ], "_inc": [ - 2225 + 2245 ], "_prepend": [ - 2235 + 2255 ], "_set": [ - 2239 + 2259 ], "where": [ - 2220 + 2240 ], "__typename": [ 78 @@ -42018,7 +42244,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -42034,7 +42260,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -42050,7 +42276,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2461 + 2481 ], "__typename": [ 78 @@ -42069,10 +42295,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2260 + 2280 ], "nodes": [ - 2258 + 2278 ], "__typename": [ 78 @@ -42083,7 +42309,7 @@ export default { 38, { "columns": [ - 2270, + 2290, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -42092,10 +42318,10 @@ export default { } ], "max": [ - 2264 + 2284 ], "min": [ - 2265 + 2285 ], "__typename": [ 78 @@ -42103,13 +42329,13 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2261 + 2281 ], "_not": [ - 2261 + 2281 ], "_or": [ - 2261 + 2281 ], "cfg": [ 80 @@ -42154,7 +42380,7 @@ export default { 38 ], "returning": [ - 2258 + 2278 ], "__typename": [ 78 @@ -42162,13 +42388,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2262 + 2282 ], "update_columns": [ - 2274 + 2294 ], "where": [ - 2261 + 2281 ], "__typename": [ 78 @@ -42176,10 +42402,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -42207,7 +42433,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2273 + 2293 ], "ordering": [ 236 @@ -42230,10 +42456,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2271 + 2291 ], "where": [ - 2261 + 2281 ], "__typename": [ 78 @@ -42265,13 +42491,13 @@ export default { 3 ], "cancels_at": [ - 4004 + 4024 ], "clutches": [ - 4571, + 4591, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42281,19 +42507,19 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], "clutches_aggregate": [ - 4572, + 4592, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42303,11 +42529,11 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], @@ -42318,16 +42544,16 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_match_map_id": [ - 4442 + 4462 ], "demos": [ - 1998, + 2018, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -42337,19 +42563,19 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "demos_aggregate": [ - 1999, + 2019, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -42359,11 +42585,11 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], @@ -42415,16 +42641,16 @@ export default { 794 ], "e_region": [ - 3506 + 3526 ], "effective_at": [ - 4004 + 4024 ], "elo_changes": [ - 4768, + 4788, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -42434,19 +42660,19 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "elo_changes_aggregate": [ - 4769, + 4789, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -42456,22 +42682,22 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -42504,19 +42730,19 @@ export default { 78 ], "lineup_1": [ - 1956 + 1976 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2": [ - 1956 + 1976 ], "lineup_2_id": [ - 4442 + 4462 ], "lineup_counts": [ - 1330, + 1350, { "path": [ 78 @@ -42524,13 +42750,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4442 + 4462 ], "map_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42540,19 +42766,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "map_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42562,11 +42788,11 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], @@ -42574,10 +42800,10 @@ export default { 78 ], "match_maps": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -42587,19 +42813,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -42609,16 +42835,16 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -42627,10 +42853,10 @@ export default { 38 ], "opening_duels": [ - 4699, + 4719, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42640,19 +42866,19 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "opening_duels_aggregate": [ - 4700, + 4720, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42662,19 +42888,19 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "options": [ - 2156 + 2176 ], "organizer": [ - 3419 + 3439 ], "organizer_steam_id": [ 180 @@ -42683,10 +42909,10 @@ export default { 78 ], "player_assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -42696,19 +42922,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -42718,19 +42944,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_damages": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -42740,19 +42966,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -42762,19 +42988,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_flashes": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -42784,19 +43010,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_flashes_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -42806,19 +43032,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -42828,19 +43054,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -42850,19 +43076,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -42872,19 +43098,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -42894,19 +43120,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_unused_utilities": [ - 3304, + 3324, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -42916,19 +43142,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utilities_aggregate": [ - 3305, + 3325, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -42938,19 +43164,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_utility": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -42960,19 +43186,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utility_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -42982,11 +43208,11 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], @@ -42994,13 +43220,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4442 + 4462 ], "region_veto_picks": [ - 2184, + 2204, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43010,19 +43236,19 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], "region_veto_picks_aggregate": [ - 2185, + 2205, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43032,11 +43258,11 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], @@ -43044,16 +43270,16 @@ export default { 3 ], "scheduled_at": [ - 4004 + 4024 ], "server": [ - 3533 + 3553 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "server_region": [ 78 @@ -43065,16 +43291,16 @@ export default { 78 ], "started_at": [ - 4004 + 4024 ], "status": [ 799 ], "streams": [ - 2208, + 2228, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -43084,19 +43310,19 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "streams_aggregate": [ - 2209, + 2229, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -43106,19 +43332,19 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "teams": [ - 3961, + 3981, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -43128,19 +43354,19 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "tournament_brackets": [ - 4006, + 4026, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43150,19 +43376,19 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "tournament_brackets_aggregate": [ - 4007, + 4027, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43172,11 +43398,11 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], @@ -43184,10 +43410,10 @@ export default { 78 ], "winner": [ - 1956 + 1976 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -43195,10 +43421,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2280 + 2300 ], "nodes": [ - 2276 + 2296 ], "__typename": [ 78 @@ -43206,7 +43432,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2279 + 2299 ], "__typename": [ 78 @@ -43214,13 +43440,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2298 + 2318 ], "distinct": [ 3 ], "filter": [ - 2285 + 2305 ], "predicate": [ 39 @@ -43231,13 +43457,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2283 + 2303 ], "count": [ 38, { "columns": [ - 2298, + 2318, "[matches_select_column!]" ], "distinct": [ @@ -43246,31 +43472,31 @@ export default { } ], "max": [ - 2289 + 2309 ], "min": [ - 2291 + 2311 ], "stddev": [ - 2300 + 2320 ], "stddev_pop": [ - 2302 + 2322 ], "stddev_samp": [ - 2304 + 2324 ], "sum": [ - 2308 + 2328 ], "var_pop": [ - 2312 + 2332 ], "var_samp": [ - 2314 + 2334 ], "variance": [ - 2316 + 2336 ], "__typename": [ 78 @@ -43278,37 +43504,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2284 + 2304 ], "count": [ - 2461 + 2481 ], "max": [ - 2290 + 2310 ], "min": [ - 2292 + 2312 ], "stddev": [ - 2301 + 2321 ], "stddev_pop": [ - 2303 + 2323 ], "stddev_samp": [ - 2305 + 2325 ], "sum": [ - 2309 + 2329 ], "var_pop": [ - 2313 + 2333 ], "var_samp": [ - 2315 + 2335 ], "variance": [ - 2317 + 2337 ], "__typename": [ 78 @@ -43316,10 +43542,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2288 + 2308 ], "on_conflict": [ - 2295 + 2315 ], "__typename": [ 78 @@ -43341,7 +43567,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -43349,13 +43575,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2285 + 2305 ], "_not": [ - 2285 + 2305 ], "_or": [ - 2285 + 2305 ], "can_assign_server": [ 4 @@ -43382,13 +43608,13 @@ export default { 4 ], "cancels_at": [ - 4005 + 4025 ], "clutches": [ - 4580 + 4600 ], "clutches_aggregate": [ - 4573 + 4593 ], "connection_link": [ 80 @@ -43397,16 +43623,16 @@ export default { 80 ], "created_at": [ - 4005 + 4025 ], "current_match_map_id": [ - 4444 + 4464 ], "demos": [ - 2010 + 2030 ], "demos_aggregate": [ - 2000 + 2020 ], "draft_games": [ 365 @@ -43418,25 +43644,25 @@ export default { 797 ], "e_region": [ - 3510 + 3530 ], "effective_at": [ - 4005 + 4025 ], "elo_changes": [ - 4787 + 4807 ], "elo_changes_aggregate": [ - 4770 + 4790 ], "ended_at": [ - 4005 + 4025 ], "external_id": [ 80 ], "id": [ - 4444 + 4464 ], "invite_code": [ 80 @@ -43469,40 +43695,40 @@ export default { 80 ], "lineup_1": [ - 1965 + 1985 ], "lineup_1_id": [ - 4444 + 4464 ], "lineup_2": [ - 1965 + 1985 ], "lineup_2_id": [ - 4444 + 4464 ], "lineup_counts": [ - 1331 + 1351 ], "map_veto_picking_lineup_id": [ - 4444 + 4464 ], "map_veto_picks": [ - 2097 + 2117 ], "map_veto_picks_aggregate": [ - 2092 + 2112 ], "map_veto_type": [ 80 ], "match_maps": [ - 2123 + 2143 ], "match_maps_aggregate": [ - 2116 + 2136 ], "match_options_id": [ - 4444 + 4464 ], "max_players_per_lineup": [ 39 @@ -43511,16 +43737,16 @@ export default { 39 ], "opening_duels": [ - 4708 + 4728 ], "opening_duels_aggregate": [ - 4701 + 4721 ], "options": [ - 2160 + 2180 ], "organizer": [ - 3423 + 3443 ], "organizer_steam_id": [ 182 @@ -43529,73 +43755,73 @@ export default { 80 ], "player_assists": [ - 2610 + 2630 ], "player_assists_aggregate": [ - 2601 + 2621 ], "player_damages": [ - 2671 + 2691 ], "player_damages_aggregate": [ - 2664 + 2684 ], "player_flashes": [ - 2782 + 2802 ], "player_flashes_aggregate": [ - 2773 + 2793 ], "player_kills": [ - 2827 + 2847 ], "player_kills_aggregate": [ - 2818 + 2838 ], "player_objectives": [ - 3026 + 3046 ], "player_objectives_aggregate": [ - 3019 + 3039 ], "player_unused_utilities": [ - 3313 + 3333 ], "player_unused_utilities_aggregate": [ - 3306 + 3326 ], "player_utility": [ - 3354 + 3374 ], "player_utility_aggregate": [ - 3347 + 3367 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4444 + 4464 ], "region_veto_picks": [ - 2191 + 2211 ], "region_veto_picks_aggregate": [ - 2186 + 2206 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4005 + 4025 ], "server": [ - 3544 + 3564 ], "server_error": [ 80 ], "server_id": [ - 4444 + 4464 ], "server_region": [ 80 @@ -43607,34 +43833,34 @@ export default { 80 ], "started_at": [ - 4005 + 4025 ], "status": [ 800 ], "streams": [ - 2220 + 2240 ], "streams_aggregate": [ - 2210 + 2230 ], "teams": [ - 3970 + 3990 ], "tournament_brackets": [ - 4017 + 4037 ], "tournament_brackets_aggregate": [ - 4008 + 4028 ], "tv_connection_string": [ 80 ], "winner": [ - 1965 + 1985 ], "winning_lineup_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -43651,16 +43877,16 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4004 + 4024 ], "clutches": [ - 4577 + 4597 ], "created_at": [ - 4004 + 4024 ], "demos": [ - 2007 + 2027 ], "draft_games": [ 362 @@ -43669,52 +43895,52 @@ export default { 805 ], "e_region": [ - 3516 + 3536 ], "elo_changes": [ - 4784 + 4804 ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "lineup_1": [ - 1974 + 1994 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2": [ - 1974 + 1994 ], "lineup_2_id": [ - 4442 + 4462 ], "map_veto_picks": [ - 2096 + 2116 ], "match_maps": [ - 2120 + 2140 ], "match_options_id": [ - 4442 + 4462 ], "opening_duels": [ - 4705 + 4725 ], "options": [ - 2167 + 2187 ], "organizer": [ - 3430 + 3450 ], "organizer_steam_id": [ 180 @@ -43723,64 +43949,64 @@ export default { 78 ], "player_assists": [ - 2607 + 2627 ], "player_damages": [ - 2668 + 2688 ], "player_flashes": [ - 2779 + 2799 ], "player_kills": [ - 2824 + 2844 ], "player_objectives": [ - 3023 + 3043 ], "player_unused_utilities": [ - 3310 + 3330 ], "player_utility": [ - 3351 + 3371 ], "region": [ 78 ], "region_veto_picks": [ - 2190 + 2210 ], "scheduled_at": [ - 4004 + 4024 ], "server": [ - 3553 + 3573 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "source": [ 78 ], "started_at": [ - 4004 + 4024 ], "status": [ 799 ], "streams": [ - 2217 + 2237 ], "tournament_brackets": [ - 4014 + 4034 ], "winner": [ - 1974 + 1994 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -43788,7 +44014,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4004 + 4024 ], "connection_link": [ 78 @@ -43797,22 +44023,22 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_match_map_id": [ - 4442 + 4462 ], "effective_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -43821,19 +44047,19 @@ export default { 78 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2_id": [ - 4442 + 4462 ], "map_veto_picking_lineup_id": [ - 4442 + 4462 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -43851,16 +44077,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4442 + 4462 ], "scheduled_at": [ - 4004 + 4024 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "server_region": [ 78 @@ -43872,13 +44098,13 @@ export default { 78 ], "started_at": [ - 4004 + 4024 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -43886,61 +44112,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "effective_at": [ - 2461 + 2481 ], "ended_at": [ - 2461 + 2481 ], "external_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "lineup_1_id": [ - 2461 + 2481 ], "lineup_2_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "organizer_steam_id": [ - 2461 + 2481 ], "password": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "server_error": [ - 2461 + 2481 ], "server_id": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -43948,7 +44174,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4004 + 4024 ], "connection_link": [ 78 @@ -43957,22 +44183,22 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_match_map_id": [ - 4442 + 4462 ], "effective_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "invite_code": [ 78 @@ -43981,19 +44207,19 @@ export default { 78 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2_id": [ - 4442 + 4462 ], "map_veto_picking_lineup_id": [ - 4442 + 4462 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -44011,16 +44237,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4442 + 4462 ], "scheduled_at": [ - 4004 + 4024 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "server_region": [ 78 @@ -44032,13 +44258,13 @@ export default { 78 ], "started_at": [ - 4004 + 4024 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -44046,61 +44272,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "effective_at": [ - 2461 + 2481 ], "ended_at": [ - 2461 + 2481 ], "external_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "lineup_1_id": [ - 2461 + 2481 ], "lineup_2_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "organizer_steam_id": [ - 2461 + 2481 ], "password": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "server_error": [ - 2461 + 2481 ], "server_id": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44111,7 +44337,7 @@ export default { 38 ], "returning": [ - 2276 + 2296 ], "__typename": [ 78 @@ -44119,10 +44345,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2288 + 2308 ], "on_conflict": [ - 2295 + 2315 ], "__typename": [ 78 @@ -44130,13 +44356,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2286 + 2306 ], "update_columns": [ - 2310 + 2330 ], "where": [ - 2285 + 2305 ], "__typename": [ 78 @@ -44144,49 +44370,49 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2461 + 2481 ], "can_cancel": [ - 2461 + 2481 ], "can_check_in": [ - 2461 + 2481 ], "can_reassign_winner": [ - 2461 + 2481 ], "can_schedule": [ - 2461 + 2481 ], "can_start": [ - 2461 + 2481 ], "can_stream_live": [ - 2461 + 2481 ], "can_stream_tv": [ - 2461 + 2481 ], "cancels_at": [ - 2461 + 2481 ], "clutches_aggregate": [ - 4576 + 4596 ], "connection_link": [ - 2461 + 2481 ], "connection_string": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current_match_map_id": [ - 2461 + 2481 ], "demos_aggregate": [ - 2005 + 2025 ], "draft_games_aggregate": [ 361 @@ -44195,181 +44421,181 @@ export default { 807 ], "e_region": [ - 3518 + 3538 ], "effective_at": [ - 2461 + 2481 ], "elo_changes_aggregate": [ - 4783 + 4803 ], "ended_at": [ - 2461 + 2481 ], "external_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invite_code": [ - 2461 + 2481 ], "is_captain": [ - 2461 + 2481 ], "is_coach": [ - 2461 + 2481 ], "is_friend_in_match_lineup": [ - 2461 + 2481 ], "is_in_lineup": [ - 2461 + 2481 ], "is_match_server_available": [ - 2461 + 2481 ], "is_organizer": [ - 2461 + 2481 ], "is_server_online": [ - 2461 + 2481 ], "is_tournament_match": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "lineup_1": [ - 1976 + 1996 ], "lineup_1_id": [ - 2461 + 2481 ], "lineup_2": [ - 1976 + 1996 ], "lineup_2_id": [ - 2461 + 2481 ], "lineup_counts": [ - 2461 + 2481 ], "map_veto_picking_lineup_id": [ - 2461 + 2481 ], "map_veto_picks_aggregate": [ - 2095 + 2115 ], "map_veto_type": [ - 2461 + 2481 ], "match_maps_aggregate": [ - 2119 + 2139 ], "match_options_id": [ - 2461 + 2481 ], "max_players_per_lineup": [ - 2461 + 2481 ], "min_players_per_lineup": [ - 2461 + 2481 ], "opening_duels_aggregate": [ - 4704 + 4724 ], "options": [ - 2169 + 2189 ], "organizer": [ - 3432 + 3452 ], "organizer_steam_id": [ - 2461 + 2481 ], "password": [ - 2461 + 2481 ], "player_assists_aggregate": [ - 2606 + 2626 ], "player_damages_aggregate": [ - 2667 + 2687 ], "player_flashes_aggregate": [ - 2778 + 2798 ], "player_kills_aggregate": [ - 2823 + 2843 ], "player_objectives_aggregate": [ - 3022 + 3042 ], "player_unused_utilities_aggregate": [ - 3309 + 3329 ], "player_utility_aggregate": [ - 3350 + 3370 ], "region": [ - 2461 + 2481 ], "region_veto_picking_lineup_id": [ - 2461 + 2481 ], "region_veto_picks_aggregate": [ - 2189 + 2209 ], "requested_organizer": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "server": [ - 3555 + 3575 ], "server_error": [ - 2461 + 2481 ], "server_id": [ - 2461 + 2481 ], "server_region": [ - 2461 + 2481 ], "server_type": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "streams_aggregate": [ - 2215 + 2235 ], "teams_aggregate": [ - 3966 + 3986 ], "tournament_brackets_aggregate": [ - 4013 + 4033 ], "tv_connection_string": [ - 2461 + 2481 ], "winner": [ - 1976 + 1996 ], "winning_lineup_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44377,7 +44603,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -44386,31 +44612,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "organizer_steam_id": [ 180 @@ -44422,25 +44648,25 @@ export default { 78 ], "scheduled_at": [ - 4004 + 4024 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "source": [ 78 ], "started_at": [ - 4004 + 4024 ], "status": [ 799 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -44462,7 +44688,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44484,7 +44710,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44506,7 +44732,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44514,7 +44740,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2307 + 2327 ], "ordering": [ 236 @@ -44525,34 +44751,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "effective_at": [ - 4004 + 4024 ], "ended_at": [ - 4004 + 4024 ], "external_id": [ 78 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "lineup_1_id": [ - 4442 + 4462 ], "lineup_2_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "organizer_steam_id": [ 180 @@ -44564,25 +44790,25 @@ export default { 78 ], "scheduled_at": [ - 4004 + 4024 ], "server_error": [ 78 ], "server_id": [ - 4442 + 4462 ], "source": [ 78 ], "started_at": [ - 4004 + 4024 ], "status": [ 799 ], "winning_lineup_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -44604,7 +44830,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44613,13 +44839,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2287 + 2307 ], "_set": [ - 2299 + 2319 ], "where": [ - 2285 + 2305 ], "__typename": [ 78 @@ -44641,7 +44867,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44663,7 +44889,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44685,7 +44911,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44704,10 +44930,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2320 + 2340 ], "nodes": [ - 2318 + 2338 ], "__typename": [ 78 @@ -44718,7 +44944,7 @@ export default { 38, { "columns": [ - 2330, + 2350, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -44727,10 +44953,10 @@ export default { } ], "max": [ - 2324 + 2344 ], "min": [ - 2325 + 2345 ], "__typename": [ 78 @@ -44738,13 +44964,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2321 + 2341 ], "_not": [ - 2321 + 2341 ], "_or": [ - 2321 + 2341 ], "hash": [ 80 @@ -44795,7 +45021,7 @@ export default { 38 ], "returning": [ - 2318 + 2338 ], "__typename": [ 78 @@ -44803,13 +45029,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2322 + 2342 ], "update_columns": [ - 2334 + 2354 ], "where": [ - 2321 + 2341 ], "__typename": [ 78 @@ -44817,10 +45043,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -44848,7 +45074,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2333 + 2353 ], "ordering": [ 236 @@ -44871,10 +45097,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2331 + 2351 ], "where": [ - 2321 + 2341 ], "__typename": [ 78 @@ -44888,7 +45114,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -44900,7 +45126,7 @@ export default { 78 ], "elo": [ - 1332, + 1352, { "path": [ 78 @@ -44920,7 +45146,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -44938,7 +45164,7 @@ export default { 78 ], "last_presence_state": [ - 1332, + 1352, { "path": [ 78 @@ -44946,10 +45172,10 @@ export default { } ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -44958,16 +45184,16 @@ export default { 3 ], "player": [ - 3419 + 3439 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -44985,7 +45211,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -45002,10 +45228,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2342 + 2362 ], "nodes": [ - 2336 + 2356 ], "__typename": [ 78 @@ -45013,13 +45239,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2339 + 2359 ], "bool_or": [ - 2340 + 2360 ], "count": [ - 2341 + 2361 ], "__typename": [ 78 @@ -45027,13 +45253,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2362 + 2382 ], "distinct": [ 3 ], "filter": [ - 2348 + 2368 ], "predicate": [ 4 @@ -45044,13 +45270,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2363 + 2383 ], "distinct": [ 3 ], "filter": [ - 2348 + 2368 ], "predicate": [ 4 @@ -45061,13 +45287,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2361 + 2381 ], "distinct": [ 3 ], "filter": [ - 2348 + 2368 ], "predicate": [ 39 @@ -45078,13 +45304,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2346 + 2366 ], "count": [ 38, { "columns": [ - 2361, + 2381, "[my_friends_select_column!]" ], "distinct": [ @@ -45093,31 +45319,31 @@ export default { } ], "max": [ - 2354 + 2374 ], "min": [ - 2356 + 2376 ], "stddev": [ - 2365 + 2385 ], "stddev_pop": [ - 2367 + 2387 ], "stddev_samp": [ - 2369 + 2389 ], "sum": [ - 2373 + 2393 ], "var_pop": [ - 2376 + 2396 ], "var_samp": [ - 2378 + 2398 ], "variance": [ - 2380 + 2400 ], "__typename": [ 78 @@ -45125,37 +45351,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2347 + 2367 ], "count": [ - 2461 + 2481 ], "max": [ - 2355 + 2375 ], "min": [ - 2357 + 2377 ], "stddev": [ - 2366 + 2386 ], "stddev_pop": [ - 2368 + 2388 ], "stddev_samp": [ - 2370 + 2390 ], "sum": [ - 2374 + 2394 ], "var_pop": [ - 2377 + 2397 ], "var_samp": [ - 2379 + 2399 ], "variance": [ - 2381 + 2401 ], "__typename": [ 78 @@ -45163,10 +45389,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1332 + 1352 ], "last_presence_state": [ - 1332 + 1352 ], "__typename": [ 78 @@ -45174,7 +45400,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2353 + 2373 ], "__typename": [ 78 @@ -45214,31 +45440,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -45246,13 +45472,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2348 + 2368 ], "_not": [ - 2348 + 2368 ], "_or": [ - 2348 + 2368 ], "avatar_url": [ 80 @@ -45261,7 +45487,7 @@ export default { 80 ], "created_at": [ - 4005 + 4025 ], "custom_avatar_url": [ 80 @@ -45273,7 +45499,7 @@ export default { 80 ], "elo": [ - 1334 + 1354 ], "faceit_elo": [ 39 @@ -45288,7 +45514,7 @@ export default { 39 ], "faceit_updated_at": [ - 4005 + 4025 ], "faceit_url": [ 80 @@ -45306,13 +45532,13 @@ export default { 80 ], "last_presence_state": [ - 1334 + 1354 ], "last_read_news_at": [ - 4005 + 4025 ], "last_sign_in_at": [ - 4005 + 4025 ], "name": [ 80 @@ -45321,16 +45547,16 @@ export default { 4 ], "player": [ - 3423 + 3443 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4005 + 4025 ], "presence_updated_at": [ - 4005 + 4025 ], "profile_url": [ 80 @@ -45348,7 +45574,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4005 + 4025 ], "steam_id": [ 182 @@ -45436,7 +45662,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -45448,7 +45674,7 @@ export default { 78 ], "elo": [ - 1332 + 1352 ], "faceit_elo": [ 38 @@ -45463,7 +45689,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -45481,13 +45707,13 @@ export default { 78 ], "last_presence_state": [ - 1332 + 1352 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -45496,16 +45722,16 @@ export default { 3 ], "player": [ - 3430 + 3450 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -45523,7 +45749,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -45546,7 +45772,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -45570,7 +45796,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -45588,10 +45814,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -45600,10 +45826,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -45618,7 +45844,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -45632,91 +45858,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2461 + 2481 ], "country": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "custom_avatar_url": [ - 2461 + 2481 ], "days_since_last_ban": [ - 2461 + 2481 ], "discord_id": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_nickname": [ - 2461 + 2481 ], "faceit_player_id": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "faceit_updated_at": [ - 2461 + 2481 ], "faceit_url": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "language": [ - 2461 + 2481 ], "last_read_news_at": [ - 2461 + 2481 ], "last_sign_in_at": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "premier_rank_updated_at": [ - 2461 + 2481 ], "presence_updated_at": [ - 2461 + 2481 ], "profile_url": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "steam_bans_checked_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -45730,7 +45956,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -45754,7 +45980,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -45772,10 +45998,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -45784,10 +46010,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -45802,7 +46028,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -45816,91 +46042,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2461 + 2481 ], "country": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "custom_avatar_url": [ - 2461 + 2481 ], "days_since_last_ban": [ - 2461 + 2481 ], "discord_id": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_nickname": [ - 2461 + 2481 ], "faceit_player_id": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "faceit_updated_at": [ - 2461 + 2481 ], "faceit_url": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "language": [ - 2461 + 2481 ], "last_read_news_at": [ - 2461 + 2481 ], "last_sign_in_at": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "premier_rank_updated_at": [ - 2461 + 2481 ], "presence_updated_at": [ - 2461 + 2481 ], "profile_url": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "steam_bans_checked_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -45911,7 +46137,7 @@ export default { 38 ], "returning": [ - 2336 + 2356 ], "__typename": [ 78 @@ -45919,109 +46145,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2461 + 2481 ], "country": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "custom_avatar_url": [ - 2461 + 2481 ], "days_since_last_ban": [ - 2461 + 2481 ], "discord_id": [ - 2461 + 2481 ], "elo": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_nickname": [ - 2461 + 2481 ], "faceit_player_id": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "faceit_updated_at": [ - 2461 + 2481 ], "faceit_url": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "language": [ - 2461 + 2481 ], "last_presence_state": [ - 2461 + 2481 ], "last_read_news_at": [ - 2461 + 2481 ], "last_sign_in_at": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "name_registered": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "premier_rank": [ - 2461 + 2481 ], "premier_rank_updated_at": [ - 2461 + 2481 ], "presence_updated_at": [ - 2461 + 2481 ], "profile_url": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "show_match_ready_modal": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "steam_bans_checked_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "vac_banned": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46029,10 +46255,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1332 + 1352 ], "last_presence_state": [ - 1332 + 1352 ], "__typename": [ 78 @@ -46049,7 +46275,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -46061,7 +46287,7 @@ export default { 78 ], "elo": [ - 1332 + 1352 ], "faceit_elo": [ 38 @@ -46076,7 +46302,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -46094,13 +46320,13 @@ export default { 78 ], "last_presence_state": [ - 1332 + 1352 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -46112,10 +46338,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -46133,7 +46359,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -46182,31 +46408,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46246,31 +46472,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46310,31 +46536,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46342,7 +46568,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2372 + 2392 ], "ordering": [ 236 @@ -46359,7 +46585,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -46371,7 +46597,7 @@ export default { 78 ], "elo": [ - 1332 + 1352 ], "faceit_elo": [ 38 @@ -46386,7 +46612,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -46404,13 +46630,13 @@ export default { 78 ], "last_presence_state": [ - 1332 + 1352 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -46422,10 +46648,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "presence_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -46443,7 +46669,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -46492,31 +46718,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46524,28 +46750,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2344 + 2364 ], "_delete_at_path": [ - 2349 + 2369 ], "_delete_elem": [ - 2350 + 2370 ], "_delete_key": [ - 2351 + 2371 ], "_inc": [ - 2352 + 2372 ], "_prepend": [ - 2360 + 2380 ], "_set": [ - 2364 + 2384 ], "where": [ - 2348 + 2368 ], "__typename": [ 78 @@ -46585,31 +46811,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46649,31 +46875,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46713,31 +46939,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2461 + 2481 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_skill_level": [ - 2461 + 2481 ], "friend_steam_id": [ - 2461 + 2481 ], "game_ban_count": [ - 2461 + 2481 ], "invited_by_steam_id": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "vac_ban_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -46745,7 +46971,7 @@ export default { }, "news_articles": { "author": [ - 3419 + 3439 ], "author_steam_id": [ 180 @@ -46757,13 +46983,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -46778,7 +47004,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -46789,10 +47015,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2384 + 2404 ], "nodes": [ - 2382 + 2402 ], "__typename": [ 78 @@ -46800,13 +47026,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2385 + 2405 ], "count": [ 38, { "columns": [ - 2396, + 2416, "[news_articles_select_column!]" ], "distinct": [ @@ -46815,31 +47041,31 @@ export default { } ], "max": [ - 2390 + 2410 ], "min": [ - 2391 + 2411 ], "stddev": [ - 2398 + 2418 ], "stddev_pop": [ - 2399 + 2419 ], "stddev_samp": [ - 2400 + 2420 ], "sum": [ - 2403 + 2423 ], "var_pop": [ - 2406 + 2426 ], "var_samp": [ - 2407 + 2427 ], "variance": [ - 2408 + 2428 ], "__typename": [ 78 @@ -46858,16 +47084,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2386 + 2406 ], "_not": [ - 2386 + 2406 ], "_or": [ - 2386 + 2406 ], "author": [ - 3423 + 3443 ], "author_steam_id": [ 182 @@ -46879,13 +47105,13 @@ export default { 80 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "published_at": [ - 4005 + 4025 ], "slug": [ 80 @@ -46900,7 +47126,7 @@ export default { 80 ], "updated_at": [ - 4005 + 4025 ], "view_count": [ 182 @@ -46923,7 +47149,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3430 + 3450 ], "author_steam_id": [ 180 @@ -46935,13 +47161,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -46956,7 +47182,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -46976,13 +47202,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -46997,7 +47223,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -47017,13 +47243,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -47038,7 +47264,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -47052,7 +47278,7 @@ export default { 38 ], "returning": [ - 2382 + 2402 ], "__typename": [ 78 @@ -47060,13 +47286,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2387 + 2407 ], "update_columns": [ - 2404 + 2424 ], "where": [ - 2386 + 2406 ], "__typename": [ 78 @@ -47074,43 +47300,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3432 + 3452 ], "author_steam_id": [ - 2461 + 2481 ], "content_markdown": [ - 2461 + 2481 ], "cover_image_url": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "published_at": [ - 2461 + 2481 ], "slug": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "teaser": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "view_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47118,7 +47344,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -47136,13 +47362,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -47157,7 +47383,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -47201,7 +47427,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2402 + 2422 ], "ordering": [ 236 @@ -47221,13 +47447,13 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "published_at": [ - 4004 + 4024 ], "slug": [ 78 @@ -47242,7 +47468,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "view_count": [ 180 @@ -47265,13 +47491,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2388 + 2408 ], "_set": [ - 2397 + 2417 ], "where": [ - 2386 + 2406 ], "__typename": [ 78 @@ -47312,7 +47538,7 @@ export default { }, "notifications": { "actions": [ - 1332, + 1352, { "path": [ 78 @@ -47320,19 +47546,19 @@ export default { } ], "created_at": [ - 4004 + 4024 ], "deletable": [ 3 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_read": [ 3 @@ -47341,7 +47567,7 @@ export default { 78 ], "player": [ - 3419 + 3439 ], "role": [ 881 @@ -47361,10 +47587,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2415 + 2435 ], "nodes": [ - 2409 + 2429 ], "__typename": [ 78 @@ -47372,13 +47598,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2412 + 2432 ], "bool_or": [ - 2413 + 2433 ], "count": [ - 2414 + 2434 ], "__typename": [ 78 @@ -47386,13 +47612,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2438 + 2458 ], "distinct": [ 3 ], "filter": [ - 2421 + 2441 ], "predicate": [ 4 @@ -47403,13 +47629,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2439 + 2459 ], "distinct": [ 3 ], "filter": [ - 2421 + 2441 ], "predicate": [ 4 @@ -47420,13 +47646,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2437 + 2457 ], "distinct": [ 3 ], "filter": [ - 2421 + 2441 ], "predicate": [ 39 @@ -47437,13 +47663,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2419 + 2439 ], "count": [ 38, { "columns": [ - 2437, + 2457, "[notifications_select_column!]" ], "distinct": [ @@ -47452,31 +47678,31 @@ export default { } ], "max": [ - 2428 + 2448 ], "min": [ - 2430 + 2450 ], "stddev": [ - 2441 + 2461 ], "stddev_pop": [ - 2443 + 2463 ], "stddev_samp": [ - 2445 + 2465 ], "sum": [ - 2449 + 2469 ], "var_pop": [ - 2453 + 2473 ], "var_samp": [ - 2455 + 2475 ], "variance": [ - 2457 + 2477 ], "__typename": [ 78 @@ -47484,37 +47710,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2420 + 2440 ], "count": [ - 2461 + 2481 ], "max": [ - 2429 + 2449 ], "min": [ - 2431 + 2451 ], "stddev": [ - 2442 + 2462 ], "stddev_pop": [ - 2444 + 2464 ], "stddev_samp": [ - 2446 + 2466 ], "sum": [ - 2450 + 2470 ], "var_pop": [ - 2454 + 2474 ], "var_samp": [ - 2456 + 2476 ], "variance": [ - 2458 + 2478 ], "__typename": [ 78 @@ -47522,7 +47748,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1332 + 1352 ], "__typename": [ 78 @@ -47530,10 +47756,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2427 + 2447 ], "on_conflict": [ - 2433 + 2453 ], "__typename": [ 78 @@ -47549,7 +47775,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47557,31 +47783,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2421 + 2441 ], "_not": [ - 2421 + 2441 ], "_or": [ - 2421 + 2441 ], "actions": [ - 1334 + 1354 ], "created_at": [ - 4005 + 4025 ], "deletable": [ 4 ], "deleted_at": [ - 4005 + 4025 ], "entity_id": [ 80 ], "id": [ - 4444 + 4464 ], "is_read": [ 4 @@ -47590,7 +47816,7 @@ export default { 80 ], "player": [ - 3423 + 3443 ], "role": [ 882 @@ -47643,22 +47869,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1332 + 1352 ], "created_at": [ - 4004 + 4024 ], "deletable": [ 3 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_read": [ 3 @@ -47667,7 +47893,7 @@ export default { 78 ], "player": [ - 3430 + 3450 ], "role": [ 881 @@ -47687,16 +47913,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "message": [ 78 @@ -47713,25 +47939,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "entity_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47739,16 +47965,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "message": [ 78 @@ -47765,25 +47991,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "entity_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47794,7 +48020,7 @@ export default { 38 ], "returning": [ - 2409 + 2429 ], "__typename": [ 78 @@ -47802,13 +48028,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2422 + 2442 ], "update_columns": [ - 2451 + 2471 ], "where": [ - 2421 + 2441 ], "__typename": [ 78 @@ -47816,43 +48042,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "deletable": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "entity_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_read": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "role": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47860,7 +48086,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -47868,7 +48094,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1332 + 1352 ], "__typename": [ 78 @@ -47879,22 +48105,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1332 + 1352 ], "created_at": [ - 4004 + 4024 ], "deletable": [ 3 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_read": [ 3 @@ -47928,7 +48154,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47944,7 +48170,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47960,7 +48186,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -47968,7 +48194,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2448 + 2468 ], "ordering": [ 236 @@ -47979,22 +48205,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1332 + 1352 ], "created_at": [ - 4004 + 4024 ], "deletable": [ 3 ], "deleted_at": [ - 4004 + 4024 ], "entity_id": [ 78 ], "id": [ - 4442 + 4462 ], "is_read": [ 3 @@ -48028,7 +48254,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48037,28 +48263,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2417 + 2437 ], "_delete_at_path": [ - 2423 + 2443 ], "_delete_elem": [ - 2424 + 2444 ], "_delete_key": [ - 2425 + 2445 ], "_inc": [ - 2426 + 2446 ], "_prepend": [ - 2436 + 2456 ], "_set": [ - 2440 + 2460 ], "where": [ - 2421 + 2441 ], "__typename": [ 78 @@ -48074,7 +48300,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48090,7 +48316,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48106,7 +48332,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48115,31 +48341,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2459 + 2479 ], "_gt": [ - 2459 + 2479 ], "_gte": [ - 2459 + 2479 ], "_in": [ - 2459 + 2479 ], "_is_null": [ 3 ], "_lt": [ - 2459 + 2479 ], "_lte": [ - 2459 + 2479 ], "_neq": [ - 2459 + 2479 ], "_nin": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48148,19 +48374,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4004 + 4024 ], "pending_match_import": [ - 2503 + 2523 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48168,10 +48394,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2466 + 2486 ], "nodes": [ - 2462 + 2482 ], "__typename": [ 78 @@ -48179,7 +48405,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2465 + 2485 ], "__typename": [ 78 @@ -48187,13 +48413,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2483 + 2503 ], "distinct": [ 3 ], "filter": [ - 2471 + 2491 ], "predicate": [ 39 @@ -48204,13 +48430,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2469 + 2489 ], "count": [ 38, { "columns": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -48219,31 +48445,31 @@ export default { } ], "max": [ - 2475 + 2495 ], "min": [ - 2477 + 2497 ], "stddev": [ - 2485 + 2505 ], "stddev_pop": [ - 2487 + 2507 ], "stddev_samp": [ - 2489 + 2509 ], "sum": [ - 2493 + 2513 ], "var_pop": [ - 2497 + 2517 ], "var_samp": [ - 2499 + 2519 ], "variance": [ - 2501 + 2521 ], "__typename": [ 78 @@ -48251,37 +48477,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2470 + 2490 ], "count": [ - 2461 + 2481 ], "max": [ - 2476 + 2496 ], "min": [ - 2478 + 2498 ], "stddev": [ - 2486 + 2506 ], "stddev_pop": [ - 2488 + 2508 ], "stddev_samp": [ - 2490 + 2510 ], "sum": [ - 2494 + 2514 ], "var_pop": [ - 2498 + 2518 ], "var_samp": [ - 2500 + 2520 ], "variance": [ - 2502 + 2522 ], "__typename": [ 78 @@ -48289,10 +48515,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2474 + 2494 ], "on_conflict": [ - 2480 + 2500 ], "__typename": [ 78 @@ -48311,10 +48537,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48322,28 +48548,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2471 + 2491 ], "_not": [ - 2471 + 2491 ], "_or": [ - 2471 + 2491 ], "created_at": [ - 4005 + 4025 ], "pending_match_import": [ - 2507 + 2527 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 ], "valve_match_id": [ - 2460 + 2480 ], "__typename": [ 78 @@ -48355,7 +48581,7 @@ export default { 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48363,19 +48589,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4004 + 4024 ], "pending_match_import": [ - 2514 + 2534 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48383,13 +48609,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48397,13 +48623,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48411,13 +48637,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48425,13 +48651,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48442,7 +48668,7 @@ export default { 38 ], "returning": [ - 2462 + 2482 ], "__typename": [ 78 @@ -48450,13 +48676,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2472 + 2492 ], "update_columns": [ - 2495 + 2515 ], "where": [ - 2471 + 2491 ], "__typename": [ 78 @@ -48464,19 +48690,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2461 + 2481 ], "pending_match_import": [ - 2516 + 2536 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48487,7 +48713,7 @@ export default { 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48496,13 +48722,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48521,10 +48747,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48543,10 +48769,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48565,10 +48791,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48576,7 +48802,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2492 + 2512 ], "ordering": [ 236 @@ -48587,13 +48813,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48604,7 +48830,7 @@ export default { 180 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48612,10 +48838,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48624,13 +48850,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2473 + 2493 ], "_set": [ - 2484 + 2504 ], "where": [ - 2471 + 2491 ], "__typename": [ 78 @@ -48649,10 +48875,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48671,10 +48897,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48693,10 +48919,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -48704,7 +48930,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -48716,13 +48942,13 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "players": [ - 2462, + 2482, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48732,19 +48958,19 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "players_aggregate": [ - 2463, + 2483, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48754,11 +48980,11 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], @@ -48769,10 +48995,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48780,10 +49006,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2505 + 2525 ], "nodes": [ - 2503 + 2523 ], "__typename": [ 78 @@ -48791,13 +49017,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2506 + 2526 ], "count": [ 38, { "columns": [ - 2518, + 2538, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -48806,31 +49032,31 @@ export default { } ], "max": [ - 2511 + 2531 ], "min": [ - 2512 + 2532 ], "stddev": [ - 2520 + 2540 ], "stddev_pop": [ - 2521 + 2541 ], "stddev_samp": [ - 2522 + 2542 ], "sum": [ - 2525 + 2545 ], "var_pop": [ - 2528 + 2548 ], "var_samp": [ - 2529 + 2549 ], "variance": [ - 2530 + 2550 ], "__typename": [ 78 @@ -48846,16 +49072,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2507 + 2527 ], "_not": [ - 2507 + 2527 ], "_or": [ - 2507 + 2527 ], "created_at": [ - 4005 + 4025 ], "demo_url": [ 80 @@ -48867,13 +49093,13 @@ export default { 80 ], "match_start_time": [ - 4005 + 4025 ], "players": [ - 2471 + 2491 ], "players_aggregate": [ - 2464 + 2484 ], "share_code": [ 80 @@ -48882,10 +49108,10 @@ export default { 80 ], "updated_at": [ - 4005 + 4025 ], "valve_match_id": [ - 2460 + 2480 ], "__typename": [ 78 @@ -48894,7 +49120,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48902,7 +49128,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -48914,10 +49140,10 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "players": [ - 2468 + 2488 ], "share_code": [ 78 @@ -48926,10 +49152,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48937,7 +49163,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -48949,7 +49175,7 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "share_code": [ 78 @@ -48958,10 +49184,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -48969,7 +49195,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -48981,7 +49207,7 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "share_code": [ 78 @@ -48990,10 +49216,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -49004,7 +49230,7 @@ export default { 38 ], "returning": [ - 2503 + 2523 ], "__typename": [ 78 @@ -49012,10 +49238,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2510 + 2530 ], "on_conflict": [ - 2515 + 2535 ], "__typename": [ 78 @@ -49023,13 +49249,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2508 + 2528 ], "update_columns": [ - 2526 + 2546 ], "where": [ - 2507 + 2527 ], "__typename": [ 78 @@ -49037,34 +49263,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2461 + 2481 ], "demo_url": [ - 2461 + 2481 ], "error": [ - 2461 + 2481 ], "map_name": [ - 2461 + 2481 ], "match_start_time": [ - 2461 + 2481 ], "players_aggregate": [ - 2467 + 2487 ], "share_code": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "valve_match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -49072,7 +49298,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -49081,7 +49307,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -49093,7 +49319,7 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "share_code": [ 78 @@ -49102,10 +49328,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -49137,7 +49363,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2524 + 2544 ], "ordering": [ 236 @@ -49148,7 +49374,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "demo_url": [ 78 @@ -49160,7 +49386,7 @@ export default { 78 ], "match_start_time": [ - 4004 + 4024 ], "share_code": [ 78 @@ -49169,10 +49395,10 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -49180,7 +49406,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2459 + 2479 ], "__typename": [ 78 @@ -49189,13 +49415,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2509 + 2529 ], "_set": [ - 2519 + 2539 ], "where": [ - 2507 + 2527 ], "__typename": [ 78 @@ -49227,7 +49453,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3419 + 3439 ], "attacker_steam_id": [ 180 @@ -49242,7 +49468,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49260,16 +49486,16 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -49290,7 +49516,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -49301,10 +49527,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2533 + 2553 ], "nodes": [ - 2531 + 2551 ], "__typename": [ 78 @@ -49312,13 +49538,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2534 + 2554 ], "count": [ 38, { "columns": [ - 2545, + 2565, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -49327,31 +49553,31 @@ export default { } ], "max": [ - 2539 + 2559 ], "min": [ - 2540 + 2560 ], "stddev": [ - 2547 + 2567 ], "stddev_pop": [ - 2548 + 2568 ], "stddev_samp": [ - 2549 + 2569 ], "sum": [ - 2552 + 2572 ], "var_pop": [ - 2555 + 2575 ], "var_samp": [ - 2556 + 2576 ], "variance": [ - 2557 + 2577 ], "__typename": [ 78 @@ -49418,16 +49644,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2535 + 2555 ], "_not": [ - 2535 + 2555 ], "_or": [ - 2535 + 2555 ], "attacker": [ - 3423 + 3443 ], "attacker_steam_id": [ 182 @@ -49442,7 +49668,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2460 + 2480 ], "first_bullet_hits": [ 39 @@ -49460,16 +49686,16 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "non_awp_hits": [ 39 @@ -49490,7 +49716,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2460 + 2480 ], "total_engagement_frames": [ 39 @@ -49514,7 +49740,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49550,7 +49776,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -49561,7 +49787,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3430 + 3450 ], "attacker_steam_id": [ 180 @@ -49576,7 +49802,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49594,16 +49820,16 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -49624,7 +49850,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -49647,7 +49873,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49665,10 +49891,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -49689,7 +49915,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -49712,7 +49938,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49730,10 +49956,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -49754,7 +49980,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -49768,7 +49994,7 @@ export default { 38 ], "returning": [ - 2531 + 2551 ], "__typename": [ 78 @@ -49776,13 +50002,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2536 + 2556 ], "update_columns": [ - 2553 + 2573 ], "where": [ - 2535 + 2555 ], "__typename": [ 78 @@ -49790,73 +50016,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3432 + 3452 ], "attacker_steam_id": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "__typename": [ 78 @@ -49867,7 +50093,7 @@ export default { 180 ], "match_map_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -49888,7 +50114,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -49906,10 +50132,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -49930,7 +50156,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -50118,7 +50344,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2551 + 2571 ], "ordering": [ 236 @@ -50141,7 +50367,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -50159,10 +50385,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "non_awp_hits": [ 38 @@ -50183,7 +50409,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -50206,7 +50432,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "first_bullet_hits": [ 38 @@ -50242,7 +50468,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -50254,13 +50480,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2537 + 2557 ], "_set": [ - 2546 + 2566 ], "where": [ - 2535 + 2555 ], "__typename": [ 78 @@ -50457,19 +50683,19 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "shots": [ 38 @@ -50489,10 +50715,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2562 + 2582 ], "nodes": [ - 2558 + 2578 ], "__typename": [ 78 @@ -50500,7 +50726,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2561 + 2581 ], "__typename": [ 78 @@ -50508,13 +50734,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2579 + 2599 ], "distinct": [ 3 ], "filter": [ - 2567 + 2587 ], "predicate": [ 39 @@ -50525,13 +50751,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2565 + 2585 ], "count": [ 38, { "columns": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -50540,31 +50766,31 @@ export default { } ], "max": [ - 2571 + 2591 ], "min": [ - 2573 + 2593 ], "stddev": [ - 2581 + 2601 ], "stddev_pop": [ - 2583 + 2603 ], "stddev_samp": [ - 2585 + 2605 ], "sum": [ - 2589 + 2609 ], "var_pop": [ - 2593 + 2613 ], "var_samp": [ - 2595 + 2615 ], "variance": [ - 2597 + 2617 ], "__typename": [ 78 @@ -50572,37 +50798,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2566 + 2586 ], "count": [ - 2461 + 2481 ], "max": [ - 2572 + 2592 ], "min": [ - 2574 + 2594 ], "stddev": [ - 2582 + 2602 ], "stddev_pop": [ - 2584 + 2604 ], "stddev_samp": [ - 2586 + 2606 ], "sum": [ - 2590 + 2610 ], "var_pop": [ - 2594 + 2614 ], "var_samp": [ - 2596 + 2616 ], "variance": [ - 2598 + 2618 ], "__typename": [ 78 @@ -50610,10 +50836,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2570 + 2590 ], "on_conflict": [ - 2576 + 2596 ], "__typename": [ 78 @@ -50647,25 +50873,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -50673,13 +50899,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2567 + 2587 ], "_not": [ - 2567 + 2587 ], "_or": [ - 2567 + 2587 ], "first_bullet_hits": [ 39 @@ -50694,19 +50920,19 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "shots": [ 39 @@ -50765,19 +50991,19 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "shots": [ 38 @@ -50809,10 +51035,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -50832,34 +51058,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -50879,10 +51105,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -50902,34 +51128,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -50940,7 +51166,7 @@ export default { 38 ], "returning": [ - 2558 + 2578 ], "__typename": [ 78 @@ -50948,13 +51174,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2568 + 2588 ], "update_columns": [ - 2591 + 2611 ], "where": [ - 2567 + 2587 ], "__typename": [ 78 @@ -50962,43 +51188,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51006,7 +51232,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -51033,10 +51259,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -51082,25 +51308,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51134,25 +51360,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51186,25 +51412,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51212,7 +51438,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2588 + 2608 ], "ordering": [ 236 @@ -51235,10 +51461,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -51284,25 +51510,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51311,13 +51537,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2569 + 2589 ], "_set": [ - 2580 + 2600 ], "where": [ - 2567 + 2587 ], "__typename": [ 78 @@ -51351,25 +51577,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51403,25 +51629,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51455,25 +51681,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51481,7 +51707,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3419 + 3439 ], "attacked_steam_id": [ 180 @@ -51496,7 +51722,7 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "flash": [ 3 @@ -51505,25 +51731,25 @@ export default { 3 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -51531,10 +51757,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2605 + 2625 ], "nodes": [ - 2599 + 2619 ], "__typename": [ 78 @@ -51542,13 +51768,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2602 + 2622 ], "bool_or": [ - 2603 + 2623 ], "count": [ - 2604 + 2624 ], "__typename": [ 78 @@ -51556,13 +51782,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2623 + 2643 ], "distinct": [ 3 ], "filter": [ - 2610 + 2630 ], "predicate": [ 4 @@ -51573,13 +51799,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2624 + 2644 ], "distinct": [ 3 ], "filter": [ - 2610 + 2630 ], "predicate": [ 4 @@ -51590,13 +51816,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2622 + 2642 ], "distinct": [ 3 ], "filter": [ - 2610 + 2630 ], "predicate": [ 39 @@ -51607,13 +51833,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2608 + 2628 ], "count": [ 38, { "columns": [ - 2622, + 2642, "[player_assists_select_column!]" ], "distinct": [ @@ -51622,31 +51848,31 @@ export default { } ], "max": [ - 2614 + 2634 ], "min": [ - 2616 + 2636 ], "stddev": [ - 2626 + 2646 ], "stddev_pop": [ - 2628 + 2648 ], "stddev_samp": [ - 2630 + 2650 ], "sum": [ - 2634 + 2654 ], "var_pop": [ - 2638 + 2658 ], "var_samp": [ - 2640 + 2660 ], "variance": [ - 2642 + 2662 ], "__typename": [ 78 @@ -51654,37 +51880,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2609 + 2629 ], "count": [ - 2461 + 2481 ], "max": [ - 2615 + 2635 ], "min": [ - 2617 + 2637 ], "stddev": [ - 2627 + 2647 ], "stddev_pop": [ - 2629 + 2649 ], "stddev_samp": [ - 2631 + 2651 ], "sum": [ - 2635 + 2655 ], "var_pop": [ - 2639 + 2659 ], "var_samp": [ - 2641 + 2661 ], "variance": [ - 2643 + 2663 ], "__typename": [ 78 @@ -51692,10 +51918,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2613 + 2633 ], "on_conflict": [ - 2619 + 2639 ], "__typename": [ 78 @@ -51717,13 +51943,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51731,16 +51957,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2610 + 2630 ], "_not": [ - 2610 + 2630 ], "_or": [ - 2610 + 2630 ], "attacked_player": [ - 3423 + 3443 ], "attacked_steam_id": [ 182 @@ -51755,7 +51981,7 @@ export default { 80 ], "deleted_at": [ - 4005 + 4025 ], "flash": [ 4 @@ -51764,25 +51990,25 @@ export default { 4 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "round": [ 39 ], "time": [ - 4005 + 4025 ], "__typename": [ 78 @@ -51805,7 +52031,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3430 + 3450 ], "attacked_steam_id": [ 180 @@ -51820,31 +52046,31 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "flash": [ 3 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -51864,19 +52090,19 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -51884,31 +52110,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51928,19 +52154,19 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -51948,31 +52174,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -51983,7 +52209,7 @@ export default { 38 ], "returning": [ - 2599 + 2619 ], "__typename": [ 78 @@ -51991,13 +52217,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2611 + 2631 ], "update_columns": [ - 2636 + 2656 ], "where": [ - 2610 + 2630 ], "__typename": [ 78 @@ -52005,49 +52231,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3432 + 3452 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "flash": [ - 2461 + 2481 ], "is_team_assist": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52061,10 +52287,10 @@ export default { 180 ], "match_map_id": [ - 4442 + 4462 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -52087,22 +52313,22 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "flash": [ 3 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -52124,13 +52350,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52152,13 +52378,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52180,13 +52406,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52194,7 +52420,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2633 + 2653 ], "ordering": [ 236 @@ -52217,22 +52443,22 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "flash": [ 3 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -52254,13 +52480,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52269,13 +52495,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2612 + 2632 ], "_set": [ - 2625 + 2645 ], "where": [ - 2610 + 2630 ], "__typename": [ 78 @@ -52297,13 +52523,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52325,13 +52551,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52353,13 +52579,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52367,28 +52593,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "counter_strafe_pct": [ - 2459 + 2479 ], "crosshair_deg": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "maps": [ 38 @@ -52403,16 +52629,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "time_to_damage_s": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "__typename": [ 78 @@ -52420,10 +52646,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2646 + 2666 ], "nodes": [ - 2644 + 2664 ], "__typename": [ 78 @@ -52431,13 +52657,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2647 + 2667 ], "count": [ 38, { "columns": [ - 2652, + 2672, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -52446,31 +52672,31 @@ export default { } ], "max": [ - 2649 + 2669 ], "min": [ - 2650 + 2670 ], "stddev": [ - 2653 + 2673 ], "stddev_pop": [ - 2654 + 2674 ], "stddev_samp": [ - 2655 + 2675 ], "sum": [ - 2658 + 2678 ], "var_pop": [ - 2659 + 2679 ], "var_samp": [ - 2660 + 2680 ], "variance": [ - 2661 + 2681 ], "__typename": [ 78 @@ -52531,37 +52757,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2648 + 2668 ], "_not": [ - 2648 + 2668 ], "_or": [ - 2648 + 2668 ], "accuracy": [ - 2460 + 2480 ], "accuracy_spotted": [ - 2460 + 2480 ], "counter_strafe_pct": [ - 2460 + 2480 ], "crosshair_deg": [ - 2460 + 2480 ], "enemy_blind_pr": [ - 2460 + 2480 ], "flash_assists_pr": [ - 2460 + 2480 ], "hs_pct": [ - 2460 + 2480 ], "kast_pct": [ - 2460 + 2480 ], "maps": [ 39 @@ -52576,16 +52802,16 @@ export default { 182 ], "survival_pct": [ - 2460 + 2480 ], "time_to_damage_s": [ - 2460 + 2480 ], "traded_death_pct": [ - 2460 + 2480 ], "util_efficiency": [ - 2460 + 2480 ], "__typename": [ 78 @@ -52593,28 +52819,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "counter_strafe_pct": [ - 2459 + 2479 ], "crosshair_deg": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "maps": [ 38 @@ -52629,16 +52855,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "time_to_damage_s": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "__typename": [ 78 @@ -52646,28 +52872,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "counter_strafe_pct": [ - 2459 + 2479 ], "crosshair_deg": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "maps": [ 38 @@ -52682,16 +52908,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "time_to_damage_s": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "__typename": [ 78 @@ -52699,52 +52925,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2461 + 2481 ], "accuracy_spotted": [ - 2461 + 2481 ], "counter_strafe_pct": [ - 2461 + 2481 ], "crosshair_deg": [ - 2461 + 2481 ], "enemy_blind_pr": [ - 2461 + 2481 ], "flash_assists_pr": [ - 2461 + 2481 ], "hs_pct": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "maps": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "survival_pct": [ - 2461 + 2481 ], "time_to_damage_s": [ - 2461 + 2481 ], "traded_death_pct": [ - 2461 + 2481 ], "util_efficiency": [ - 2461 + 2481 ], "__typename": [ 78 @@ -52912,7 +53138,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2657 + 2677 ], "ordering": [ 236 @@ -52923,28 +53149,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "counter_strafe_pct": [ - 2459 + 2479 ], "crosshair_deg": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "maps": [ 38 @@ -52959,16 +53185,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "time_to_damage_s": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "__typename": [ 78 @@ -52976,28 +53202,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "counter_strafe_pct": [ - 2459 + 2479 ], "crosshair_deg": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "maps": [ 38 @@ -53012,16 +53238,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "time_to_damage_s": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "__typename": [ 78 @@ -53197,7 +53423,7 @@ export default { 78 ], "attacked_player": [ - 3419 + 3439 ], "attacked_steam_id": [ 180 @@ -53224,7 +53450,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -53233,31 +53459,31 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "round": [ - 2459 + 2479 ], "team_damage": [ 3 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -53268,10 +53494,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2666 + 2686 ], "nodes": [ - 2662 + 2682 ], "__typename": [ 78 @@ -53279,7 +53505,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2665 + 2685 ], "__typename": [ 78 @@ -53287,13 +53513,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2683 + 2703 ], "distinct": [ 3 ], "filter": [ - 2671 + 2691 ], "predicate": [ 39 @@ -53304,13 +53530,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2669 + 2689 ], "count": [ 38, { "columns": [ - 2683, + 2703, "[player_damages_select_column!]" ], "distinct": [ @@ -53319,31 +53545,31 @@ export default { } ], "max": [ - 2675 + 2695 ], "min": [ - 2677 + 2697 ], "stddev": [ - 2685 + 2705 ], "stddev_pop": [ - 2687 + 2707 ], "stddev_samp": [ - 2689 + 2709 ], "sum": [ - 2693 + 2713 ], "var_pop": [ - 2697 + 2717 ], "var_samp": [ - 2699 + 2719 ], "variance": [ - 2701 + 2721 ], "__typename": [ 78 @@ -53351,37 +53577,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2670 + 2690 ], "count": [ - 2461 + 2481 ], "max": [ - 2676 + 2696 ], "min": [ - 2678 + 2698 ], "stddev": [ - 2686 + 2706 ], "stddev_pop": [ - 2688 + 2708 ], "stddev_samp": [ - 2690 + 2710 ], "sum": [ - 2694 + 2714 ], "var_pop": [ - 2698 + 2718 ], "var_samp": [ - 2700 + 2720 ], "variance": [ - 2702 + 2722 ], "__typename": [ 78 @@ -53389,10 +53615,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2674 + 2694 ], "on_conflict": [ - 2680 + 2700 ], "__typename": [ 78 @@ -53426,25 +53652,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -53452,13 +53678,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2671 + 2691 ], "_not": [ - 2671 + 2691 ], "_or": [ - 2671 + 2691 ], "armor": [ 39 @@ -53470,7 +53696,7 @@ export default { 80 ], "attacked_player": [ - 3423 + 3443 ], "attacked_steam_id": [ 182 @@ -53497,7 +53723,7 @@ export default { 39 ], "deleted_at": [ - 4005 + 4025 ], "health": [ 39 @@ -53506,31 +53732,31 @@ export default { 80 ], "id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "round": [ - 2460 + 2480 ], "team_damage": [ 4 ], "time": [ - 4005 + 4025 ], "with": [ 80 @@ -53560,7 +53786,7 @@ export default { 38 ], "round": [ - 2459 + 2479 ], "__typename": [ 78 @@ -53577,7 +53803,7 @@ export default { 78 ], "attacked_player": [ - 3430 + 3450 ], "attacked_steam_id": [ 180 @@ -53604,7 +53830,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -53613,28 +53839,28 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "round": [ - 2459 + 2479 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -53678,7 +53904,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -53687,19 +53913,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ - 2459 + 2479 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -53710,64 +53936,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2461 + 2481 ], "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -53808,7 +54034,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -53817,19 +54043,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ - 2459 + 2479 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -53840,64 +54066,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2461 + 2481 ], "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -53908,7 +54134,7 @@ export default { 38 ], "returning": [ - 2662 + 2682 ], "__typename": [ 78 @@ -53916,13 +54142,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2672 + 2692 ], "update_columns": [ - 2695 + 2715 ], "where": [ - 2671 + 2691 ], "__typename": [ 78 @@ -53930,79 +54156,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2461 + 2481 ], "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_player": [ - 3432 + 3452 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "round": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54010,13 +54236,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -54058,7 +54284,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -54067,19 +54293,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ - 2459 + 2479 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -54116,25 +54342,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54168,25 +54394,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54220,25 +54446,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54246,7 +54472,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2692 + 2712 ], "ordering": [ 236 @@ -54290,7 +54516,7 @@ export default { 38 ], "deleted_at": [ - 4004 + 4024 ], "health": [ 38 @@ -54299,19 +54525,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ - 2459 + 2479 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -54340,7 +54566,7 @@ export default { 38 ], "round": [ - 2459 + 2479 ], "__typename": [ 78 @@ -54348,25 +54574,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54375,13 +54601,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2673 + 2693 ], "_set": [ - 2684 + 2704 ], "where": [ - 2671 + 2691 ], "__typename": [ 78 @@ -54415,25 +54641,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54467,25 +54693,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54519,25 +54745,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_armor": [ - 2461 + 2481 ], "health": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -54545,40 +54771,40 @@ export default { }, "player_elo": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -54590,28 +54816,28 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player": [ - 3419 + 3439 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season": [ - 3478 + 3498 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -54620,7 +54846,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 820 @@ -54631,10 +54857,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 2705 + 2725 ], "nodes": [ - 2703 + 2723 ], "__typename": [ 78 @@ -54642,13 +54868,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 2706 + 2726 ], "count": [ 38, { "columns": [ - 2717, + 2737, "[player_elo_select_column!]" ], "distinct": [ @@ -54657,31 +54883,31 @@ export default { } ], "max": [ - 2711 + 2731 ], "min": [ - 2712 + 2732 ], "stddev": [ - 2719 + 2739 ], "stddev_pop": [ - 2720 + 2740 ], "stddev_samp": [ - 2721 + 2741 ], "sum": [ - 2724 + 2744 ], "var_pop": [ - 2727 + 2747 ], "var_samp": [ - 2728 + 2748 ], "variance": [ - 2729 + 2749 ], "__typename": [ 78 @@ -54754,49 +54980,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 2707 + 2727 ], "_not": [ - 2707 + 2727 ], "_or": [ - 2707 + 2727 ], "actual_score": [ - 1181 + 1201 ], "assists": [ 39 ], "change": [ - 2460 + 2480 ], "created_at": [ - 4005 + 4025 ], "current": [ - 2460 + 2480 ], "damage": [ 39 ], "damage_percent": [ - 1181 + 1201 ], "deaths": [ 39 ], "expected_score": [ - 1181 + 1201 ], "impact": [ - 2460 + 2480 ], "k_factor": [ 39 ], "kda": [ - 1181 + 1201 ], "kills": [ 39 @@ -54808,28 +55034,28 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "opponent_team_elo_avg": [ - 1181 + 1201 ], "performance_multiplier": [ - 1181 + 1201 ], "player": [ - 3423 + 3443 ], "player_team_elo_avg": [ - 1181 + 1201 ], "season": [ - 3482 + 3502 ], "season_id": [ - 4444 + 4464 ], "series_multiplier": [ 39 @@ -54838,7 +55064,7 @@ export default { 182 ], "team_avg_kda": [ - 1181 + 1201 ], "type": [ 821 @@ -54850,37 +55076,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -54892,13 +55118,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "series_multiplier": [ 38 @@ -54907,7 +55133,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "__typename": [ 78 @@ -54915,40 +55141,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -54960,28 +55186,28 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player": [ - 3430 + 3450 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season": [ - 3489 + 3509 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -54990,7 +55216,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 820 @@ -55001,40 +55227,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -55046,19 +55272,19 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -55067,7 +55293,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "__typename": [ 78 @@ -55075,40 +55301,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -55120,19 +55346,19 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -55141,7 +55367,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "__typename": [ 78 @@ -55152,7 +55378,7 @@ export default { 38 ], "returning": [ - 2703 + 2723 ], "__typename": [ 78 @@ -55160,13 +55386,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 2708 + 2728 ], "update_columns": [ - 2725 + 2745 ], "where": [ - 2707 + 2727 ], "__typename": [ 78 @@ -55174,85 +55400,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "change": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_team_elo_avg": [ - 2461 + 2481 ], "season": [ - 3491 + 3511 ], "season_id": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -55260,7 +55486,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -55275,40 +55501,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -55320,19 +55546,19 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -55341,7 +55567,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 820 @@ -55547,7 +55773,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 2723 + 2743 ], "ordering": [ 236 @@ -55558,40 +55784,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "created_at": [ - 4004 + 4024 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -55603,19 +55829,19 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 @@ -55624,7 +55850,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 820 @@ -55635,37 +55861,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 ], "change": [ - 2459 + 2479 ], "current": [ - 2459 + 2479 ], "damage": [ 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 2459 + 2479 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -55677,13 +55903,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_team_elo_avg": [ - 1180 + 1200 ], "series_multiplier": [ 38 @@ -55692,7 +55918,7 @@ export default { 180 ], "team_avg_kda": [ - 1180 + 1200 ], "__typename": [ 78 @@ -55701,13 +55927,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2709 + 2729 ], "_set": [ - 2718 + 2738 ], "where": [ - 2707 + 2727 ], "__typename": [ 78 @@ -55913,19 +56139,19 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "player": [ - 3419 + 3439 ], "previous_rank": [ 38 @@ -55942,10 +56168,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2734 + 2754 ], "nodes": [ - 2730 + 2750 ], "__typename": [ 78 @@ -55953,7 +56179,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2733 + 2753 ], "__typename": [ 78 @@ -55961,13 +56187,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2751 + 2771 ], "distinct": [ 3 ], "filter": [ - 2739 + 2759 ], "predicate": [ 39 @@ -55978,13 +56204,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2737 + 2757 ], "count": [ 38, { "columns": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -55993,31 +56219,31 @@ export default { } ], "max": [ - 2743 + 2763 ], "min": [ - 2745 + 2765 ], "stddev": [ - 2753 + 2773 ], "stddev_pop": [ - 2755 + 2775 ], "stddev_samp": [ - 2757 + 2777 ], "sum": [ - 2761 + 2781 ], "var_pop": [ - 2765 + 2785 ], "var_samp": [ - 2767 + 2787 ], "variance": [ - 2769 + 2789 ], "__typename": [ 78 @@ -56025,37 +56251,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2738 + 2758 ], "count": [ - 2461 + 2481 ], "max": [ - 2744 + 2764 ], "min": [ - 2746 + 2766 ], "stddev": [ - 2754 + 2774 ], "stddev_pop": [ - 2756 + 2776 ], "stddev_samp": [ - 2758 + 2778 ], "sum": [ - 2762 + 2782 ], "var_pop": [ - 2766 + 2786 ], "var_samp": [ - 2768 + 2788 ], "variance": [ - 2770 + 2790 ], "__typename": [ 78 @@ -56063,10 +56289,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2742 + 2762 ], "on_conflict": [ - 2748 + 2768 ], "__typename": [ 78 @@ -56091,16 +56317,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56108,31 +56334,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2739 + 2759 ], "_not": [ - 2739 + 2759 ], "_or": [ - 2739 + 2759 ], "elo": [ 39 ], "id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "observed_at": [ - 4005 + 4025 ], "player": [ - 3423 + 3443 ], "previous_rank": [ 39 @@ -56170,19 +56396,19 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "player": [ - 3430 + 3450 ], "previous_rank": [ 38 @@ -56202,13 +56428,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -56225,25 +56451,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56254,13 +56480,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -56277,25 +56503,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56306,7 +56532,7 @@ export default { 38 ], "returning": [ - 2730 + 2750 ], "__typename": [ 78 @@ -56314,13 +56540,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2740 + 2760 ], "update_columns": [ - 2763 + 2783 ], "where": [ - 2739 + 2759 ], "__typename": [ 78 @@ -56328,31 +56554,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56360,7 +56586,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -56372,13 +56598,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -56412,16 +56638,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56446,16 +56672,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56480,16 +56706,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56497,7 +56723,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2760 + 2780 ], "ordering": [ 236 @@ -56511,13 +56737,13 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -56551,16 +56777,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56569,13 +56795,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2741 + 2761 ], "_set": [ - 2752 + 2772 ], "where": [ - 2739 + 2759 ], "__typename": [ 78 @@ -56600,16 +56826,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56634,16 +56860,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56668,16 +56894,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "skill_level": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56691,25 +56917,25 @@ export default { 180 ], "blinded": [ - 3419 + 3439 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -56718,10 +56944,10 @@ export default { 3 ], "thrown_by": [ - 3419 + 3439 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -56729,10 +56955,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2777 + 2797 ], "nodes": [ - 2771 + 2791 ], "__typename": [ 78 @@ -56740,13 +56966,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2774 + 2794 ], "bool_or": [ - 2775 + 2795 ], "count": [ - 2776 + 2796 ], "__typename": [ 78 @@ -56754,13 +56980,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2795 + 2815 ], "distinct": [ 3 ], "filter": [ - 2782 + 2802 ], "predicate": [ 4 @@ -56771,13 +56997,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2796 + 2816 ], "distinct": [ 3 ], "filter": [ - 2782 + 2802 ], "predicate": [ 4 @@ -56788,13 +57014,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2794 + 2814 ], "distinct": [ 3 ], "filter": [ - 2782 + 2802 ], "predicate": [ 39 @@ -56805,13 +57031,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2780 + 2800 ], "count": [ 38, { "columns": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "distinct": [ @@ -56820,31 +57046,31 @@ export default { } ], "max": [ - 2786 + 2806 ], "min": [ - 2788 + 2808 ], "stddev": [ - 2798 + 2818 ], "stddev_pop": [ - 2800 + 2820 ], "stddev_samp": [ - 2802 + 2822 ], "sum": [ - 2806 + 2826 ], "var_pop": [ - 2810 + 2830 ], "var_samp": [ - 2812 + 2832 ], "variance": [ - 2814 + 2834 ], "__typename": [ 78 @@ -56852,37 +57078,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2781 + 2801 ], "count": [ - 2461 + 2481 ], "max": [ - 2787 + 2807 ], "min": [ - 2789 + 2809 ], "stddev": [ - 2799 + 2819 ], "stddev_pop": [ - 2801 + 2821 ], "stddev_samp": [ - 2803 + 2823 ], "sum": [ - 2807 + 2827 ], "var_pop": [ - 2811 + 2831 ], "var_samp": [ - 2813 + 2833 ], "variance": [ - 2815 + 2835 ], "__typename": [ 78 @@ -56890,10 +57116,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2785 + 2805 ], "on_conflict": [ - 2791 + 2811 ], "__typename": [ 78 @@ -56918,16 +57144,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -56935,13 +57161,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2782 + 2802 ], "_not": [ - 2782 + 2802 ], "_or": [ - 2782 + 2802 ], "attacked_steam_id": [ 182 @@ -56950,25 +57176,25 @@ export default { 182 ], "blinded": [ - 3423 + 3443 ], "deleted_at": [ - 4005 + 4025 ], "duration": [ - 2460 + 2480 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "round": [ 39 @@ -56977,10 +57203,10 @@ export default { 4 ], "thrown_by": [ - 3423 + 3443 ], "time": [ - 4005 + 4025 ], "__typename": [ 78 @@ -56995,7 +57221,7 @@ export default { 180 ], "duration": [ - 2459 + 2479 ], "round": [ 38 @@ -57012,25 +57238,25 @@ export default { 180 ], "blinded": [ - 3430 + 3450 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -57039,10 +57265,10 @@ export default { 3 ], "thrown_by": [ - 3430 + 3450 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57056,22 +57282,22 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57079,28 +57305,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57114,22 +57340,22 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57137,28 +57363,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57169,7 +57395,7 @@ export default { 38 ], "returning": [ - 2771 + 2791 ], "__typename": [ 78 @@ -57177,13 +57403,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2783 + 2803 ], "update_columns": [ - 2808 + 2828 ], "where": [ - 2782 + 2802 ], "__typename": [ 78 @@ -57191,43 +57417,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "blinded": [ - 3432 + 3452 ], "deleted_at": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_flash": [ - 2461 + 2481 ], "thrown_by": [ - 3432 + 3452 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57241,10 +57467,10 @@ export default { 180 ], "match_map_id": [ - 4442 + 4462 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57261,16 +57487,16 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -57279,7 +57505,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57304,16 +57530,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57338,16 +57564,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57372,16 +57598,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57389,7 +57615,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2805 + 2825 ], "ordering": [ 236 @@ -57406,16 +57632,16 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "duration": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -57424,7 +57650,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -57438,7 +57664,7 @@ export default { 180 ], "duration": [ - 2459 + 2479 ], "round": [ 38 @@ -57449,16 +57675,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57467,13 +57693,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2784 + 2804 ], "_set": [ - 2797 + 2817 ], "where": [ - 2782 + 2802 ], "__typename": [ 78 @@ -57498,16 +57724,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57532,16 +57758,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57566,16 +57792,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "duration": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57592,7 +57818,7 @@ export default { 78 ], "attacked_player": [ - 3419 + 3439 ], "attacked_steam_id": [ 180 @@ -57616,7 +57842,7 @@ export default { 3 ], "deleted_at": [ - 4004 + 4024 ], "headshot": [ 3 @@ -57631,22 +57857,22 @@ export default { 3 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "no_scope": [ 3 ], "player": [ - 3419 + 3439 ], "round": [ 38 @@ -57661,7 +57887,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -57672,10 +57898,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 2822 + 2842 ], "nodes": [ - 2816 + 2836 ], "__typename": [ 78 @@ -57683,13 +57909,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2819 + 2839 ], "bool_or": [ - 2820 + 2840 ], "count": [ - 2821 + 2841 ], "__typename": [ 78 @@ -57697,13 +57923,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2881 + 2901 ], "distinct": [ 3 ], "filter": [ - 2827 + 2847 ], "predicate": [ 4 @@ -57714,13 +57940,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2882 + 2902 ], "distinct": [ 3 ], "filter": [ - 2827 + 2847 ], "predicate": [ 4 @@ -57731,13 +57957,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2880 + 2900 ], "distinct": [ 3 ], "filter": [ - 2827 + 2847 ], "predicate": [ 39 @@ -57748,13 +57974,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 2825 + 2845 ], "count": [ 38, { "columns": [ - 2880, + 2900, "[player_kills_select_column!]" ], "distinct": [ @@ -57763,31 +57989,31 @@ export default { } ], "max": [ - 2872 + 2892 ], "min": [ - 2874 + 2894 ], "stddev": [ - 2884 + 2904 ], "stddev_pop": [ - 2886 + 2906 ], "stddev_samp": [ - 2888 + 2908 ], "sum": [ - 2892 + 2912 ], "var_pop": [ - 2896 + 2916 ], "var_samp": [ - 2898 + 2918 ], "variance": [ - 2900 + 2920 ], "__typename": [ 78 @@ -57795,37 +58021,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 2826 + 2846 ], "count": [ - 2461 + 2481 ], "max": [ - 2873 + 2893 ], "min": [ - 2875 + 2895 ], "stddev": [ - 2885 + 2905 ], "stddev_pop": [ - 2887 + 2907 ], "stddev_samp": [ - 2889 + 2909 ], "sum": [ - 2893 + 2913 ], "var_pop": [ - 2897 + 2917 ], "var_samp": [ - 2899 + 2919 ], "variance": [ - 2901 + 2921 ], "__typename": [ 78 @@ -57833,10 +58059,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 2871 + 2891 ], "on_conflict": [ - 2877 + 2897 ], "__typename": [ 78 @@ -57858,13 +58084,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -57872,13 +58098,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 2827 + 2847 ], "_not": [ - 2827 + 2847 ], "_or": [ - 2827 + 2847 ], "assisted": [ 4 @@ -57890,7 +58116,7 @@ export default { 80 ], "attacked_player": [ - 3423 + 3443 ], "attacked_steam_id": [ 182 @@ -57914,7 +58140,7 @@ export default { 4 ], "deleted_at": [ - 4005 + 4025 ], "headshot": [ 4 @@ -57929,22 +58155,22 @@ export default { 4 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "no_scope": [ 4 ], "player": [ - 3423 + 3443 ], "round": [ 39 @@ -57959,7 +58185,7 @@ export default { 4 ], "time": [ - 4005 + 4025 ], "with": [ 80 @@ -57973,7 +58199,7 @@ export default { 180 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -57987,10 +58213,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2832 + 2852 ], "nodes": [ - 2828 + 2848 ], "__typename": [ 78 @@ -57998,7 +58224,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2831 + 2851 ], "__typename": [ 78 @@ -58006,13 +58232,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2849 + 2869 ], "distinct": [ 3 ], "filter": [ - 2837 + 2857 ], "predicate": [ 39 @@ -58023,13 +58249,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2835 + 2855 ], "count": [ 38, { "columns": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -58038,31 +58264,31 @@ export default { } ], "max": [ - 2841 + 2861 ], "min": [ - 2843 + 2863 ], "stddev": [ - 2851 + 2871 ], "stddev_pop": [ - 2853 + 2873 ], "stddev_samp": [ - 2855 + 2875 ], "sum": [ - 2859 + 2879 ], "var_pop": [ - 2863 + 2883 ], "var_samp": [ - 2865 + 2885 ], "variance": [ - 2867 + 2887 ], "__typename": [ 78 @@ -58070,37 +58296,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2836 + 2856 ], "count": [ - 2461 + 2481 ], "max": [ - 2842 + 2862 ], "min": [ - 2844 + 2864 ], "stddev": [ - 2852 + 2872 ], "stddev_pop": [ - 2854 + 2874 ], "stddev_samp": [ - 2856 + 2876 ], "sum": [ - 2860 + 2880 ], "var_pop": [ - 2864 + 2884 ], "var_samp": [ - 2866 + 2886 ], "variance": [ - 2868 + 2888 ], "__typename": [ 78 @@ -58108,10 +58334,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2840 + 2860 ], "on_conflict": [ - 2846 + 2866 ], "__typename": [ 78 @@ -58130,10 +58356,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58141,19 +58367,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2837 + 2857 ], "_not": [ - 2837 + 2857 ], "_or": [ - 2837 + 2857 ], "kill_count": [ 182 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -58182,7 +58408,7 @@ export default { 180 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -58210,13 +58436,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58238,13 +58464,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58255,7 +58481,7 @@ export default { 38 ], "returning": [ - 2828 + 2848 ], "__typename": [ 78 @@ -58263,13 +58489,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2838 + 2858 ], "update_columns": [ - 2861 + 2881 ], "where": [ - 2837 + 2857 ], "__typename": [ 78 @@ -58277,16 +58503,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58331,10 +58557,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58353,10 +58579,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58375,10 +58601,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58386,7 +58612,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2858 + 2878 ], "ordering": [ 236 @@ -58422,10 +58648,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58434,13 +58660,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2839 + 2859 ], "_set": [ - 2850 + 2870 ], "where": [ - 2837 + 2857 ], "__typename": [ 78 @@ -58459,10 +58685,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58481,10 +58707,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58503,10 +58729,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58538,7 +58764,7 @@ export default { 78 ], "attacked_player": [ - 3430 + 3450 ], "attacked_steam_id": [ 180 @@ -58562,7 +58788,7 @@ export default { 3 ], "deleted_at": [ - 4004 + 4024 ], "headshot": [ 3 @@ -58574,22 +58800,22 @@ export default { 3 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "no_scope": [ 3 ], "player": [ - 3430 + 3450 ], "round": [ 38 @@ -58601,7 +58827,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -58636,22 +58862,22 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "hitgroup": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -58662,49 +58888,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58736,22 +58962,22 @@ export default { 78 ], "deleted_at": [ - 4004 + 4024 ], "hitgroup": [ 78 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -58762,49 +58988,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58815,7 +59041,7 @@ export default { 38 ], "returning": [ - 2816 + 2836 ], "__typename": [ 78 @@ -58823,13 +59049,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 2869 + 2889 ], "update_columns": [ - 2894 + 2914 ], "where": [ - 2827 + 2847 ], "__typename": [ 78 @@ -58837,88 +59063,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2461 + 2481 ], "attacked_location": [ - 2461 + 2481 ], "attacked_location_coordinates": [ - 2461 + 2481 ], "attacked_player": [ - 3432 + 3452 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacked_team": [ - 2461 + 2481 ], "attacker_location": [ - 2461 + 2481 ], "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "attacker_team": [ - 2461 + 2481 ], "blinded": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "headshot": [ - 2461 + 2481 ], "hitgroup": [ - 2461 + 2481 ], "in_air": [ - 2461 + 2481 ], "is_suicide": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "no_scope": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "round": [ - 2461 + 2481 ], "team_kill": [ - 2461 + 2481 ], "thru_smoke": [ - 2461 + 2481 ], "thru_wall": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -58932,10 +59158,10 @@ export default { 180 ], "match_map_id": [ - 4442 + 4462 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -58976,7 +59202,7 @@ export default { 3 ], "deleted_at": [ - 4004 + 4024 ], "headshot": [ 3 @@ -58988,10 +59214,10 @@ export default { 3 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "no_scope": [ 3 @@ -59006,7 +59232,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -59031,13 +59257,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59059,13 +59285,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59087,13 +59313,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59101,7 +59327,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 2891 + 2911 ], "ordering": [ 236 @@ -59142,7 +59368,7 @@ export default { 3 ], "deleted_at": [ - 4004 + 4024 ], "headshot": [ 3 @@ -59154,10 +59380,10 @@ export default { 3 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "no_scope": [ 3 @@ -59172,7 +59398,7 @@ export default { 3 ], "time": [ - 4004 + 4024 ], "with": [ 78 @@ -59197,13 +59423,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59212,13 +59438,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2870 + 2890 ], "_set": [ - 2883 + 2903 ], "where": [ - 2827 + 2847 ], "__typename": [ 78 @@ -59240,13 +59466,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59268,13 +59494,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59296,13 +59522,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59319,7 +59545,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59327,10 +59553,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2904 + 2924 ], "nodes": [ - 2902 + 2922 ], "__typename": [ 78 @@ -59338,13 +59564,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2905 + 2925 ], "count": [ 38, { "columns": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -59353,31 +59579,31 @@ export default { } ], "max": [ - 2909 + 2929 ], "min": [ - 2910 + 2930 ], "stddev": [ - 2915 + 2935 ], "stddev_pop": [ - 2916 + 2936 ], "stddev_samp": [ - 2917 + 2937 ], "sum": [ - 2920 + 2940 ], "var_pop": [ - 2922 + 2942 ], "var_samp": [ - 2923 + 2943 ], "variance": [ - 2924 + 2944 ], "__typename": [ 78 @@ -59399,13 +59625,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2906 + 2926 ], "_not": [ - 2906 + 2926 ], "_or": [ - 2906 + 2926 ], "player_steam_id": [ 80 @@ -59417,7 +59643,7 @@ export default { 39 ], "value": [ - 1181 + 1201 ], "__typename": [ 78 @@ -59431,7 +59657,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59448,7 +59674,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59465,7 +59691,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59482,7 +59708,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59493,7 +59719,7 @@ export default { 38 ], "returning": [ - 2902 + 2922 ], "__typename": [ 78 @@ -59501,16 +59727,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "total": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -59528,7 +59754,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59578,7 +59804,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2919 + 2939 ], "ordering": [ 236 @@ -59598,7 +59824,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59612,7 +59838,7 @@ export default { 38 ], "value": [ - 1180 + 1200 ], "__typename": [ 78 @@ -59620,13 +59846,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 2907 + 2927 ], "_set": [ - 2914 + 2934 ], "where": [ - 2906 + 2926 ], "__typename": [ 78 @@ -59694,7 +59920,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -59736,7 +59962,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -59790,16 +60016,16 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -59814,7 +60040,7 @@ export default { 38 ], "player": [ - 3419 + 3439 ], "rounds_ct": [ 38 @@ -59862,7 +60088,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -59892,7 +60118,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -59912,10 +60138,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 2929 + 2949 ], "nodes": [ - 2925 + 2945 ], "__typename": [ 78 @@ -59923,7 +60149,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2928 + 2948 ], "__typename": [ 78 @@ -59931,13 +60157,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2946 + 2966 ], "distinct": [ 3 ], "filter": [ - 2934 + 2954 ], "predicate": [ 39 @@ -59948,13 +60174,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2932 + 2952 ], "count": [ 38, { "columns": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -59963,31 +60189,31 @@ export default { } ], "max": [ - 2938 + 2958 ], "min": [ - 2940 + 2960 ], "stddev": [ - 2948 + 2968 ], "stddev_pop": [ - 2950 + 2970 ], "stddev_samp": [ - 2952 + 2972 ], "sum": [ - 2956 + 2976 ], "var_pop": [ - 2960 + 2980 ], "var_samp": [ - 2962 + 2982 ], "variance": [ - 2964 + 2984 ], "__typename": [ 78 @@ -59995,37 +60221,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2933 + 2953 ], "count": [ - 2461 + 2481 ], "max": [ - 2939 + 2959 ], "min": [ - 2941 + 2961 ], "stddev": [ - 2949 + 2969 ], "stddev_pop": [ - 2951 + 2971 ], "stddev_samp": [ - 2953 + 2973 ], "sum": [ - 2957 + 2977 ], "var_pop": [ - 2961 + 2981 ], "var_samp": [ - 2963 + 2983 ], "variance": [ - 2965 + 2985 ], "__typename": [ 78 @@ -60033,10 +60259,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2937 + 2957 ], "on_conflict": [ - 2943 + 2963 ], "__typename": [ 78 @@ -60262,217 +60488,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -60480,13 +60706,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 2934 + 2954 ], "_not": [ - 2934 + 2954 ], "_or": [ - 2934 + 2954 ], "assists": [ 39 @@ -60507,7 +60733,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2460 + 2480 ], "damage": [ 39 @@ -60549,7 +60775,7 @@ export default { 39 ], "flash_duration_sum": [ - 2460 + 2480 ], "flashes_thrown": [ 39 @@ -60603,16 +60829,16 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "molotov_damage": [ 39 @@ -60627,7 +60853,7 @@ export default { 39 ], "player": [ - 3423 + 3443 ], "rounds_ct": [ 39 @@ -60675,7 +60901,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2460 + 2480 ], "total_engagement_frames": [ 39 @@ -60705,7 +60931,7 @@ export default { 39 ], "updated_at": [ - 4005 + 4025 ], "util_on_death_count": [ 39 @@ -60744,7 +60970,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -60786,7 +61012,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -60897,7 +61123,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -60962,7 +61188,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -61004,7 +61230,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -61058,16 +61284,16 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -61082,7 +61308,7 @@ export default { 38 ], "player": [ - 3430 + 3450 ], "rounds_ct": [ 38 @@ -61130,7 +61356,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -61160,7 +61386,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -61198,7 +61424,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -61240,7 +61466,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -61294,10 +61520,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -61357,7 +61583,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -61387,7 +61613,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -61407,226 +61633,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -61652,7 +61878,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -61694,7 +61920,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -61748,10 +61974,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -61811,7 +62037,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -61841,7 +62067,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -61861,226 +62087,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -62091,7 +62317,7 @@ export default { 38 ], "returning": [ - 2925 + 2945 ], "__typename": [ 78 @@ -62099,13 +62325,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 2935 + 2955 ], "update_columns": [ - 2958 + 2978 ], "where": [ - 2934 + 2954 ], "__typename": [ 78 @@ -62113,235 +62339,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -62349,7 +62575,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4442 + 4462 ], "steam_id": [ 180 @@ -62379,7 +62605,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -62421,7 +62647,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -62475,10 +62701,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -62538,7 +62764,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -62568,7 +62794,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -62806,217 +63032,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -63242,217 +63468,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -63678,217 +63904,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -63896,7 +64122,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2955 + 2975 ], "ordering": [ 236 @@ -63925,7 +64151,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -63967,7 +64193,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -64021,10 +64247,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -64084,7 +64310,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -64114,7 +64340,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "util_on_death_count": [ 38 @@ -64152,7 +64378,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2459 + 2479 ], "damage": [ 38 @@ -64194,7 +64420,7 @@ export default { 38 ], "flash_duration_sum": [ - 2459 + 2479 ], "flashes_thrown": [ 38 @@ -64305,7 +64531,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2459 + 2479 ], "total_engagement_frames": [ 38 @@ -64352,217 +64578,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -64571,13 +64797,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2936 + 2956 ], "_set": [ - 2947 + 2967 ], "where": [ - 2934 + 2954 ], "__typename": [ 78 @@ -64803,217 +65029,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -65239,217 +65465,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -65675,217 +65901,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "crosshair_angle_count": [ - 2461 + 2481 ], "crosshair_angle_sum_deg": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flash_duration_count": [ - 2461 + 2481 ], "flash_duration_sum": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kast_rounds": [ - 2461 + 2481 ], "kast_total_rounds": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "time_to_damage_count": [ - 2461 + 2481 ], "time_to_damage_sum_s": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "util_on_death_count": [ - 2461 + 2481 ], "util_on_death_sum": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -65893,40 +66119,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "aim_rating": [ - 1180 + 1200 ], "counter_strafe_pct": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "overall_rating": [ - 1180 + 1200 ], "played_at": [ - 4004 + 4024 ], "positioning_rating": [ - 1180 + 1200 ], "rounds": [ 38 @@ -65938,16 +66164,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -65955,10 +66181,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 2968 + 2988 ], "nodes": [ - 2966 + 2986 ], "__typename": [ 78 @@ -65966,13 +66192,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2969 + 2989 ], "count": [ 38, { "columns": [ - 2974, + 2994, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -65981,31 +66207,31 @@ export default { } ], "max": [ - 2971 + 2991 ], "min": [ - 2972 + 2992 ], "stddev": [ - 2975 + 2995 ], "stddev_pop": [ - 2976 + 2996 ], "stddev_samp": [ - 2977 + 2997 ], "sum": [ - 2980 + 3000 ], "var_pop": [ - 2981 + 3001 ], "var_samp": [ - 2982 + 3002 ], "variance": [ - 2983 + 3003 ], "__typename": [ 78 @@ -66066,49 +66292,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 2970 + 2990 ], "_not": [ - 2970 + 2990 ], "_or": [ - 2970 + 2990 ], "accuracy": [ - 2460 + 2480 ], "accuracy_spotted": [ - 2460 + 2480 ], "aim_rating": [ - 1181 + 1201 ], "counter_strafe_pct": [ - 2460 + 2480 ], "enemy_blind_pr": [ - 2460 + 2480 ], "flash_assists_pr": [ - 2460 + 2480 ], "hs_pct": [ - 2460 + 2480 ], "kast_pct": [ - 2460 + 2480 ], "match_id": [ - 4444 + 4464 ], "overall_rating": [ - 1181 + 1201 ], "played_at": [ - 4005 + 4025 ], "positioning_rating": [ - 1181 + 1201 ], "rounds": [ 39 @@ -66120,16 +66346,16 @@ export default { 182 ], "survival_pct": [ - 2460 + 2480 ], "traded_death_pct": [ - 2460 + 2480 ], "util_efficiency": [ - 2460 + 2480 ], "utility_rating": [ - 1181 + 1201 ], "__typename": [ 78 @@ -66137,40 +66363,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "aim_rating": [ - 1180 + 1200 ], "counter_strafe_pct": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "overall_rating": [ - 1180 + 1200 ], "played_at": [ - 4004 + 4024 ], "positioning_rating": [ - 1180 + 1200 ], "rounds": [ 38 @@ -66182,16 +66408,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -66199,40 +66425,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "aim_rating": [ - 1180 + 1200 ], "counter_strafe_pct": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "overall_rating": [ - 1180 + 1200 ], "played_at": [ - 4004 + 4024 ], "positioning_rating": [ - 1180 + 1200 ], "rounds": [ 38 @@ -66244,16 +66470,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -66261,61 +66487,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2461 + 2481 ], "accuracy_spotted": [ - 2461 + 2481 ], "aim_rating": [ - 2461 + 2481 ], "counter_strafe_pct": [ - 2461 + 2481 ], "enemy_blind_pr": [ - 2461 + 2481 ], "flash_assists_pr": [ - 2461 + 2481 ], "hs_pct": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "overall_rating": [ - 2461 + 2481 ], "played_at": [ - 2461 + 2481 ], "positioning_rating": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "survival_pct": [ - 2461 + 2481 ], "traded_death_pct": [ - 2461 + 2481 ], "util_efficiency": [ - 2461 + 2481 ], "utility_rating": [ - 2461 + 2481 ], "__typename": [ 78 @@ -66483,7 +66709,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2979 + 2999 ], "ordering": [ 236 @@ -66494,40 +66720,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "aim_rating": [ - 1180 + 1200 ], "counter_strafe_pct": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "overall_rating": [ - 1180 + 1200 ], "played_at": [ - 4004 + 4024 ], "positioning_rating": [ - 1180 + 1200 ], "rounds": [ 38 @@ -66539,16 +66765,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -66556,34 +66782,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2459 + 2479 ], "accuracy_spotted": [ - 2459 + 2479 ], "aim_rating": [ - 1180 + 1200 ], "counter_strafe_pct": [ - 2459 + 2479 ], "enemy_blind_pr": [ - 2459 + 2479 ], "flash_assists_pr": [ - 2459 + 2479 ], "hs_pct": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "overall_rating": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "rounds": [ 38 @@ -66592,16 +66818,16 @@ export default { 180 ], "survival_pct": [ - 2459 + 2479 ], "traded_death_pct": [ - 2459 + 2479 ], "util_efficiency": [ - 2459 + 2479 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -66777,13 +67003,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -66873,7 +67099,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -66957,7 +67183,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -66971,10 +67197,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 2988 + 3008 ], "nodes": [ - 2984 + 3004 ], "__typename": [ 78 @@ -66982,7 +67208,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2987 + 3007 ], "__typename": [ 78 @@ -66990,13 +67216,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3000 + 3020 ], "distinct": [ 3 ], "filter": [ - 2993 + 3013 ], "predicate": [ 39 @@ -67007,13 +67233,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2991 + 3011 ], "count": [ 38, { "columns": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -67022,31 +67248,31 @@ export default { } ], "max": [ - 2995 + 3015 ], "min": [ - 2997 + 3017 ], "stddev": [ - 3001 + 3021 ], "stddev_pop": [ - 3003 + 3023 ], "stddev_samp": [ - 3005 + 3025 ], "sum": [ - 3009 + 3029 ], "var_pop": [ - 3011 + 3031 ], "var_samp": [ - 3013 + 3033 ], "variance": [ - 3015 + 3035 ], "__typename": [ 78 @@ -67054,37 +67280,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2992 + 3012 ], "count": [ - 2461 + 2481 ], "max": [ - 2996 + 3016 ], "min": [ - 2998 + 3018 ], "stddev": [ - 3002 + 3022 ], "stddev_pop": [ - 3004 + 3024 ], "stddev_samp": [ - 3006 + 3026 ], "sum": [ - 3010 + 3030 ], "var_pop": [ - 3012 + 3032 ], "var_samp": [ - 3014 + 3034 ], "variance": [ - 3016 + 3036 ], "__typename": [ 78 @@ -67092,7 +67318,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2994 + 3014 ], "__typename": [ 78 @@ -67300,199 +67526,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -67500,13 +67726,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 2993 + 3013 ], "_not": [ - 2993 + 3013 ], "_or": [ - 2993 + 3013 ], "assists": [ 39 @@ -67518,13 +67744,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2460 + 2480 ], "avg_flash_duration": [ - 2460 + 2480 ], "avg_time_to_damage_s": [ - 2460 + 2480 ], "counter_strafe_eligible_shots": [ 39 @@ -67614,7 +67840,7 @@ export default { 39 ], "match_id": [ - 4444 + 4464 ], "molotov_damage": [ 39 @@ -67698,7 +67924,7 @@ export default { 39 ], "utility_on_death": [ - 2460 + 2480 ], "wasted_magazine_shots": [ 39 @@ -67721,13 +67947,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -67817,7 +68043,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -67901,7 +68127,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -67924,13 +68150,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -68020,7 +68246,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -68104,7 +68330,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -68118,202 +68344,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -68330,13 +68556,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -68426,7 +68652,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -68510,7 +68736,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -68524,202 +68750,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -68727,202 +68953,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -69131,199 +69357,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -69531,199 +69757,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -69931,199 +70157,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -70131,7 +70357,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3008 + 3028 ], "ordering": [ 236 @@ -70151,13 +70377,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -70247,7 +70473,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "molotov_damage": [ 38 @@ -70331,7 +70557,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -70354,13 +70580,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2459 + 2479 ], "avg_flash_duration": [ - 2459 + 2479 ], "avg_time_to_damage_s": [ - 2459 + 2479 ], "counter_strafe_eligible_shots": [ 38 @@ -70531,7 +70757,7 @@ export default { 38 ], "utility_on_death": [ - 2459 + 2479 ], "wasted_magazine_shots": [ 38 @@ -70545,199 +70771,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -70945,199 +71171,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -71345,199 +71571,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -71745,199 +71971,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2461 + 2481 ], "assists_ct": [ - 2461 + 2481 ], "assists_t": [ - 2461 + 2481 ], "avg_crosshair_angle_deg": [ - 2461 + 2481 ], "avg_flash_duration": [ - 2461 + 2481 ], "avg_time_to_damage_s": [ - 2461 + 2481 ], "counter_strafe_eligible_shots": [ - 2461 + 2481 ], "counter_strafed_shots": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_ct": [ - 2461 + 2481 ], "damage_t": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "deaths_ct": [ - 2461 + 2481 ], "deaths_t": [ - 2461 + 2481 ], "decoy_throws": [ - 2461 + 2481 ], "enemies_flashed": [ - 2461 + 2481 ], "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "five_kill_rounds": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "flashes_thrown": [ - 2461 + 2481 ], "four_kill_rounds": [ - 2461 + 2481 ], "he_damage": [ - 2461 + 2481 ], "he_team_damage": [ - 2461 + 2481 ], "he_throws": [ - 2461 + 2481 ], "headshot_hits": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_at_spotted": [ - 2461 + 2481 ], "hs_kills": [ - 2461 + 2481 ], "hs_kills_ct": [ - 2461 + 2481 ], "hs_kills_t": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kills_ct": [ - 2461 + 2481 ], "kills_t": [ - 2461 + 2481 ], "knife_kills": [ - 2461 + 2481 ], "molotov_damage": [ - 2461 + 2481 ], "molotov_throws": [ - 2461 + 2481 ], "non_awp_hits": [ - 2461 + 2481 ], "on_target_frames": [ - 2461 + 2481 ], "rounds_ct": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "rounds_t": [ - 2461 + 2481 ], "shots_at_spotted": [ - 2461 + 2481 ], "shots_fired": [ - 2461 + 2481 ], "smoke_throws": [ - 2461 + 2481 ], "spotted_count": [ - 2461 + 2481 ], "spotted_with_damage_count": [ - 2461 + 2481 ], "spray_hits": [ - 2461 + 2481 ], "spray_shots": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_damage": [ - 2461 + 2481 ], "team_flashed": [ - 2461 + 2481 ], "three_kill_rounds": [ - 2461 + 2481 ], "total_engagement_frames": [ - 2461 + 2481 ], "trade_kill_attempts": [ - 2461 + 2481 ], "trade_kill_opportunities": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_attempts": [ - 2461 + 2481 ], "traded_death_opportunities": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "two_kill_rounds": [ - 2461 + 2481 ], "unused_utility_value": [ - 2461 + 2481 ], "utility_on_death": [ - 2461 + 2481 ], "wasted_magazine_shots": [ - 2461 + 2481 ], "zeus_kills": [ - 2461 + 2481 ], "__typename": [ 78 @@ -71945,22 +72171,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4004 + 4024 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -71969,7 +72195,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "type": [ 861 @@ -71980,10 +72206,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3021 + 3041 ], "nodes": [ - 3017 + 3037 ], "__typename": [ 78 @@ -71991,7 +72217,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3020 + 3040 ], "__typename": [ 78 @@ -71999,13 +72225,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3038 + 3058 ], "distinct": [ 3 ], "filter": [ - 3026 + 3046 ], "predicate": [ 39 @@ -72016,13 +72242,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3024 + 3044 ], "count": [ 38, { "columns": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "distinct": [ @@ -72031,31 +72257,31 @@ export default { } ], "max": [ - 3030 + 3050 ], "min": [ - 3032 + 3052 ], "stddev": [ - 3040 + 3060 ], "stddev_pop": [ - 3042 + 3062 ], "stddev_samp": [ - 3044 + 3064 ], "sum": [ - 3048 + 3068 ], "var_pop": [ - 3052 + 3072 ], "var_samp": [ - 3054 + 3074 ], "variance": [ - 3056 + 3076 ], "__typename": [ 78 @@ -72063,37 +72289,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3025 + 3045 ], "count": [ - 2461 + 2481 ], "max": [ - 3031 + 3051 ], "min": [ - 3033 + 3053 ], "stddev": [ - 3041 + 3061 ], "stddev_pop": [ - 3043 + 3063 ], "stddev_samp": [ - 3045 + 3065 ], "sum": [ - 3049 + 3069 ], "var_pop": [ - 3053 + 3073 ], "var_samp": [ - 3055 + 3075 ], "variance": [ - 3057 + 3077 ], "__typename": [ 78 @@ -72101,10 +72327,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3029 + 3049 ], "on_conflict": [ - 3035 + 3055 ], "__typename": [ 78 @@ -72123,10 +72349,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72134,31 +72360,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3026 + 3046 ], "_not": [ - 3026 + 3046 ], "_or": [ - 3026 + 3046 ], "deleted_at": [ - 4005 + 4025 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -72167,7 +72393,7 @@ export default { 39 ], "time": [ - 4005 + 4025 ], "type": [ 862 @@ -72190,22 +72416,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4004 + 4024 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -72214,7 +72440,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "type": [ 861 @@ -72225,13 +72451,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -72240,7 +72466,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -72248,22 +72474,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72271,13 +72497,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -72286,7 +72512,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -72294,22 +72520,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72320,7 +72546,7 @@ export default { 38 ], "returning": [ - 3017 + 3037 ], "__typename": [ 78 @@ -72328,13 +72554,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3027 + 3047 ], "update_columns": [ - 3050 + 3070 ], "where": [ - 3026 + 3046 ], "__typename": [ 78 @@ -72342,34 +72568,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72377,13 +72603,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -72392,13 +72618,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -72407,7 +72633,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "type": [ 861 @@ -72429,10 +72655,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72451,10 +72677,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72473,10 +72699,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72484,7 +72710,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3047 + 3067 ], "ordering": [ 236 @@ -72495,13 +72721,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -72510,7 +72736,7 @@ export default { 38 ], "time": [ - 4004 + 4024 ], "type": [ 861 @@ -72532,10 +72758,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72544,13 +72770,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3028 + 3048 ], "_set": [ - 3039 + 3059 ], "where": [ - 3026 + 3046 ], "__typename": [ 78 @@ -72569,10 +72795,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72591,10 +72817,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72613,10 +72839,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -72624,13 +72850,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1180 + 1200 ], "aim_goal": [ - 1180 + 1200 ], "aim_rating": [ - 1180 + 1200 ], "band": [ 38 @@ -72639,31 +72865,31 @@ export default { 180 ], "blind_score": [ - 1180 + 1200 ], "counter_strafe_score": [ - 1180 + 1200 ], "crosshair_score": [ - 1180 + 1200 ], "flash_assists_score": [ - 1180 + 1200 ], "hs_score": [ - 1180 + 1200 ], "kast_score": [ - 1180 + 1200 ], "maps": [ 38 ], "positioning_goal": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "premier_rank": [ 38 @@ -72672,28 +72898,28 @@ export default { 38 ], "spotted_score": [ - 1180 + 1200 ], "steam_id": [ 180 ], "survival_score": [ - 1180 + 1200 ], "traded_score": [ - 1180 + 1200 ], "ttd_score": [ - 1180 + 1200 ], "util_eff_score": [ - 1180 + 1200 ], "utility_goal": [ - 1180 + 1200 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -72701,10 +72927,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3060 + 3080 ], "nodes": [ - 3058 + 3078 ], "__typename": [ 78 @@ -72712,13 +72938,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3061 + 3081 ], "count": [ 38, { "columns": [ - 3066, + 3086, "[player_performance_v_select_column!]" ], "distinct": [ @@ -72727,31 +72953,31 @@ export default { } ], "max": [ - 3063 + 3083 ], "min": [ - 3064 + 3084 ], "stddev": [ - 3067 + 3087 ], "stddev_pop": [ - 3068 + 3088 ], "stddev_samp": [ - 3069 + 3089 ], "sum": [ - 3072 + 3092 ], "var_pop": [ - 3073 + 3093 ], "var_samp": [ - 3074 + 3094 ], "variance": [ - 3075 + 3095 ], "__typename": [ 78 @@ -72836,22 +73062,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3062 + 3082 ], "_not": [ - 3062 + 3082 ], "_or": [ - 3062 + 3082 ], "accuracy_score": [ - 1181 + 1201 ], "aim_goal": [ - 1181 + 1201 ], "aim_rating": [ - 1181 + 1201 ], "band": [ 39 @@ -72860,31 +73086,31 @@ export default { 182 ], "blind_score": [ - 1181 + 1201 ], "counter_strafe_score": [ - 1181 + 1201 ], "crosshair_score": [ - 1181 + 1201 ], "flash_assists_score": [ - 1181 + 1201 ], "hs_score": [ - 1181 + 1201 ], "kast_score": [ - 1181 + 1201 ], "maps": [ 39 ], "positioning_goal": [ - 1181 + 1201 ], "positioning_rating": [ - 1181 + 1201 ], "premier_rank": [ 39 @@ -72893,28 +73119,28 @@ export default { 39 ], "spotted_score": [ - 1181 + 1201 ], "steam_id": [ 182 ], "survival_score": [ - 1181 + 1201 ], "traded_score": [ - 1181 + 1201 ], "ttd_score": [ - 1181 + 1201 ], "util_eff_score": [ - 1181 + 1201 ], "utility_goal": [ - 1181 + 1201 ], "utility_rating": [ - 1181 + 1201 ], "__typename": [ 78 @@ -72922,13 +73148,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1180 + 1200 ], "aim_goal": [ - 1180 + 1200 ], "aim_rating": [ - 1180 + 1200 ], "band": [ 38 @@ -72937,31 +73163,31 @@ export default { 180 ], "blind_score": [ - 1180 + 1200 ], "counter_strafe_score": [ - 1180 + 1200 ], "crosshair_score": [ - 1180 + 1200 ], "flash_assists_score": [ - 1180 + 1200 ], "hs_score": [ - 1180 + 1200 ], "kast_score": [ - 1180 + 1200 ], "maps": [ 38 ], "positioning_goal": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "premier_rank": [ 38 @@ -72970,28 +73196,28 @@ export default { 38 ], "spotted_score": [ - 1180 + 1200 ], "steam_id": [ 180 ], "survival_score": [ - 1180 + 1200 ], "traded_score": [ - 1180 + 1200 ], "ttd_score": [ - 1180 + 1200 ], "util_eff_score": [ - 1180 + 1200 ], "utility_goal": [ - 1180 + 1200 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -72999,13 +73225,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1180 + 1200 ], "aim_goal": [ - 1180 + 1200 ], "aim_rating": [ - 1180 + 1200 ], "band": [ 38 @@ -73014,31 +73240,31 @@ export default { 180 ], "blind_score": [ - 1180 + 1200 ], "counter_strafe_score": [ - 1180 + 1200 ], "crosshair_score": [ - 1180 + 1200 ], "flash_assists_score": [ - 1180 + 1200 ], "hs_score": [ - 1180 + 1200 ], "kast_score": [ - 1180 + 1200 ], "maps": [ 38 ], "positioning_goal": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "premier_rank": [ 38 @@ -73047,28 +73273,28 @@ export default { 38 ], "spotted_score": [ - 1180 + 1200 ], "steam_id": [ 180 ], "survival_score": [ - 1180 + 1200 ], "traded_score": [ - 1180 + 1200 ], "ttd_score": [ - 1180 + 1200 ], "util_eff_score": [ - 1180 + 1200 ], "utility_goal": [ - 1180 + 1200 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -73076,76 +73302,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2461 + 2481 ], "aim_goal": [ - 2461 + 2481 ], "aim_rating": [ - 2461 + 2481 ], "band": [ - 2461 + 2481 ], "band_sample": [ - 2461 + 2481 ], "blind_score": [ - 2461 + 2481 ], "counter_strafe_score": [ - 2461 + 2481 ], "crosshair_score": [ - 2461 + 2481 ], "flash_assists_score": [ - 2461 + 2481 ], "hs_score": [ - 2461 + 2481 ], "kast_score": [ - 2461 + 2481 ], "maps": [ - 2461 + 2481 ], "positioning_goal": [ - 2461 + 2481 ], "positioning_rating": [ - 2461 + 2481 ], "premier_rank": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "spotted_score": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "survival_score": [ - 2461 + 2481 ], "traded_score": [ - 2461 + 2481 ], "ttd_score": [ - 2461 + 2481 ], "util_eff_score": [ - 2461 + 2481 ], "utility_goal": [ - 2461 + 2481 ], "utility_rating": [ - 2461 + 2481 ], "__typename": [ 78 @@ -73385,7 +73611,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3071 + 3091 ], "ordering": [ 236 @@ -73396,13 +73622,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1180 + 1200 ], "aim_goal": [ - 1180 + 1200 ], "aim_rating": [ - 1180 + 1200 ], "band": [ 38 @@ -73411,31 +73637,31 @@ export default { 180 ], "blind_score": [ - 1180 + 1200 ], "counter_strafe_score": [ - 1180 + 1200 ], "crosshair_score": [ - 1180 + 1200 ], "flash_assists_score": [ - 1180 + 1200 ], "hs_score": [ - 1180 + 1200 ], "kast_score": [ - 1180 + 1200 ], "maps": [ 38 ], "positioning_goal": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "premier_rank": [ 38 @@ -73444,28 +73670,28 @@ export default { 38 ], "spotted_score": [ - 1180 + 1200 ], "steam_id": [ 180 ], "survival_score": [ - 1180 + 1200 ], "traded_score": [ - 1180 + 1200 ], "ttd_score": [ - 1180 + 1200 ], "util_eff_score": [ - 1180 + 1200 ], "utility_goal": [ - 1180 + 1200 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -73473,13 +73699,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1180 + 1200 ], "aim_goal": [ - 1180 + 1200 ], "aim_rating": [ - 1180 + 1200 ], "band": [ 38 @@ -73488,31 +73714,31 @@ export default { 180 ], "blind_score": [ - 1180 + 1200 ], "counter_strafe_score": [ - 1180 + 1200 ], "crosshair_score": [ - 1180 + 1200 ], "flash_assists_score": [ - 1180 + 1200 ], "hs_score": [ - 1180 + 1200 ], "kast_score": [ - 1180 + 1200 ], "maps": [ 38 ], "positioning_goal": [ - 1180 + 1200 ], "positioning_rating": [ - 1180 + 1200 ], "premier_rank": [ 38 @@ -73521,28 +73747,28 @@ export default { 38 ], "spotted_score": [ - 1180 + 1200 ], "steam_id": [ 180 ], "survival_score": [ - 1180 + 1200 ], "traded_score": [ - 1180 + 1200 ], "ttd_score": [ - 1180 + 1200 ], "util_eff_score": [ - 1180 + 1200 ], "utility_goal": [ - 1180 + 1200 ], "utility_rating": [ - 1180 + 1200 ], "__typename": [ 78 @@ -73781,25 +74007,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4442 + 4462 ], "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "player": [ - 3419 + 3439 ], "previous_rank": [ 38 @@ -73819,10 +74045,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3080 + 3100 ], "nodes": [ - 3076 + 3096 ], "__typename": [ 78 @@ -73830,7 +74056,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3079 + 3099 ], "__typename": [ 78 @@ -73838,13 +74064,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3097 + 3117 ], "distinct": [ 3 ], "filter": [ - 3085 + 3105 ], "predicate": [ 39 @@ -73855,13 +74081,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3083 + 3103 ], "count": [ 38, { "columns": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -73870,31 +74096,31 @@ export default { } ], "max": [ - 3089 + 3109 ], "min": [ - 3091 + 3111 ], "stddev": [ - 3099 + 3119 ], "stddev_pop": [ - 3101 + 3121 ], "stddev_samp": [ - 3103 + 3123 ], "sum": [ - 3107 + 3127 ], "var_pop": [ - 3111 + 3131 ], "var_samp": [ - 3113 + 3133 ], "variance": [ - 3115 + 3135 ], "__typename": [ 78 @@ -73902,37 +74128,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3084 + 3104 ], "count": [ - 2461 + 2481 ], "max": [ - 3090 + 3110 ], "min": [ - 3092 + 3112 ], "stddev": [ - 3100 + 3120 ], "stddev_pop": [ - 3102 + 3122 ], "stddev_samp": [ - 3104 + 3124 ], "sum": [ - 3108 + 3128 ], "var_pop": [ - 3112 + 3132 ], "var_samp": [ - 3114 + 3134 ], "variance": [ - 3116 + 3136 ], "__typename": [ 78 @@ -73940,10 +74166,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3088 + 3108 ], "on_conflict": [ - 3094 + 3114 ], "__typename": [ 78 @@ -73968,16 +74194,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -73985,34 +74211,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3085 + 3105 ], "_not": [ - 3085 + 3105 ], "_or": [ - 3085 + 3105 ], "id": [ - 4444 + 4464 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "observed_at": [ - 4005 + 4025 ], "player": [ - 3423 + 3443 ], "previous_rank": [ 39 @@ -74050,25 +74276,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4442 + 4462 ], "map": [ - 1811 + 1831 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "player": [ - 3430 + 3450 ], "previous_rank": [ 38 @@ -74088,16 +74314,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -74117,28 +74343,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74146,16 +74372,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -74175,28 +74401,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2461 + 2481 ], "map_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74207,7 +74433,7 @@ export default { 38 ], "returning": [ - 3076 + 3096 ], "__typename": [ 78 @@ -74215,13 +74441,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3086 + 3106 ], "update_columns": [ - 3109 + 3129 ], "where": [ - 3085 + 3105 ], "__typename": [ 78 @@ -74229,37 +74455,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2461 + 2481 ], "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "observed_at": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74267,7 +74493,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -74276,16 +74502,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -74322,16 +74548,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74356,16 +74582,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74390,16 +74616,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74407,7 +74633,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3106 + 3126 ], "ordering": [ 236 @@ -74418,16 +74644,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4442 + 4462 ], "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "observed_at": [ - 4004 + 4024 ], "previous_rank": [ 38 @@ -74464,16 +74690,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74482,13 +74708,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3087 + 3107 ], "_set": [ - 3098 + 3118 ], "where": [ - 3085 + 3105 ], "__typename": [ 78 @@ -74513,16 +74739,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74547,16 +74773,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74581,16 +74807,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rank_type": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74598,19 +74824,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "e_sanction_type": [ - 916 + 936 ], "id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -74619,16 +74845,16 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by": [ - 3419 + 3439 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 921 + 941 ], "__typename": [ 78 @@ -74636,10 +74862,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3121 + 3141 ], "nodes": [ - 3117 + 3137 ], "__typename": [ 78 @@ -74647,7 +74873,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3120 + 3140 ], "__typename": [ 78 @@ -74655,13 +74881,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3138 + 3158 ], "distinct": [ 3 ], "filter": [ - 3126 + 3146 ], "predicate": [ 39 @@ -74672,13 +74898,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3124 + 3144 ], "count": [ 38, { "columns": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "distinct": [ @@ -74687,31 +74913,31 @@ export default { } ], "max": [ - 3130 + 3150 ], "min": [ - 3132 + 3152 ], "stddev": [ - 3140 + 3160 ], "stddev_pop": [ - 3142 + 3162 ], "stddev_samp": [ - 3144 + 3164 ], "sum": [ - 3148 + 3168 ], "var_pop": [ - 3152 + 3172 ], "var_samp": [ - 3154 + 3174 ], "variance": [ - 3156 + 3176 ], "__typename": [ 78 @@ -74719,37 +74945,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3125 + 3145 ], "count": [ - 2461 + 2481 ], "max": [ - 3131 + 3151 ], "min": [ - 3133 + 3153 ], "stddev": [ - 3141 + 3161 ], "stddev_pop": [ - 3143 + 3163 ], "stddev_samp": [ - 3145 + 3165 ], "sum": [ - 3149 + 3169 ], "var_pop": [ - 3153 + 3173 ], "var_samp": [ - 3155 + 3175 ], "variance": [ - 3157 + 3177 ], "__typename": [ 78 @@ -74757,10 +74983,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3129 + 3149 ], "on_conflict": [ - 3135 + 3155 ], "__typename": [ 78 @@ -74779,10 +75005,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74790,28 +75016,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3126 + 3146 ], "_not": [ - 3126 + 3146 ], "_or": [ - 3126 + 3146 ], "created_at": [ - 4005 + 4025 ], "deleted_at": [ - 4005 + 4025 ], "e_sanction_type": [ - 919 + 939 ], "id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -74820,16 +75046,16 @@ export default { 80 ], "remove_sanction_date": [ - 4005 + 4025 ], "sanctioned_by": [ - 3423 + 3443 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 922 + 942 ], "__typename": [ 78 @@ -74849,19 +75075,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "e_sanction_type": [ - 927 + 947 ], "id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -74870,16 +75096,16 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by": [ - 3430 + 3450 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 921 + 941 ], "__typename": [ 78 @@ -74887,13 +75113,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -74902,7 +75128,7 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by_steam_id": [ 180 @@ -74913,25 +75139,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "reason": [ - 2461 + 2481 ], "remove_sanction_date": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74939,13 +75165,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -74954,7 +75180,7 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by_steam_id": [ 180 @@ -74965,25 +75191,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "reason": [ - 2461 + 2481 ], "remove_sanction_date": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -74994,7 +75220,7 @@ export default { 38 ], "returning": [ - 3117 + 3137 ], "__typename": [ 78 @@ -75002,13 +75228,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3127 + 3147 ], "update_columns": [ - 3150 + 3170 ], "where": [ - 3126 + 3146 ], "__typename": [ 78 @@ -75016,37 +75242,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "e_sanction_type": [ - 929 + 949 ], "id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "reason": [ - 2461 + 2481 ], "remove_sanction_date": [ - 2461 + 2481 ], "sanctioned_by": [ - 3432 + 3452 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75054,10 +75280,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75066,13 +75292,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -75081,13 +75307,13 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 921 + 941 ], "__typename": [ 78 @@ -75106,10 +75332,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75128,10 +75354,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75150,10 +75376,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75161,7 +75387,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3147 + 3167 ], "ordering": [ 236 @@ -75172,13 +75398,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "deleted_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -75187,13 +75413,13 @@ export default { 78 ], "remove_sanction_date": [ - 4004 + 4024 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 921 + 941 ], "__typename": [ 78 @@ -75212,10 +75438,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75224,13 +75450,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3128 + 3148 ], "_set": [ - 3139 + 3159 ], "where": [ - 3126 + 3146 ], "__typename": [ 78 @@ -75249,10 +75475,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75271,10 +75497,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75293,10 +75519,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "sanctioned_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75310,7 +75536,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75319,16 +75545,16 @@ export default { 180 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "season": [ - 3478 + 3498 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75336,10 +75562,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3172 + 3192 ], "nodes": [ - 3158 + 3178 ], "__typename": [ 78 @@ -75347,31 +75573,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3161 + 3181 ], "corr": [ - 3162 + 3182 ], "count": [ - 3164 + 3184 ], "covar_samp": [ - 3165 + 3185 ], "max": [ - 3167 + 3187 ], "min": [ - 3168 + 3188 ], "stddev_samp": [ - 3169 + 3189 ], "sum": [ - 3170 + 3190 ], "var_samp": [ - 3171 + 3191 ], "__typename": [ 78 @@ -75379,16 +75605,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3190 + 3210 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75396,16 +75622,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3163 + 3183 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75413,10 +75639,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3191 + 3211 ], "Y": [ - 3191 + 3211 ], "__typename": [ 78 @@ -75424,13 +75650,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3189 + 3209 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ 39 @@ -75441,16 +75667,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3166 + 3186 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75458,10 +75684,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3192 + 3212 ], "Y": [ - 3192 + 3212 ], "__typename": [ 78 @@ -75469,16 +75695,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3193 + 3213 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75486,16 +75712,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3194 + 3214 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75503,16 +75729,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3195 + 3215 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75520,16 +75746,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3196 + 3216 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75537,16 +75763,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3197 + 3217 ], "distinct": [ 3 ], "filter": [ - 3177 + 3197 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -75554,13 +75780,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3175 + 3195 ], "count": [ 38, { "columns": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "distinct": [ @@ -75569,31 +75795,31 @@ export default { } ], "max": [ - 3181 + 3201 ], "min": [ - 3183 + 3203 ], "stddev": [ - 3199 + 3219 ], "stddev_pop": [ - 3201 + 3221 ], "stddev_samp": [ - 3203 + 3223 ], "sum": [ - 3207 + 3227 ], "var_pop": [ - 3211 + 3231 ], "var_samp": [ - 3213 + 3233 ], "variance": [ - 3215 + 3235 ], "__typename": [ 78 @@ -75601,37 +75827,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3176 + 3196 ], "count": [ - 2461 + 2481 ], "max": [ - 3182 + 3202 ], "min": [ - 3184 + 3204 ], "stddev": [ - 3200 + 3220 ], "stddev_pop": [ - 3202 + 3222 ], "stddev_samp": [ - 3204 + 3224 ], "sum": [ - 3208 + 3228 ], "var_pop": [ - 3212 + 3232 ], "var_samp": [ - 3214 + 3234 ], "variance": [ - 3216 + 3236 ], "__typename": [ 78 @@ -75639,10 +75865,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3180 + 3200 ], "on_conflict": [ - 3186 + 3206 ], "__typename": [ 78 @@ -75673,22 +75899,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75696,13 +75922,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3177 + 3197 ], "_not": [ - 3177 + 3197 ], "_or": [ - 3177 + 3197 ], "assists": [ 182 @@ -75711,7 +75937,7 @@ export default { 182 ], "headshot_percentage": [ - 1181 + 1201 ], "headshots": [ 182 @@ -75720,16 +75946,16 @@ export default { 182 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "season": [ - 3482 + 3502 ], "season_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -75744,7 +75970,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75767,7 +75993,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75776,16 +76002,16 @@ export default { 180 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "season": [ - 3489 + 3509 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75799,7 +76025,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75811,7 +76037,7 @@ export default { 180 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75819,25 +76045,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "season_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75851,7 +76077,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75863,7 +76089,7 @@ export default { 180 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75871,25 +76097,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "season_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75900,7 +76126,7 @@ export default { 38 ], "returning": [ - 3158 + 3178 ], "__typename": [ 78 @@ -75908,13 +76134,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3178 + 3198 ], "update_columns": [ - 3209 + 3229 ], "where": [ - 3177 + 3197 ], "__typename": [ 78 @@ -75922,31 +76148,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "season": [ - 3491 + 3511 ], "season_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -75957,7 +76183,7 @@ export default { 180 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -75980,7 +76206,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -75992,7 +76218,7 @@ export default { 180 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -76023,22 +76249,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76069,22 +76295,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76115,22 +76341,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76138,7 +76364,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3206 + 3226 ], "ordering": [ 236 @@ -76155,7 +76381,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76167,7 +76393,7 @@ export default { 180 ], "season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -76181,7 +76407,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76198,22 +76424,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76222,13 +76448,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3179 + 3199 ], "_set": [ - 3198 + 3218 ], "where": [ - 3177 + 3197 ], "__typename": [ 78 @@ -76259,22 +76485,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76305,22 +76531,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76351,22 +76577,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76380,7 +76606,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76389,7 +76615,7 @@ export default { 180 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -76400,10 +76626,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3219 + 3239 ], "nodes": [ - 3217 + 3237 ], "__typename": [ 78 @@ -76411,13 +76637,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3220 + 3240 ], "count": [ 38, { "columns": [ - 3232, + 3252, "[player_stats_select_column!]" ], "distinct": [ @@ -76426,31 +76652,31 @@ export default { } ], "max": [ - 3225 + 3245 ], "min": [ - 3226 + 3246 ], "stddev": [ - 3234 + 3254 ], "stddev_pop": [ - 3235 + 3255 ], "stddev_samp": [ - 3236 + 3256 ], "sum": [ - 3239 + 3259 ], "var_pop": [ - 3242 + 3262 ], "var_samp": [ - 3243 + 3263 ], "variance": [ - 3244 + 3264 ], "__typename": [ 78 @@ -76481,13 +76707,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3221 + 3241 ], "_not": [ - 3221 + 3241 ], "_or": [ - 3221 + 3241 ], "assists": [ 182 @@ -76496,7 +76722,7 @@ export default { 182 ], "headshot_percentage": [ - 1181 + 1201 ], "headshots": [ 182 @@ -76505,7 +76731,7 @@ export default { 182 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -76523,7 +76749,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76546,7 +76772,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76555,7 +76781,7 @@ export default { 180 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -76572,7 +76798,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76595,7 +76821,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76615,7 +76841,7 @@ export default { 38 ], "returning": [ - 3217 + 3237 ], "__typename": [ 78 @@ -76623,10 +76849,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3224 + 3244 ], "on_conflict": [ - 3229 + 3249 ], "__typename": [ 78 @@ -76634,13 +76860,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3222 + 3242 ], "update_columns": [ - 3240 + 3260 ], "where": [ - 3221 + 3241 ], "__typename": [ 78 @@ -76648,25 +76874,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -76689,7 +76915,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76775,7 +77001,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3238 + 3258 ], "ordering": [ 236 @@ -76792,7 +77018,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76815,7 +77041,7 @@ export default { 180 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 180 @@ -76833,13 +77059,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3223 + 3243 ], "_set": [ - 3233 + 3253 ], "where": [ - 3221 + 3241 ], "__typename": [ 78 @@ -76916,19 +77142,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "last_presence_state": [ - 1332, + 1352, { "path": [ 78 @@ -76936,7 +77162,7 @@ export default { } ], "player": [ - 3419 + 3439 ], "status": [ 78 @@ -76945,7 +77171,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -76953,10 +77179,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3247 + 3267 ], "nodes": [ - 3245 + 3265 ], "__typename": [ 78 @@ -76964,13 +77190,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3249 + 3269 ], "count": [ 38, { "columns": [ - 3264, + 3284, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -76979,31 +77205,31 @@ export default { } ], "max": [ - 3257 + 3277 ], "min": [ - 3258 + 3278 ], "stddev": [ - 3266 + 3286 ], "stddev_pop": [ - 3267 + 3287 ], "stddev_samp": [ - 3268 + 3288 ], "sum": [ - 3271 + 3291 ], "var_pop": [ - 3274 + 3294 ], "var_samp": [ - 3275 + 3295 ], "variance": [ - 3276 + 3296 ], "__typename": [ 78 @@ -77011,7 +77237,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1332 + 1352 ], "__typename": [ 78 @@ -77030,31 +77256,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3250 + 3270 ], "_not": [ - 3250 + 3270 ], "_or": [ - 3250 + 3270 ], "bot_steam_account_id": [ - 4444 + 4464 ], "bot_steamid64": [ 182 ], "created_at": [ - 4005 + 4025 ], "friended_at": [ - 4005 + 4025 ], "last_presence_state": [ - 1334 + 1354 ], "player": [ - 3423 + 3443 ], "status": [ 80 @@ -77063,7 +77289,7 @@ export default { 182 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -77107,22 +77333,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "last_presence_state": [ - 1332 + 1352 ], "player": [ - 3430 + 3450 ], "status": [ 78 @@ -77131,7 +77357,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77139,16 +77365,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "status": [ 78 @@ -77157,7 +77383,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77165,16 +77391,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "status": [ 78 @@ -77183,7 +77409,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77194,7 +77420,7 @@ export default { 38 ], "returning": [ - 3245 + 3265 ], "__typename": [ 78 @@ -77202,13 +77428,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3251 + 3271 ], "update_columns": [ - 3272 + 3292 ], "where": [ - 3250 + 3270 ], "__typename": [ 78 @@ -77216,31 +77442,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2461 + 2481 ], "bot_steamid64": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "friended_at": [ - 2461 + 2481 ], "last_presence_state": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "status": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -77256,7 +77482,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1332 + 1352 ], "__typename": [ 78 @@ -77265,19 +77491,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "last_presence_state": [ - 1332 + 1352 ], "status": [ 78 @@ -77286,7 +77512,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77327,7 +77553,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3270 + 3290 ], "ordering": [ 236 @@ -77338,19 +77564,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4442 + 4462 ], "bot_steamid64": [ 180 ], "created_at": [ - 4004 + 4024 ], "friended_at": [ - 4004 + 4024 ], "last_presence_state": [ - 1332 + 1352 ], "status": [ 78 @@ -77359,7 +77585,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77379,28 +77605,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3248 + 3268 ], "_delete_at_path": [ - 3252 + 3272 ], "_delete_elem": [ - 3253 + 3273 ], "_delete_key": [ - 3254 + 3274 ], "_inc": [ - 3255 + 3275 ], "_prepend": [ - 3263 + 3283 ], "_set": [ - 3265 + 3285 ], "where": [ - 3250 + 3270 ], "__typename": [ 78 @@ -77444,7 +77670,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77453,16 +77679,16 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77470,10 +77696,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3279 + 3299 ], "nodes": [ - 3277 + 3297 ], "__typename": [ 78 @@ -77481,13 +77707,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3280 + 3300 ], "count": [ 38, { "columns": [ - 3291, + 3311, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -77496,31 +77722,31 @@ export default { } ], "max": [ - 3285 + 3305 ], "min": [ - 3286 + 3306 ], "stddev": [ - 3293 + 3313 ], "stddev_pop": [ - 3294 + 3314 ], "stddev_samp": [ - 3295 + 3315 ], "sum": [ - 3298 + 3318 ], "var_pop": [ - 3301 + 3321 ], "var_samp": [ - 3302 + 3322 ], "variance": [ - 3303 + 3323 ], "__typename": [ 78 @@ -77536,19 +77762,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3281 + 3301 ], "_not": [ - 3281 + 3301 ], "_or": [ - 3281 + 3301 ], "auth_code": [ 80 ], "created_at": [ - 4005 + 4025 ], "last_error": [ 80 @@ -77557,16 +77783,16 @@ export default { 80 ], "last_polled_at": [ - 4005 + 4025 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -77586,7 +77812,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77595,16 +77821,16 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77615,7 +77841,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77624,13 +77850,13 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77641,7 +77867,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77650,13 +77876,13 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77667,7 +77893,7 @@ export default { 38 ], "returning": [ - 3277 + 3297 ], "__typename": [ 78 @@ -77675,13 +77901,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3282 + 3302 ], "update_columns": [ - 3299 + 3319 ], "where": [ - 3281 + 3301 ], "__typename": [ 78 @@ -77689,28 +77915,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "last_error": [ - 2461 + 2481 ], "last_known_share_code": [ - 2461 + 2481 ], "last_polled_at": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -77730,7 +77956,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77739,13 +77965,13 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77777,7 +78003,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3297 + 3317 ], "ordering": [ 236 @@ -77791,7 +78017,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "last_error": [ 78 @@ -77800,13 +78026,13 @@ export default { 78 ], "last_polled_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -77823,13 +78049,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3283 + 3303 ], "_set": [ - 3292 + 3312 ], "where": [ - 3281 + 3301 ], "__typename": [ 78 @@ -77861,22 +78087,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4004 + 4024 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -77893,10 +78119,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3308 + 3328 ], "nodes": [ - 3304 + 3324 ], "__typename": [ 78 @@ -77904,7 +78130,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3307 + 3327 ], "__typename": [ 78 @@ -77912,13 +78138,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3325 + 3345 ], "distinct": [ 3 ], "filter": [ - 3313 + 3333 ], "predicate": [ 39 @@ -77929,13 +78155,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3311 + 3331 ], "count": [ 38, { "columns": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -77944,31 +78170,31 @@ export default { } ], "max": [ - 3317 + 3337 ], "min": [ - 3319 + 3339 ], "stddev": [ - 3327 + 3347 ], "stddev_pop": [ - 3329 + 3349 ], "stddev_samp": [ - 3331 + 3351 ], "sum": [ - 3335 + 3355 ], "var_pop": [ - 3339 + 3359 ], "var_samp": [ - 3341 + 3361 ], "variance": [ - 3343 + 3363 ], "__typename": [ 78 @@ -77976,37 +78202,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3312 + 3332 ], "count": [ - 2461 + 2481 ], "max": [ - 3318 + 3338 ], "min": [ - 3320 + 3340 ], "stddev": [ - 3328 + 3348 ], "stddev_pop": [ - 3330 + 3350 ], "stddev_samp": [ - 3332 + 3352 ], "sum": [ - 3336 + 3356 ], "var_pop": [ - 3340 + 3360 ], "var_samp": [ - 3342 + 3362 ], "variance": [ - 3344 + 3364 ], "__typename": [ 78 @@ -78014,10 +78240,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3316 + 3336 ], "on_conflict": [ - 3322 + 3342 ], "__typename": [ 78 @@ -78039,13 +78265,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78053,31 +78279,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3313 + 3333 ], "_not": [ - 3313 + 3333 ], "_or": [ - 3313 + 3333 ], "deleted_at": [ - 4005 + 4025 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -78109,22 +78335,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4004 + 4024 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -78141,13 +78367,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -78164,22 +78390,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78187,13 +78413,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -78210,22 +78436,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78236,7 +78462,7 @@ export default { 38 ], "returning": [ - 3304 + 3324 ], "__typename": [ 78 @@ -78244,13 +78470,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3314 + 3334 ], "update_columns": [ - 3337 + 3357 ], "where": [ - 3313 + 3333 ], "__typename": [ 78 @@ -78258,31 +78484,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78290,7 +78516,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -78302,13 +78528,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -78339,13 +78565,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78367,13 +78593,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78395,13 +78621,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78409,7 +78635,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3334 + 3354 ], "ordering": [ 236 @@ -78420,13 +78646,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "player_steam_id": [ 180 @@ -78457,13 +78683,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78472,13 +78698,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3315 + 3335 ], "_set": [ - 3326 + 3346 ], "where": [ - 3313 + 3333 ], "__typename": [ 78 @@ -78500,13 +78726,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78528,13 +78754,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78556,13 +78782,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "unused": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78576,31 +78802,31 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "type": [ - 1125 + 1145 ], "__typename": [ 78 @@ -78608,10 +78834,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3349 + 3369 ], "nodes": [ - 3345 + 3365 ], "__typename": [ 78 @@ -78619,7 +78845,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3348 + 3368 ], "__typename": [ 78 @@ -78627,13 +78853,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3366 + 3386 ], "distinct": [ 3 ], "filter": [ - 3354 + 3374 ], "predicate": [ 39 @@ -78644,13 +78870,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3352 + 3372 ], "count": [ 38, { "columns": [ - 3366, + 3386, "[player_utility_select_column!]" ], "distinct": [ @@ -78659,31 +78885,31 @@ export default { } ], "max": [ - 3358 + 3378 ], "min": [ - 3360 + 3380 ], "stddev": [ - 3368 + 3388 ], "stddev_pop": [ - 3370 + 3390 ], "stddev_samp": [ - 3372 + 3392 ], "sum": [ - 3376 + 3396 ], "var_pop": [ - 3380 + 3400 ], "var_samp": [ - 3382 + 3402 ], "variance": [ - 3384 + 3404 ], "__typename": [ 78 @@ -78691,37 +78917,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3353 + 3373 ], "count": [ - 2461 + 2481 ], "max": [ - 3359 + 3379 ], "min": [ - 3361 + 3381 ], "stddev": [ - 3369 + 3389 ], "stddev_pop": [ - 3371 + 3391 ], "stddev_samp": [ - 3373 + 3393 ], "sum": [ - 3377 + 3397 ], "var_pop": [ - 3381 + 3401 ], "var_samp": [ - 3383 + 3403 ], "variance": [ - 3385 + 3405 ], "__typename": [ 78 @@ -78729,10 +78955,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3357 + 3377 ], "on_conflict": [ - 3363 + 3383 ], "__typename": [ 78 @@ -78751,10 +78977,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78762,13 +78988,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3354 + 3374 ], "_not": [ - 3354 + 3374 ], "_or": [ - 3354 + 3374 ], "attacker_location_coordinates": [ 80 @@ -78777,31 +79003,31 @@ export default { 182 ], "deleted_at": [ - 4005 + 4025 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "round": [ 39 ], "time": [ - 4005 + 4025 ], "type": [ - 1126 + 1146 ], "__typename": [ 78 @@ -78827,31 +79053,31 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "type": [ - 1125 + 1145 ], "__typename": [ 78 @@ -78865,19 +79091,19 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -78885,25 +79111,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78917,19 +79143,19 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -78937,25 +79163,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "__typename": [ 78 @@ -78966,7 +79192,7 @@ export default { 38 ], "returning": [ - 3345 + 3365 ], "__typename": [ 78 @@ -78974,13 +79200,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3355 + 3375 ], "update_columns": [ - 3378 + 3398 ], "where": [ - 3354 + 3374 ], "__typename": [ 78 @@ -78988,37 +79214,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2461 + 2481 ], "attacker_steam_id": [ - 2461 + 2481 ], "deleted_at": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "round": [ - 2461 + 2481 ], "time": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79029,10 +79255,10 @@ export default { 180 ], "match_map_id": [ - 4442 + 4462 ], "time": [ - 4004 + 4024 ], "__typename": [ 78 @@ -79047,22 +79273,22 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "type": [ - 1125 + 1145 ], "__typename": [ 78 @@ -79081,10 +79307,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79103,10 +79329,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79125,10 +79351,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79136,7 +79362,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3375 + 3395 ], "ordering": [ 236 @@ -79153,22 +79379,22 @@ export default { 180 ], "deleted_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 ], "time": [ - 4004 + 4024 ], "type": [ - 1125 + 1145 ], "__typename": [ 78 @@ -79187,10 +79413,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79199,13 +79425,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3356 + 3376 ], "_set": [ - 3367 + 3387 ], "where": [ - 3354 + 3374 ], "__typename": [ 78 @@ -79224,10 +79450,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79246,10 +79472,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79268,10 +79494,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79291,7 +79517,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -79311,10 +79537,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3390 + 3410 ], "nodes": [ - 3386 + 3406 ], "__typename": [ 78 @@ -79322,7 +79548,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3389 + 3409 ], "__typename": [ 78 @@ -79330,13 +79556,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3402 + 3422 ], "distinct": [ 3 ], "filter": [ - 3395 + 3415 ], "predicate": [ 39 @@ -79347,13 +79573,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3393 + 3413 ], "count": [ 38, { "columns": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -79362,31 +79588,31 @@ export default { } ], "max": [ - 3397 + 3417 ], "min": [ - 3399 + 3419 ], "stddev": [ - 3403 + 3423 ], "stddev_pop": [ - 3405 + 3425 ], "stddev_samp": [ - 3407 + 3427 ], "sum": [ - 3411 + 3431 ], "var_pop": [ - 3413 + 3433 ], "var_samp": [ - 3415 + 3435 ], "variance": [ - 3417 + 3437 ], "__typename": [ 78 @@ -79394,37 +79620,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3394 + 3414 ], "count": [ - 2461 + 2481 ], "max": [ - 3398 + 3418 ], "min": [ - 3400 + 3420 ], "stddev": [ - 3404 + 3424 ], "stddev_pop": [ - 3406 + 3426 ], "stddev_samp": [ - 3408 + 3428 ], "sum": [ - 3412 + 3432 ], "var_pop": [ - 3414 + 3434 ], "var_samp": [ - 3416 + 3436 ], "variance": [ - 3418 + 3438 ], "__typename": [ 78 @@ -79432,7 +79658,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3396 + 3416 ], "__typename": [ 78 @@ -79466,25 +79692,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79492,13 +79718,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3395 + 3415 ], "_not": [ - 3395 + 3415 ], "_or": [ - 3395 + 3415 ], "first_bullet_hits": [ 39 @@ -79513,7 +79739,7 @@ export default { 39 ], "match_id": [ - 4444 + 4464 ], "shots": [ 39 @@ -79545,7 +79771,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -79577,7 +79803,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -79597,31 +79823,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79641,7 +79867,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -79661,31 +79887,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79693,31 +79919,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "weapon_class": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79752,25 +79978,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79804,25 +80030,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79856,25 +80082,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -79882,7 +80108,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3410 + 3430 ], "ordering": [ 236 @@ -79905,7 +80131,7 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "shots": [ 38 @@ -79951,25 +80177,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -80003,25 +80229,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -80055,25 +80281,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -80107,25 +80333,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2461 + 2481 ], "first_bullet_shots": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "hits_spotted": [ - 2461 + 2481 ], "shots": [ - 2461 + 2481 ], "shots_spotted": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -80177,10 +80403,10 @@ export default { } ], "aim_weapon_stats": [ - 2558, + 2578, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80190,19 +80416,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "aim_weapon_stats_aggregate": [ - 2559, + 2579, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80212,19 +80438,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -80234,19 +80460,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -80256,19 +80482,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "assited_by_players": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -80278,19 +80504,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "assited_by_players_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -80300,11 +80526,11 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], @@ -80312,10 +80538,10 @@ export default { 78 ], "coach_lineups": [ - 1956, + 1976, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -80325,19 +80551,19 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "coach_lineups_aggregate": [ - 1957, + 1977, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -80347,11 +80573,11 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], @@ -80359,19 +80585,19 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_lobby_id": [ - 4442 + 4462 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -80381,19 +80607,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "damage_dealt_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -80403,19 +80629,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "damage_taken": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -80425,19 +80651,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "damage_taken_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -80447,11 +80673,11 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], @@ -80459,10 +80685,10 @@ export default { 38 ], "deaths": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -80472,19 +80698,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "deaths_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -80494,11 +80720,11 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], @@ -80550,7 +80776,7 @@ export default { } ], "elo": [ - 1332, + 1352, { "path": [ 78 @@ -80558,10 +80784,10 @@ export default { } ], "elo_history": [ - 4768, + 4788, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -80571,19 +80797,19 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "elo_history_aggregate": [ - 4769, + 4789, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -80593,11 +80819,11 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], @@ -80611,10 +80837,10 @@ export default { 78 ], "faceit_rank_history": [ - 2730, + 2750, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80624,19 +80850,19 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], "faceit_rank_history_aggregate": [ - 2731, + 2751, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80646,11 +80872,11 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], @@ -80658,16 +80884,16 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -80677,19 +80903,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "flashed_by_players_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -80699,19 +80925,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "flashed_players": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -80721,19 +80947,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "flashed_players_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -80743,19 +80969,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "friends": [ - 2336, + 2356, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -80765,19 +80991,19 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], "friends_aggregate": [ - 2337, + 2357, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -80787,11 +81013,11 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], @@ -80799,10 +81025,10 @@ export default { 38 ], "invited_players": [ - 3678, + 3698, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -80812,19 +81038,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "invited_players_aggregate": [ - 3679, + 3699, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -80834,11 +81060,11 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], @@ -80861,10 +81087,10 @@ export default { 3 ], "kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -80874,19 +81100,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -80896,19 +81122,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "kills_by_weapons": [ - 2828, + 2848, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -80918,19 +81144,19 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], "kills_by_weapons_aggregate": [ - 2829, + 2849, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -80940,11 +81166,11 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], @@ -80952,16 +81178,16 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "lobby_players": [ - 1730, + 1750, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -80971,19 +81197,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "lobby_players_aggregate": [ - 1731, + 1751, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -80993,11 +81219,11 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], @@ -81014,10 +81240,10 @@ export default { 38 ], "match_map_hltv": [ - 4873, + 4893, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81027,19 +81253,19 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "match_map_hltv_aggregate": [ - 4874, + 4894, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81049,19 +81275,19 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "match_map_stats": [ - 2925, + 2945, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81071,19 +81297,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "match_map_stats_aggregate": [ - 2926, + 2946, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81093,19 +81319,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "match_stats": [ - 2984, + 3004, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81115,19 +81341,19 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "match_stats_aggregate": [ - 2985, + 3005, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81137,19 +81363,19 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -81159,22 +81385,22 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matchmaking_cooldown": [ - 4004 + 4024 ], "multi_kills": [ - 4964, + 4984, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81184,19 +81410,19 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], "multi_kills_aggregate": [ - 4965, + 4985, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81206,11 +81432,11 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], @@ -81221,10 +81447,10 @@ export default { 3 ], "notifications": [ - 2409, + 2429, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -81234,19 +81460,19 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "notifications_aggregate": [ - 2410, + 2430, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -81256,19 +81482,19 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -81278,19 +81504,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -81300,19 +81526,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "owned_teams": [ - 3961, + 3981, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -81322,19 +81548,19 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "owned_teams_aggregate": [ - 3962, + 3982, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -81344,16 +81570,16 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "peak_elo": [ - 1332, + 1352, { "path": [ 78 @@ -81361,10 +81587,10 @@ export default { } ], "pending_match_imports": [ - 2462, + 2482, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81374,19 +81600,19 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "pending_match_imports_aggregate": [ - 2463, + 2483, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81396,19 +81622,19 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "player_lineup": [ - 1911, + 1931, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81418,19 +81644,19 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "player_lineup_aggregate": [ - 1912, + 1932, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81440,19 +81666,19 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "player_unused_utilities": [ - 3304, + 3324, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81462,19 +81688,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utilities_aggregate": [ - 3305, + 3325, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81484,11 +81710,11 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], @@ -81496,10 +81722,10 @@ export default { 38 ], "premier_rank_history": [ - 3076, + 3096, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81509,19 +81735,19 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "premier_rank_history_aggregate": [ - 3077, + 3097, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81531,16 +81757,16 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -81552,10 +81778,10 @@ export default { 78 ], "sanctions": [ - 3117, + 3137, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -81565,19 +81791,19 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "sanctions_aggregate": [ - 3118, + 3138, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -81587,19 +81813,19 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "season_stats": [ - 3158, + 3178, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -81609,19 +81835,19 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "season_stats_aggregate": [ - 3159, + 3179, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -81631,11 +81857,11 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], @@ -81643,19 +81869,19 @@ export default { 3 ], "stats": [ - 3217 + 3237 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "team_invites": [ - 3678, + 3698, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -81665,19 +81891,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_invites_aggregate": [ - 3679, + 3699, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -81687,19 +81913,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_members": [ - 3719, + 3739, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -81709,19 +81935,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_members_aggregate": [ - 3720, + 3740, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -81731,19 +81957,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "teams": [ - 3961, + 3981, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -81753,11 +81979,11 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], @@ -81765,10 +81991,10 @@ export default { 38 ], "tournament_organizers": [ - 4052, + 4072, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -81778,19 +82004,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_organizers_aggregate": [ - 4053, + 4073, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -81800,19 +82026,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_rosters": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -81822,19 +82048,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_rosters_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -81844,19 +82070,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_trophies": [ - 4309, + 4329, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -81866,19 +82092,19 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophies_aggregate": [ - 4310, + 4330, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -81888,19 +82114,19 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournaments": [ - 4396, + 4416, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -81910,19 +82136,19 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_aggregate": [ - 4397, + 4417, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -81932,19 +82158,19 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "utility_thrown": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -81954,19 +82180,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "utility_thrown_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -81976,11 +82202,11 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], @@ -81991,10 +82217,10 @@ export default { 3 ], "weapon_stats": [ - 3386, + 3406, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82004,19 +82230,19 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], "weapon_stats_aggregate": [ - 3387, + 3407, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82026,11 +82252,11 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], @@ -82052,10 +82278,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3421 + 3441 ], "nodes": [ - 3419 + 3439 ], "__typename": [ 78 @@ -82063,13 +82289,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3422 + 3442 ], "count": [ 38, { "columns": [ - 3434, + 3454, "[players_select_column!]" ], "distinct": [ @@ -82078,31 +82304,31 @@ export default { } ], "max": [ - 3427 + 3447 ], "min": [ - 3428 + 3448 ], "stddev": [ - 3436 + 3456 ], "stddev_pop": [ - 3437 + 3457 ], "stddev_samp": [ - 3438 + 3458 ], "sum": [ - 3441 + 3461 ], "var_pop": [ - 3444 + 3464 ], "var_samp": [ - 3445 + 3465 ], "variance": [ - 3446 + 3466 ], "__typename": [ 78 @@ -82163,13 +82389,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3423 + 3443 ], "_not": [ - 3423 + 3443 ], "_or": [ - 3423 + 3443 ], "abandoned_matches": [ 120 @@ -82178,64 +82404,64 @@ export default { 113 ], "aim_weapon_stats": [ - 2567 + 2587 ], "aim_weapon_stats_aggregate": [ - 2560 + 2580 ], "assists": [ - 2610 + 2630 ], "assists_aggregate": [ - 2601 + 2621 ], "assited_by_players": [ - 2610 + 2630 ], "assited_by_players_aggregate": [ - 2601 + 2621 ], "avatar_url": [ 80 ], "coach_lineups": [ - 1965 + 1985 ], "coach_lineups_aggregate": [ - 1958 + 1978 ], "country": [ 80 ], "created_at": [ - 4005 + 4025 ], "current_lobby_id": [ - 4444 + 4464 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2671 + 2691 ], "damage_dealt_aggregate": [ - 2664 + 2684 ], "damage_taken": [ - 2671 + 2691 ], "damage_taken_aggregate": [ - 2664 + 2684 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2827 + 2847 ], "deaths_aggregate": [ - 2818 + 2838 ], "discord_id": [ 80 @@ -82247,13 +82473,13 @@ export default { 311 ], "elo": [ - 1334 + 1354 ], "elo_history": [ - 4787 + 4807 ], "elo_history_aggregate": [ - 4770 + 4790 ], "faceit_elo": [ 39 @@ -82265,46 +82491,46 @@ export default { 80 ], "faceit_rank_history": [ - 2739 + 2759 ], "faceit_rank_history_aggregate": [ - 2732 + 2752 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4005 + 4025 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 2782 + 2802 ], "flashed_by_players_aggregate": [ - 2773 + 2793 ], "flashed_players": [ - 2782 + 2802 ], "flashed_players_aggregate": [ - 2773 + 2793 ], "friends": [ - 2348 + 2368 ], "friends_aggregate": [ - 2338 + 2358 ], "game_ban_count": [ 39 ], "invited_players": [ - 3687 + 3707 ], "invited_players_aggregate": [ - 3680 + 3700 ], "is_banned": [ 4 @@ -82325,31 +82551,31 @@ export default { 4 ], "kills": [ - 2827 + 2847 ], "kills_aggregate": [ - 2818 + 2838 ], "kills_by_weapons": [ - 2837 + 2857 ], "kills_by_weapons_aggregate": [ - 2830 + 2850 ], "language": [ 80 ], "last_read_news_at": [ - 4005 + 4025 ], "last_sign_in_at": [ - 4005 + 4025 ], "lobby_players": [ - 1741 + 1761 ], "lobby_players_aggregate": [ - 1732 + 1752 ], "losses": [ 39 @@ -82364,34 +82590,34 @@ export default { 39 ], "match_map_hltv": [ - 4882 + 4902 ], "match_map_hltv_aggregate": [ - 4875 + 4895 ], "match_map_stats": [ - 2934 + 2954 ], "match_map_stats_aggregate": [ - 2927 + 2947 ], "match_stats": [ - 2993 + 3013 ], "match_stats_aggregate": [ - 2986 + 3006 ], "matches": [ - 2285 + 2305 ], "matchmaking_cooldown": [ - 4005 + 4025 ], "multi_kills": [ - 4973 + 4993 ], "multi_kills_aggregate": [ - 4966 + 4986 ], "name": [ 80 @@ -82400,55 +82626,55 @@ export default { 4 ], "notifications": [ - 2421 + 2441 ], "notifications_aggregate": [ - 2411 + 2431 ], "objectives": [ - 3026 + 3046 ], "objectives_aggregate": [ - 3019 + 3039 ], "owned_teams": [ - 3970 + 3990 ], "owned_teams_aggregate": [ - 3963 + 3983 ], "peak_elo": [ - 1334 + 1354 ], "pending_match_imports": [ - 2471 + 2491 ], "pending_match_imports_aggregate": [ - 2464 + 2484 ], "player_lineup": [ - 1922 + 1942 ], "player_lineup_aggregate": [ - 1913 + 1933 ], "player_unused_utilities": [ - 3313 + 3333 ], "player_unused_utilities_aggregate": [ - 3306 + 3326 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3085 + 3105 ], "premier_rank_history_aggregate": [ - 3078 + 3098 ], "premier_rank_updated_at": [ - 4005 + 4025 ], "profile_url": [ 80 @@ -82460,76 +82686,76 @@ export default { 80 ], "sanctions": [ - 3126 + 3146 ], "sanctions_aggregate": [ - 3119 + 3139 ], "season_stats": [ - 3177 + 3197 ], "season_stats_aggregate": [ - 3160 + 3180 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3221 + 3241 ], "steam_bans_checked_at": [ - 4005 + 4025 ], "steam_id": [ 182 ], "team_invites": [ - 3687 + 3707 ], "team_invites_aggregate": [ - 3680 + 3700 ], "team_members": [ - 3730 + 3750 ], "team_members_aggregate": [ - 3721 + 3741 ], "teams": [ - 3970 + 3990 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4061 + 4081 ], "tournament_organizers_aggregate": [ - 4054 + 4074 ], "tournament_rosters": [ - 4235 + 4255 ], "tournament_rosters_aggregate": [ - 4228 + 4248 ], "tournament_trophies": [ - 4320 + 4340 ], "tournament_trophies_aggregate": [ - 4311 + 4331 ], "tournaments": [ - 4407 + 4427 ], "tournaments_aggregate": [ - 4398 + 4418 ], "utility_thrown": [ - 3354 + 3374 ], "utility_thrown_aggregate": [ - 3347 + 3367 ], "vac_ban_count": [ 39 @@ -82538,10 +82764,10 @@ export default { 4 ], "weapon_stats": [ - 3395 + 3415 ], "weapon_stats_aggregate": [ - 3388 + 3408 ], "wins": [ 39 @@ -82591,40 +82817,40 @@ export default { 117 ], "aim_weapon_stats": [ - 2564 + 2584 ], "assists": [ - 2607 + 2627 ], "assited_by_players": [ - 2607 + 2627 ], "avatar_url": [ 78 ], "coach_lineups": [ - 1962 + 1982 ], "country": [ 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2668 + 2688 ], "damage_taken": [ - 2668 + 2688 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2824 + 2844 ], "discord_id": [ 78 @@ -82633,7 +82859,7 @@ export default { 317 ], "elo_history": [ - 4784 + 4804 ], "faceit_elo": [ 38 @@ -82645,61 +82871,61 @@ export default { 78 ], "faceit_rank_history": [ - 2736 + 2756 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2779 + 2799 ], "flashed_players": [ - 2779 + 2799 ], "friends": [ - 2345 + 2365 ], "game_ban_count": [ 38 ], "invited_players": [ - 3684 + 3704 ], "kills": [ - 2824 + 2844 ], "kills_by_weapons": [ - 2834 + 2854 ], "language": [ 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "lobby_players": [ - 1738 + 1758 ], "match_map_hltv": [ - 4879 + 4899 ], "match_map_stats": [ - 2931 + 2951 ], "match_stats": [ - 2990 + 3010 ], "multi_kills": [ - 4970 + 4990 ], "name": [ 78 @@ -82708,31 +82934,31 @@ export default { 3 ], "notifications": [ - 2418 + 2438 ], "objectives": [ - 3023 + 3043 ], "owned_teams": [ - 3967 + 3987 ], "pending_match_imports": [ - 2468 + 2488 ], "player_lineup": [ - 1919 + 1939 ], "player_unused_utilities": [ - 3310 + 3330 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3082 + 3102 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -82744,43 +82970,43 @@ export default { 78 ], "sanctions": [ - 3123 + 3143 ], "season_stats": [ - 3174 + 3194 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3228 + 3248 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 ], "team_invites": [ - 3684 + 3704 ], "team_members": [ - 3727 + 3747 ], "tournament_organizers": [ - 4058 + 4078 ], "tournament_rosters": [ - 4232 + 4252 ], "tournament_trophies": [ - 4317 + 4337 ], "tournaments": [ - 4404 + 4424 ], "utility_thrown": [ - 3351 + 3371 ], "vac_ban_count": [ 38 @@ -82789,7 +83015,7 @@ export default { 3 ], "weapon_stats": [ - 3392 + 3412 ], "__typename": [ 78 @@ -82803,10 +83029,10 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_lobby_id": [ - 4442 + 4462 ], "custom_avatar_url": [ 78 @@ -82830,7 +83056,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -82842,10 +83068,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "losses": [ 38 @@ -82860,7 +83086,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4004 + 4024 ], "name": [ 78 @@ -82869,7 +83095,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -82878,7 +83104,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -82913,10 +83139,10 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "current_lobby_id": [ - 4442 + 4462 ], "custom_avatar_url": [ 78 @@ -82940,7 +83166,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -82952,10 +83178,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "losses": [ 38 @@ -82970,7 +83196,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4004 + 4024 ], "name": [ 78 @@ -82979,7 +83205,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -82988,7 +83214,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -83020,7 +83246,7 @@ export default { 38 ], "returning": [ - 3419 + 3439 ], "__typename": [ 78 @@ -83028,10 +83254,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3426 + 3446 ], "on_conflict": [ - 3431 + 3451 ], "__typename": [ 78 @@ -83039,13 +83265,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3424 + 3444 ], "update_columns": [ - 3442 + 3462 ], "where": [ - 3423 + 3443 ], "__typename": [ 78 @@ -83056,268 +83282,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2563 + 2583 ], "assists_aggregate": [ - 2606 + 2626 ], "assited_by_players_aggregate": [ - 2606 + 2626 ], "avatar_url": [ - 2461 + 2481 ], "coach_lineups_aggregate": [ - 1961 + 1981 ], "country": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "current_lobby_id": [ - 2461 + 2481 ], "custom_avatar_url": [ - 2461 + 2481 ], "damage_dealt_aggregate": [ - 2667 + 2687 ], "damage_taken_aggregate": [ - 2667 + 2687 ], "days_since_last_ban": [ - 2461 + 2481 ], "deaths_aggregate": [ - 2823 + 2843 ], "discord_id": [ - 2461 + 2481 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2461 + 2481 ], "elo_history_aggregate": [ - 4783 + 4803 ], "faceit_elo": [ - 2461 + 2481 ], "faceit_nickname": [ - 2461 + 2481 ], "faceit_player_id": [ - 2461 + 2481 ], "faceit_rank_history_aggregate": [ - 2735 + 2755 ], "faceit_skill_level": [ - 2461 + 2481 ], "faceit_updated_at": [ - 2461 + 2481 ], "faceit_url": [ - 2461 + 2481 ], "flashed_by_players_aggregate": [ - 2778 + 2798 ], "flashed_players_aggregate": [ - 2778 + 2798 ], "friends_aggregate": [ - 2343 + 2363 ], "game_ban_count": [ - 2461 + 2481 ], "invited_players_aggregate": [ - 3683 + 3703 ], "is_banned": [ - 2461 + 2481 ], "is_gagged": [ - 2461 + 2481 ], "is_in_another_match": [ - 2461 + 2481 ], "is_in_draft": [ - 2461 + 2481 ], "is_in_lobby": [ - 2461 + 2481 ], "is_muted": [ - 2461 + 2481 ], "kills_aggregate": [ - 2823 + 2843 ], "kills_by_weapons_aggregate": [ - 2833 + 2853 ], "language": [ - 2461 + 2481 ], "last_read_news_at": [ - 2461 + 2481 ], "last_sign_in_at": [ - 2461 + 2481 ], "lobby_players_aggregate": [ - 1737 + 1757 ], "losses": [ - 2461 + 2481 ], "losses_competitive": [ - 2461 + 2481 ], "losses_duel": [ - 2461 + 2481 ], "losses_wingman": [ - 2461 + 2481 ], "match_map_hltv_aggregate": [ - 4878 + 4898 ], "match_map_stats_aggregate": [ - 2930 + 2950 ], "match_stats_aggregate": [ - 2989 + 3009 ], "matches_aggregate": [ - 2281 + 2301 ], "matchmaking_cooldown": [ - 2461 + 2481 ], "multi_kills_aggregate": [ - 4969 + 4989 ], "name": [ - 2461 + 2481 ], "name_registered": [ - 2461 + 2481 ], "notifications_aggregate": [ - 2416 + 2436 ], "objectives_aggregate": [ - 3022 + 3042 ], "owned_teams_aggregate": [ - 3966 + 3986 ], "peak_elo": [ - 2461 + 2481 ], "pending_match_imports_aggregate": [ - 2467 + 2487 ], "player_lineup_aggregate": [ - 1918 + 1938 ], "player_unused_utilities_aggregate": [ - 3309 + 3329 ], "premier_rank": [ - 2461 + 2481 ], "premier_rank_history_aggregate": [ - 3081 + 3101 ], "premier_rank_updated_at": [ - 2461 + 2481 ], "profile_url": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "sanctions_aggregate": [ - 3122 + 3142 ], "season_stats_aggregate": [ - 3173 + 3193 ], "show_match_ready_modal": [ - 2461 + 2481 ], "stats": [ - 3230 + 3250 ], "steam_bans_checked_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_invites_aggregate": [ - 3683 + 3703 ], "team_members_aggregate": [ - 3726 + 3746 ], "teams_aggregate": [ - 3966 + 3986 ], "total_matches": [ - 2461 + 2481 ], "tournament_organizers_aggregate": [ - 4057 + 4077 ], "tournament_rosters_aggregate": [ - 4231 + 4251 ], "tournament_trophies_aggregate": [ - 4316 + 4336 ], "tournaments_aggregate": [ - 4403 + 4423 ], "utility_thrown_aggregate": [ - 3350 + 3370 ], "vac_ban_count": [ - 2461 + 2481 ], "vac_banned": [ - 2461 + 2481 ], "weapon_stats_aggregate": [ - 3391 + 3411 ], "wins": [ - 2461 + 2481 ], "wins_competitive": [ - 2461 + 2481 ], "wins_duel": [ - 2461 + 2481 ], "wins_wingman": [ - 2461 + 2481 ], "__typename": [ 78 @@ -83340,7 +83566,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -83364,7 +83590,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -83376,10 +83602,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -83391,7 +83617,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -83406,7 +83632,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -83582,7 +83808,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3440 + 3460 ], "ordering": [ 236 @@ -83599,7 +83825,7 @@ export default { 78 ], "created_at": [ - 4004 + 4024 ], "custom_avatar_url": [ 78 @@ -83623,7 +83849,7 @@ export default { 38 ], "faceit_updated_at": [ - 4004 + 4024 ], "faceit_url": [ 78 @@ -83635,10 +83861,10 @@ export default { 78 ], "last_read_news_at": [ - 4004 + 4024 ], "last_sign_in_at": [ - 4004 + 4024 ], "name": [ 78 @@ -83650,7 +83876,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4004 + 4024 ], "profile_url": [ 78 @@ -83665,7 +83891,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -83736,13 +83962,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3425 + 3445 ], "_set": [ - 3435 + 3455 ], "where": [ - 3423 + 3443 ], "__typename": [ 78 @@ -83912,7 +84138,10 @@ export default { 38 ], "published_at": [ - 4004 + 4024 + ], + "runtime": [ + 901 ], "version": [ 78 @@ -83923,10 +84152,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3449 + 3469 ], "nodes": [ - 3447 + 3467 ], "__typename": [ 78 @@ -83934,13 +84163,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3450 + 3470 ], "count": [ 38, { "columns": [ - 3461, + 3481, "[plugin_versions_select_column!]" ], "distinct": [ @@ -83949,31 +84178,31 @@ export default { } ], "max": [ - 3455 + 3475 ], "min": [ - 3456 + 3476 ], "stddev": [ - 3463 + 3483 ], "stddev_pop": [ - 3464 + 3484 ], "stddev_samp": [ - 3465 + 3485 ], "sum": [ - 3468 + 3488 ], "var_pop": [ - 3471 + 3491 ], "var_samp": [ - 3472 + 3492 ], "variance": [ - 3473 + 3493 ], "__typename": [ 78 @@ -83989,19 +84218,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3451 + 3471 ], "_not": [ - 3451 + 3471 ], "_or": [ - 3451 + 3471 ], "min_game_build_id": [ 39 ], "published_at": [ - 4005 + 4025 + ], + "runtime": [ + 902 ], "version": [ 80 @@ -84024,7 +84256,10 @@ export default { 38 ], "published_at": [ - 4004 + 4024 + ], + "runtime": [ + 901 ], "version": [ 78 @@ -84038,7 +84273,7 @@ export default { 38 ], "published_at": [ - 4004 + 4024 ], "version": [ 78 @@ -84052,7 +84287,7 @@ export default { 38 ], "published_at": [ - 4004 + 4024 ], "version": [ 78 @@ -84066,7 +84301,7 @@ export default { 38 ], "returning": [ - 3447 + 3467 ], "__typename": [ 78 @@ -84074,13 +84309,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3452 + 3472 ], "update_columns": [ - 3469 + 3489 ], "where": [ - 3451 + 3471 ], "__typename": [ 78 @@ -84088,19 +84323,25 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2461 + 2481 ], "published_at": [ - 2461 + 2481 + ], + "runtime": [ + 2481 ], "version": [ - 2461 + 2481 ], "__typename": [ 78 ] }, "plugin_versions_pk_columns_input": { + "runtime": [ + 901 + ], "version": [ 78 ], @@ -84114,7 +84355,10 @@ export default { 38 ], "published_at": [ - 4004 + 4024 + ], + "runtime": [ + 901 ], "version": [ 78 @@ -84149,7 +84393,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3467 + 3487 ], "ordering": [ 236 @@ -84163,7 +84407,10 @@ export default { 38 ], "published_at": [ - 4004 + 4024 + ], + "runtime": [ + 901 ], "version": [ 78 @@ -84183,13 +84430,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3453 + 3473 ], "_set": [ - 3462 + 3482 ], "where": [ - 3451 + 3471 ], "__typename": [ 78 @@ -84221,7 +84468,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -84229,7 +84476,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -84245,7 +84492,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -84253,16 +84500,16 @@ export default { }, "seasons": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "needs_rebuild": [ 3 @@ -84271,10 +84518,10 @@ export default { 38 ], "player_season_stats": [ - 3158, + 3178, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -84284,19 +84531,19 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "player_season_stats_aggregate": [ - 3159, + 3179, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -84306,16 +84553,16 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84323,10 +84570,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3480 + 3500 ], "nodes": [ - 3478 + 3498 ], "__typename": [ 78 @@ -84334,13 +84581,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3481 + 3501 ], "count": [ 38, { "columns": [ - 3493, + 3513, "[seasons_select_column!]" ], "distinct": [ @@ -84349,31 +84596,31 @@ export default { } ], "max": [ - 3486 + 3506 ], "min": [ - 3487 + 3507 ], "stddev": [ - 3495 + 3515 ], "stddev_pop": [ - 3496 + 3516 ], "stddev_samp": [ - 3497 + 3517 ], "sum": [ - 3500 + 3520 ], "var_pop": [ - 3503 + 3523 ], "var_samp": [ - 3504 + 3524 ], "variance": [ - 3505 + 3525 ], "__typename": [ 78 @@ -84389,25 +84636,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3482 + 3502 ], "_not": [ - 3482 + 3502 ], "_or": [ - 3482 + 3502 ], "created_at": [ - 4005 + 4025 ], "description": [ 80 ], "ends_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "needs_rebuild": [ 4 @@ -84416,13 +84663,13 @@ export default { 39 ], "player_season_stats": [ - 3177 + 3197 ], "player_season_stats_aggregate": [ - 3160 + 3180 ], "starts_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -84439,16 +84686,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "needs_rebuild": [ 3 @@ -84457,10 +84704,10 @@ export default { 38 ], "player_season_stats": [ - 3174 + 3194 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84468,22 +84715,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "number": [ 38 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84491,22 +84738,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "number": [ 38 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84517,7 +84764,7 @@ export default { 38 ], "returning": [ - 3478 + 3498 ], "__typename": [ 78 @@ -84525,10 +84772,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3485 + 3505 ], "on_conflict": [ - 3490 + 3510 ], "__typename": [ 78 @@ -84536,13 +84783,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3483 + 3503 ], "update_columns": [ - 3501 + 3521 ], "where": [ - 3482 + 3502 ], "__typename": [ 78 @@ -84550,28 +84797,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "ends_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "needs_rebuild": [ - 2461 + 2481 ], "number": [ - 2461 + 2481 ], "player_season_stats_aggregate": [ - 3173 + 3193 ], "starts_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -84579,7 +84826,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -84588,16 +84835,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "needs_rebuild": [ 3 @@ -84606,7 +84853,7 @@ export default { 38 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84638,7 +84885,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3499 + 3519 ], "ordering": [ 236 @@ -84649,16 +84896,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "description": [ 78 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "needs_rebuild": [ 3 @@ -84667,7 +84914,7 @@ export default { 38 ], "starts_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -84684,13 +84931,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3484 + 3504 ], "_set": [ - 3494 + 3514 ], "where": [ - 3482 + 3502 ], "__typename": [ 78 @@ -84728,10 +84975,10 @@ export default { 78 ], "game_server_nodes": [ - 1209, + 1229, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -84741,19 +84988,19 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], "game_server_nodes_aggregate": [ - 1210, + 1230, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -84763,11 +85010,11 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], @@ -84795,10 +85042,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3508 + 3528 ], "nodes": [ - 3506 + 3526 ], "__typename": [ 78 @@ -84806,13 +85053,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3509 + 3529 ], "count": [ 38, { "columns": [ - 3520, + 3540, "[server_regions_select_column!]" ], "distinct": [ @@ -84821,31 +85068,31 @@ export default { } ], "max": [ - 3513 + 3533 ], "min": [ - 3514 + 3534 ], "stddev": [ - 3522 + 3542 ], "stddev_pop": [ - 3523 + 3543 ], "stddev_samp": [ - 3524 + 3544 ], "sum": [ - 3527 + 3547 ], "var_pop": [ - 3530 + 3550 ], "var_samp": [ - 3531 + 3551 ], "variance": [ - 3532 + 3552 ], "__typename": [ 78 @@ -84864,13 +85111,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3510 + 3530 ], "_not": [ - 3510 + 3530 ], "_or": [ - 3510 + 3530 ], "available_server_count": [ 39 @@ -84879,10 +85126,10 @@ export default { 80 ], "game_server_nodes": [ - 1221 + 1241 ], "game_server_nodes_aggregate": [ - 1211 + 1231 ], "has_node": [ 4 @@ -84912,7 +85159,7 @@ export default { 78 ], "game_server_nodes": [ - 1218 + 1238 ], "is_lan": [ 3 @@ -84972,7 +85219,7 @@ export default { 38 ], "returning": [ - 3506 + 3526 ], "__typename": [ 78 @@ -84980,10 +85227,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3512 + 3532 ], "on_conflict": [ - 3517 + 3537 ], "__typename": [ 78 @@ -84991,13 +85238,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3511 + 3531 ], "update_columns": [ - 3528 + 3548 ], "where": [ - 3510 + 3530 ], "__typename": [ 78 @@ -85005,31 +85252,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "game_server_nodes_aggregate": [ - 1216 + 1236 ], "has_node": [ - 2461 + 2481 ], "is_lan": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "steam_relay": [ - 2461 + 2481 ], "total_server_count": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -85096,7 +85343,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3526 + 3546 ], "ordering": [ 236 @@ -85136,10 +85383,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3521 + 3541 ], "where": [ - 3510 + 3530 ], "__typename": [ 78 @@ -85180,7 +85427,7 @@ export default { }, "servers": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -85201,7 +85448,7 @@ export default { 78 ], "current_match": [ - 2276 + 2296 ], "enabled": [ 3 @@ -85210,7 +85457,7 @@ export default { 78 ], "game_server_node": [ - 1209 + 1229 ], "game_server_node_id": [ 78 @@ -85219,7 +85466,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_dedicated": [ 3 @@ -85228,10 +85475,10 @@ export default { 78 ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -85241,19 +85488,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_aggregate": [ - 2277, + 2297, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -85263,11 +85510,11 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], @@ -85275,7 +85522,10 @@ export default { 38 ], "offline_at": [ - 4004 + 4024 + ], + "plugin_runtime": [ + 901 ], "plugin_version": [ 78 @@ -85293,10 +85543,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "server_region": [ - 3506 + 3526 ], "steam_relay": [ 78 @@ -85305,10 +85555,10 @@ export default { 38 ], "type": [ - 962 + 982 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -85316,10 +85566,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3539 + 3559 ], "nodes": [ - 3533 + 3553 ], "__typename": [ 78 @@ -85327,13 +85577,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3536 + 3556 ], "bool_or": [ - 3537 + 3557 ], "count": [ - 3538 + 3558 ], "__typename": [ 78 @@ -85341,13 +85591,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3558 + 3578 ], "distinct": [ 3 ], "filter": [ - 3544 + 3564 ], "predicate": [ 4 @@ -85358,13 +85608,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3559 + 3579 ], "distinct": [ 3 ], "filter": [ - 3544 + 3564 ], "predicate": [ 4 @@ -85375,13 +85625,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3557 + 3577 ], "distinct": [ 3 ], "filter": [ - 3544 + 3564 ], "predicate": [ 39 @@ -85392,13 +85642,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3542 + 3562 ], "count": [ 38, { "columns": [ - 3557, + 3577, "[servers_select_column!]" ], "distinct": [ @@ -85407,31 +85657,31 @@ export default { } ], "max": [ - 3548 + 3568 ], "min": [ - 3550 + 3570 ], "stddev": [ - 3561 + 3581 ], "stddev_pop": [ - 3563 + 3583 ], "stddev_samp": [ - 3565 + 3585 ], "sum": [ - 3569 + 3589 ], "var_pop": [ - 3573 + 3593 ], "var_samp": [ - 3575 + 3595 ], "variance": [ - 3577 + 3597 ], "__typename": [ 78 @@ -85439,37 +85689,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3543 + 3563 ], "count": [ - 2461 + 2481 ], "max": [ - 3549 + 3569 ], "min": [ - 3551 + 3571 ], "stddev": [ - 3562 + 3582 ], "stddev_pop": [ - 3564 + 3584 ], "stddev_samp": [ - 3566 + 3586 ], "sum": [ - 3570 + 3590 ], "var_pop": [ - 3574 + 3594 ], "var_samp": [ - 3576 + 3596 ], "variance": [ - 3578 + 3598 ], "__typename": [ 78 @@ -85477,10 +85727,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3547 + 3567 ], "on_conflict": [ - 3554 + 3574 ], "__typename": [ 78 @@ -85502,13 +85752,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -85516,16 +85766,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3544 + 3564 ], "_not": [ - 3544 + 3564 ], "_or": [ - 3544 + 3564 ], "api_password": [ - 4444 + 4464 ], "boot_status": [ 80 @@ -85546,7 +85796,7 @@ export default { 80 ], "current_match": [ - 2285 + 2305 ], "enabled": [ 4 @@ -85555,7 +85805,7 @@ export default { 80 ], "game_server_node": [ - 1221 + 1241 ], "game_server_node_id": [ 80 @@ -85564,7 +85814,7 @@ export default { 80 ], "id": [ - 4444 + 4464 ], "is_dedicated": [ 4 @@ -85573,16 +85823,19 @@ export default { 80 ], "matches": [ - 2285 + 2305 ], "matches_aggregate": [ - 2278 + 2298 ], "max_players": [ 39 ], "offline_at": [ - 4005 + 4025 + ], + "plugin_runtime": [ + 902 ], "plugin_version": [ 80 @@ -85600,10 +85853,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4444 + 4464 ], "server_region": [ - 3510 + 3530 ], "steam_relay": [ 80 @@ -85612,10 +85865,10 @@ export default { 39 ], "type": [ - 963 + 983 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -85638,7 +85891,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -85653,7 +85906,7 @@ export default { 3 ], "current_match": [ - 2294 + 2314 ], "enabled": [ 3 @@ -85662,7 +85915,7 @@ export default { 78 ], "game_server_node": [ - 1233 + 1253 ], "game_server_node_id": [ 78 @@ -85671,7 +85924,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_dedicated": [ 3 @@ -85680,13 +85933,16 @@ export default { 78 ], "matches": [ - 2282 + 2302 ], "max_players": [ 38 ], "offline_at": [ - 4004 + 4024 + ], + "plugin_runtime": [ + 901 ], "plugin_version": [ 78 @@ -85704,10 +85960,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "server_region": [ - 3516 + 3536 ], "steam_relay": [ 78 @@ -85716,10 +85972,10 @@ export default { 38 ], "type": [ - 962 + 982 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -85727,7 +85983,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -85754,7 +86010,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "label": [ 78 @@ -85763,7 +86019,7 @@ export default { 38 ], "offline_at": [ - 4004 + 4024 ], "plugin_version": [ 78 @@ -85775,7 +86031,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "steam_relay": [ 78 @@ -85784,7 +86040,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -85792,58 +86048,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2461 + 2481 ], "boot_status": [ - 2461 + 2481 ], "boot_status_detail": [ - 2461 + 2481 ], "connect_password": [ - 2461 + 2481 ], "game": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "host": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "max_players": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 ], "plugin_version": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "reserved_by_match_id": [ - 2461 + 2481 ], "steam_relay": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -85851,7 +86107,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -85878,7 +86134,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "label": [ 78 @@ -85887,7 +86143,7 @@ export default { 38 ], "offline_at": [ - 4004 + 4024 ], "plugin_version": [ 78 @@ -85899,7 +86155,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "steam_relay": [ 78 @@ -85908,7 +86164,7 @@ export default { 38 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -85916,58 +86172,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2461 + 2481 ], "boot_status": [ - 2461 + 2481 ], "boot_status_detail": [ - 2461 + 2481 ], "connect_password": [ - 2461 + 2481 ], "game": [ - 2461 + 2481 ], "game_server_node_id": [ - 2461 + 2481 ], "host": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "max_players": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 ], "plugin_version": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "reserved_by_match_id": [ - 2461 + 2481 ], "steam_relay": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -85978,7 +86234,7 @@ export default { 38 ], "returning": [ - 3533 + 3553 ], "__typename": [ 78 @@ -85986,10 +86242,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3547 + 3567 ], "on_conflict": [ - 3554 + 3574 ], "__typename": [ 78 @@ -85997,13 +86253,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3545 + 3565 ], "update_columns": [ - 3571 + 3591 ], "where": [ - 3544 + 3564 ], "__typename": [ 78 @@ -86011,94 +86267,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2461 + 2481 ], "boot_status": [ - 2461 + 2481 ], "boot_status_detail": [ - 2461 + 2481 ], "connect_password": [ - 2461 + 2481 ], "connected": [ - 2461 + 2481 ], "connection_link": [ - 2461 + 2481 ], "connection_string": [ - 2461 + 2481 ], "current_match": [ - 2296 + 2316 ], "enabled": [ - 2461 + 2481 ], "game": [ - 2461 + 2481 ], "game_server_node": [ - 1235 + 1255 ], "game_server_node_id": [ - 2461 + 2481 ], "host": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_dedicated": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "matches_aggregate": [ - 2281 + 2301 ], "max_players": [ - 2461 + 2481 ], "offline_at": [ - 2461 + 2481 + ], + "plugin_runtime": [ + 2481 ], "plugin_version": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "rcon_password": [ - 2461 + 2481 ], "rcon_status": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "reserved_by_match_id": [ - 2461 + 2481 ], "server_region": [ - 3518 + 3538 ], "steam_relay": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86106,7 +86365,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -86117,7 +86376,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -86144,7 +86403,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_dedicated": [ 3 @@ -86156,7 +86415,10 @@ export default { 38 ], "offline_at": [ - 4004 + 4024 + ], + "plugin_runtime": [ + 901 ], "plugin_version": [ 78 @@ -86174,7 +86436,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "steam_relay": [ 78 @@ -86183,10 +86445,10 @@ export default { 38 ], "type": [ - 962 + 982 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -86208,13 +86470,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86236,13 +86498,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86264,13 +86526,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86278,7 +86540,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3568 + 3588 ], "ordering": [ 236 @@ -86289,7 +86551,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4442 + 4462 ], "boot_status": [ 78 @@ -86316,7 +86578,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_dedicated": [ 3 @@ -86328,7 +86590,10 @@ export default { 38 ], "offline_at": [ - 4004 + 4024 + ], + "plugin_runtime": [ + 901 ], "plugin_version": [ 78 @@ -86346,7 +86611,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4442 + 4462 ], "steam_relay": [ 78 @@ -86355,10 +86620,10 @@ export default { 38 ], "type": [ - 962 + 982 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -86380,13 +86645,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86395,13 +86660,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3546 + 3566 ], "_set": [ - 3560 + 3580 ], "where": [ - 3544 + 3564 ], "__typename": [ 78 @@ -86423,13 +86688,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86451,13 +86716,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86479,13 +86744,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2461 + 2481 ], "port": [ - 2461 + 2481 ], "tv_port": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86504,10 +86769,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3581 + 3601 ], "nodes": [ - 3579 + 3599 ], "__typename": [ 78 @@ -86518,7 +86783,7 @@ export default { 38, { "columns": [ - 3591, + 3611, "[settings_select_column!]" ], "distinct": [ @@ -86527,10 +86792,10 @@ export default { } ], "max": [ - 3585 + 3605 ], "min": [ - 3586 + 3606 ], "__typename": [ 78 @@ -86538,13 +86803,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3582 + 3602 ], "_not": [ - 3582 + 3602 ], "_or": [ - 3582 + 3602 ], "name": [ 80 @@ -86595,7 +86860,7 @@ export default { 38 ], "returning": [ - 3579 + 3599 ], "__typename": [ 78 @@ -86603,13 +86868,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3583 + 3603 ], "update_columns": [ - 3595 + 3615 ], "where": [ - 3582 + 3602 ], "__typename": [ 78 @@ -86617,10 +86882,10 @@ export default { }, "settings_order_by": { "name": [ - 2461 + 2481 ], "value": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86648,7 +86913,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3594 + 3614 ], "ordering": [ 236 @@ -86671,10 +86936,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3592 + 3612 ], "where": [ - 3582 + 3602 ], "__typename": [ 78 @@ -86683,31 +86948,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3597 + 3617 ], "_gt": [ - 3597 + 3617 ], "_gte": [ - 3597 + 3617 ], "_in": [ - 3597 + 3617 ], "_is_null": [ 3 ], "_lt": [ - 3597 + 3617 ], "_lte": [ - 3597 + 3617 ], "_neq": [ - 3597 + 3617 ], "_nin": [ - 3597 + 3617 ], "__typename": [ 78 @@ -86715,16 +86980,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "node": [ - 1209 + 1229 ], "node_id": [ 78 @@ -86733,10 +86998,10 @@ export default { 78 ], "steam_account": [ - 3623 + 3643 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -86744,10 +87009,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3603 + 3623 ], "nodes": [ - 3599 + 3619 ], "__typename": [ 78 @@ -86755,7 +87020,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3602 + 3622 ], "__typename": [ 78 @@ -86763,13 +87028,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3617 + 3637 ], "distinct": [ 3 ], "filter": [ - 3606 + 3626 ], "predicate": [ 39 @@ -86783,7 +87048,7 @@ export default { 38, { "columns": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -86792,10 +87057,10 @@ export default { } ], "max": [ - 3609 + 3629 ], "min": [ - 3611 + 3631 ], "__typename": [ 78 @@ -86803,13 +87068,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 3610 + 3630 ], "min": [ - 3612 + 3632 ], "__typename": [ 78 @@ -86817,10 +87082,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3608 + 3628 ], "on_conflict": [ - 3614 + 3634 ], "__typename": [ 78 @@ -86828,25 +87093,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3606 + 3626 ], "_not": [ - 3606 + 3626 ], "_or": [ - 3606 + 3626 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "k8s_job_name": [ 80 ], "node": [ - 1221 + 1241 ], "node_id": [ 80 @@ -86855,10 +87120,10 @@ export default { 80 ], "steam_account": [ - 3627 + 3647 ], "steam_account_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -86867,16 +87132,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 ], "node": [ - 1233 + 1253 ], "node_id": [ 78 @@ -86885,10 +87150,10 @@ export default { 78 ], "steam_account": [ - 3634 + 3654 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -86896,10 +87161,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 @@ -86911,7 +87176,7 @@ export default { 78 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -86919,22 +87184,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "node_id": [ - 2461 + 2481 ], "purpose": [ - 2461 + 2481 ], "steam_account_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86942,10 +87207,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 @@ -86957,7 +87222,7 @@ export default { 78 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -86965,22 +87230,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "node_id": [ - 2461 + 2481 ], "purpose": [ - 2461 + 2481 ], "steam_account_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -86991,7 +87256,7 @@ export default { 38 ], "returning": [ - 3599 + 3619 ], "__typename": [ 78 @@ -86999,13 +87264,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3607 + 3627 ], "update_columns": [ - 3621 + 3641 ], "where": [ - 3606 + 3626 ], "__typename": [ 78 @@ -87013,28 +87278,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "k8s_job_name": [ - 2461 + 2481 ], "node": [ - 1235 + 1255 ], "node_id": [ - 2461 + 2481 ], "purpose": [ - 2461 + 2481 ], "steam_account": [ - 3636 + 3656 ], "steam_account_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -87042,7 +87307,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -87051,10 +87316,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 @@ -87066,7 +87331,7 @@ export default { 78 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -87074,7 +87339,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3620 + 3640 ], "ordering": [ 236 @@ -87085,10 +87350,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "k8s_job_name": [ 78 @@ -87100,7 +87365,7 @@ export default { 78 ], "steam_account_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -87109,10 +87374,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3618 + 3638 ], "where": [ - 3606 + 3626 ], "__typename": [ 78 @@ -87120,10 +87385,10 @@ export default { }, "steam_accounts": { "claims": [ - 3599, + 3619, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87133,19 +87398,19 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "claims_aggregate": [ - 3600, + 3620, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87155,25 +87420,25 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node": [ - 1209 + 1229 ], "last_node_id": [ 78 @@ -87191,7 +87456,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87202,10 +87467,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3625 + 3645 ], "nodes": [ - 3623 + 3643 ], "__typename": [ 78 @@ -87213,13 +87478,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3626 + 3646 ], "count": [ 38, { "columns": [ - 3638, + 3658, "[steam_accounts_select_column!]" ], "distinct": [ @@ -87228,31 +87493,31 @@ export default { } ], "max": [ - 3631 + 3651 ], "min": [ - 3632 + 3652 ], "stddev": [ - 3640 + 3660 ], "stddev_pop": [ - 3641 + 3661 ], "stddev_samp": [ - 3642 + 3662 ], "sum": [ - 3645 + 3665 ], "var_pop": [ - 3648 + 3668 ], "var_samp": [ - 3649 + 3669 ], "variance": [ - 3650 + 3670 ], "__typename": [ 78 @@ -87274,31 +87539,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3627 + 3647 ], "_not": [ - 3627 + 3647 ], "_or": [ - 3627 + 3647 ], "claims": [ - 3606 + 3626 ], "claims_aggregate": [ - 3601 + 3621 ], "created_at": [ - 4005 + 4025 ], "friend_capacity": [ 39 ], "id": [ - 4444 + 4464 ], "last_node": [ - 1221 + 1241 ], "last_node_id": [ 80 @@ -87316,7 +87581,7 @@ export default { 182 ], "updated_at": [ - 4005 + 4025 ], "username": [ 80 @@ -87342,19 +87607,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3605 + 3625 ], "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node": [ - 1233 + 1253 ], "last_node_id": [ 78 @@ -87372,7 +87637,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87383,13 +87648,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node_id": [ 78 @@ -87407,7 +87672,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87418,13 +87683,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node_id": [ 78 @@ -87442,7 +87707,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87456,7 +87721,7 @@ export default { 38 ], "returning": [ - 3623 + 3643 ], "__typename": [ 78 @@ -87464,10 +87729,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3630 + 3650 ], "on_conflict": [ - 3635 + 3655 ], "__typename": [ 78 @@ -87475,13 +87740,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3628 + 3648 ], "update_columns": [ - 3646 + 3666 ], "where": [ - 3627 + 3647 ], "__typename": [ 78 @@ -87489,40 +87754,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3604 + 3624 ], "created_at": [ - 2461 + 2481 ], "friend_capacity": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "last_node": [ - 1235 + 1255 ], "last_node_id": [ - 2461 + 2481 ], "password": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "steam_level": [ - 2461 + 2481 ], "steamid64": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "username": [ - 2461 + 2481 ], "__typename": [ 78 @@ -87530,7 +87795,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -87539,13 +87804,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node_id": [ 78 @@ -87563,7 +87828,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87616,7 +87881,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3644 + 3664 ], "ordering": [ 236 @@ -87627,13 +87892,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "friend_capacity": [ 38 ], "id": [ - 4442 + 4462 ], "last_node_id": [ 78 @@ -87651,7 +87916,7 @@ export default { 180 ], "updated_at": [ - 4004 + 4024 ], "username": [ 78 @@ -87677,13 +87942,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3629 + 3649 ], "_set": [ - 3639 + 3659 ], "where": [ - 3627 + 3647 ], "__typename": [ 78 @@ -87733,7 +87998,7 @@ export default { }, "system_alerts": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 @@ -87742,10 +88007,10 @@ export default { 3 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "is_active": [ 3 @@ -87757,10 +88022,10 @@ export default { 78 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -87768,10 +88033,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3653 + 3673 ], "nodes": [ - 3651 + 3671 ], "__typename": [ 78 @@ -87779,13 +88044,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3654 + 3674 ], "count": [ 38, { "columns": [ - 3665, + 3685, "[system_alerts_select_column!]" ], "distinct": [ @@ -87794,31 +88059,31 @@ export default { } ], "max": [ - 3659 + 3679 ], "min": [ - 3660 + 3680 ], "stddev": [ - 3667 + 3687 ], "stddev_pop": [ - 3668 + 3688 ], "stddev_samp": [ - 3669 + 3689 ], "sum": [ - 3672 + 3692 ], "var_pop": [ - 3675 + 3695 ], "var_samp": [ - 3676 + 3696 ], "variance": [ - 3677 + 3697 ], "__typename": [ 78 @@ -87834,16 +88099,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3655 + 3675 ], "_not": [ - 3655 + 3675 ], "_or": [ - 3655 + 3675 ], "created_at": [ - 4005 + 4025 ], "created_by": [ 182 @@ -87852,10 +88117,10 @@ export default { 4 ], "expires_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "is_active": [ 4 @@ -87867,10 +88132,10 @@ export default { 80 ], "type": [ - 1003 + 1023 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -87887,7 +88152,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 @@ -87896,10 +88161,10 @@ export default { 3 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "is_active": [ 3 @@ -87911,10 +88176,10 @@ export default { 78 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -87922,16 +88187,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 @@ -87940,7 +88205,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -87948,16 +88213,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "message": [ 78 @@ -87966,7 +88231,7 @@ export default { 78 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -87977,7 +88242,7 @@ export default { 38 ], "returning": [ - 3651 + 3671 ], "__typename": [ 78 @@ -87985,13 +88250,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3656 + 3676 ], "update_columns": [ - 3673 + 3693 ], "where": [ - 3655 + 3675 ], "__typename": [ 78 @@ -87999,34 +88264,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2461 + 2481 ], "created_by": [ - 2461 + 2481 ], "dismissible": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_active": [ - 2461 + 2481 ], "message": [ - 2461 + 2481 ], "title": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88034,7 +88299,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88043,7 +88308,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 @@ -88052,10 +88317,10 @@ export default { 3 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "is_active": [ 3 @@ -88067,10 +88332,10 @@ export default { 78 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -88102,7 +88367,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3671 + 3691 ], "ordering": [ 236 @@ -88113,7 +88378,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "created_by": [ 180 @@ -88122,10 +88387,10 @@ export default { 3 ], "expires_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "is_active": [ 3 @@ -88137,10 +88402,10 @@ export default { 78 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -88157,13 +88422,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3657 + 3677 ], "_set": [ - 3666 + 3686 ], "where": [ - 3655 + 3675 ], "__typename": [ 78 @@ -88195,28 +88460,28 @@ export default { }, "team_invites": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by": [ - 3419 + 3439 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88224,10 +88489,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3682 + 3702 ], "nodes": [ - 3678 + 3698 ], "__typename": [ 78 @@ -88235,7 +88500,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3681 + 3701 ], "__typename": [ 78 @@ -88243,13 +88508,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3699 + 3719 ], "distinct": [ 3 ], "filter": [ - 3687 + 3707 ], "predicate": [ 39 @@ -88260,13 +88525,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3685 + 3705 ], "count": [ 38, { "columns": [ - 3699, + 3719, "[team_invites_select_column!]" ], "distinct": [ @@ -88275,31 +88540,31 @@ export default { } ], "max": [ - 3691 + 3711 ], "min": [ - 3693 + 3713 ], "stddev": [ - 3701 + 3721 ], "stddev_pop": [ - 3703 + 3723 ], "stddev_samp": [ - 3705 + 3725 ], "sum": [ - 3709 + 3729 ], "var_pop": [ - 3713 + 3733 ], "var_samp": [ - 3715 + 3735 ], "variance": [ - 3717 + 3737 ], "__typename": [ 78 @@ -88307,37 +88572,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3686 + 3706 ], "count": [ - 2461 + 2481 ], "max": [ - 3692 + 3712 ], "min": [ - 3694 + 3714 ], "stddev": [ - 3702 + 3722 ], "stddev_pop": [ - 3704 + 3724 ], "stddev_samp": [ - 3706 + 3726 ], "sum": [ - 3710 + 3730 ], "var_pop": [ - 3714 + 3734 ], "var_samp": [ - 3716 + 3736 ], "variance": [ - 3718 + 3738 ], "__typename": [ 78 @@ -88345,10 +88610,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3690 + 3710 ], "on_conflict": [ - 3696 + 3716 ], "__typename": [ 78 @@ -88367,10 +88632,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88378,37 +88643,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3687 + 3707 ], "_not": [ - 3687 + 3707 ], "_or": [ - 3687 + 3707 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "invited_by": [ - 3423 + 3443 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -88428,28 +88693,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by": [ - 3430 + 3450 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88457,10 +88722,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -88469,7 +88734,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88477,19 +88742,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88497,10 +88762,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -88509,7 +88774,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88517,19 +88782,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88540,7 +88805,7 @@ export default { 38 ], "returning": [ - 3678 + 3698 ], "__typename": [ 78 @@ -88548,13 +88813,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3688 + 3708 ], "update_columns": [ - 3711 + 3731 ], "where": [ - 3687 + 3707 ], "__typename": [ 78 @@ -88562,28 +88827,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by": [ - 3432 + 3452 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88591,7 +88856,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88600,10 +88865,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -88612,7 +88877,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88631,10 +88896,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88653,10 +88918,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88675,10 +88940,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88686,7 +88951,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 3708 + 3728 ], "ordering": [ 236 @@ -88697,10 +88962,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -88709,7 +88974,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88728,10 +88993,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88740,13 +89005,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3689 + 3709 ], "_set": [ - 3700 + 3720 ], "where": [ - 3687 + 3707 ], "__typename": [ 78 @@ -88765,10 +89030,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88787,10 +89052,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88809,10 +89074,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -88823,25 +89088,25 @@ export default { 3 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "role": [ - 1022 + 1042 ], "roster_image_url": [ 78 ], "status": [ - 1043 + 1063 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -88849,10 +89114,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 3725 + 3745 ], "nodes": [ - 3719 + 3739 ], "__typename": [ 78 @@ -88860,13 +89125,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3722 + 3742 ], "bool_or": [ - 3723 + 3743 ], "count": [ - 3724 + 3744 ], "__typename": [ 78 @@ -88874,13 +89139,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3743 + 3763 ], "distinct": [ 3 ], "filter": [ - 3730 + 3750 ], "predicate": [ 4 @@ -88891,13 +89156,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3744 + 3764 ], "distinct": [ 3 ], "filter": [ - 3730 + 3750 ], "predicate": [ 4 @@ -88908,13 +89173,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3742 + 3762 ], "distinct": [ 3 ], "filter": [ - 3730 + 3750 ], "predicate": [ 39 @@ -88925,13 +89190,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 3728 + 3748 ], "count": [ 38, { "columns": [ - 3742, + 3762, "[team_roster_select_column!]" ], "distinct": [ @@ -88940,31 +89205,31 @@ export default { } ], "max": [ - 3734 + 3754 ], "min": [ - 3736 + 3756 ], "stddev": [ - 3746 + 3766 ], "stddev_pop": [ - 3748 + 3768 ], "stddev_samp": [ - 3750 + 3770 ], "sum": [ - 3754 + 3774 ], "var_pop": [ - 3758 + 3778 ], "var_samp": [ - 3760 + 3780 ], "variance": [ - 3762 + 3782 ], "__typename": [ 78 @@ -88972,37 +89237,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 3729 + 3749 ], "count": [ - 2461 + 2481 ], "max": [ - 3735 + 3755 ], "min": [ - 3737 + 3757 ], "stddev": [ - 3747 + 3767 ], "stddev_pop": [ - 3749 + 3769 ], "stddev_samp": [ - 3751 + 3771 ], "sum": [ - 3755 + 3775 ], "var_pop": [ - 3759 + 3779 ], "var_samp": [ - 3761 + 3781 ], "variance": [ - 3763 + 3783 ], "__typename": [ 78 @@ -89010,10 +89275,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 3733 + 3753 ], "on_conflict": [ - 3739 + 3759 ], "__typename": [ 78 @@ -89029,7 +89294,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89037,37 +89302,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 3730 + 3750 ], "_not": [ - 3730 + 3750 ], "_or": [ - 3730 + 3750 ], "coach": [ 4 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "role": [ - 1023 + 1043 ], "roster_image_url": [ 80 ], "status": [ - 1044 + 1064 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -89087,25 +89352,25 @@ export default { 3 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "role": [ - 1022 + 1042 ], "roster_image_url": [ 78 ], "status": [ - 1043 + 1063 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89119,7 +89384,7 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89127,13 +89392,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89147,7 +89412,7 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89155,13 +89420,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89172,7 +89437,7 @@ export default { 38 ], "returning": [ - 3719 + 3739 ], "__typename": [ 78 @@ -89180,13 +89445,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 3731 + 3751 ], "update_columns": [ - 3756 + 3776 ], "where": [ - 3730 + 3750 ], "__typename": [ 78 @@ -89194,28 +89459,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "roster_image_url": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89226,7 +89491,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89243,16 +89508,16 @@ export default { 180 ], "role": [ - 1022 + 1042 ], "roster_image_url": [ 78 ], "status": [ - 1043 + 1063 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89268,7 +89533,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89284,7 +89549,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89300,7 +89565,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89308,7 +89573,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 3753 + 3773 ], "ordering": [ 236 @@ -89325,16 +89590,16 @@ export default { 180 ], "role": [ - 1022 + 1042 ], "roster_image_url": [ 78 ], "status": [ - 1043 + 1063 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89350,7 +89615,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89359,13 +89624,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3732 + 3752 ], "_set": [ - 3745 + 3765 ], "where": [ - 3730 + 3750 ], "__typename": [ 78 @@ -89381,7 +89646,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89397,7 +89662,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89413,7 +89678,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89421,7 +89686,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89433,19 +89698,19 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89453,10 +89718,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3766 + 3786 ], "nodes": [ - 3764 + 3784 ], "__typename": [ 78 @@ -89464,13 +89729,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3767 + 3787 ], "count": [ 38, { "columns": [ - 3778, + 3798, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -89479,31 +89744,31 @@ export default { } ], "max": [ - 3772 + 3792 ], "min": [ - 3773 + 3793 ], "stddev": [ - 3780 + 3800 ], "stddev_pop": [ - 3781 + 3801 ], "stddev_samp": [ - 3782 + 3802 ], "sum": [ - 3785 + 3805 ], "var_pop": [ - 3788 + 3808 ], "var_samp": [ - 3789 + 3809 ], "variance": [ - 3790 + 3810 ], "__typename": [ 78 @@ -89522,16 +89787,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 3768 + 3788 ], "_not": [ - 3768 + 3788 ], "_or": [ - 3768 + 3788 ], "created_at": [ - 4005 + 4025 ], "elo_max": [ 39 @@ -89543,19 +89808,19 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "last_notified_at": [ - 4005 + 4025 ], "regions": [ 79 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -89575,7 +89840,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89587,19 +89852,19 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89607,7 +89872,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89616,16 +89881,16 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89633,7 +89898,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89642,16 +89907,16 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89662,7 +89927,7 @@ export default { 38 ], "returning": [ - 3764 + 3784 ], "__typename": [ 78 @@ -89670,13 +89935,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3769 + 3789 ], "update_columns": [ - 3786 + 3806 ], "where": [ - 3768 + 3788 ], "__typename": [ 78 @@ -89684,31 +89949,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2461 + 2481 ], "elo_max": [ - 2461 + 2481 ], "elo_min": [ - 2461 + 2481 ], "enabled": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "last_notified_at": [ - 2461 + 2481 ], "regions": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -89716,7 +89981,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89725,7 +89990,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89737,16 +90002,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89787,7 +90052,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3784 + 3804 ], "ordering": [ 236 @@ -89798,7 +90063,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -89810,16 +90075,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "regions": [ 78 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89839,13 +90104,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3770 + 3790 ], "_set": [ - 3779 + 3799 ], "where": [ - 3768 + 3788 ], "__typename": [ 78 @@ -89886,25 +90151,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4004 + 4024 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -89912,10 +90177,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 3797 + 3817 ], "nodes": [ - 3791 + 3811 ], "__typename": [ 78 @@ -89923,13 +90188,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3794 + 3814 ], "bool_or": [ - 3795 + 3815 ], "count": [ - 3796 + 3816 ], "__typename": [ 78 @@ -89937,13 +90202,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3812 + 3832 ], "distinct": [ 3 ], "filter": [ - 3800 + 3820 ], "predicate": [ 4 @@ -89954,13 +90219,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3813 + 3833 ], "distinct": [ 3 ], "filter": [ - 3800 + 3820 ], "predicate": [ 4 @@ -89971,13 +90236,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3811 + 3831 ], "distinct": [ 3 ], "filter": [ - 3800 + 3820 ], "predicate": [ 39 @@ -89991,7 +90256,7 @@ export default { 38, { "columns": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -90000,10 +90265,10 @@ export default { } ], "max": [ - 3803 + 3823 ], "min": [ - 3805 + 3825 ], "__typename": [ 78 @@ -90011,13 +90276,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 3804 + 3824 ], "min": [ - 3806 + 3826 ], "__typename": [ 78 @@ -90025,10 +90290,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3802 + 3822 ], "on_conflict": [ - 3808 + 3828 ], "__typename": [ 78 @@ -90036,34 +90301,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 3800 + 3820 ], "_not": [ - 3800 + 3820 ], "_or": [ - 3800 + 3820 ], "created_at": [ - 4005 + 4025 ], "ends_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4005 + 4025 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -90072,25 +90337,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4004 + 4024 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90098,19 +90363,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "starts_at": [ - 4004 + 4024 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90118,19 +90383,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2461 + 2481 ], "ends_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "starts_at": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90138,19 +90403,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "starts_at": [ - 4004 + 4024 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90158,19 +90423,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2461 + 2481 ], "ends_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "starts_at": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90181,7 +90446,7 @@ export default { 38 ], "returning": [ - 3791 + 3811 ], "__typename": [ 78 @@ -90189,13 +90454,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 3801 + 3821 ], "update_columns": [ - 3817 + 3837 ], "where": [ - 3800 + 3820 ], "__typename": [ 78 @@ -90203,25 +90468,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2461 + 2481 ], "ends_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "recurring_weekly": [ - 2461 + 2481 ], "starts_at": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90229,7 +90494,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90240,22 +90505,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4004 + 4024 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90263,7 +90528,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3816 + 3836 ], "ordering": [ 236 @@ -90274,22 +90539,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "ends_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4004 + 4024 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90298,10 +90563,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3814 + 3834 ], "where": [ - 3800 + 3820 ], "__typename": [ 78 @@ -90309,31 +90574,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by": [ - 3419 + 3439 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3961 + 3981 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request": [ - 3860 + 3880 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90341,10 +90606,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3823 + 3843 ], "nodes": [ - 3819 + 3839 ], "__typename": [ 78 @@ -90352,7 +90617,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3822 + 3842 ], "__typename": [ 78 @@ -90360,13 +90625,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3840 + 3860 ], "distinct": [ 3 ], "filter": [ - 3828 + 3848 ], "predicate": [ 39 @@ -90377,13 +90642,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3826 + 3846 ], "count": [ 38, { "columns": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -90392,31 +90657,31 @@ export default { } ], "max": [ - 3832 + 3852 ], "min": [ - 3834 + 3854 ], "stddev": [ - 3842 + 3862 ], "stddev_pop": [ - 3844 + 3864 ], "stddev_samp": [ - 3846 + 3866 ], "sum": [ - 3850 + 3870 ], "var_pop": [ - 3854 + 3874 ], "var_samp": [ - 3856 + 3876 ], "variance": [ - 3858 + 3878 ], "__typename": [ 78 @@ -90424,37 +90689,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3827 + 3847 ], "count": [ - 2461 + 2481 ], "max": [ - 3833 + 3853 ], "min": [ - 3835 + 3855 ], "stddev": [ - 3843 + 3863 ], "stddev_pop": [ - 3845 + 3865 ], "stddev_samp": [ - 3847 + 3867 ], "sum": [ - 3851 + 3871 ], "var_pop": [ - 3855 + 3875 ], "var_samp": [ - 3857 + 3877 ], "variance": [ - 3859 + 3879 ], "__typename": [ 78 @@ -90462,10 +90727,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3831 + 3851 ], "on_conflict": [ - 3837 + 3857 ], "__typename": [ 78 @@ -90481,7 +90746,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90489,40 +90754,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3828 + 3848 ], "_not": [ - 3828 + 3848 ], "_or": [ - 3828 + 3848 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "proposed_by": [ - 3423 + 3443 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 3970 + 3990 ], "proposed_by_team_id": [ - 4444 + 4464 ], "proposed_scheduled_at": [ - 4005 + 4025 ], "request": [ - 3871 + 3891 ], "request_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -90539,31 +90804,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by": [ - 3430 + 3450 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3979 + 3999 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request": [ - 3880 + 3900 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90571,22 +90836,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90594,22 +90859,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_by_team_id": [ - 2461 + 2481 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "request_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90617,22 +90882,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90640,22 +90905,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_by_team_id": [ - 2461 + 2481 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "request_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90666,7 +90931,7 @@ export default { 38 ], "returning": [ - 3819 + 3839 ], "__typename": [ 78 @@ -90674,13 +90939,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3829 + 3849 ], "update_columns": [ - 3852 + 3872 ], "where": [ - 3828 + 3848 ], "__typename": [ 78 @@ -90688,31 +90953,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "proposed_by": [ - 3432 + 3452 ], "proposed_by_steam_id": [ - 2461 + 2481 ], "proposed_by_team": [ - 3981 + 4001 ], "proposed_by_team_id": [ - 2461 + 2481 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "request": [ - 3882 + 3902 ], "request_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90720,7 +90985,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90729,22 +90994,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90760,7 +91025,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90776,7 +91041,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90792,7 +91057,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90800,7 +91065,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3849 + 3869 ], "ordering": [ 236 @@ -90811,22 +91076,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4442 + 4462 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "request_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -90842,7 +91107,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90851,13 +91116,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3830 + 3850 ], "_set": [ - 3841 + 3861 ], "where": [ - 3828 + 3848 ], "__typename": [ 78 @@ -90873,7 +91138,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90889,7 +91154,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90905,7 +91170,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -90916,55 +91181,55 @@ export default { 3 ], "awaiting_team": [ - 3961 + 3981 ], "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "canceled_late": [ 3 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team": [ - 3961 + 3981 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_options": [ - 2156 + 2176 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposals": [ - 3819, + 3839, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -90974,19 +91239,19 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "proposals_aggregate": [ - 3820, + 3840, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -90996,40 +91261,40 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 ], "requested_by": [ - 3419 + 3439 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4004 + 4024 ], "status": [ - 942 + 962 ], "to_team": [ - 3961 + 3981 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91037,10 +91302,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 3866 + 3886 ], "nodes": [ - 3860 + 3880 ], "__typename": [ 78 @@ -91048,13 +91313,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3863 + 3883 ], "bool_or": [ - 3864 + 3884 ], "count": [ - 3865 + 3885 ], "__typename": [ 78 @@ -91062,13 +91327,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3885 + 3905 ], "distinct": [ 3 ], "filter": [ - 3871 + 3891 ], "predicate": [ 4 @@ -91079,13 +91344,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3886 + 3906 ], "distinct": [ 3 ], "filter": [ - 3871 + 3891 ], "predicate": [ 4 @@ -91096,13 +91361,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3884 + 3904 ], "distinct": [ 3 ], "filter": [ - 3871 + 3891 ], "predicate": [ 39 @@ -91113,13 +91378,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3869 + 3889 ], "count": [ 38, { "columns": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -91128,31 +91393,31 @@ export default { } ], "max": [ - 3875 + 3895 ], "min": [ - 3877 + 3897 ], "stddev": [ - 3888 + 3908 ], "stddev_pop": [ - 3890 + 3910 ], "stddev_samp": [ - 3892 + 3912 ], "sum": [ - 3896 + 3916 ], "var_pop": [ - 3900 + 3920 ], "var_samp": [ - 3902 + 3922 ], "variance": [ - 3904 + 3924 ], "__typename": [ 78 @@ -91160,37 +91425,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3870 + 3890 ], "count": [ - 2461 + 2481 ], "max": [ - 3876 + 3896 ], "min": [ - 3878 + 3898 ], "stddev": [ - 3889 + 3909 ], "stddev_pop": [ - 3891 + 3911 ], "stddev_samp": [ - 3893 + 3913 ], "sum": [ - 3897 + 3917 ], "var_pop": [ - 3901 + 3921 ], "var_samp": [ - 3903 + 3923 ], "variance": [ - 3905 + 3925 ], "__typename": [ 78 @@ -91198,10 +91463,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3874 + 3894 ], "on_conflict": [ - 3881 + 3901 ], "__typename": [ 78 @@ -91217,7 +91482,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91225,94 +91490,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 3871 + 3891 ], "_not": [ - 3871 + 3891 ], "_or": [ - 3871 + 3891 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3970 + 3990 ], "awaiting_team_id": [ - 4444 + 4464 ], "canceled_by_team_id": [ - 4444 + 4464 ], "canceled_late": [ 4 ], "created_at": [ - 4005 + 4025 ], "expires_at": [ - 4005 + 4025 ], "from_team": [ - 3970 + 3990 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4444 + 4464 ], "id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_options": [ - 2160 + 2180 ], "match_options_id": [ - 4444 + 4464 ], "match_outcome": [ 80 ], "proposals": [ - 3828 + 3848 ], "proposals_aggregate": [ - 3821 + 3841 ], "proposed_scheduled_at": [ - 4005 + 4025 ], "region": [ 80 ], "requested_by": [ - 3423 + 3443 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4005 + 4025 ], "status": [ - 943 + 963 ], "to_team": [ - 3970 + 3990 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -91332,79 +91597,79 @@ export default { 3 ], "awaiting_team": [ - 3979 + 3999 ], "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "canceled_late": [ 3 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team": [ - 3979 + 3999 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_options": [ - 2167 + 2187 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposals": [ - 3825 + 3845 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 ], "requested_by": [ - 3430 + 3450 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4004 + 4024 ], "status": [ - 942 + 962 ], "to_team": [ - 3979 + 3999 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91412,34 +91677,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 @@ -91448,10 +91713,10 @@ export default { 180 ], "responded_at": [ - 4004 + 4024 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91459,46 +91724,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2461 + 2481 ], "canceled_by_team_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "from_team_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "match_outcome": [ - 2461 + 2481 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "requested_by_steam_id": [ - 2461 + 2481 ], "responded_at": [ - 2461 + 2481 ], "to_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91506,34 +91771,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 @@ -91542,10 +91807,10 @@ export default { 180 ], "responded_at": [ - 4004 + 4024 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91553,46 +91818,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2461 + 2481 ], "canceled_by_team_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "from_team_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "match_outcome": [ - 2461 + 2481 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "requested_by_steam_id": [ - 2461 + 2481 ], "responded_at": [ - 2461 + 2481 ], "to_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91603,7 +91868,7 @@ export default { 38 ], "returning": [ - 3860 + 3880 ], "__typename": [ 78 @@ -91611,10 +91876,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3874 + 3894 ], "on_conflict": [ - 3881 + 3901 ], "__typename": [ 78 @@ -91622,13 +91887,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 3872 + 3892 ], "update_columns": [ - 3898 + 3918 ], "where": [ - 3871 + 3891 ], "__typename": [ 78 @@ -91636,82 +91901,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2461 + 2481 ], "awaiting_team": [ - 3981 + 4001 ], "awaiting_team_id": [ - 2461 + 2481 ], "canceled_by_team_id": [ - 2461 + 2481 ], "canceled_late": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "expires_at": [ - 2461 + 2481 ], "from_team": [ - 3981 + 4001 ], "from_team_checked_in": [ - 2461 + 2481 ], "from_team_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_options": [ - 2169 + 2189 ], "match_options_id": [ - 2461 + 2481 ], "match_outcome": [ - 2461 + 2481 ], "proposals_aggregate": [ - 3824 + 3844 ], "proposed_scheduled_at": [ - 2461 + 2481 ], "region": [ - 2461 + 2481 ], "requested_by": [ - 3432 + 3452 ], "requested_by_steam_id": [ - 2461 + 2481 ], "responded_at": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "to_team": [ - 3981 + 4001 ], "to_team_checked_in": [ - 2461 + 2481 ], "to_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91719,7 +91984,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91733,40 +91998,40 @@ export default { 3 ], "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "canceled_late": [ 3 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 @@ -91775,16 +92040,16 @@ export default { 180 ], "responded_at": [ - 4004 + 4024 ], "status": [ - 942 + 962 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91800,7 +92065,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91816,7 +92081,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91832,7 +92097,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91840,7 +92105,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3895 + 3915 ], "ordering": [ 236 @@ -91854,40 +92119,40 @@ export default { 3 ], "awaiting_team_id": [ - 4442 + 4462 ], "canceled_by_team_id": [ - 4442 + 4462 ], "canceled_late": [ 3 ], "created_at": [ - 4004 + 4024 ], "expires_at": [ - 4004 + 4024 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4442 + 4462 ], "id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4004 + 4024 ], "region": [ 78 @@ -91896,16 +92161,16 @@ export default { 180 ], "responded_at": [ - 4004 + 4024 ], "status": [ - 942 + 962 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -91921,7 +92186,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91930,13 +92195,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3873 + 3893 ], "_set": [ - 3887 + 3907 ], "where": [ - 3871 + 3891 ], "__typename": [ 78 @@ -91952,7 +92217,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91968,7 +92233,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91984,7 +92249,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -91995,7 +92260,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92007,10 +92272,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92019,13 +92284,13 @@ export default { 78 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92033,10 +92298,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 3908 + 3928 ], "nodes": [ - 3906 + 3926 ], "__typename": [ 78 @@ -92044,13 +92309,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3909 + 3929 ], "count": [ 38, { "columns": [ - 3921, + 3941, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -92059,31 +92324,31 @@ export default { } ], "max": [ - 3914 + 3934 ], "min": [ - 3915 + 3935 ], "stddev": [ - 3923 + 3943 ], "stddev_pop": [ - 3924 + 3944 ], "stddev_samp": [ - 3925 + 3945 ], "sum": [ - 3928 + 3948 ], "var_pop": [ - 3931 + 3951 ], "var_samp": [ - 3932 + 3952 ], "variance": [ - 3933 + 3953 ], "__typename": [ 78 @@ -92102,19 +92367,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 3910 + 3930 ], "_not": [ - 3910 + 3930 ], "_or": [ - 3910 + 3930 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4005 + 4025 ], "elo_max": [ 39 @@ -92126,10 +92391,10 @@ export default { 4 ], "id": [ - 4444 + 4464 ], "map_ids": [ - 4443 + 4463 ], "notes": [ 80 @@ -92138,13 +92403,13 @@ export default { 79 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -92167,7 +92432,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92179,10 +92444,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92191,13 +92456,13 @@ export default { 78 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92205,7 +92470,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92214,10 +92479,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92226,10 +92491,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92237,7 +92502,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92246,10 +92511,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92258,10 +92523,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92272,7 +92537,7 @@ export default { 38 ], "returning": [ - 3906 + 3926 ], "__typename": [ 78 @@ -92280,10 +92545,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3913 + 3933 ], "on_conflict": [ - 3918 + 3938 ], "__typename": [ 78 @@ -92291,13 +92556,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 3911 + 3931 ], "update_columns": [ - 3929 + 3949 ], "where": [ - 3910 + 3930 ], "__typename": [ 78 @@ -92305,40 +92570,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "elo_max": [ - 2461 + 2481 ], "elo_min": [ - 2461 + 2481 ], "enabled": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "map_ids": [ - 2461 + 2481 ], "notes": [ - 2461 + 2481 ], "regions": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -92346,7 +92611,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -92358,7 +92623,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92370,10 +92635,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92382,10 +92647,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92426,7 +92691,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3927 + 3947 ], "ordering": [ 236 @@ -92440,7 +92705,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "elo_max": [ 38 @@ -92452,10 +92717,10 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "map_ids": [ - 4442 + 4462 ], "notes": [ 78 @@ -92464,10 +92729,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -92487,13 +92752,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3912 + 3932 ], "_set": [ - 3922 + 3942 ], "where": [ - 3910 + 3930 ], "__typename": [ 78 @@ -92534,16 +92799,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92560,10 +92825,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 3936 + 3956 ], "nodes": [ - 3934 + 3954 ], "__typename": [ 78 @@ -92571,13 +92836,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 3937 + 3957 ], "count": [ 38, { "columns": [ - 3948, + 3968, "[team_suggestions_select_column!]" ], "distinct": [ @@ -92586,31 +92851,31 @@ export default { } ], "max": [ - 3942 + 3962 ], "min": [ - 3943 + 3963 ], "stddev": [ - 3950 + 3970 ], "stddev_pop": [ - 3951 + 3971 ], "stddev_samp": [ - 3952 + 3972 ], "sum": [ - 3955 + 3975 ], "var_pop": [ - 3958 + 3978 ], "var_samp": [ - 3959 + 3979 ], "variance": [ - 3960 + 3980 ], "__typename": [ 78 @@ -92626,25 +92891,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 3938 + 3958 ], "_not": [ - 3938 + 3958 ], "_or": [ - 3938 + 3958 ], "created_at": [ - 4005 + 4025 ], "group_hash": [ 80 ], "id": [ - 4444 + 4464 ], "last_notified_at": [ - 4005 + 4025 ], "member_steam_ids": [ 181 @@ -92670,16 +92935,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92696,16 +92961,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92722,16 +92987,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92751,7 +93016,7 @@ export default { 38 ], "returning": [ - 3934 + 3954 ], "__typename": [ 78 @@ -92759,13 +93024,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 3939 + 3959 ], "update_columns": [ - 3956 + 3976 ], "where": [ - 3938 + 3958 ], "__typename": [ 78 @@ -92773,25 +93038,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2461 + 2481 ], "group_hash": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "last_notified_at": [ - 2461 + 2481 ], "member_steam_ids": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "together_count": [ - 2461 + 2481 ], "__typename": [ 78 @@ -92799,7 +93064,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -92808,16 +93073,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92858,7 +93123,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3954 + 3974 ], "ordering": [ 236 @@ -92869,16 +93134,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "group_hash": [ 78 ], "id": [ - 4442 + 4462 ], "last_notified_at": [ - 4004 + 4024 ], "member_steam_ids": [ 180 @@ -92904,13 +93169,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3940 + 3960 ], "_set": [ - 3949 + 3969 ], "where": [ - 3938 + 3958 ], "__typename": [ 78 @@ -92957,19 +93222,19 @@ export default { 3 ], "captain": [ - 3419 + 3439 ], "captain_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "invites": [ - 3678, + 3698, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -92979,19 +93244,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "invites_aggregate": [ - 3679, + 3699, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -93001,19 +93266,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "match_lineups": [ - 1956, + 1976, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -93023,19 +93288,19 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "match_lineups_aggregate": [ - 1957, + 1977, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -93045,19 +93310,19 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -93067,11 +93332,11 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], @@ -93079,25 +93344,25 @@ export default { 78 ], "owner": [ - 3419 + 3439 ], "owner_steam_id": [ 180 ], "ranks": [ - 5075 + 5095 ], "reputation": [ - 5095 + 5115 ], "role": [ 78 ], "roster": [ - 3719, + 3739, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -93107,19 +93372,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "roster_aggregate": [ - 3720, + 3740, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -93129,19 +93394,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "scrim_availability": [ - 3791, + 3811, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93151,19 +93416,19 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "scrim_availability_aggregate": [ - 3792, + 3812, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93173,25 +93438,25 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "scrim_settings": [ - 3906 + 3926 ], "short_name": [ 78 ], "tournament_teams": [ - 4267, + 4287, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -93201,19 +93466,19 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "tournament_teams_aggregate": [ - 4268, + 4288, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -93223,11 +93488,11 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], @@ -93237,10 +93502,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 3965 + 3985 ], "nodes": [ - 3961 + 3981 ], "__typename": [ 78 @@ -93248,7 +93513,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 3964 + 3984 ], "__typename": [ 78 @@ -93256,13 +93521,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 3983 + 4003 ], "distinct": [ 3 ], "filter": [ - 3970 + 3990 ], "predicate": [ 39 @@ -93273,13 +93538,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 3968 + 3988 ], "count": [ 38, { "columns": [ - 3983, + 4003, "[teams_select_column!]" ], "distinct": [ @@ -93288,31 +93553,31 @@ export default { } ], "max": [ - 3974 + 3994 ], "min": [ - 3976 + 3996 ], "stddev": [ - 3985 + 4005 ], "stddev_pop": [ - 3987 + 4007 ], "stddev_samp": [ - 3989 + 4009 ], "sum": [ - 3993 + 4013 ], "var_pop": [ - 3997 + 4017 ], "var_samp": [ - 3999 + 4019 ], "variance": [ - 4001 + 4021 ], "__typename": [ 78 @@ -93320,37 +93585,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 3969 + 3989 ], "count": [ - 2461 + 2481 ], "max": [ - 3975 + 3995 ], "min": [ - 3977 + 3997 ], "stddev": [ - 3986 + 4006 ], "stddev_pop": [ - 3988 + 4008 ], "stddev_samp": [ - 3990 + 4010 ], "sum": [ - 3994 + 4014 ], "var_pop": [ - 3998 + 4018 ], "var_samp": [ - 4000 + 4020 ], "variance": [ - 4002 + 4022 ], "__typename": [ 78 @@ -93358,10 +93623,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 3973 + 3993 ], "on_conflict": [ - 3980 + 4000 ], "__typename": [ 78 @@ -93380,10 +93645,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93391,13 +93656,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 3970 + 3990 ], "_not": [ - 3970 + 3990 ], "_or": [ - 3970 + 3990 ], "avatar_url": [ 80 @@ -93415,70 +93680,70 @@ export default { 4 ], "captain": [ - 3423 + 3443 ], "captain_steam_id": [ 182 ], "id": [ - 4444 + 4464 ], "invites": [ - 3687 + 3707 ], "invites_aggregate": [ - 3680 + 3700 ], "match_lineups": [ - 1965 + 1985 ], "match_lineups_aggregate": [ - 1958 + 1978 ], "matches": [ - 2285 + 2305 ], "name": [ 80 ], "owner": [ - 3423 + 3443 ], "owner_steam_id": [ 182 ], "ranks": [ - 5079 + 5099 ], "reputation": [ - 5099 + 5119 ], "role": [ 80 ], "roster": [ - 3730 + 3750 ], "roster_aggregate": [ - 3721 + 3741 ], "scrim_availability": [ - 3800 + 3820 ], "scrim_availability_aggregate": [ - 3793 + 3813 ], "scrim_settings": [ - 3910 + 3930 ], "short_name": [ 80 ], "tournament_teams": [ - 4276 + 4296 ], "tournament_teams_aggregate": [ - 4269 + 4289 ], "__typename": [ 78 @@ -93501,49 +93766,49 @@ export default { 78 ], "captain": [ - 3430 + 3450 ], "captain_steam_id": [ 180 ], "id": [ - 4442 + 4462 ], "invites": [ - 3684 + 3704 ], "match_lineups": [ - 1962 + 1982 ], "name": [ 78 ], "owner": [ - 3430 + 3450 ], "owner_steam_id": [ 180 ], "ranks": [ - 5083 + 5103 ], "reputation": [ - 5103 + 5123 ], "roster": [ - 3727 + 3747 ], "scrim_availability": [ - 3799 + 3819 ], "scrim_settings": [ - 3917 + 3937 ], "short_name": [ 78 ], "tournament_teams": [ - 4273 + 4293 ], "__typename": [ 78 @@ -93557,7 +93822,7 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -93577,22 +93842,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2461 + 2481 ], "captain_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "short_name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93606,7 +93871,7 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -93626,22 +93891,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2461 + 2481 ], "captain_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "short_name": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93652,7 +93917,7 @@ export default { 38 ], "returning": [ - 3961 + 3981 ], "__typename": [ 78 @@ -93660,10 +93925,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 3973 + 3993 ], "on_conflict": [ - 3980 + 4000 ], "__typename": [ 78 @@ -93671,13 +93936,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 3971 + 3991 ], "update_columns": [ - 3995 + 4015 ], "where": [ - 3970 + 3990 ], "__typename": [ 78 @@ -93685,70 +93950,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2461 + 2481 ], "can_change_role": [ - 2461 + 2481 ], "can_invite": [ - 2461 + 2481 ], "can_manage_scrims": [ - 2461 + 2481 ], "can_remove": [ - 2461 + 2481 ], "captain": [ - 3432 + 3452 ], "captain_steam_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invites_aggregate": [ - 3683 + 3703 ], "match_lineups_aggregate": [ - 1961 + 1981 ], "matches_aggregate": [ - 2281 + 2301 ], "name": [ - 2461 + 2481 ], "owner": [ - 3432 + 3452 ], "owner_steam_id": [ - 2461 + 2481 ], "ranks": [ - 5084 + 5104 ], "reputation": [ - 5104 + 5124 ], "role": [ - 2461 + 2481 ], "roster_aggregate": [ - 3726 + 3746 ], "scrim_availability_aggregate": [ - 3798 + 3818 ], "scrim_settings": [ - 3919 + 3939 ], "short_name": [ - 2461 + 2481 ], "tournament_teams_aggregate": [ - 4272 + 4292 ], "__typename": [ 78 @@ -93756,7 +94021,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -93771,7 +94036,7 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -93799,10 +94064,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93821,10 +94086,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93843,10 +94108,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93854,7 +94119,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 3992 + 4012 ], "ordering": [ 236 @@ -93871,7 +94136,7 @@ export default { 180 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -93899,10 +94164,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93911,13 +94176,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 3972 + 3992 ], "_set": [ - 3984 + 4004 ], "where": [ - 3970 + 3990 ], "__typename": [ 78 @@ -93936,10 +94201,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93958,10 +94223,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93980,10 +94245,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -93993,31 +94258,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4004 + 4024 ], "_gt": [ - 4004 + 4024 ], "_gte": [ - 4004 + 4024 ], "_in": [ - 4004 + 4024 ], "_is_null": [ 3 ], "_lt": [ - 4004 + 4024 ], "_lte": [ - 4004 + 4024 ], "_neq": [ - 4004 + 4024 ], "_nin": [ - 4004 + 4024 ], "__typename": [ 78 @@ -94028,13 +94293,13 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "feeding_brackets": [ - 4006, + 4026, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -94044,11 +94309,11 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], @@ -94056,37 +94321,37 @@ export default { 3 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_bracket": [ - 4006 + 4026 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "options": [ - 2156 + 2176 ], "parent_bracket": [ - 4006 + 4026 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -94095,16 +94360,16 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "scheduling_proposals": [ - 1469, + 1489, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94114,19 +94379,19 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "scheduling_proposals_aggregate": [ - 1470, + 1490, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94136,37 +94401,37 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "stage": [ - 4134 + 4154 ], "team_1": [ - 4267 + 4287 ], "team_1_seed": [ 38 ], "team_2": [ - 4267 + 4287 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -94174,10 +94439,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4012 + 4032 ], "nodes": [ - 4006 + 4026 ], "__typename": [ 78 @@ -94185,13 +94450,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4009 + 4029 ], "bool_or": [ - 4010 + 4030 ], "count": [ - 4011 + 4031 ], "__typename": [ 78 @@ -94199,13 +94464,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4031 + 4051 ], "distinct": [ 3 ], "filter": [ - 4017 + 4037 ], "predicate": [ 4 @@ -94216,13 +94481,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4032 + 4052 ], "distinct": [ 3 ], "filter": [ - 4017 + 4037 ], "predicate": [ 4 @@ -94233,13 +94498,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4030 + 4050 ], "distinct": [ 3 ], "filter": [ - 4017 + 4037 ], "predicate": [ 39 @@ -94250,13 +94515,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4015 + 4035 ], "count": [ 38, { "columns": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -94265,31 +94530,31 @@ export default { } ], "max": [ - 4021 + 4041 ], "min": [ - 4023 + 4043 ], "stddev": [ - 4034 + 4054 ], "stddev_pop": [ - 4036 + 4056 ], "stddev_samp": [ - 4038 + 4058 ], "sum": [ - 4042 + 4062 ], "var_pop": [ - 4046 + 4066 ], "var_samp": [ - 4048 + 4068 ], "variance": [ - 4050 + 4070 ], "__typename": [ 78 @@ -94297,37 +94562,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4016 + 4036 ], "count": [ - 2461 + 2481 ], "max": [ - 4022 + 4042 ], "min": [ - 4024 + 4044 ], "stddev": [ - 4035 + 4055 ], "stddev_pop": [ - 4037 + 4057 ], "stddev_samp": [ - 4039 + 4059 ], "sum": [ - 4043 + 4063 ], "var_pop": [ - 4047 + 4067 ], "var_samp": [ - 4049 + 4069 ], "variance": [ - 4051 + 4071 ], "__typename": [ 78 @@ -94335,10 +94600,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4020 + 4040 ], "on_conflict": [ - 4027 + 4047 ], "__typename": [ 78 @@ -94366,19 +94631,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -94386,58 +94651,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4017 + 4037 ], "_not": [ - 4017 + 4037 ], "_or": [ - 4017 + 4037 ], "bye": [ 4 ], "created_at": [ - 4005 + 4025 ], "feeding_brackets": [ - 4017 + 4037 ], "finished": [ 4 ], "group": [ - 2460 + 2480 ], "id": [ - 4444 + 4464 ], "loser_bracket": [ - 4017 + 4037 ], "loser_parent_bracket_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_number": [ 39 ], "match_options_id": [ - 4444 + 4464 ], "options": [ - 2160 + 2180 ], "parent_bracket": [ - 4017 + 4037 ], "parent_bracket_id": [ - 4444 + 4464 ], "path": [ 80 @@ -94446,40 +94711,40 @@ export default { 39 ], "scheduled_at": [ - 4005 + 4025 ], "scheduled_eta": [ - 4005 + 4025 ], "scheduling_proposals": [ - 1478 + 1498 ], "scheduling_proposals_aggregate": [ - 1471 + 1491 ], "stage": [ - 4146 + 4166 ], "team_1": [ - 4276 + 4296 ], "team_1_seed": [ 39 ], "team_2": [ - 4276 + 4296 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4444 + 4464 ], "tournament_team_id_1": [ - 4444 + 4464 ], "tournament_team_id_2": [ - 4444 + 4464 ], "__typename": [ 78 @@ -94488,7 +94753,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2459 + 2479 ], "match_number": [ 38 @@ -94511,43 +94776,43 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "finished": [ 3 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_bracket": [ - 4026 + 4046 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "options": [ - 2167 + 2187 ], "parent_bracket": [ - 4026 + 4046 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -94556,37 +94821,37 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "scheduling_proposals": [ - 1475 + 1495 ], "stage": [ - 4158 + 4178 ], "team_1": [ - 4285 + 4305 ], "team_1_seed": [ 38 ], "team_2": [ - 4285 + 4305 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -94594,28 +94859,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4004 + 4024 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -94624,10 +94889,10 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "team_1_seed": [ 38 @@ -94636,13 +94901,13 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -94650,55 +94915,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2461 + 2481 ], "group": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "loser_parent_bracket_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "parent_bracket_id": [ - 2461 + 2481 ], "path": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "scheduled_eta": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id_1": [ - 2461 + 2481 ], "tournament_team_id_2": [ - 2461 + 2481 ], "__typename": [ 78 @@ -94706,28 +94971,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4004 + 4024 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -94736,10 +95001,10 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "team_1_seed": [ 38 @@ -94748,13 +95013,13 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -94762,55 +95027,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2461 + 2481 ], "group": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "loser_parent_bracket_id": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "parent_bracket_id": [ - 2461 + 2481 ], "path": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "scheduled_eta": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id_1": [ - 2461 + 2481 ], "tournament_team_id_2": [ - 2461 + 2481 ], "__typename": [ 78 @@ -94821,7 +95086,7 @@ export default { 38 ], "returning": [ - 4006 + 4026 ], "__typename": [ 78 @@ -94829,10 +95094,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4020 + 4040 ], "on_conflict": [ - 4027 + 4047 ], "__typename": [ 78 @@ -94840,13 +95105,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4018 + 4038 ], "update_columns": [ - 4044 + 4064 ], "where": [ - 4017 + 4037 ], "__typename": [ 78 @@ -94854,88 +95119,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "feeding_brackets_aggregate": [ - 4013 + 4033 ], "finished": [ - 2461 + 2481 ], "group": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "loser_bracket": [ - 4028 + 4048 ], "loser_parent_bracket_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "options": [ - 2169 + 2189 ], "parent_bracket": [ - 4028 + 4048 ], "parent_bracket_id": [ - 2461 + 2481 ], "path": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "scheduled_at": [ - 2461 + 2481 ], "scheduled_eta": [ - 2461 + 2481 ], "scheduling_proposals_aggregate": [ - 1474 + 1494 ], "stage": [ - 4160 + 4180 ], "team_1": [ - 4287 + 4307 ], "team_1_seed": [ - 2461 + 2481 ], "team_2": [ - 4287 + 4307 ], "team_2_seed": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id_1": [ - 2461 + 2481 ], "tournament_team_id_2": [ - 2461 + 2481 ], "__typename": [ 78 @@ -94943,7 +95208,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -94957,31 +95222,31 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "finished": [ 3 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -94990,10 +95255,10 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "team_1_seed": [ 38 @@ -95002,13 +95267,13 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95036,19 +95301,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95076,19 +95341,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95116,19 +95381,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95136,7 +95401,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4041 + 4061 ], "ordering": [ 236 @@ -95150,31 +95415,31 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "finished": [ 3 ], "group": [ - 2459 + 2479 ], "id": [ - 4442 + 4462 ], "loser_parent_bracket_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_number": [ 38 ], "match_options_id": [ - 4442 + 4462 ], "parent_bracket_id": [ - 4442 + 4462 ], "path": [ 78 @@ -95183,10 +95448,10 @@ export default { 38 ], "scheduled_at": [ - 4004 + 4024 ], "scheduled_eta": [ - 4004 + 4024 ], "team_1_seed": [ 38 @@ -95195,13 +95460,13 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id_1": [ - 4442 + 4462 ], "tournament_team_id_2": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95209,7 +95474,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2459 + 2479 ], "match_number": [ 38 @@ -95229,19 +95494,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95250,13 +95515,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4019 + 4039 ], "_set": [ - 4033 + 4053 ], "where": [ - 4017 + 4037 ], "__typename": [ 78 @@ -95284,19 +95549,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95324,19 +95589,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95364,19 +95629,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2461 + 2481 ], "match_number": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "team_1_seed": [ - 2461 + 2481 ], "team_2_seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95384,16 +95649,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3419 + 3439 ], "steam_id": [ 180 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95401,10 +95666,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4056 + 4076 ], "nodes": [ - 4052 + 4072 ], "__typename": [ 78 @@ -95412,7 +95677,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4055 + 4075 ], "__typename": [ 78 @@ -95420,13 +95685,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4073 + 4093 ], "distinct": [ 3 ], "filter": [ - 4061 + 4081 ], "predicate": [ 39 @@ -95437,13 +95702,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4059 + 4079 ], "count": [ 38, { "columns": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -95452,31 +95717,31 @@ export default { } ], "max": [ - 4065 + 4085 ], "min": [ - 4067 + 4087 ], "stddev": [ - 4075 + 4095 ], "stddev_pop": [ - 4077 + 4097 ], "stddev_samp": [ - 4079 + 4099 ], "sum": [ - 4083 + 4103 ], "var_pop": [ - 4087 + 4107 ], "var_samp": [ - 4089 + 4109 ], "variance": [ - 4091 + 4111 ], "__typename": [ 78 @@ -95484,37 +95749,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4060 + 4080 ], "count": [ - 2461 + 2481 ], "max": [ - 4066 + 4086 ], "min": [ - 4068 + 4088 ], "stddev": [ - 4076 + 4096 ], "stddev_pop": [ - 4078 + 4098 ], "stddev_samp": [ - 4080 + 4100 ], "sum": [ - 4084 + 4104 ], "var_pop": [ - 4088 + 4108 ], "var_samp": [ - 4090 + 4110 ], "variance": [ - 4092 + 4112 ], "__typename": [ 78 @@ -95522,10 +95787,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4064 + 4084 ], "on_conflict": [ - 4070 + 4090 ], "__typename": [ 78 @@ -95541,7 +95806,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95549,25 +95814,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4061 + 4081 ], "_not": [ - 4061 + 4081 ], "_or": [ - 4061 + 4081 ], "organizer": [ - 3423 + 3443 ], "steam_id": [ 182 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -95584,16 +95849,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3430 + 3450 ], "steam_id": [ 180 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95604,7 +95869,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95612,10 +95877,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95626,7 +95891,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95634,10 +95899,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95648,7 +95913,7 @@ export default { 38 ], "returning": [ - 4052 + 4072 ], "__typename": [ 78 @@ -95656,13 +95921,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4062 + 4082 ], "update_columns": [ - 4085 + 4105 ], "where": [ - 4061 + 4081 ], "__typename": [ 78 @@ -95670,16 +95935,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95690,7 +95955,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95702,7 +95967,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95718,7 +95983,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95734,7 +95999,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95750,7 +96015,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95758,7 +96023,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4082 + 4102 ], "ordering": [ 236 @@ -95772,7 +96037,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95788,7 +96053,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95797,13 +96062,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4063 + 4083 ], "_set": [ - 4074 + 4094 ], "where": [ - 4061 + 4081 ], "__typename": [ 78 @@ -95819,7 +96084,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95835,7 +96100,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95851,7 +96116,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -95859,28 +96124,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "stage": [ - 4134 + 4154 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -95888,10 +96153,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4097 + 4117 ], "nodes": [ - 4093 + 4113 ], "__typename": [ 78 @@ -95899,7 +96164,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4096 + 4116 ], "__typename": [ 78 @@ -95907,13 +96172,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4114 + 4134 ], "distinct": [ 3 ], "filter": [ - 4102 + 4122 ], "predicate": [ 39 @@ -95924,13 +96189,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4100 + 4120 ], "count": [ 38, { "columns": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -95939,31 +96204,31 @@ export default { } ], "max": [ - 4106 + 4126 ], "min": [ - 4108 + 4128 ], "stddev": [ - 4116 + 4136 ], "stddev_pop": [ - 4118 + 4138 ], "stddev_samp": [ - 4120 + 4140 ], "sum": [ - 4124 + 4144 ], "var_pop": [ - 4128 + 4148 ], "var_samp": [ - 4130 + 4150 ], "variance": [ - 4132 + 4152 ], "__typename": [ 78 @@ -95971,37 +96236,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4101 + 4121 ], "count": [ - 2461 + 2481 ], "max": [ - 4107 + 4127 ], "min": [ - 4109 + 4129 ], "stddev": [ - 4117 + 4137 ], "stddev_pop": [ - 4119 + 4139 ], "stddev_samp": [ - 4121 + 4141 ], "sum": [ - 4125 + 4145 ], "var_pop": [ - 4129 + 4149 ], "var_samp": [ - 4131 + 4151 ], "variance": [ - 4133 + 4153 ], "__typename": [ 78 @@ -96009,10 +96274,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4105 + 4125 ], "on_conflict": [ - 4111 + 4131 ], "__typename": [ 78 @@ -96028,7 +96293,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96036,37 +96301,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4102 + 4122 ], "_not": [ - 4102 + 4122 ], "_or": [ - 4102 + 4122 ], "closes_at": [ - 4005 + 4025 ], "created_at": [ - 4005 + 4025 ], "default_match_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "opens_at": [ - 4005 + 4025 ], "round": [ 39 ], "stage": [ - 4146 + 4166 ], "tournament_stage_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -96083,28 +96348,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "stage": [ - 4158 + 4178 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96112,25 +96377,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96138,25 +96403,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96164,25 +96429,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96190,25 +96455,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96219,7 +96484,7 @@ export default { 38 ], "returning": [ - 4093 + 4113 ], "__typename": [ 78 @@ -96227,13 +96492,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4103 + 4123 ], "update_columns": [ - 4126 + 4146 ], "where": [ - 4102 + 4122 ], "__typename": [ 78 @@ -96241,28 +96506,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "default_match_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "opens_at": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "stage": [ - 4160 + 4180 ], "tournament_stage_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96270,7 +96535,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96279,25 +96544,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96313,7 +96578,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96329,7 +96594,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96345,7 +96610,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96353,7 +96618,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4123 + 4143 ], "ordering": [ 236 @@ -96364,25 +96629,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4004 + 4024 ], "created_at": [ - 4004 + 4024 ], "default_match_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "opens_at": [ - 4004 + 4024 ], "round": [ 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -96398,7 +96663,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96407,13 +96672,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4104 + 4124 ], "_set": [ - 4115 + 4135 ], "where": [ - 4102 + 4122 ], "__typename": [ 78 @@ -96429,7 +96694,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96445,7 +96710,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96461,7 +96726,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96469,10 +96734,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4006, + 4026, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96482,19 +96747,19 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "brackets_aggregate": [ - 4007, + 4027, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96504,11 +96769,11 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], @@ -96519,16 +96784,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1078 + 1098 ], "groups": [ 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -96540,16 +96805,16 @@ export default { 38 ], "options": [ - 2156 + 2176 ], "order": [ 38 ], "results": [ - 5115, + 5135, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96559,19 +96824,19 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "results_aggregate": [ - 5116, + 5136, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96581,16 +96846,16 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "settings": [ - 1332, + 1352, { "path": [ 78 @@ -96604,19 +96869,19 @@ export default { 3 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "type": [ - 1083 + 1103 ], "windows": [ - 4093, + 4113, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96626,19 +96891,19 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], "windows_aggregate": [ - 4094, + 4114, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96648,11 +96913,11 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], @@ -96662,10 +96927,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4140 + 4160 ], "nodes": [ - 4134 + 4154 ], "__typename": [ 78 @@ -96673,13 +96938,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4137 + 4157 ], "bool_or": [ - 4138 + 4158 ], "count": [ - 4139 + 4159 ], "__typename": [ 78 @@ -96687,13 +96952,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4164 + 4184 ], "distinct": [ 3 ], "filter": [ - 4146 + 4166 ], "predicate": [ 4 @@ -96704,13 +96969,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4165 + 4185 ], "distinct": [ 3 ], "filter": [ - 4146 + 4166 ], "predicate": [ 4 @@ -96721,13 +96986,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4163 + 4183 ], "distinct": [ 3 ], "filter": [ - 4146 + 4166 ], "predicate": [ 39 @@ -96738,13 +97003,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4144 + 4164 ], "count": [ 38, { "columns": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "distinct": [ @@ -96753,31 +97018,31 @@ export default { } ], "max": [ - 4153 + 4173 ], "min": [ - 4155 + 4175 ], "stddev": [ - 4167 + 4187 ], "stddev_pop": [ - 4169 + 4189 ], "stddev_samp": [ - 4171 + 4191 ], "sum": [ - 4175 + 4195 ], "var_pop": [ - 4179 + 4199 ], "var_samp": [ - 4181 + 4201 ], "variance": [ - 4183 + 4203 ], "__typename": [ 78 @@ -96785,37 +97050,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4145 + 4165 ], "count": [ - 2461 + 2481 ], "max": [ - 4154 + 4174 ], "min": [ - 4156 + 4176 ], "stddev": [ - 4168 + 4188 ], "stddev_pop": [ - 4170 + 4190 ], "stddev_samp": [ - 4172 + 4192 ], "sum": [ - 4176 + 4196 ], "var_pop": [ - 4180 + 4200 ], "var_samp": [ - 4182 + 4202 ], "variance": [ - 4184 + 4204 ], "__typename": [ 78 @@ -96823,7 +97088,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1332 + 1352 ], "__typename": [ 78 @@ -96831,10 +97096,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4152 + 4172 ], "on_conflict": [ - 4159 + 4179 ], "__typename": [ 78 @@ -96868,25 +97133,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -96894,19 +97159,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4146 + 4166 ], "_not": [ - 4146 + 4166 ], "_or": [ - 4146 + 4166 ], "brackets": [ - 4017 + 4037 ], "brackets_aggregate": [ - 4008 + 4028 ], "decider_best_of": [ 39 @@ -96915,16 +97180,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 1081 + 1101 ], "groups": [ 39 ], "id": [ - 4444 + 4464 ], "match_options_id": [ - 4444 + 4464 ], "max_rounds": [ 39 @@ -96936,19 +97201,19 @@ export default { 39 ], "options": [ - 2160 + 2180 ], "order": [ 39 ], "results": [ - 5134 + 5154 ], "results_aggregate": [ - 5117 + 5137 ], "settings": [ - 1334 + 1354 ], "swiss_no_elimination": [ 4 @@ -96957,19 +97222,19 @@ export default { 4 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "type": [ - 1084 + 1104 ], "windows": [ - 4102 + 4122 ], "windows_aggregate": [ - 4095 + 4115 ], "__typename": [ 78 @@ -97028,7 +97293,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4014 + 4034 ], "decider_best_of": [ 38 @@ -97037,16 +97302,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1089 + 1109 ], "groups": [ 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -97058,16 +97323,16 @@ export default { 38 ], "options": [ - 2167 + 2187 ], "order": [ 38 ], "results": [ - 5131 + 5151 ], "settings": [ - 1332 + 1352 ], "swiss_no_elimination": [ 3 @@ -97076,16 +97341,16 @@ export default { 3 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "type": [ - 1083 + 1103 ], "windows": [ - 4099 + 4119 ], "__typename": [ 78 @@ -97102,10 +97367,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -97120,7 +97385,7 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -97128,34 +97393,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97172,10 +97437,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -97190,7 +97455,7 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -97198,34 +97463,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97236,7 +97501,7 @@ export default { 38 ], "returning": [ - 4134 + 4154 ], "__typename": [ 78 @@ -97244,10 +97509,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4152 + 4172 ], "on_conflict": [ - 4159 + 4179 ], "__typename": [ 78 @@ -97255,13 +97520,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4147 + 4167 ], "update_columns": [ - 4177 + 4197 ], "where": [ - 4146 + 4166 ], "__typename": [ 78 @@ -97269,64 +97534,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4013 + 4033 ], "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "e_tournament_stage_type": [ - 1091 + 1111 ], "groups": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "options": [ - 2169 + 2189 ], "order": [ - 2461 + 2481 ], "results_aggregate": [ - 5130 + 5150 ], "settings": [ - 2461 + 2481 ], "swiss_no_elimination": [ - 2461 + 2481 ], "third_place_match": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "windows_aggregate": [ - 4098 + 4118 ], "__typename": [ 78 @@ -97334,7 +97599,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -97342,7 +97607,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1332 + 1352 ], "__typename": [ 78 @@ -97362,10 +97627,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -97380,7 +97645,7 @@ export default { 38 ], "settings": [ - 1332 + 1352 ], "swiss_no_elimination": [ 3 @@ -97389,10 +97654,10 @@ export default { 3 ], "tournament_id": [ - 4442 + 4462 ], "type": [ - 1083 + 1103 ], "__typename": [ 78 @@ -97426,25 +97691,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97478,25 +97743,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97530,25 +97795,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97556,7 +97821,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4174 + 4194 ], "ordering": [ 236 @@ -97576,10 +97841,10 @@ export default { 38 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_rounds": [ 38 @@ -97594,7 +97859,7 @@ export default { 38 ], "settings": [ - 1332 + 1352 ], "swiss_no_elimination": [ 3 @@ -97603,10 +97868,10 @@ export default { 3 ], "tournament_id": [ - 4442 + 4462 ], "type": [ - 1083 + 1103 ], "__typename": [ 78 @@ -97640,25 +97905,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97667,28 +97932,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4142 + 4162 ], "_delete_at_path": [ - 4148 + 4168 ], "_delete_elem": [ - 4149 + 4169 ], "_delete_key": [ - 4150 + 4170 ], "_inc": [ - 4151 + 4171 ], "_prepend": [ - 4162 + 4182 ], "_set": [ - 4166 + 4186 ], "where": [ - 4146 + 4166 ], "__typename": [ 78 @@ -97722,25 +97987,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97774,25 +98039,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97826,25 +98091,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2461 + 2481 ], "default_best_of": [ - 2461 + 2481 ], "groups": [ - 2461 + 2481 ], "max_rounds": [ - 2461 + 2481 ], "max_teams": [ - 2461 + 2481 ], "min_teams": [ - 2461 + 2481 ], "order": [ - 2461 + 2481 ], "__typename": [ 78 @@ -97852,28 +98117,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by": [ - 3419 + 3439 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 ], "team": [ - 4267 + 4287 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -97881,10 +98146,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4189 + 4209 ], "nodes": [ - 4185 + 4205 ], "__typename": [ 78 @@ -97892,7 +98157,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4188 + 4208 ], "__typename": [ 78 @@ -97900,13 +98165,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4206 + 4226 ], "distinct": [ 3 ], "filter": [ - 4194 + 4214 ], "predicate": [ 39 @@ -97917,13 +98182,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4192 + 4212 ], "count": [ 38, { "columns": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -97932,31 +98197,31 @@ export default { } ], "max": [ - 4198 + 4218 ], "min": [ - 4200 + 4220 ], "stddev": [ - 4208 + 4228 ], "stddev_pop": [ - 4210 + 4230 ], "stddev_samp": [ - 4212 + 4232 ], "sum": [ - 4216 + 4236 ], "var_pop": [ - 4220 + 4240 ], "var_samp": [ - 4222 + 4242 ], "variance": [ - 4224 + 4244 ], "__typename": [ 78 @@ -97964,37 +98229,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4193 + 4213 ], "count": [ - 2461 + 2481 ], "max": [ - 4199 + 4219 ], "min": [ - 4201 + 4221 ], "stddev": [ - 4209 + 4229 ], "stddev_pop": [ - 4211 + 4231 ], "stddev_samp": [ - 4213 + 4233 ], "sum": [ - 4217 + 4237 ], "var_pop": [ - 4221 + 4241 ], "var_samp": [ - 4223 + 4243 ], "variance": [ - 4225 + 4245 ], "__typename": [ 78 @@ -98002,10 +98267,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4197 + 4217 ], "on_conflict": [ - 4203 + 4223 ], "__typename": [ 78 @@ -98024,10 +98289,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98035,37 +98300,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4194 + 4214 ], "_not": [ - 4194 + 4214 ], "_or": [ - 4194 + 4214 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "invited_by": [ - 3423 + 3443 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 ], "team": [ - 4276 + 4296 ], "tournament_team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -98085,28 +98350,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by": [ - 3430 + 3450 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 ], "team": [ - 4285 + 4305 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98114,10 +98379,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -98126,7 +98391,7 @@ export default { 180 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98134,19 +98399,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98154,10 +98419,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -98166,7 +98431,7 @@ export default { 180 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98174,19 +98439,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98197,7 +98462,7 @@ export default { 38 ], "returning": [ - 4185 + 4205 ], "__typename": [ 78 @@ -98205,13 +98470,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4195 + 4215 ], "update_columns": [ - 4218 + 4238 ], "where": [ - 4194 + 4214 ], "__typename": [ 78 @@ -98219,28 +98484,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invited_by": [ - 3432 + 3452 ], "invited_by_player_steam_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "team": [ - 4287 + 4307 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98248,7 +98513,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98257,10 +98522,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -98269,7 +98534,7 @@ export default { 180 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98288,10 +98553,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98310,10 +98575,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98332,10 +98597,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98343,7 +98608,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4215 + 4235 ], "ordering": [ 236 @@ -98354,10 +98619,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invited_by_player_steam_id": [ 180 @@ -98366,7 +98631,7 @@ export default { 180 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98385,10 +98650,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98397,13 +98662,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4196 + 4216 ], "_set": [ - 4207 + 4227 ], "where": [ - 4194 + 4214 ], "__typename": [ 78 @@ -98422,10 +98687,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98444,10 +98709,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98466,10 +98731,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98477,28 +98742,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1017 + 1037 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "role": [ - 1022 + 1042 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team": [ - 4267 + 4287 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98506,10 +98771,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4230 + 4250 ], "nodes": [ - 4226 + 4246 ], "__typename": [ 78 @@ -98517,7 +98782,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4229 + 4249 ], "__typename": [ 78 @@ -98525,13 +98790,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4247 + 4267 ], "distinct": [ 3 ], "filter": [ - 4235 + 4255 ], "predicate": [ 39 @@ -98542,13 +98807,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4233 + 4253 ], "count": [ 38, { "columns": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -98557,31 +98822,31 @@ export default { } ], "max": [ - 4239 + 4259 ], "min": [ - 4241 + 4261 ], "stddev": [ - 4249 + 4269 ], "stddev_pop": [ - 4251 + 4271 ], "stddev_samp": [ - 4253 + 4273 ], "sum": [ - 4257 + 4277 ], "var_pop": [ - 4261 + 4281 ], "var_samp": [ - 4263 + 4283 ], "variance": [ - 4265 + 4285 ], "__typename": [ 78 @@ -98589,37 +98854,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4234 + 4254 ], "count": [ - 2461 + 2481 ], "max": [ - 4240 + 4260 ], "min": [ - 4242 + 4262 ], "stddev": [ - 4250 + 4270 ], "stddev_pop": [ - 4252 + 4272 ], "stddev_samp": [ - 4254 + 4274 ], "sum": [ - 4258 + 4278 ], "var_pop": [ - 4262 + 4282 ], "var_samp": [ - 4264 + 4284 ], "variance": [ - 4266 + 4286 ], "__typename": [ 78 @@ -98627,10 +98892,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4238 + 4258 ], "on_conflict": [ - 4244 + 4264 ], "__typename": [ 78 @@ -98646,7 +98911,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98654,37 +98919,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4235 + 4255 ], "_not": [ - 4235 + 4255 ], "_or": [ - 4235 + 4255 ], "e_team_role": [ - 1020 + 1040 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "role": [ - 1023 + 1043 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "tournament_team": [ - 4276 + 4296 ], "tournament_team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -98701,28 +98966,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1028 + 1048 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "role": [ - 1022 + 1042 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team": [ - 4285 + 4305 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98733,10 +98998,10 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98744,13 +99009,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98761,10 +99026,10 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98772,13 +99037,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98789,7 +99054,7 @@ export default { 38 ], "returning": [ - 4226 + 4246 ], "__typename": [ 78 @@ -98797,13 +99062,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4236 + 4256 ], "update_columns": [ - 4259 + 4279 ], "where": [ - 4235 + 4255 ], "__typename": [ 78 @@ -98811,28 +99076,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1030 + 1050 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "role": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team": [ - 4287 + 4307 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98843,7 +99108,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98855,13 +99120,13 @@ export default { 180 ], "role": [ - 1022 + 1042 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98877,7 +99142,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98893,7 +99158,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98909,7 +99174,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98917,7 +99182,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4256 + 4276 ], "ordering": [ 236 @@ -98931,13 +99196,13 @@ export default { 180 ], "role": [ - 1022 + 1042 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -98953,7 +99218,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -98962,13 +99227,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4237 + 4257 ], "_set": [ - 4248 + 4268 ], "where": [ - 4235 + 4255 ], "__typename": [ 78 @@ -98984,7 +99249,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99000,7 +99265,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99016,7 +99281,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99027,28 +99292,28 @@ export default { 3 ], "captain": [ - 3419 + 3439 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "creator": [ - 3419 + 3439 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invites": [ - 4185, + 4205, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99058,19 +99323,19 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], "invites_aggregate": [ - 4186, + 4206, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99080,11 +99345,11 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], @@ -99095,13 +99360,13 @@ export default { 180 ], "results": [ - 5115 + 5135 ], "roster": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99111,19 +99376,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "roster_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99133,11 +99398,11 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], @@ -99148,16 +99413,16 @@ export default { 78 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99165,10 +99430,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4271 + 4291 ], "nodes": [ - 4267 + 4287 ], "__typename": [ 78 @@ -99176,7 +99441,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4270 + 4290 ], "__typename": [ 78 @@ -99184,13 +99449,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4289 + 4309 ], "distinct": [ 3 ], "filter": [ - 4276 + 4296 ], "predicate": [ 39 @@ -99201,13 +99466,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4274 + 4294 ], "count": [ 38, { "columns": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "distinct": [ @@ -99216,31 +99481,31 @@ export default { } ], "max": [ - 4280 + 4300 ], "min": [ - 4282 + 4302 ], "stddev": [ - 4291 + 4311 ], "stddev_pop": [ - 4293 + 4313 ], "stddev_samp": [ - 4295 + 4315 ], "sum": [ - 4299 + 4319 ], "var_pop": [ - 4303 + 4323 ], "var_samp": [ - 4305 + 4325 ], "variance": [ - 4307 + 4327 ], "__typename": [ 78 @@ -99248,37 +99513,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4275 + 4295 ], "count": [ - 2461 + 2481 ], "max": [ - 4281 + 4301 ], "min": [ - 4283 + 4303 ], "stddev": [ - 4292 + 4312 ], "stddev_pop": [ - 4294 + 4314 ], "stddev_samp": [ - 4296 + 4316 ], "sum": [ - 4300 + 4320 ], "var_pop": [ - 4304 + 4324 ], "var_samp": [ - 4306 + 4326 ], "variance": [ - 4308 + 4328 ], "__typename": [ 78 @@ -99286,10 +99551,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4279 + 4299 ], "on_conflict": [ - 4286 + 4306 ], "__typename": [ 78 @@ -99311,13 +99576,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99325,40 +99590,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4276 + 4296 ], "_not": [ - 4276 + 4296 ], "_or": [ - 4276 + 4296 ], "can_manage": [ 4 ], "captain": [ - 3423 + 3443 ], "captain_steam_id": [ 182 ], "created_at": [ - 4005 + 4025 ], "creator": [ - 3423 + 3443 ], "eligible_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "invites": [ - 4194 + 4214 ], "invites_aggregate": [ - 4187 + 4207 ], "name": [ 80 @@ -99367,13 +99632,13 @@ export default { 182 ], "results": [ - 5134 + 5154 ], "roster": [ - 4235 + 4255 ], "roster_aggregate": [ - 4228 + 4248 ], "seed": [ 39 @@ -99382,16 +99647,16 @@ export default { 80 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -99414,25 +99679,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3430 + 3450 ], "captain_steam_id": [ 180 ], "created_at": [ - 4004 + 4024 ], "creator": [ - 3430 + 3450 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "invites": [ - 4191 + 4211 ], "name": [ 78 @@ -99441,10 +99706,10 @@ export default { 180 ], "results": [ - 5143 + 5163 ], "roster": [ - 4232 + 4252 ], "seed": [ 38 @@ -99453,16 +99718,16 @@ export default { 78 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99473,13 +99738,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -99494,10 +99759,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99505,34 +99770,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "eligible_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "short_name": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99543,13 +99808,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -99564,10 +99829,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99575,34 +99840,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "eligible_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "short_name": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99613,7 +99878,7 @@ export default { 38 ], "returning": [ - 4267 + 4287 ], "__typename": [ 78 @@ -99621,10 +99886,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4279 + 4299 ], "on_conflict": [ - 4286 + 4306 ], "__typename": [ 78 @@ -99632,13 +99897,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4277 + 4297 ], "update_columns": [ - 4301 + 4321 ], "where": [ - 4276 + 4296 ], "__typename": [ 78 @@ -99646,58 +99911,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2461 + 2481 ], "captain": [ - 3432 + 3452 ], "captain_steam_id": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "creator": [ - 3432 + 3452 ], "eligible_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "invites_aggregate": [ - 4190 + 4210 ], "name": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "results": [ - 5145 + 5165 ], "roster_aggregate": [ - 4231 + 4251 ], "seed": [ - 2461 + 2481 ], "short_name": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99705,7 +99970,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99717,13 +99982,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -99738,10 +100003,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99763,13 +100028,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99791,13 +100056,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99819,13 +100084,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99833,7 +100098,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4298 + 4318 ], "ordering": [ 236 @@ -99847,13 +100112,13 @@ export default { 180 ], "created_at": [ - 4004 + 4024 ], "eligible_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "name": [ 78 @@ -99868,10 +100133,10 @@ export default { 78 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -99893,13 +100158,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99908,13 +100173,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4278 + 4298 ], "_set": [ - 4290 + 4310 ], "where": [ - 4276 + 4296 ], "__typename": [ 78 @@ -99936,13 +100201,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99964,13 +100229,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -99992,13 +100257,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2461 + 2481 ], "owner_steam_id": [ - 2461 + 2481 ], "seed": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100006,10 +100271,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "manual": [ 3 @@ -100021,31 +100286,31 @@ export default { 78 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team": [ - 4267 + 4287 ], "tournament_team_id": [ - 4442 + 4462 ], "trophy_config": [ - 4354 + 4374 ], "__typename": [ 78 @@ -100053,10 +100318,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4315 + 4335 ], "nodes": [ - 4309 + 4329 ], "__typename": [ 78 @@ -100064,13 +100329,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4312 + 4332 ], "bool_or": [ - 4313 + 4333 ], "count": [ - 4314 + 4334 ], "__typename": [ 78 @@ -100078,13 +100343,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4333 + 4353 ], "distinct": [ 3 ], "filter": [ - 4320 + 4340 ], "predicate": [ 4 @@ -100095,13 +100360,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4334 + 4354 ], "distinct": [ 3 ], "filter": [ - 4320 + 4340 ], "predicate": [ 4 @@ -100112,13 +100377,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4332 + 4352 ], "distinct": [ 3 ], "filter": [ - 4320 + 4340 ], "predicate": [ 39 @@ -100129,13 +100394,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4318 + 4338 ], "count": [ 38, { "columns": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -100144,31 +100409,31 @@ export default { } ], "max": [ - 4324 + 4344 ], "min": [ - 4326 + 4346 ], "stddev": [ - 4336 + 4356 ], "stddev_pop": [ - 4338 + 4358 ], "stddev_samp": [ - 4340 + 4360 ], "sum": [ - 4344 + 4364 ], "var_pop": [ - 4348 + 4368 ], "var_samp": [ - 4350 + 4370 ], "variance": [ - 4352 + 4372 ], "__typename": [ 78 @@ -100176,37 +100441,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4319 + 4339 ], "count": [ - 2461 + 2481 ], "max": [ - 4325 + 4345 ], "min": [ - 4327 + 4347 ], "stddev": [ - 4337 + 4357 ], "stddev_pop": [ - 4339 + 4359 ], "stddev_samp": [ - 4341 + 4361 ], "sum": [ - 4345 + 4365 ], "var_pop": [ - 4349 + 4369 ], "var_samp": [ - 4351 + 4371 ], "variance": [ - 4353 + 4373 ], "__typename": [ 78 @@ -100214,10 +100479,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4323 + 4343 ], "on_conflict": [ - 4329 + 4349 ], "__typename": [ 78 @@ -100236,10 +100501,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100247,19 +100512,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4320 + 4340 ], "_not": [ - 4320 + 4340 ], "_or": [ - 4320 + 4340 ], "created_at": [ - 4005 + 4025 ], "id": [ - 4444 + 4464 ], "manual": [ 4 @@ -100271,31 +100536,31 @@ export default { 80 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "tournament_team": [ - 4276 + 4296 ], "tournament_team_id": [ - 4444 + 4464 ], "trophy_config": [ - 4363 + 4383 ], "__typename": [ 78 @@ -100315,10 +100580,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "manual": [ 3 @@ -100327,31 +100592,31 @@ export default { 38 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team": [ - 4285 + 4305 ], "tournament_team_id": [ - 4442 + 4462 ], "trophy_config": [ - 4372 + 4392 ], "__typename": [ 78 @@ -100359,10 +100624,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "placement": [ 38 @@ -100374,13 +100639,13 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -100388,28 +100653,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "placement_tier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100417,10 +100682,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "placement": [ 38 @@ -100432,13 +100697,13 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -100446,28 +100711,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "placement_tier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "team_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100478,7 +100743,7 @@ export default { 38 ], "returning": [ - 4309 + 4329 ], "__typename": [ 78 @@ -100486,13 +100751,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4321 + 4341 ], "update_columns": [ - 4346 + 4366 ], "where": [ - 4320 + 4340 ], "__typename": [ 78 @@ -100500,46 +100765,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "manual": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "placement_tier": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team": [ - 4287 + 4307 ], "tournament_team_id": [ - 2461 + 2481 ], "trophy_config": [ - 4374 + 4394 ], "__typename": [ 78 @@ -100547,7 +100812,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -100558,10 +100823,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "manual": [ 3 @@ -100573,13 +100838,13 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -100598,10 +100863,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100620,10 +100885,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100642,10 +100907,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100653,7 +100918,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4343 + 4363 ], "ordering": [ 236 @@ -100664,10 +100929,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "id": [ - 4442 + 4462 ], "manual": [ 3 @@ -100682,13 +100947,13 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -100707,10 +100972,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100719,13 +100984,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4322 + 4342 ], "_set": [ - 4335 + 4355 ], "where": [ - 4320 + 4340 ], "__typename": [ 78 @@ -100744,10 +101009,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100766,10 +101031,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100788,10 +101053,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100799,13 +101064,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -100817,13 +101082,13 @@ export default { 38 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -100831,10 +101096,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4358 + 4378 ], "nodes": [ - 4354 + 4374 ], "__typename": [ 78 @@ -100842,7 +101107,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4357 + 4377 ], "__typename": [ 78 @@ -100850,13 +101115,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4376 + 4396 ], "distinct": [ 3 ], "filter": [ - 4363 + 4383 ], "predicate": [ 39 @@ -100867,13 +101132,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4361 + 4381 ], "count": [ 38, { "columns": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -100882,31 +101147,31 @@ export default { } ], "max": [ - 4367 + 4387 ], "min": [ - 4369 + 4389 ], "stddev": [ - 4378 + 4398 ], "stddev_pop": [ - 4380 + 4400 ], "stddev_samp": [ - 4382 + 4402 ], "sum": [ - 4386 + 4406 ], "var_pop": [ - 4390 + 4410 ], "var_samp": [ - 4392 + 4412 ], "variance": [ - 4394 + 4414 ], "__typename": [ 78 @@ -100914,37 +101179,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4362 + 4382 ], "count": [ - 2461 + 2481 ], "max": [ - 4368 + 4388 ], "min": [ - 4370 + 4390 ], "stddev": [ - 4379 + 4399 ], "stddev_pop": [ - 4381 + 4401 ], "stddev_samp": [ - 4383 + 4403 ], "sum": [ - 4387 + 4407 ], "var_pop": [ - 4391 + 4411 ], "var_samp": [ - 4393 + 4413 ], "variance": [ - 4395 + 4415 ], "__typename": [ 78 @@ -100952,10 +101217,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4366 + 4386 ], "on_conflict": [ - 4373 + 4393 ], "__typename": [ 78 @@ -100974,10 +101239,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -100985,22 +101250,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4363 + 4383 ], "_not": [ - 4363 + 4383 ], "_or": [ - 4363 + 4383 ], "created_at": [ - 4005 + 4025 ], "custom_name": [ 80 ], "id": [ - 4444 + 4464 ], "image_url": [ 80 @@ -101012,13 +101277,13 @@ export default { 39 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "updated_at": [ - 4005 + 4025 ], "__typename": [ 78 @@ -101038,13 +101303,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -101056,13 +101321,13 @@ export default { 38 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -101070,13 +101335,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -101088,10 +101353,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -101099,28 +101364,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2461 + 2481 ], "custom_name": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "image_url": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101128,13 +101393,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -101146,10 +101411,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -101157,28 +101422,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2461 + 2481 ], "custom_name": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "image_url": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101189,7 +101454,7 @@ export default { 38 ], "returning": [ - 4354 + 4374 ], "__typename": [ 78 @@ -101197,10 +101462,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4366 + 4386 ], "on_conflict": [ - 4373 + 4393 ], "__typename": [ 78 @@ -101208,13 +101473,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4364 + 4384 ], "update_columns": [ - 4388 + 4408 ], "where": [ - 4363 + 4383 ], "__typename": [ 78 @@ -101222,31 +101487,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2461 + 2481 ], "custom_name": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "image_url": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "updated_at": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101254,7 +101519,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -101263,13 +101528,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -101281,10 +101546,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -101303,10 +101568,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101325,10 +101590,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101347,10 +101612,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101358,7 +101623,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4385 + 4405 ], "ordering": [ 236 @@ -101369,13 +101634,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4004 + 4024 ], "custom_name": [ 78 ], "id": [ - 4442 + 4462 ], "image_url": [ 78 @@ -101387,10 +101652,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "updated_at": [ - 4004 + 4024 ], "__typename": [ 78 @@ -101409,10 +101674,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101421,13 +101686,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4365 + 4385 ], "_set": [ - 4377 + 4397 ], "where": [ - 4363 + 4383 ], "__typename": [ 78 @@ -101446,10 +101711,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101468,10 +101733,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101490,10 +101755,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2461 + 2481 ], "silhouette": [ - 2461 + 2481 ], "__typename": [ 78 @@ -101501,7 +101766,7 @@ export default { }, "tournaments": { "admin": [ - 3419 + 3439 ], "auto_start": [ 3 @@ -101531,7 +101796,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -101588,13 +101853,13 @@ export default { 78 ], "e_tournament_status": [ - 1099 + 1119 ], "has_min_teams": [ 3 ], "id": [ - 4442 + 4462 ], "is_league": [ 3 @@ -101606,10 +101871,10 @@ export default { 3 ], "league_season_division": [ - 1510 + 1530 ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -101621,16 +101886,16 @@ export default { 78 ], "options": [ - 2156 + 2176 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4052, + 4072, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101640,19 +101905,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "organizers_aggregate": [ - 4053, + 4073, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101662,19 +101927,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "player_stats": [ - 5226, + 5246, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101684,19 +101949,19 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], "player_stats_aggregate": [ - 5227, + 5247, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101706,19 +101971,19 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], "results": [ - 5175, + 5195, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -101728,19 +101993,19 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "results_aggregate": [ - 5176, + 5196, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -101750,19 +102015,19 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "rosters": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -101772,19 +102037,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "rosters_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -101794,11 +102059,11 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], @@ -101806,10 +102071,10 @@ export default { 78 ], "stages": [ - 4134, + 4154, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -101819,19 +102084,19 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "stages_aggregate": [ - 4135, + 4155, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -101841,25 +102106,25 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "start": [ - 4004 + 4024 ], "status": [ - 1104 + 1124 ], "teams": [ - 4267, + 4287, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -101869,19 +102134,19 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "teams_aggregate": [ - 4268, + 4288, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -101891,19 +102156,19 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "trophies": [ - 4309, + 4329, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -101913,19 +102178,19 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "trophies_aggregate": [ - 4310, + 4330, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -101935,11 +102200,11 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], @@ -101947,10 +102212,10 @@ export default { 3 ], "trophy_configs": [ - 4354, + 4374, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -101960,19 +102225,19 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], "trophy_configs_aggregate": [ - 4355, + 4375, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -101982,11 +102247,11 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], @@ -101996,10 +102261,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4402 + 4422 ], "nodes": [ - 4396 + 4416 ], "__typename": [ 78 @@ -102007,13 +102272,13 @@ export default { }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 4399 + 4419 ], "bool_or": [ - 4400 + 4420 ], "count": [ - 4401 + 4421 ], "__typename": [ 78 @@ -102021,13 +102286,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4421 + 4441 ], "distinct": [ 3 ], "filter": [ - 4407 + 4427 ], "predicate": [ 4 @@ -102038,13 +102303,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4422 + 4442 ], "distinct": [ 3 ], "filter": [ - 4407 + 4427 ], "predicate": [ 4 @@ -102055,13 +102320,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4420 + 4440 ], "distinct": [ 3 ], "filter": [ - 4407 + 4427 ], "predicate": [ 39 @@ -102072,13 +102337,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4405 + 4425 ], "count": [ 38, { "columns": [ - 4420, + 4440, "[tournaments_select_column!]" ], "distinct": [ @@ -102087,31 +102352,31 @@ export default { } ], "max": [ - 4411 + 4431 ], "min": [ - 4413 + 4433 ], "stddev": [ - 4424 + 4444 ], "stddev_pop": [ - 4426 + 4446 ], "stddev_samp": [ - 4428 + 4448 ], "sum": [ - 4432 + 4452 ], "var_pop": [ - 4436 + 4456 ], "var_samp": [ - 4438 + 4458 ], "variance": [ - 4440 + 4460 ], "__typename": [ 78 @@ -102119,37 +102384,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4406 + 4426 ], "count": [ - 2461 + 2481 ], "max": [ - 4412 + 4432 ], "min": [ - 4414 + 4434 ], "stddev": [ - 4425 + 4445 ], "stddev_pop": [ - 4427 + 4447 ], "stddev_samp": [ - 4429 + 4449 ], "sum": [ - 4433 + 4453 ], "var_pop": [ - 4437 + 4457 ], "var_samp": [ - 4439 + 4459 ], "variance": [ - 4441 + 4461 ], "__typename": [ 78 @@ -102157,10 +102422,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4410 + 4430 ], "on_conflict": [ - 4417 + 4437 ], "__typename": [ 78 @@ -102182,7 +102447,7 @@ export default { }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -102190,16 +102455,16 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4407 + 4427 ], "_not": [ - 4407 + 4427 ], "_or": [ - 4407 + 4427 ], "admin": [ - 3423 + 3443 ], "auto_start": [ 4 @@ -102229,7 +102494,7 @@ export default { 4 ], "created_at": [ - 4005 + 4025 ], "description": [ 80 @@ -102286,13 +102551,13 @@ export default { 80 ], "e_tournament_status": [ - 1102 + 1122 ], "has_min_teams": [ 4 ], "id": [ - 4444 + 4464 ], "is_league": [ 4 @@ -102304,10 +102569,10 @@ export default { 4 ], "league_season_division": [ - 1517 + 1537 ], "match_options_id": [ - 4444 + 4464 ], "max_players_per_lineup": [ 39 @@ -102319,70 +102584,70 @@ export default { 80 ], "options": [ - 2160 + 2180 ], "organizer_steam_id": [ 182 ], "organizers": [ - 4061 + 4081 ], "organizers_aggregate": [ - 4054 + 4074 ], "player_stats": [ - 5245 + 5265 ], "player_stats_aggregate": [ - 5228 + 5248 ], "results": [ - 5194 + 5214 ], "results_aggregate": [ - 5177 + 5197 ], "rosters": [ - 4235 + 4255 ], "rosters_aggregate": [ - 4228 + 4248 ], "scheduling_mode": [ 80 ], "stages": [ - 4146 + 4166 ], "stages_aggregate": [ - 4136 + 4156 ], "start": [ - 4005 + 4025 ], "status": [ - 1105 + 1125 ], "teams": [ - 4276 + 4296 ], "teams_aggregate": [ - 4269 + 4289 ], "trophies": [ - 4320 + 4340 ], "trophies_aggregate": [ - 4311 + 4331 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4363 + 4383 ], "trophy_configs_aggregate": [ - 4356 + 4376 ], "__typename": [ 78 @@ -102399,13 +102664,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3430 + 3450 ], "auto_start": [ 3 ], "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -102462,64 +102727,64 @@ export default { 78 ], "e_tournament_status": [ - 1110 + 1130 ], "id": [ - 4442 + 4462 ], "is_league": [ 3 ], "league_season_division": [ - 1525 + 1545 ], "match_options_id": [ - 4442 + 4462 ], "name": [ 78 ], "options": [ - 2167 + 2187 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4058 + 4078 ], "player_stats": [ - 5242 + 5262 ], "results": [ - 5191 + 5211 ], "rosters": [ - 4232 + 4252 ], "scheduling_mode": [ 78 ], "stages": [ - 4143 + 4163 ], "start": [ - 4004 + 4024 ], "status": [ - 1104 + 1124 ], "teams": [ - 4273 + 4293 ], "trophies": [ - 4317 + 4337 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4360 + 4380 ], "__typename": [ 78 @@ -102527,7 +102792,7 @@ export default { }, "tournaments_max_fields": { "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -102542,10 +102807,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -102563,7 +102828,7 @@ export default { 78 ], "start": [ - 4004 + 4024 ], "__typename": [ 78 @@ -102571,37 +102836,37 @@ export default { }, "tournaments_max_order_by": { "created_at": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "discord_guild_id": [ - 2461 + 2481 ], "discord_role_id": [ - 2461 + 2481 ], "discord_webhook": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "organizer_steam_id": [ - 2461 + 2481 ], "scheduling_mode": [ - 2461 + 2481 ], "start": [ - 2461 + 2481 ], "__typename": [ 78 @@ -102609,7 +102874,7 @@ export default { }, "tournaments_min_fields": { "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -102624,10 +102889,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_options_id": [ - 4442 + 4462 ], "max_players_per_lineup": [ 38 @@ -102645,7 +102910,7 @@ export default { 78 ], "start": [ - 4004 + 4024 ], "__typename": [ 78 @@ -102653,37 +102918,37 @@ export default { }, "tournaments_min_order_by": { "created_at": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "discord_guild_id": [ - 2461 + 2481 ], "discord_role_id": [ - 2461 + 2481 ], "discord_webhook": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "match_options_id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "organizer_steam_id": [ - 2461 + 2481 ], "scheduling_mode": [ - 2461 + 2481 ], "start": [ - 2461 + 2481 ], "__typename": [ 78 @@ -102694,7 +102959,7 @@ export default { 38 ], "returning": [ - 4396 + 4416 ], "__typename": [ 78 @@ -102702,10 +102967,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4410 + 4430 ], "on_conflict": [ - 4417 + 4437 ], "__typename": [ 78 @@ -102713,13 +102978,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4408 + 4428 ], "update_columns": [ - 4434 + 4454 ], "where": [ - 4407 + 4427 ], "__typename": [ 78 @@ -102727,166 +102992,166 @@ export default { }, "tournaments_order_by": { "admin": [ - 3432 + 3452 ], "auto_start": [ - 2461 + 2481 ], "can_cancel": [ - 2461 + 2481 ], "can_close_registration": [ - 2461 + 2481 ], "can_join": [ - 2461 + 2481 ], "can_open_registration": [ - 2461 + 2481 ], "can_pause": [ - 2461 + 2481 ], "can_resume": [ - 2461 + 2481 ], "can_setup": [ - 2461 + 2481 ], "can_start": [ - 2461 + 2481 ], "created_at": [ - 2461 + 2481 ], "description": [ - 2461 + 2481 ], "discord_guild_id": [ - 2461 + 2481 ], "discord_notifications_enabled": [ - 2461 + 2481 ], "discord_notify_Canceled": [ - 2461 + 2481 ], "discord_notify_Finished": [ - 2461 + 2481 ], "discord_notify_Forfeit": [ - 2461 + 2481 ], "discord_notify_Live": [ - 2461 + 2481 ], "discord_notify_MapPaused": [ - 2461 + 2481 ], "discord_notify_PickingPlayers": [ - 2461 + 2481 ], "discord_notify_Scheduled": [ - 2461 + 2481 ], "discord_notify_Surrendered": [ - 2461 + 2481 ], "discord_notify_Tie": [ - 2461 + 2481 ], "discord_notify_Veto": [ - 2461 + 2481 ], "discord_notify_WaitingForCheckIn": [ - 2461 + 2481 ], "discord_notify_WaitingForServer": [ - 2461 + 2481 ], "discord_role_id": [ - 2461 + 2481 ], "discord_voice_enabled": [ - 2461 + 2481 ], "discord_webhook": [ - 2461 + 2481 ], "e_tournament_status": [ - 1112 + 1132 ], "has_min_teams": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "is_league": [ - 2461 + 2481 ], "is_organizer": [ - 2461 + 2481 ], "joined_tournament": [ - 2461 + 2481 ], "league_season_division": [ - 1527 + 1547 ], "match_options_id": [ - 2461 + 2481 ], "max_players_per_lineup": [ - 2461 + 2481 ], "min_players_per_lineup": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "options": [ - 2169 + 2189 ], "organizer_steam_id": [ - 2461 + 2481 ], "organizers_aggregate": [ - 4057 + 4077 ], "player_stats_aggregate": [ - 5241 + 5261 ], "results_aggregate": [ - 5190 + 5210 ], "rosters_aggregate": [ - 4231 + 4251 ], "scheduling_mode": [ - 2461 + 2481 ], "stages_aggregate": [ - 4141 + 4161 ], "start": [ - 2461 + 2481 ], "status": [ - 2461 + 2481 ], "teams_aggregate": [ - 4272 + 4292 ], "trophies_aggregate": [ - 4316 + 4336 ], "trophies_enabled": [ - 2461 + 2481 ], "trophy_configs_aggregate": [ - 4359 + 4379 ], "__typename": [ 78 @@ -102894,7 +103159,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -102908,7 +103173,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -102965,13 +103230,13 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_league": [ 3 ], "match_options_id": [ - 4442 + 4462 ], "name": [ 78 @@ -102983,10 +103248,10 @@ export default { 78 ], "start": [ - 4004 + 4024 ], "status": [ - 1104 + 1124 ], "trophies_enabled": [ 3 @@ -103011,7 +103276,7 @@ export default { }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103033,7 +103298,7 @@ export default { }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103055,7 +103320,7 @@ export default { }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103063,7 +103328,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4431 + 4451 ], "ordering": [ 236 @@ -103077,7 +103342,7 @@ export default { 3 ], "created_at": [ - 4004 + 4024 ], "description": [ 78 @@ -103134,13 +103399,13 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "is_league": [ 3 ], "match_options_id": [ - 4442 + 4462 ], "name": [ 78 @@ -103152,10 +103417,10 @@ export default { 78 ], "start": [ - 4004 + 4024 ], "status": [ - 1104 + 1124 ], "trophies_enabled": [ 3 @@ -103180,7 +103445,7 @@ export default { }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103189,13 +103454,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4409 + 4429 ], "_set": [ - 4423 + 4443 ], "where": [ - 4407 + 4427 ], "__typename": [ 78 @@ -103217,7 +103482,7 @@ export default { }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103239,7 +103504,7 @@ export default { }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103261,7 +103526,7 @@ export default { }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103270,37 +103535,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4442 + 4462 ], "_contains": [ - 4442 + 4462 ], "_eq": [ - 4442 + 4462 ], "_gt": [ - 4442 + 4462 ], "_gte": [ - 4442 + 4462 ], "_in": [ - 4442 + 4462 ], "_is_null": [ 3 ], "_lt": [ - 4442 + 4462 ], "_lte": [ - 4442 + 4462 ], "_neq": [ - 4442 + 4462 ], "_nin": [ - 4442 + 4462 ], "__typename": [ 78 @@ -103308,31 +103573,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4442 + 4462 ], "_gt": [ - 4442 + 4462 ], "_gte": [ - 4442 + 4462 ], "_in": [ - 4442 + 4462 ], "_is_null": [ 3 ], "_lt": [ - 4442 + 4462 ], "_lte": [ - 4442 + 4462 ], "_neq": [ - 4442 + 4462 ], "_nin": [ - 4442 + 4462 ], "__typename": [ 78 @@ -103387,10 +103652,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4447 + 4467 ], "nodes": [ - 4445 + 4465 ], "__typename": [ 78 @@ -103398,13 +103663,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4448 + 4468 ], "count": [ 38, { "columns": [ - 4453, + 4473, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -103413,31 +103678,31 @@ export default { } ], "max": [ - 4450 + 4470 ], "min": [ - 4451 + 4471 ], "stddev": [ - 4454 + 4474 ], "stddev_pop": [ - 4455 + 4475 ], "stddev_samp": [ - 4456 + 4476 ], "sum": [ - 4459 + 4479 ], "var_pop": [ - 4460 + 4480 ], "var_samp": [ - 4461 + 4481 ], "variance": [ - 4462 + 4482 ], "__typename": [ 78 @@ -103480,13 +103745,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4449 + 4469 ], "_not": [ - 4449 + 4469 ], "_or": [ - 4449 + 4469 ], "demo_free_gpu_nodes": [ 39 @@ -103606,46 +103871,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2461 + 2481 ], "demo_in_progress": [ - 2461 + 2481 ], "demo_total_gpu_nodes": [ - 2461 + 2481 ], "free_gpu_nodes": [ - 2461 + 2481 ], "free_gpu_nodes_for_batch": [ - 2461 + 2481 ], "highlights_in_progress": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "live_in_progress": [ - 2461 + 2481 ], "registered_gpu_nodes": [ - 2461 + 2481 ], "rendering_total_gpu_nodes": [ - 2461 + 2481 ], "renders_paused_for_active_match": [ - 2461 + 2481 ], "streaming_free_gpu_nodes": [ - 2461 + 2481 ], "streaming_total_gpu_nodes": [ - 2461 + 2481 ], "total_gpu_nodes": [ - 2461 + 2481 ], "__typename": [ 78 @@ -103759,7 +104024,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4458 + 4478 ], "ordering": [ 236 @@ -103963,22 +104228,22 @@ export default { 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1692 + 1712 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "losses": [ 38 @@ -104008,13 +104273,13 @@ export default { 38 ], "season_division": [ - 1510 + 1530 ], "team_season": [ - 1650 + 1670 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -104025,10 +104290,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4467 + 4487 ], "nodes": [ - 4463 + 4483 ], "__typename": [ 78 @@ -104036,7 +104301,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4466 + 4486 ], "__typename": [ 78 @@ -104044,13 +104309,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4479 + 4499 ], "distinct": [ 3 ], "filter": [ - 4472 + 4492 ], "predicate": [ 39 @@ -104061,13 +104326,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4470 + 4490 ], "count": [ 38, { "columns": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -104076,31 +104341,31 @@ export default { } ], "max": [ - 4474 + 4494 ], "min": [ - 4476 + 4496 ], "stddev": [ - 4480 + 4500 ], "stddev_pop": [ - 4482 + 4502 ], "stddev_samp": [ - 4484 + 4504 ], "sum": [ - 4488 + 4508 ], "var_pop": [ - 4490 + 4510 ], "var_samp": [ - 4492 + 4512 ], "variance": [ - 4494 + 4514 ], "__typename": [ 78 @@ -104108,37 +104373,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4471 + 4491 ], "count": [ - 2461 + 2481 ], "max": [ - 4475 + 4495 ], "min": [ - 4477 + 4497 ], "stddev": [ - 4481 + 4501 ], "stddev_pop": [ - 4483 + 4503 ], "stddev_samp": [ - 4485 + 4505 ], "sum": [ - 4489 + 4509 ], "var_pop": [ - 4491 + 4511 ], "var_samp": [ - 4493 + 4513 ], "variance": [ - 4495 + 4515 ], "__typename": [ 78 @@ -104146,7 +104411,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4473 + 4493 ], "__typename": [ 78 @@ -104195,40 +104460,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104236,13 +104501,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4472 + 4492 ], "_not": [ - 4472 + 4492 ], "_or": [ - 4472 + 4492 ], "head_to_head_match_wins": [ 39 @@ -104251,22 +104516,22 @@ export default { 39 ], "league_division_id": [ - 4444 + 4464 ], "league_season_division_id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "league_team": [ - 1695 + 1715 ], "league_team_id": [ - 4444 + 4464 ], "league_team_season_id": [ - 4444 + 4464 ], "losses": [ 39 @@ -104296,13 +104561,13 @@ export default { 39 ], "season_division": [ - 1517 + 1537 ], "team_season": [ - 1659 + 1679 ], "tournament_team_id": [ - 4444 + 4464 ], "wins": [ 39 @@ -104319,22 +104584,22 @@ export default { 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1701 + 1721 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "losses": [ 38 @@ -104364,13 +104629,13 @@ export default { 38 ], "season_division": [ - 1525 + 1545 ], "team_season": [ - 1668 + 1688 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -104387,19 +104652,19 @@ export default { 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "losses": [ 38 @@ -104429,7 +104694,7 @@ export default { 38 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -104440,58 +104705,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104505,19 +104770,19 @@ export default { 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "losses": [ 38 @@ -104547,7 +104812,7 @@ export default { 38 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -104558,58 +104823,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104617,67 +104882,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team": [ - 1703 + 1723 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "season_division": [ - 1527 + 1547 ], "team_season": [ - 1670 + 1690 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104727,40 +104992,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104809,40 +105074,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104891,40 +105156,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -104932,7 +105197,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4487 + 4507 ], "ordering": [ 236 @@ -104949,19 +105214,19 @@ export default { 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "losses": [ 38 @@ -104991,7 +105256,7 @@ export default { 38 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -105043,40 +105308,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105125,40 +105390,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105207,40 +105472,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105289,40 +105554,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "round_diff": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105336,40 +105601,40 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1692 + 1712 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "matches_played": [ 38 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -105380,10 +105645,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4510 + 4530 ], "nodes": [ - 4496 + 4516 ], "__typename": [ 78 @@ -105391,31 +105656,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4499 + 4519 ], "corr": [ - 4500 + 4520 ], "count": [ - 4502 + 4522 ], "covar_samp": [ - 4503 + 4523 ], "max": [ - 4505 + 4525 ], "min": [ - 4506 + 4526 ], "stddev_samp": [ - 4507 + 4527 ], "sum": [ - 4508 + 4528 ], "var_samp": [ - 4509 + 4529 ], "__typename": [ 78 @@ -105423,16 +105688,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4523 + 4543 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105440,16 +105705,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4501 + 4521 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105457,10 +105722,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4524 + 4544 ], "Y": [ - 4524 + 4544 ], "__typename": [ 78 @@ -105468,13 +105733,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4522 + 4542 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ 39 @@ -105485,16 +105750,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4504 + 4524 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105502,10 +105767,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4525 + 4545 ], "Y": [ - 4525 + 4545 ], "__typename": [ 78 @@ -105513,16 +105778,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4526 + 4546 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105530,16 +105795,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4527 + 4547 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105547,16 +105812,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4528 + 4548 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105564,16 +105829,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4529 + 4549 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105581,16 +105846,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4530 + 4550 ], "distinct": [ 3 ], "filter": [ - 4515 + 4535 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -105598,13 +105863,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4513 + 4533 ], "count": [ 38, { "columns": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -105613,31 +105878,31 @@ export default { } ], "max": [ - 4517 + 4537 ], "min": [ - 4519 + 4539 ], "stddev": [ - 4531 + 4551 ], "stddev_pop": [ - 4533 + 4553 ], "stddev_samp": [ - 4535 + 4555 ], "sum": [ - 4539 + 4559 ], "var_pop": [ - 4541 + 4561 ], "var_samp": [ - 4543 + 4563 ], "variance": [ - 4545 + 4565 ], "__typename": [ 78 @@ -105645,37 +105910,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4514 + 4534 ], "count": [ - 2461 + 2481 ], "max": [ - 4518 + 4538 ], "min": [ - 4520 + 4540 ], "stddev": [ - 4532 + 4552 ], "stddev_pop": [ - 4534 + 4554 ], "stddev_samp": [ - 4536 + 4556 ], "sum": [ - 4540 + 4560 ], "var_pop": [ - 4542 + 4562 ], "var_samp": [ - 4544 + 4564 ], "variance": [ - 4546 + 4566 ], "__typename": [ 78 @@ -105683,7 +105948,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4516 + 4536 ], "__typename": [ 78 @@ -105720,28 +105985,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105749,13 +106014,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4515 + 4535 ], "_not": [ - 4515 + 4535 ], "_or": [ - 4515 + 4535 ], "assists": [ 39 @@ -105764,40 +106029,40 @@ export default { 39 ], "headshot_percentage": [ - 1181 + 1201 ], "headshots": [ 39 ], "kdr": [ - 1181 + 1201 ], "kills": [ 39 ], "league_division_id": [ - 4444 + 4464 ], "league_season_division_id": [ - 4444 + 4464 ], "league_season_id": [ - 4444 + 4464 ], "league_team": [ - 1695 + 1715 ], "league_team_id": [ - 4444 + 4464 ], "league_team_season_id": [ - 4444 + 4464 ], "matches_played": [ 39 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -105814,40 +106079,40 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team": [ - 1701 + 1721 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "matches_played": [ 38 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 @@ -105864,31 +106129,31 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "matches_played": [ 38 @@ -105902,43 +106167,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -105952,31 +106217,31 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "matches_played": [ 38 @@ -105990,43 +106255,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106034,49 +106299,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "league_division_id": [ - 2461 + 2481 ], "league_season_division_id": [ - 2461 + 2481 ], "league_season_id": [ - 2461 + 2481 ], "league_team": [ - 1703 + 1723 ], "league_team_id": [ - 2461 + 2481 ], "league_team_season_id": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106122,28 +106387,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106180,28 +106445,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106238,28 +106503,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106267,7 +106532,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4538 + 4558 ], "ordering": [ 236 @@ -106284,31 +106549,31 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 ], "league_division_id": [ - 4442 + 4462 ], "league_season_division_id": [ - 4442 + 4462 ], "league_season_id": [ - 4442 + 4462 ], "league_team_id": [ - 4442 + 4462 ], "league_team_season_id": [ - 4442 + 4462 ], "matches_played": [ 38 @@ -106328,13 +106593,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -106351,28 +106616,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106409,28 +106674,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106467,28 +106732,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106525,28 +106790,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106560,19 +106825,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 ], "player": [ - 3419 + 3439 ], "steam_id": [ 180 @@ -106583,10 +106848,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4549 + 4569 ], "nodes": [ - 4547 + 4567 ], "__typename": [ 78 @@ -106594,13 +106859,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4550 + 4570 ], "count": [ 38, { "columns": [ - 4559, + 4579, "[v_match_captains_select_column!]" ], "distinct": [ @@ -106609,31 +106874,31 @@ export default { } ], "max": [ - 4554 + 4574 ], "min": [ - 4555 + 4575 ], "stddev": [ - 4561 + 4581 ], "stddev_pop": [ - 4562 + 4582 ], "stddev_samp": [ - 4563 + 4583 ], "sum": [ - 4566 + 4586 ], "var_pop": [ - 4568 + 4588 ], "var_samp": [ - 4569 + 4589 ], "variance": [ - 4570 + 4590 ], "__typename": [ 78 @@ -106649,13 +106914,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4551 + 4571 ], "_not": [ - 4551 + 4571 ], "_or": [ - 4551 + 4571 ], "captain": [ 4 @@ -106664,19 +106929,19 @@ export default { 80 ], "id": [ - 4444 + 4464 ], "lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "placeholder_name": [ 80 ], "player": [ - 3423 + 3443 ], "steam_id": [ 182 @@ -106701,19 +106966,19 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 ], "player": [ - 3430 + 3450 ], "steam_id": [ 180 @@ -106727,10 +106992,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -106747,10 +107012,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -106767,7 +107032,7 @@ export default { 38 ], "returning": [ - 4547 + 4567 ], "__typename": [ 78 @@ -106775,7 +107040,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4553 + 4573 ], "__typename": [ 78 @@ -106783,28 +107048,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2461 + 2481 ], "discord_id": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "placeholder_name": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -106819,10 +107084,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -106860,7 +107125,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4565 + 4585 ], "ordering": [ 236 @@ -106877,10 +107142,10 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "placeholder_name": [ 78 @@ -106902,13 +107167,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4552 + 4572 ], "_set": [ - 4560 + 4580 ], "where": [ - 4551 + 4571 ], "__typename": [ 78 @@ -106943,7 +107208,7 @@ export default { 38 ], "clutcher": [ - 3419 + 3439 ], "clutcher_steam_id": [ 180 @@ -106952,22 +107217,22 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "outcome": [ 78 @@ -106984,10 +107249,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4575 + 4595 ], "nodes": [ - 4571 + 4591 ], "__typename": [ 78 @@ -106995,7 +107260,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4574 + 4594 ], "__typename": [ 78 @@ -107003,13 +107268,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4587 + 4607 ], "distinct": [ 3 ], "filter": [ - 4580 + 4600 ], "predicate": [ 39 @@ -107020,13 +107285,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4578 + 4598 ], "count": [ 38, { "columns": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -107035,31 +107300,31 @@ export default { } ], "max": [ - 4582 + 4602 ], "min": [ - 4584 + 4604 ], "stddev": [ - 4588 + 4608 ], "stddev_pop": [ - 4590 + 4610 ], "stddev_samp": [ - 4592 + 4612 ], "sum": [ - 4596 + 4616 ], "var_pop": [ - 4598 + 4618 ], "var_samp": [ - 4600 + 4620 ], "variance": [ - 4602 + 4622 ], "__typename": [ 78 @@ -107067,37 +107332,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4579 + 4599 ], "count": [ - 2461 + 2481 ], "max": [ - 4583 + 4603 ], "min": [ - 4585 + 4605 ], "stddev": [ - 4589 + 4609 ], "stddev_pop": [ - 4591 + 4611 ], "stddev_samp": [ - 4593 + 4613 ], "sum": [ - 4597 + 4617 ], "var_pop": [ - 4599 + 4619 ], "var_samp": [ - 4601 + 4621 ], "variance": [ - 4603 + 4623 ], "__typename": [ 78 @@ -107105,7 +107370,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4581 + 4601 ], "__typename": [ 78 @@ -107130,16 +107395,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107147,19 +107412,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4580 + 4600 ], "_not": [ - 4580 + 4600 ], "_or": [ - 4580 + 4600 ], "against_count": [ 39 ], "clutcher": [ - 3423 + 3443 ], "clutcher_steam_id": [ 182 @@ -107168,22 +107433,22 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "outcome": [ 80 @@ -107203,7 +107468,7 @@ export default { 38 ], "clutcher": [ - 3430 + 3450 ], "clutcher_steam_id": [ 180 @@ -107212,22 +107477,22 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "outcome": [ 78 @@ -107253,13 +107518,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "outcome": [ 78 @@ -107276,31 +107541,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "outcome": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107317,13 +107582,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "outcome": [ 78 @@ -107340,31 +107605,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "outcome": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107372,43 +107637,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher": [ - 3432 + 3452 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "outcome": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107434,16 +107699,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107468,16 +107733,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107502,16 +107767,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107519,7 +107784,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4595 + 4615 ], "ordering": [ 236 @@ -107539,13 +107804,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "outcome": [ 78 @@ -107579,16 +107844,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107613,16 +107878,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107647,16 +107912,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107681,16 +107946,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2461 + 2481 ], "clutcher_steam_id": [ - 2461 + 2481 ], "kills_in_clutch": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107707,16 +107972,16 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "victim_side": [ 78 @@ -107733,10 +107998,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4606 + 4626 ], "nodes": [ - 4604 + 4624 ], "__typename": [ 78 @@ -107744,13 +108009,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4607 + 4627 ], "count": [ 38, { "columns": [ - 4612, + 4632, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -107759,31 +108024,31 @@ export default { } ], "max": [ - 4609 + 4629 ], "min": [ - 4610 + 4630 ], "stddev": [ - 4613 + 4633 ], "stddev_pop": [ - 4614 + 4634 ], "stddev_samp": [ - 4615 + 4635 ], "sum": [ - 4618 + 4638 ], "var_pop": [ - 4619 + 4639 ], "var_samp": [ - 4620 + 4640 ], "variance": [ - 4621 + 4641 ], "__typename": [ 78 @@ -107805,13 +108070,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4608 + 4628 ], "_not": [ - 4608 + 4628 ], "_or": [ - 4608 + 4628 ], "killer_side": [ 80 @@ -107823,16 +108088,16 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "victim_side": [ 80 @@ -107858,10 +108123,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "victim_side": [ 78 @@ -107887,10 +108152,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "victim_side": [ 78 @@ -107907,34 +108172,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2461 + 2481 ], "killer_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "victim_side": [ - 2461 + 2481 ], "victim_steam_id": [ - 2461 + 2481 ], "weapon": [ - 2461 + 2481 ], "__typename": [ 78 @@ -107985,7 +108250,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4617 + 4637 ], "ordering": [ 236 @@ -108005,10 +108270,10 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "victim_side": [ 78 @@ -108081,22 +108346,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -108116,10 +108381,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4624 + 4644 ], "nodes": [ - 4622 + 4642 ], "__typename": [ 78 @@ -108127,13 +108392,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4625 + 4645 ], "count": [ 38, { "columns": [ - 4630, + 4650, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -108142,31 +108407,31 @@ export default { } ], "max": [ - 4627 + 4647 ], "min": [ - 4628 + 4648 ], "stddev": [ - 4631 + 4651 ], "stddev_pop": [ - 4632 + 4652 ], "stddev_samp": [ - 4633 + 4653 ], "sum": [ - 4636 + 4656 ], "var_pop": [ - 4637 + 4657 ], "var_samp": [ - 4638 + 4658 ], "variance": [ - 4639 + 4659 ], "__typename": [ 78 @@ -108185,31 +108450,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4626 + 4646 ], "_not": [ - 4626 + 4646 ], "_or": [ - 4626 + 4646 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "matchup": [ 80 @@ -108229,13 +108494,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -108255,13 +108520,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -108281,34 +108546,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "matchup": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -108350,7 +108615,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4635 + 4655 ], "ordering": [ 236 @@ -108361,13 +108626,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -108443,22 +108708,22 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "opening_attempts": [ 38 @@ -108499,10 +108764,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 4642 + 4662 ], "nodes": [ - 4640 + 4660 ], "__typename": [ 78 @@ -108510,13 +108775,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 4643 + 4663 ], "count": [ 38, { "columns": [ - 4648, + 4668, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -108525,31 +108790,31 @@ export default { } ], "max": [ - 4645 + 4665 ], "min": [ - 4646 + 4666 ], "stddev": [ - 4649 + 4669 ], "stddev_pop": [ - 4650 + 4670 ], "stddev_samp": [ - 4651 + 4671 ], "sum": [ - 4654 + 4674 ], "var_pop": [ - 4655 + 4675 ], "var_samp": [ - 4656 + 4676 ], "variance": [ - 4657 + 4677 ], "__typename": [ 78 @@ -108604,13 +108869,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 4644 + 4664 ], "_not": [ - 4644 + 4664 ], "_or": [ - 4644 + 4664 ], "man_adv_rounds": [ 39 @@ -108625,22 +108890,22 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "opening_attempts": [ 39 @@ -108693,13 +108958,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "opening_attempts": [ 38 @@ -108752,13 +109017,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "opening_attempts": [ 38 @@ -108799,67 +109064,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2461 + 2481 ], "man_adv_wins": [ - 2461 + 2481 ], "man_dis_rounds": [ - 2461 + 2481 ], "man_dis_wins": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "opening_attempts": [ - 2461 + 2481 ], "opening_wins": [ - 2461 + 2481 ], "pistol_rounds": [ - 2461 + 2481 ], "pistol_wins": [ - 2461 + 2481 ], "round_wins": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "won_buy_eco": [ - 2461 + 2481 ], "won_buy_force": [ - 2461 + 2481 ], "won_buy_full": [ - 2461 + 2481 ], "won_buy_pistol": [ - 2461 + 2481 ], "__typename": [ 78 @@ -109009,7 +109274,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 4653 + 4673 ], "ordering": [ 236 @@ -109032,13 +109297,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "opening_attempts": [ 38 @@ -109270,7 +109535,7 @@ export default { 3 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109281,10 +109546,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 4660 + 4680 ], "nodes": [ - 4658 + 4678 ], "__typename": [ 78 @@ -109292,13 +109557,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 4661 + 4681 ], "count": [ 38, { "columns": [ - 4669, + 4689, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -109307,31 +109572,31 @@ export default { } ], "max": [ - 4665 + 4685 ], "min": [ - 4666 + 4686 ], "stddev": [ - 4671 + 4691 ], "stddev_pop": [ - 4672 + 4692 ], "stddev_samp": [ - 4673 + 4693 ], "sum": [ - 4676 + 4696 ], "var_pop": [ - 4678 + 4698 ], "var_samp": [ - 4679 + 4699 ], "variance": [ - 4680 + 4700 ], "__typename": [ 78 @@ -109347,19 +109612,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4662 + 4682 ], "_not": [ - 4662 + 4682 ], "_or": [ - 4662 + 4682 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4444 + 4464 ], "round": [ 39 @@ -109381,7 +109646,7 @@ export default { 3 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109392,7 +109657,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109403,7 +109668,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109417,7 +109682,7 @@ export default { 38 ], "returning": [ - 4658 + 4678 ], "__typename": [ 78 @@ -109425,13 +109690,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -109443,7 +109708,7 @@ export default { 3 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109478,7 +109743,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4675 + 4695 ], "ordering": [ 236 @@ -109492,7 +109757,7 @@ export default { 3 ], "match_map_id": [ - 4442 + 4462 ], "round": [ 38 @@ -109511,13 +109776,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4663 + 4683 ], "_set": [ - 4670 + 4690 ], "where": [ - 4662 + 4682 ], "__typename": [ 78 @@ -109555,28 +109820,28 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 ], "player": [ - 3419 + 3439 ], "rounds": [ 38 @@ -109593,10 +109858,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4683 + 4703 ], "nodes": [ - 4681 + 4701 ], "__typename": [ 78 @@ -109604,13 +109869,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4684 + 4704 ], "count": [ 38, { "columns": [ - 4689, + 4709, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -109619,31 +109884,31 @@ export default { } ], "max": [ - 4686 + 4706 ], "min": [ - 4687 + 4707 ], "stddev": [ - 4690 + 4710 ], "stddev_pop": [ - 4691 + 4711 ], "stddev_samp": [ - 4692 + 4712 ], "sum": [ - 4695 + 4715 ], "var_pop": [ - 4696 + 4716 ], "var_samp": [ - 4697 + 4717 ], "variance": [ - 4698 + 4718 ], "__typename": [ 78 @@ -109668,13 +109933,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4685 + 4705 ], "_not": [ - 4685 + 4705 ], "_or": [ - 4685 + 4705 ], "deaths": [ 39 @@ -109683,28 +109948,28 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "matchup": [ 80 ], "player": [ - 3423 + 3443 ], "rounds": [ 39 @@ -109727,13 +109992,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -109759,13 +110024,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -109785,43 +110050,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "matchup": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "rounds": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -109881,7 +110146,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4694 + 4714 ], "ordering": [ 236 @@ -109898,13 +110163,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "matchup": [ 78 @@ -109998,25 +110263,25 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1956 + 1976 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "side": [ 78 @@ -110036,10 +110301,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4703 + 4723 ], "nodes": [ - 4699 + 4719 ], "__typename": [ 78 @@ -110047,7 +110312,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4702 + 4722 ], "__typename": [ 78 @@ -110055,13 +110320,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4715 + 4735 ], "distinct": [ 3 ], "filter": [ - 4708 + 4728 ], "predicate": [ 39 @@ -110072,13 +110337,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4706 + 4726 ], "count": [ 38, { "columns": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -110087,31 +110352,31 @@ export default { } ], "max": [ - 4710 + 4730 ], "min": [ - 4712 + 4732 ], "stddev": [ - 4716 + 4736 ], "stddev_pop": [ - 4718 + 4738 ], "stddev_samp": [ - 4720 + 4740 ], "sum": [ - 4724 + 4744 ], "var_pop": [ - 4726 + 4746 ], "var_samp": [ - 4728 + 4748 ], "variance": [ - 4730 + 4750 ], "__typename": [ 78 @@ -110119,37 +110384,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4707 + 4727 ], "count": [ - 2461 + 2481 ], "max": [ - 4711 + 4731 ], "min": [ - 4713 + 4733 ], "stddev": [ - 4717 + 4737 ], "stddev_pop": [ - 4719 + 4739 ], "stddev_samp": [ - 4721 + 4741 ], "sum": [ - 4725 + 4745 ], "var_pop": [ - 4727 + 4747 ], "var_samp": [ - 4729 + 4749 ], "variance": [ - 4731 + 4751 ], "__typename": [ 78 @@ -110157,7 +110422,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4709 + 4729 ], "__typename": [ 78 @@ -110185,19 +110450,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110205,13 +110470,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4708 + 4728 ], "_not": [ - 4708 + 4728 ], "_or": [ - 4708 + 4728 ], "attempts": [ 39 @@ -110220,25 +110485,25 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_lineup": [ - 1965 + 1985 ], "match_lineup_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "side": [ 80 @@ -110264,25 +110529,25 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_lineup": [ - 1974 + 1994 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "side": [ 78 @@ -110308,13 +110573,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "side": [ 78 @@ -110334,31 +110599,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110372,13 +110637,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "side": [ 78 @@ -110398,31 +110663,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "side": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110430,43 +110695,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_lineup": [ - 1976 + 1996 ], "match_lineup_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "side": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110495,19 +110760,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110535,19 +110800,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110575,19 +110840,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110595,7 +110860,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4723 + 4743 ], "ordering": [ 236 @@ -110612,13 +110877,13 @@ export default { 38 ], "match_id": [ - 4442 + 4462 ], "match_lineup_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "side": [ 78 @@ -110658,19 +110923,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110698,19 +110963,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110738,19 +111003,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110778,19 +111043,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "traded_deaths": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -110804,10 +111069,10 @@ export default { 180 ], "nemsis": [ - 3419 + 3439 ], "player": [ - 3419 + 3439 ], "victim_id": [ 180 @@ -110818,10 +111083,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4734 + 4754 ], "nodes": [ - 4732 + 4752 ], "__typename": [ 78 @@ -110829,13 +111094,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4735 + 4755 ], "count": [ 38, { "columns": [ - 4740, + 4760, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -110844,31 +111109,31 @@ export default { } ], "max": [ - 4737 + 4757 ], "min": [ - 4738 + 4758 ], "stddev": [ - 4741 + 4761 ], "stddev_pop": [ - 4742 + 4762 ], "stddev_samp": [ - 4743 + 4763 ], "sum": [ - 4746 + 4766 ], "var_pop": [ - 4747 + 4767 ], "var_samp": [ - 4748 + 4768 ], "variance": [ - 4749 + 4769 ], "__typename": [ 78 @@ -110890,13 +111155,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4736 + 4756 ], "_not": [ - 4736 + 4756 ], "_or": [ - 4736 + 4756 ], "attacker_id": [ 182 @@ -110905,10 +111170,10 @@ export default { 182 ], "nemsis": [ - 3423 + 3443 ], "player": [ - 3423 + 3443 ], "victim_id": [ 182 @@ -110947,19 +111212,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2461 + 2481 ], "kill_count": [ - 2461 + 2481 ], "nemsis": [ - 3432 + 3452 ], "player": [ - 3432 + 3452 ], "victim_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -111010,7 +111275,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4745 + 4765 ], "ordering": [ 236 @@ -111094,7 +111359,7 @@ export default { 180 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 @@ -111111,10 +111376,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 4752 + 4772 ], "nodes": [ - 4750 + 4770 ], "__typename": [ 78 @@ -111122,13 +111387,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 4753 + 4773 ], "count": [ 38, { "columns": [ - 4758, + 4778, "[v_player_damage_select_column!]" ], "distinct": [ @@ -111137,31 +111402,31 @@ export default { } ], "max": [ - 4755 + 4775 ], "min": [ - 4756 + 4776 ], "stddev": [ - 4759 + 4779 ], "stddev_pop": [ - 4760 + 4780 ], "stddev_samp": [ - 4761 + 4781 ], "sum": [ - 4764 + 4784 ], "var_pop": [ - 4765 + 4785 ], "var_samp": [ - 4766 + 4786 ], "variance": [ - 4767 + 4787 ], "__typename": [ 78 @@ -111186,19 +111451,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 4754 + 4774 ], "_not": [ - 4754 + 4774 ], "_or": [ - 4754 + 4774 ], "avg_damage_per_round": [ 182 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 @@ -111249,19 +111514,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "total_damage": [ - 2461 + 2481 ], "total_rounds": [ - 2461 + 2481 ], "__typename": [ 78 @@ -111321,7 +111586,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4763 + 4783 ], "ordering": [ 236 @@ -111417,7 +111682,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -111429,7 +111694,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -111438,16 +111703,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -111459,22 +111724,22 @@ export default { 38 ], "match": [ - 2276 + 2296 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_name": [ 78 @@ -111483,16 +111748,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 78 @@ -111506,10 +111771,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 4782 + 4802 ], "nodes": [ - 4768 + 4788 ], "__typename": [ 78 @@ -111517,31 +111782,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4771 + 4791 ], "corr": [ - 4772 + 4792 ], "count": [ - 4774 + 4794 ], "covar_samp": [ - 4775 + 4795 ], "max": [ - 4777 + 4797 ], "min": [ - 4778 + 4798 ], "stddev_samp": [ - 4779 + 4799 ], "sum": [ - 4780 + 4800 ], "var_samp": [ - 4781 + 4801 ], "__typename": [ 78 @@ -111549,16 +111814,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4795 + 4815 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111566,16 +111831,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4773 + 4793 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111583,10 +111848,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4796 + 4816 ], "Y": [ - 4796 + 4816 ], "__typename": [ 78 @@ -111594,13 +111859,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4794 + 4814 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ 39 @@ -111611,16 +111876,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4776 + 4796 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111628,10 +111893,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4797 + 4817 ], "Y": [ - 4797 + 4817 ], "__typename": [ 78 @@ -111639,16 +111904,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4798 + 4818 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111656,16 +111921,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4799 + 4819 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111673,16 +111938,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4800 + 4820 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111690,16 +111955,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4801 + 4821 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111707,16 +111972,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4802 + 4822 ], "distinct": [ 3 ], "filter": [ - 4787 + 4807 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -111724,13 +111989,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 4785 + 4805 ], "count": [ 38, { "columns": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "distinct": [ @@ -111739,31 +112004,31 @@ export default { } ], "max": [ - 4789 + 4809 ], "min": [ - 4791 + 4811 ], "stddev": [ - 4803 + 4823 ], "stddev_pop": [ - 4805 + 4825 ], "stddev_samp": [ - 4807 + 4827 ], "sum": [ - 4811 + 4831 ], "var_pop": [ - 4813 + 4833 ], "var_samp": [ - 4815 + 4835 ], "variance": [ - 4817 + 4837 ], "__typename": [ 78 @@ -111771,37 +112036,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 4786 + 4806 ], "count": [ - 2461 + 2481 ], "max": [ - 4790 + 4810 ], "min": [ - 4792 + 4812 ], "stddev": [ - 4804 + 4824 ], "stddev_pop": [ - 4806 + 4826 ], "stddev_samp": [ - 4808 + 4828 ], "sum": [ - 4812 + 4832 ], "var_pop": [ - 4814 + 4834 ], "var_samp": [ - 4816 + 4836 ], "variance": [ - 4818 + 4838 ], "__typename": [ 78 @@ -111809,7 +112074,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4788 + 4808 ], "__typename": [ 78 @@ -111885,67 +112150,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -111953,16 +112218,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 4787 + 4807 ], "_not": [ - 4787 + 4807 ], "_or": [ - 4787 + 4807 ], "actual_score": [ - 1181 + 1201 ], "assists": [ 39 @@ -111974,7 +112239,7 @@ export default { 39 ], "damage_percent": [ - 1181 + 1201 ], "deaths": [ 39 @@ -111983,16 +112248,16 @@ export default { 39 ], "expected_score": [ - 1181 + 1201 ], "impact": [ - 1181 + 1201 ], "k_factor": [ 39 ], "kda": [ - 1181 + 1201 ], "kills": [ 39 @@ -112004,22 +112269,22 @@ export default { 39 ], "match": [ - 2285 + 2305 ], "match_created_at": [ - 4005 + 4025 ], "match_id": [ - 4444 + 4464 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1181 + 1201 ], "performance_multiplier": [ - 1181 + 1201 ], "player_name": [ 80 @@ -112028,16 +112293,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1181 + 1201 ], "season_id": [ - 4444 + 4464 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1181 + 1201 ], "type": [ 80 @@ -112051,7 +112316,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -112063,7 +112328,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -112072,16 +112337,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -112093,22 +112358,22 @@ export default { 38 ], "match": [ - 2294 + 2314 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_name": [ 78 @@ -112117,16 +112382,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 78 @@ -112140,7 +112405,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -112152,7 +112417,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -112161,16 +112426,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -112182,19 +112447,19 @@ export default { 38 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_name": [ 78 @@ -112203,16 +112468,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 78 @@ -112226,85 +112491,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "match_created_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_result": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_name": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "season_id": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112312,7 +112577,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -112324,7 +112589,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -112333,16 +112598,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -112354,19 +112619,19 @@ export default { 38 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_name": [ 78 @@ -112375,16 +112640,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 78 @@ -112398,85 +112663,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "match_created_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_result": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_name": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "season_id": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112484,88 +112749,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_created_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_result": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_name": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "season_id": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112650,67 +112915,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112786,67 +113051,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112922,67 +113187,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -112990,7 +113255,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4810 + 4830 ], "ordering": [ 236 @@ -113001,7 +113266,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -113013,7 +113278,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -113022,16 +113287,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -113043,19 +113308,19 @@ export default { 38 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_name": [ 78 @@ -113064,16 +113329,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "season_id": [ - 4442 + 4462 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "type": [ 78 @@ -113087,7 +113352,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1180 + 1200 ], "assists": [ 38 @@ -113099,7 +113364,7 @@ export default { 38 ], "damage_percent": [ - 1180 + 1200 ], "deaths": [ 38 @@ -113108,16 +113373,16 @@ export default { 38 ], "expected_score": [ - 1180 + 1200 ], "impact": [ - 1180 + 1200 ], "k_factor": [ 38 ], "kda": [ - 1180 + 1200 ], "kills": [ 38 @@ -113129,22 +113394,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1180 + 1200 ], "performance_multiplier": [ - 1180 + 1200 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1180 + 1200 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1180 + 1200 ], "updated_elo": [ 38 @@ -113155,67 +113420,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -113291,67 +113556,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -113427,67 +113692,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -113563,67 +113828,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2461 + 2481 ], "assists": [ - 2461 + 2481 ], "current_elo": [ - 2461 + 2481 ], "damage": [ - 2461 + 2481 ], "damage_percent": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "elo_change": [ - 2461 + 2481 ], "expected_score": [ - 2461 + 2481 ], "impact": [ - 2461 + 2481 ], "k_factor": [ - 2461 + 2481 ], "kda": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map_losses": [ - 2461 + 2481 ], "map_wins": [ - 2461 + 2481 ], "opponent_team_elo_avg": [ - 2461 + 2481 ], "performance_multiplier": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "player_team_elo_avg": [ - 2461 + 2481 ], "series_multiplier": [ - 2461 + 2481 ], "team_avg_kda": [ - 2461 + 2481 ], "updated_elo": [ - 2461 + 2481 ], "__typename": [ 78 @@ -113631,19 +113896,19 @@ export default { }, "v_player_map_losses": { "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -113654,10 +113919,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 4821 + 4841 ], "nodes": [ - 4819 + 4839 ], "__typename": [ 78 @@ -113665,13 +113930,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4822 + 4842 ], "count": [ 38, { "columns": [ - 4827, + 4847, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -113680,31 +113945,31 @@ export default { } ], "max": [ - 4824 + 4844 ], "min": [ - 4825 + 4845 ], "stddev": [ - 4828 + 4848 ], "stddev_pop": [ - 4829 + 4849 ], "stddev_samp": [ - 4830 + 4850 ], "sum": [ - 4833 + 4853 ], "var_pop": [ - 4834 + 4854 ], "var_samp": [ - 4835 + 4855 ], "variance": [ - 4836 + 4856 ], "__typename": [ 78 @@ -113720,28 +113985,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 4823 + 4843 ], "_not": [ - 4823 + 4843 ], "_or": [ - 4823 + 4843 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "started_at": [ - 4005 + 4025 ], "steam_id": [ 182 @@ -113752,13 +114017,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -113769,13 +114034,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -113786,22 +114051,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -113834,7 +114099,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4832 + 4852 ], "ordering": [ 236 @@ -113845,13 +114110,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -113894,19 +114159,19 @@ export default { }, "v_player_map_wins": { "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -113917,10 +114182,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 4839 + 4859 ], "nodes": [ - 4837 + 4857 ], "__typename": [ 78 @@ -113928,13 +114193,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4840 + 4860 ], "count": [ 38, { "columns": [ - 4845, + 4865, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -113943,31 +114208,31 @@ export default { } ], "max": [ - 4842 + 4862 ], "min": [ - 4843 + 4863 ], "stddev": [ - 4846 + 4866 ], "stddev_pop": [ - 4847 + 4867 ], "stddev_samp": [ - 4848 + 4868 ], "sum": [ - 4851 + 4871 ], "var_pop": [ - 4852 + 4872 ], "var_samp": [ - 4853 + 4873 ], "variance": [ - 4854 + 4874 ], "__typename": [ 78 @@ -113983,28 +114248,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 4841 + 4861 ], "_not": [ - 4841 + 4861 ], "_or": [ - 4841 + 4861 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "started_at": [ - 4005 + 4025 ], "steam_id": [ 182 @@ -114015,13 +114280,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -114032,13 +114297,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -114049,22 +114314,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "started_at": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -114097,7 +114362,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4850 + 4870 ], "ordering": [ 236 @@ -114108,13 +114373,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "started_at": [ - 4004 + 4024 ], "steam_id": [ 180 @@ -114157,13 +114422,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3419 + 3439 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3419 + 3439 ], "attacker_steam_id": [ 180 @@ -114184,10 +114449,10 @@ export default { 180 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -114195,10 +114460,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4857 + 4877 ], "nodes": [ - 4855 + 4875 ], "__typename": [ 78 @@ -114206,13 +114471,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4858 + 4878 ], "count": [ 38, { "columns": [ - 4863, + 4883, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -114221,31 +114486,31 @@ export default { } ], "max": [ - 4860 + 4880 ], "min": [ - 4861 + 4881 ], "stddev": [ - 4864 + 4884 ], "stddev_pop": [ - 4865 + 4885 ], "stddev_samp": [ - 4866 + 4886 ], "sum": [ - 4869 + 4889 ], "var_pop": [ - 4870 + 4890 ], "var_samp": [ - 4871 + 4891 ], "variance": [ - 4872 + 4892 ], "__typename": [ 78 @@ -114279,22 +114544,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4859 + 4879 ], "_not": [ - 4859 + 4879 ], "_or": [ - 4859 + 4879 ], "attacked": [ - 3423 + 3443 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3423 + 3443 ], "attacker_steam_id": [ 182 @@ -114315,10 +114580,10 @@ export default { 182 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -114347,7 +114612,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -114376,7 +114641,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -114384,37 +114649,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3432 + 3452 ], "attacked_steam_id": [ - 2461 + 2481 ], "attacker": [ - 3432 + 3452 ], "attacker_steam_id": [ - 2461 + 2481 ], "damage_dealt": [ - 2461 + 2481 ], "flash_count": [ - 2461 + 2481 ], "headshot_kills": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -114501,7 +114766,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4868 + 4888 ], "ordering": [ 236 @@ -114533,7 +114798,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -114645,37 +114910,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "rounds_played": [ 38 @@ -114689,10 +114954,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4877 + 4897 ], "nodes": [ - 4873 + 4893 ], "__typename": [ 78 @@ -114700,7 +114965,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4876 + 4896 ], "__typename": [ 78 @@ -114708,13 +114973,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4891 + 4911 ], "distinct": [ 3 ], "filter": [ - 4882 + 4902 ], "predicate": [ 39 @@ -114725,13 +114990,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4880 + 4900 ], "count": [ 38, { "columns": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -114740,31 +115005,31 @@ export default { } ], "max": [ - 4885 + 4905 ], "min": [ - 4887 + 4907 ], "stddev": [ - 4893 + 4913 ], "stddev_pop": [ - 4895 + 4915 ], "stddev_samp": [ - 4897 + 4917 ], "sum": [ - 4901 + 4921 ], "var_pop": [ - 4904 + 4924 ], "var_samp": [ - 4906 + 4926 ], "variance": [ - 4908 + 4928 ], "__typename": [ 78 @@ -114772,37 +115037,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4881 + 4901 ], "count": [ - 2461 + 2481 ], "max": [ - 4886 + 4906 ], "min": [ - 4888 + 4908 ], "stddev": [ - 4894 + 4914 ], "stddev_pop": [ - 4896 + 4916 ], "stddev_samp": [ - 4898 + 4918 ], "sum": [ - 4902 + 4922 ], "var_pop": [ - 4905 + 4925 ], "var_samp": [ - 4907 + 4927 ], "variance": [ - 4909 + 4929 ], "__typename": [ 78 @@ -114810,7 +115075,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4884 + 4904 ], "__typename": [ 78 @@ -114847,28 +115112,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -114876,46 +115141,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4882 + 4902 ], "_not": [ - 4882 + 4902 ], "_or": [ - 4882 + 4902 ], "adr": [ - 2460 + 2480 ], "apr": [ - 2460 + 2480 ], "dpr": [ - 2460 + 2480 ], "hltv_rating": [ - 2460 + 2480 ], "kast_pct": [ - 2460 + 2480 ], "kpr": [ - 2460 + 2480 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "rounds_played": [ 39 @@ -114929,22 +115194,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "rounds_played": [ 38 @@ -114958,37 +115223,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match": [ - 2294 + 2314 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2132 + 2152 ], "match_map_id": [ - 4442 + 4462 ], "player": [ - 3430 + 3450 ], "rounds_played": [ 38 @@ -115002,28 +115267,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -115037,34 +115302,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115072,28 +115337,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -115107,34 +115372,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_map_id": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115145,7 +115410,7 @@ export default { 38 ], "returning": [ - 4873 + 4893 ], "__typename": [ 78 @@ -115153,43 +115418,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115198,28 +115463,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -115262,28 +115527,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115320,28 +115585,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115378,28 +115643,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115407,7 +115672,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4900 + 4920 ], "ordering": [ 236 @@ -115418,28 +115683,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -115453,22 +115718,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2459 + 2479 ], "apr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "rounds_played": [ 38 @@ -115482,28 +115747,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115511,13 +115776,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 4883 + 4903 ], "_set": [ - 4892 + 4912 ], "where": [ - 4882 + 4902 ], "__typename": [ 78 @@ -115554,28 +115819,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115612,28 +115877,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115670,28 +115935,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2461 + 2481 ], "apr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -115699,52 +115964,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2459 + 2479 ], "awp_kills": [ 38 ], "awp_share": [ - 2459 + 2479 ], "deaths": [ 38 ], "dpr": [ - 2459 + 2479 ], "entry_rate": [ - 2459 + 2479 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kills": [ 38 ], "kpr": [ - 2459 + 2479 ], "lineup_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "match_map": [ - 2114 + 2134 ], "match_map_id": [ - 4442 + 4462 ], "open_deaths": [ 38 @@ -115756,7 +116021,7 @@ export default { 38 ], "player": [ - 3419 + 3439 ], "role": [ 78 @@ -115768,7 +116033,7 @@ export default { 180 ], "support_idx": [ - 2459 + 2479 ], "total_kills": [ 38 @@ -115788,10 +116053,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4912 + 4932 ], "nodes": [ - 4910 + 4930 ], "__typename": [ 78 @@ -115799,13 +116064,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4913 + 4933 ], "count": [ 38, { "columns": [ - 4918, + 4938, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -115814,31 +116079,31 @@ export default { } ], "max": [ - 4915 + 4935 ], "min": [ - 4916 + 4936 ], "stddev": [ - 4919 + 4939 ], "stddev_pop": [ - 4920 + 4940 ], "stddev_samp": [ - 4921 + 4941 ], "sum": [ - 4924 + 4944 ], "var_pop": [ - 4925 + 4945 ], "var_samp": [ - 4926 + 4946 ], "variance": [ - 4927 + 4947 ], "__typename": [ 78 @@ -115914,61 +116179,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4914 + 4934 ], "_not": [ - 4914 + 4934 ], "_or": [ - 4914 + 4934 ], "adr": [ - 2460 + 2480 ], "awp_kills": [ 39 ], "awp_share": [ - 2460 + 2480 ], "deaths": [ 39 ], "dpr": [ - 2460 + 2480 ], "entry_rate": [ - 2460 + 2480 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2460 + 2480 ], "kast_pct": [ - 2460 + 2480 ], "kills": [ 39 ], "kpr": [ - 2460 + 2480 ], "lineup_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "match_map": [ - 2123 + 2143 ], "match_map_id": [ - 4444 + 4464 ], "open_deaths": [ 39 @@ -115980,7 +116245,7 @@ export default { 39 ], "player": [ - 3423 + 3443 ], "role": [ 80 @@ -115992,7 +116257,7 @@ export default { 182 ], "support_idx": [ - 2460 + 2480 ], "total_kills": [ 39 @@ -116012,46 +116277,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2459 + 2479 ], "awp_kills": [ 38 ], "awp_share": [ - 2459 + 2479 ], "deaths": [ 38 ], "dpr": [ - 2459 + 2479 ], "entry_rate": [ - 2459 + 2479 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kills": [ 38 ], "kpr": [ - 2459 + 2479 ], "lineup_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "open_deaths": [ 38 @@ -116072,7 +116337,7 @@ export default { 180 ], "support_idx": [ - 2459 + 2479 ], "total_kills": [ 38 @@ -116092,46 +116357,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2459 + 2479 ], "awp_kills": [ 38 ], "awp_share": [ - 2459 + 2479 ], "deaths": [ 38 ], "dpr": [ - 2459 + 2479 ], "entry_rate": [ - 2459 + 2479 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kills": [ 38 ], "kpr": [ - 2459 + 2479 ], "lineup_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "open_deaths": [ 38 @@ -116152,7 +116417,7 @@ export default { 180 ], "support_idx": [ - 2459 + 2479 ], "total_kills": [ 38 @@ -116172,88 +116437,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2461 + 2481 ], "awp_kills": [ - 2461 + 2481 ], "awp_share": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "entry_rate": [ - 2461 + 2481 ], "flash_assists": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "lineup_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "match_map": [ - 2134 + 2154 ], "match_map_id": [ - 2461 + 2481 ], "open_deaths": [ - 2461 + 2481 ], "open_kills": [ - 2461 + 2481 ], "opening_attempts": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "role": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "support_idx": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "trade_kill_successes": [ - 2461 + 2481 ], "traded_death_successes": [ - 2461 + 2481 ], "util_damage": [ - 2461 + 2481 ], "__typename": [ 78 @@ -116466,7 +116731,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4923 + 4943 ], "ordering": [ 236 @@ -116477,46 +116742,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2459 + 2479 ], "awp_kills": [ 38 ], "awp_share": [ - 2459 + 2479 ], "deaths": [ 38 ], "dpr": [ - 2459 + 2479 ], "entry_rate": [ - 2459 + 2479 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kills": [ 38 ], "kpr": [ - 2459 + 2479 ], "lineup_id": [ - 4442 + 4462 ], "match_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442 + 4462 ], "open_deaths": [ 38 @@ -116537,7 +116802,7 @@ export default { 180 ], "support_idx": [ - 2459 + 2479 ], "total_kills": [ 38 @@ -116557,37 +116822,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2459 + 2479 ], "awp_kills": [ 38 ], "awp_share": [ - 2459 + 2479 ], "deaths": [ 38 ], "dpr": [ - 2459 + 2479 ], "entry_rate": [ - 2459 + 2479 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kills": [ 38 ], "kpr": [ - 2459 + 2479 ], "open_deaths": [ 38 @@ -116605,7 +116870,7 @@ export default { 180 ], "support_idx": [ - 2459 + 2479 ], "total_kills": [ 38 @@ -116838,19 +117103,19 @@ export default { 38 ], "map": [ - 1794 + 1814 ], "map_id": [ - 4442 + 4462 ], "match": [ - 2276 + 2296 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 @@ -116870,10 +117135,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 4930 + 4950 ], "nodes": [ - 4928 + 4948 ], "__typename": [ 78 @@ -116881,13 +117146,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4931 + 4951 ], "count": [ 38, { "columns": [ - 4936, + 4956, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -116896,31 +117161,31 @@ export default { } ], "max": [ - 4933 + 4953 ], "min": [ - 4934 + 4954 ], "stddev": [ - 4937 + 4957 ], "stddev_pop": [ - 4938 + 4958 ], "stddev_samp": [ - 4939 + 4959 ], "sum": [ - 4942 + 4962 ], "var_pop": [ - 4943 + 4963 ], "var_samp": [ - 4944 + 4964 ], "variance": [ - 4945 + 4965 ], "__typename": [ 78 @@ -116945,13 +117210,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 4932 + 4952 ], "_not": [ - 4932 + 4952 ], "_or": [ - 4932 + 4952 ], "assists": [ 39 @@ -116963,19 +117228,19 @@ export default { 39 ], "map": [ - 1803 + 1823 ], "map_id": [ - 4444 + 4464 ], "match": [ - 2285 + 2305 ], "match_created_at": [ - 4005 + 4025 ], "match_id": [ - 4444 + 4464 ], "match_result": [ 80 @@ -117004,13 +117269,13 @@ export default { 38 ], "map_id": [ - 4442 + 4462 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 @@ -117039,13 +117304,13 @@ export default { 38 ], "map_id": [ - 4442 + 4462 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 @@ -117065,40 +117330,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "map": [ - 1813 + 1833 ], "map_id": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_created_at": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "match_result": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "__typename": [ 78 @@ -117158,7 +117423,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4941 + 4961 ], "ordering": [ 236 @@ -117178,13 +117443,13 @@ export default { 38 ], "map_id": [ - 4442 + 4462 ], "match_created_at": [ - 4004 + 4024 ], "match_id": [ - 4442 + 4462 ], "match_result": [ 78 @@ -117272,28 +117537,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match": [ - 2276 + 2296 ], "match_id": [ - 4442 + 4462 ], "player": [ - 3419 + 3439 ], "rounds_played": [ 38 @@ -117307,10 +117572,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 4948 + 4968 ], "nodes": [ - 4946 + 4966 ], "__typename": [ 78 @@ -117318,13 +117583,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4949 + 4969 ], "count": [ 38, { "columns": [ - 4954, + 4974, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -117333,31 +117598,31 @@ export default { } ], "max": [ - 4951 + 4971 ], "min": [ - 4952 + 4972 ], "stddev": [ - 4955 + 4975 ], "stddev_pop": [ - 4956 + 4976 ], "stddev_samp": [ - 4957 + 4977 ], "sum": [ - 4960 + 4980 ], "var_pop": [ - 4961 + 4981 ], "var_samp": [ - 4962 + 4982 ], "variance": [ - 4963 + 4983 ], "__typename": [ 78 @@ -117391,37 +117656,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 4950 + 4970 ], "_not": [ - 4950 + 4970 ], "_or": [ - 4950 + 4970 ], "adr": [ - 2460 + 2480 ], "dpr": [ - 2460 + 2480 ], "hltv_rating": [ - 2460 + 2480 ], "kast_pct": [ - 2460 + 2480 ], "kpr": [ - 2460 + 2480 ], "match": [ - 2285 + 2305 ], "match_id": [ - 4444 + 4464 ], "player": [ - 3423 + 3443 ], "rounds_played": [ 39 @@ -117435,22 +117700,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -117464,22 +117729,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -117493,34 +117758,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2461 + 2481 ], "dpr": [ - 2461 + 2481 ], "hltv_rating": [ - 2461 + 2481 ], "kast_pct": [ - 2461 + 2481 ], "kpr": [ - 2461 + 2481 ], "match": [ - 2296 + 2316 ], "match_id": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "rounds_played": [ - 2461 + 2481 ], "steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -117607,7 +117872,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4959 + 4979 ], "ordering": [ 236 @@ -117618,22 +117883,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "match_id": [ - 4442 + 4462 ], "rounds_played": [ 38 @@ -117647,19 +117912,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2459 + 2479 ], "dpr": [ - 2459 + 2479 ], "hltv_rating": [ - 2459 + 2479 ], "kast_pct": [ - 2459 + 2479 ], "kpr": [ - 2459 + 2479 ], "rounds_played": [ 38 @@ -117757,7 +118022,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "round": [ 38 @@ -117768,10 +118033,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4968 + 4988 ], "nodes": [ - 4964 + 4984 ], "__typename": [ 78 @@ -117779,7 +118044,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4967 + 4987 ], "__typename": [ 78 @@ -117787,13 +118052,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 4980 + 5000 ], "distinct": [ 3 ], "filter": [ - 4973 + 4993 ], "predicate": [ 39 @@ -117804,13 +118069,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4971 + 4991 ], "count": [ 38, { "columns": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -117819,31 +118084,31 @@ export default { } ], "max": [ - 4975 + 4995 ], "min": [ - 4977 + 4997 ], "stddev": [ - 4981 + 5001 ], "stddev_pop": [ - 4983 + 5003 ], "stddev_samp": [ - 4985 + 5005 ], "sum": [ - 4989 + 5009 ], "var_pop": [ - 4991 + 5011 ], "var_samp": [ - 4993 + 5013 ], "variance": [ - 4995 + 5015 ], "__typename": [ 78 @@ -117851,37 +118116,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4972 + 4992 ], "count": [ - 2461 + 2481 ], "max": [ - 4976 + 4996 ], "min": [ - 4978 + 4998 ], "stddev": [ - 4982 + 5002 ], "stddev_pop": [ - 4984 + 5004 ], "stddev_samp": [ - 4986 + 5006 ], "sum": [ - 4990 + 5010 ], "var_pop": [ - 4992 + 5012 ], "var_samp": [ - 4994 + 5014 ], "variance": [ - 4996 + 5016 ], "__typename": [ 78 @@ -117889,7 +118154,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4974 + 4994 ], "__typename": [ 78 @@ -117911,13 +118176,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -117925,13 +118190,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 4973 + 4993 ], "_not": [ - 4973 + 4993 ], "_or": [ - 4973 + 4993 ], "attacker_steam_id": [ 182 @@ -117940,7 +118205,7 @@ export default { 182 ], "match_id": [ - 4444 + 4464 ], "round": [ 39 @@ -117957,7 +118222,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "round": [ 38 @@ -117974,7 +118239,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "round": [ 38 @@ -117985,16 +118250,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118008,7 +118273,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "round": [ 38 @@ -118019,16 +118284,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118036,16 +118301,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "match_id": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118068,13 +118333,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118096,13 +118361,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118124,13 +118389,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118138,7 +118403,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 4988 + 5008 ], "ordering": [ 236 @@ -118155,7 +118420,7 @@ export default { 180 ], "match_id": [ - 4442 + 4462 ], "round": [ 38 @@ -118180,13 +118445,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118208,13 +118473,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118236,13 +118501,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118264,13 +118529,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "round": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118301,10 +118566,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 4999 + 5019 ], "nodes": [ - 4997 + 5017 ], "__typename": [ 78 @@ -118312,13 +118577,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5000 + 5020 ], "count": [ 38, { "columns": [ - 5005, + 5025, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -118327,31 +118592,31 @@ export default { } ], "max": [ - 5002 + 5022 ], "min": [ - 5003 + 5023 ], "stddev": [ - 5006 + 5026 ], "stddev_pop": [ - 5007 + 5027 ], "stddev_samp": [ - 5008 + 5028 ], "sum": [ - 5011 + 5031 ], "var_pop": [ - 5012 + 5032 ], "var_samp": [ - 5013 + 5033 ], "variance": [ - 5014 + 5034 ], "__typename": [ 78 @@ -118373,13 +118638,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5001 + 5021 ], "_not": [ - 5001 + 5021 ], "_or": [ - 5001 + 5021 ], "damage": [ 182 @@ -118451,22 +118716,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2461 + 2481 ], "hits": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118517,7 +118782,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5010 + 5030 ], "ordering": [ 236 @@ -118630,10 +118895,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5017 + 5037 ], "nodes": [ - 5015 + 5035 ], "__typename": [ 78 @@ -118641,13 +118906,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5018 + 5038 ], "count": [ 38, { "columns": [ - 5023, + 5043, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -118656,31 +118921,31 @@ export default { } ], "max": [ - 5020 + 5040 ], "min": [ - 5021 + 5041 ], "stddev": [ - 5024 + 5044 ], "stddev_pop": [ - 5025 + 5045 ], "stddev_samp": [ - 5026 + 5046 ], "sum": [ - 5029 + 5049 ], "var_pop": [ - 5030 + 5050 ], "var_samp": [ - 5031 + 5051 ], "variance": [ - 5032 + 5052 ], "__typename": [ 78 @@ -118702,13 +118967,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5019 + 5039 ], "_not": [ - 5019 + 5039 ], "_or": [ - 5019 + 5039 ], "kill_count": [ 182 @@ -118780,22 +119045,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "rounds": [ - 2461 + 2481 ], "source": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "with": [ - 2461 + 2481 ], "__typename": [ 78 @@ -118846,7 +119111,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5028 + 5048 ], "ordering": [ 236 @@ -118939,16 +119204,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool": [ - 1775 + 1795 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -118971,10 +119236,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5039 + 5059 ], "nodes": [ - 5033 + 5053 ], "__typename": [ 78 @@ -118982,13 +119247,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5036 + 5056 ], "bool_or": [ - 5037 + 5057 ], "count": [ - 5038 + 5058 ], "__typename": [ 78 @@ -118996,13 +119261,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5051 + 5071 ], "distinct": [ 3 ], "filter": [ - 5042 + 5062 ], "predicate": [ 4 @@ -119013,13 +119278,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5052 + 5072 ], "distinct": [ 3 ], "filter": [ - 5042 + 5062 ], "predicate": [ 4 @@ -119030,13 +119295,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5050 + 5070 ], "distinct": [ 3 ], "filter": [ - 5042 + 5062 ], "predicate": [ 39 @@ -119050,7 +119315,7 @@ export default { 38, { "columns": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -119059,10 +119324,10 @@ export default { } ], "max": [ - 5044 + 5064 ], "min": [ - 5046 + 5066 ], "__typename": [ 78 @@ -119070,13 +119335,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2461 + 2481 ], "max": [ - 5045 + 5065 ], "min": [ - 5047 + 5067 ], "__typename": [ 78 @@ -119084,7 +119349,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5043 + 5063 ], "__typename": [ 78 @@ -119092,28 +119357,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5042 + 5062 ], "_not": [ - 5042 + 5062 ], "_or": [ - 5042 + 5062 ], "active_pool": [ 4 ], "id": [ - 4444 + 4464 ], "label": [ 80 ], "map_pool": [ - 1778 + 1798 ], "map_pool_id": [ - 4444 + 4464 ], "name": [ 80 @@ -119139,16 +119404,16 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool": [ - 1784 + 1804 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -119171,13 +119436,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -119200,28 +119465,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "map_pool_id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -119229,13 +119494,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -119258,28 +119523,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "map_pool_id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -119290,7 +119555,7 @@ export default { 38 ], "returning": [ - 5033 + 5053 ], "__typename": [ 78 @@ -119298,34 +119563,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "label": [ - 2461 + 2481 ], "map_pool": [ - 1786 + 1806 ], "map_pool_id": [ - 2461 + 2481 ], "name": [ - 2461 + 2481 ], "patch": [ - 2461 + 2481 ], "poster": [ - 2461 + 2481 ], "type": [ - 2461 + 2481 ], "workshop_map_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -119339,13 +119604,13 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -119368,7 +119633,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5055 + 5075 ], "ordering": [ 236 @@ -119382,13 +119647,13 @@ export default { 3 ], "id": [ - 4442 + 4462 ], "label": [ 78 ], "map_pool_id": [ - 4442 + 4462 ], "name": [ 78 @@ -119411,10 +119676,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5053 + 5073 ], "where": [ - 5042 + 5062 ], "__typename": [ 78 @@ -119439,10 +119704,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5059 + 5079 ], "nodes": [ - 5057 + 5077 ], "__typename": [ 78 @@ -119450,13 +119715,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5060 + 5080 ], "count": [ 38, { "columns": [ - 5065, + 5085, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -119465,31 +119730,31 @@ export default { } ], "max": [ - 5062 + 5082 ], "min": [ - 5063 + 5083 ], "stddev": [ - 5066 + 5086 ], "stddev_pop": [ - 5067 + 5087 ], "stddev_samp": [ - 5068 + 5088 ], "sum": [ - 5071 + 5091 ], "var_pop": [ - 5072 + 5092 ], "var_samp": [ - 5073 + 5093 ], "variance": [ - 5074 + 5094 ], "__typename": [ 78 @@ -119514,13 +119779,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5061 + 5081 ], "_not": [ - 5061 + 5081 ], "_or": [ - 5061 + 5081 ], "busy_accounts": [ 39 @@ -119574,16 +119839,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2461 + 2481 ], "free_accounts": [ - 2461 + 2481 ], "id": [ - 2461 + 2481 ], "total_accounts": [ - 2461 + 2481 ], "__typename": [ 78 @@ -119643,7 +119908,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5070 + 5090 ], "ordering": [ 236 @@ -119745,7 +120010,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -119760,10 +120025,10 @@ export default { 180 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -119771,10 +120036,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5077 + 5097 ], "nodes": [ - 5075 + 5095 ], "__typename": [ 78 @@ -119782,13 +120047,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5078 + 5098 ], "count": [ 38, { "columns": [ - 5085, + 5105, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -119797,31 +120062,31 @@ export default { } ], "max": [ - 5081 + 5101 ], "min": [ - 5082 + 5102 ], "stddev": [ - 5086 + 5106 ], "stddev_pop": [ - 5087 + 5107 ], "stddev_samp": [ - 5088 + 5108 ], "sum": [ - 5091 + 5111 ], "var_pop": [ - 5092 + 5112 ], "var_samp": [ - 5093 + 5113 ], "variance": [ - 5094 + 5114 ], "__typename": [ 78 @@ -119855,13 +120120,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5079 + 5099 ], "_not": [ - 5079 + 5099 ], "_or": [ - 5079 + 5099 ], "avg_elo": [ 39 @@ -119870,7 +120135,7 @@ export default { 39 ], "avg_faceit_level": [ - 1181 + 1201 ], "avg_premier": [ 39 @@ -119885,10 +120150,10 @@ export default { 182 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -119902,7 +120167,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -119917,10 +120182,10 @@ export default { 180 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -119934,7 +120199,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -119949,7 +120214,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -119963,7 +120228,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -119978,7 +120243,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -119986,7 +120251,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5080 + 5100 ], "__typename": [ 78 @@ -119994,31 +120259,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2461 + 2481 ], "avg_faceit_elo": [ - 2461 + 2481 ], "avg_faceit_level": [ - 2461 + 2481 ], "avg_premier": [ - 2461 + 2481 ], "max_elo": [ - 2461 + 2481 ], "min_elo": [ - 2461 + 2481 ], "roster_size": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -120105,7 +120370,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5090 + 5110 ], "ordering": [ 236 @@ -120122,7 +120387,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -120137,7 +120402,7 @@ export default { 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120151,7 +120416,7 @@ export default { 38 ], "avg_faceit_level": [ - 1180 + 1200 ], "avg_premier": [ 38 @@ -120255,16 +120520,16 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 ], "team": [ - 3961 + 3981 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120272,10 +120537,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5097 + 5117 ], "nodes": [ - 5095 + 5115 ], "__typename": [ 78 @@ -120283,13 +120548,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5098 + 5118 ], "count": [ 38, { "columns": [ - 5105, + 5125, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -120298,31 +120563,31 @@ export default { } ], "max": [ - 5101 + 5121 ], "min": [ - 5102 + 5122 ], "stddev": [ - 5106 + 5126 ], "stddev_pop": [ - 5107 + 5127 ], "stddev_samp": [ - 5108 + 5128 ], "sum": [ - 5111 + 5131 ], "var_pop": [ - 5112 + 5132 ], "var_samp": [ - 5113 + 5133 ], "variance": [ - 5114 + 5134 ], "__typename": [ 78 @@ -120347,13 +120612,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5099 + 5119 ], "_not": [ - 5099 + 5119 ], "_or": [ - 5099 + 5119 ], "late_cancels": [ 182 @@ -120362,16 +120627,16 @@ export default { 182 ], "reliability_pct": [ - 2460 + 2480 ], "scrims_completed": [ 182 ], "team": [ - 3970 + 3990 ], "team_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -120385,16 +120650,16 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 ], "team": [ - 3979 + 3999 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120408,13 +120673,13 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120428,13 +120693,13 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120442,7 +120707,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5100 + 5120 ], "__typename": [ 78 @@ -120450,22 +120715,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2461 + 2481 ], "no_shows": [ - 2461 + 2481 ], "reliability_pct": [ - 2461 + 2481 ], "scrims_completed": [ - 2461 + 2481 ], "team": [ - 3981 + 4001 ], "team_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -120525,7 +120790,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5110 + 5130 ], "ordering": [ 236 @@ -120542,13 +120807,13 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 ], "team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -120562,7 +120827,7 @@ export default { 180 ], "reliability_pct": [ - 2459 + 2479 ], "scrims_completed": [ 180 @@ -120660,13 +120925,13 @@ export default { 38 ], "stage": [ - 4134 + 4154 ], "team": [ - 4267 + 4287 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -120675,10 +120940,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -120689,10 +120954,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5129 + 5149 ], "nodes": [ - 5115 + 5135 ], "__typename": [ 78 @@ -120700,31 +120965,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5118 + 5138 ], "corr": [ - 5119 + 5139 ], "count": [ - 5121 + 5141 ], "covar_samp": [ - 5122 + 5142 ], "max": [ - 5124 + 5144 ], "min": [ - 5125 + 5145 ], "stddev_samp": [ - 5126 + 5146 ], "sum": [ - 5127 + 5147 ], "var_samp": [ - 5128 + 5148 ], "__typename": [ 78 @@ -120732,16 +120997,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5148 + 5168 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120749,16 +121014,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5120 + 5140 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120766,10 +121031,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5149 + 5169 ], "Y": [ - 5149 + 5169 ], "__typename": [ 78 @@ -120777,13 +121042,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5147 + 5167 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ 39 @@ -120794,16 +121059,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5123 + 5143 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120811,10 +121076,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5150 + 5170 ], "Y": [ - 5150 + 5170 ], "__typename": [ 78 @@ -120822,16 +121087,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5151 + 5171 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120839,16 +121104,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5152 + 5172 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120856,16 +121121,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5153 + 5173 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120873,16 +121138,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5154 + 5174 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120890,16 +121155,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5155 + 5175 ], "distinct": [ 3 ], "filter": [ - 5134 + 5154 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -120907,13 +121172,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5132 + 5152 ], "count": [ 38, { "columns": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -120922,31 +121187,31 @@ export default { } ], "max": [ - 5138 + 5158 ], "min": [ - 5140 + 5160 ], "stddev": [ - 5157 + 5177 ], "stddev_pop": [ - 5159 + 5179 ], "stddev_samp": [ - 5161 + 5181 ], "sum": [ - 5165 + 5185 ], "var_pop": [ - 5169 + 5189 ], "var_samp": [ - 5171 + 5191 ], "variance": [ - 5173 + 5193 ], "__typename": [ 78 @@ -120954,37 +121219,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5133 + 5153 ], "count": [ - 2461 + 2481 ], "max": [ - 5139 + 5159 ], "min": [ - 5141 + 5161 ], "stddev": [ - 5158 + 5178 ], "stddev_pop": [ - 5160 + 5180 ], "stddev_samp": [ - 5162 + 5182 ], "sum": [ - 5166 + 5186 ], "var_pop": [ - 5170 + 5190 ], "var_samp": [ - 5172 + 5192 ], "variance": [ - 5174 + 5194 ], "__typename": [ 78 @@ -120992,10 +121257,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5137 + 5157 ], "on_conflict": [ - 5144 + 5164 ], "__typename": [ 78 @@ -121056,52 +121321,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121109,13 +121374,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5134 + 5154 ], "_not": [ - 5134 + 5154 ], "_or": [ - 5134 + 5154 ], "group_number": [ 39 @@ -121154,13 +121419,13 @@ export default { 39 ], "stage": [ - 4146 + 4166 ], "team": [ - 4276 + 4296 ], "team_kdr": [ - 1181 + 1201 ], "total_deaths": [ 39 @@ -121169,10 +121434,10 @@ export default { 39 ], "tournament_stage_id": [ - 4444 + 4464 ], "tournament_team_id": [ - 4444 + 4464 ], "wins": [ 39 @@ -121220,7 +121485,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -121273,13 +121538,13 @@ export default { 38 ], "stage": [ - 4158 + 4178 ], "team": [ - 4285 + 4305 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -121288,10 +121553,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -121338,7 +121603,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -121347,10 +121612,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -121361,58 +121626,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121456,7 +121721,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -121465,10 +121730,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -121479,58 +121744,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121541,7 +121806,7 @@ export default { 38 ], "returning": [ - 5115 + 5135 ], "__typename": [ 78 @@ -121549,10 +121814,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5137 + 5157 ], "on_conflict": [ - 5144 + 5164 ], "__typename": [ 78 @@ -121560,13 +121825,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5135 + 5155 ], "update_columns": [ - 5167 + 5187 ], "where": [ - 5134 + 5154 ], "__typename": [ 78 @@ -121574,64 +121839,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "stage": [ - 4160 + 4180 ], "team": [ - 4287 + 4307 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament_stage_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121639,10 +121904,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -121695,7 +121960,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -121704,10 +121969,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -121771,52 +122036,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121877,52 +122142,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -121983,52 +122248,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -122036,7 +122301,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5164 + 5184 ], "ordering": [ 236 @@ -122083,7 +122348,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -122092,10 +122357,10 @@ export default { 38 ], "tournament_stage_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -122142,7 +122407,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -122159,52 +122424,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -122213,13 +122478,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5136 + 5156 ], "_set": [ - 5156 + 5176 ], "where": [ - 5134 + 5154 ], "__typename": [ 78 @@ -122280,52 +122545,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -122386,52 +122651,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -122492,52 +122757,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2461 + 2481 ], "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "placement": [ - 2461 + 2481 ], "rank": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -122572,10 +122837,10 @@ export default { 38 ], "team": [ - 4267 + 4287 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -122584,13 +122849,13 @@ export default { 38 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -122601,10 +122866,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5189 + 5209 ], "nodes": [ - 5175 + 5195 ], "__typename": [ 78 @@ -122612,31 +122877,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5178 + 5198 ], "corr": [ - 5179 + 5199 ], "count": [ - 5181 + 5201 ], "covar_samp": [ - 5182 + 5202 ], "max": [ - 5184 + 5204 ], "min": [ - 5185 + 5205 ], "stddev_samp": [ - 5186 + 5206 ], "sum": [ - 5187 + 5207 ], "var_samp": [ - 5188 + 5208 ], "__typename": [ 78 @@ -122644,16 +122909,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5202 + 5222 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122661,16 +122926,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5180 + 5200 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122678,10 +122943,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5203 + 5223 ], "Y": [ - 5203 + 5223 ], "__typename": [ 78 @@ -122689,13 +122954,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5201 + 5221 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ 39 @@ -122706,16 +122971,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5183 + 5203 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122723,10 +122988,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5204 + 5224 ], "Y": [ - 5204 + 5224 ], "__typename": [ 78 @@ -122734,16 +122999,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5205 + 5225 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122751,16 +123016,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5206 + 5226 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122768,16 +123033,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5207 + 5227 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122785,16 +123050,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5208 + 5228 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122802,16 +123067,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5209 + 5229 ], "distinct": [ 3 ], "filter": [ - 5194 + 5214 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -122819,13 +123084,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5192 + 5212 ], "count": [ 38, { "columns": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -122834,31 +123099,31 @@ export default { } ], "max": [ - 5196 + 5216 ], "min": [ - 5198 + 5218 ], "stddev": [ - 5210 + 5230 ], "stddev_pop": [ - 5212 + 5232 ], "stddev_samp": [ - 5214 + 5234 ], "sum": [ - 5218 + 5238 ], "var_pop": [ - 5220 + 5240 ], "var_samp": [ - 5222 + 5242 ], "variance": [ - 5224 + 5244 ], "__typename": [ 78 @@ -122866,37 +123131,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5193 + 5213 ], "count": [ - 2461 + 2481 ], "max": [ - 5197 + 5217 ], "min": [ - 5199 + 5219 ], "stddev": [ - 5211 + 5231 ], "stddev_pop": [ - 5213 + 5233 ], "stddev_samp": [ - 5215 + 5235 ], "sum": [ - 5219 + 5239 ], "var_pop": [ - 5221 + 5241 ], "var_samp": [ - 5223 + 5243 ], "variance": [ - 5225 + 5245 ], "__typename": [ 78 @@ -122904,7 +123169,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5195 + 5215 ], "__typename": [ 78 @@ -122956,43 +123221,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123000,13 +123265,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5194 + 5214 ], "_not": [ - 5194 + 5214 ], "_or": [ - 5194 + 5214 ], "head_to_head_match_wins": [ 39 @@ -123036,10 +123301,10 @@ export default { 39 ], "team": [ - 4276 + 4296 ], "team_kdr": [ - 1181 + 1201 ], "total_deaths": [ 39 @@ -123048,13 +123313,13 @@ export default { 39 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "tournament_team_id": [ - 4444 + 4464 ], "wins": [ 39 @@ -123092,10 +123357,10 @@ export default { 38 ], "team": [ - 4285 + 4305 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -123104,13 +123369,13 @@ export default { 38 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -123148,7 +123413,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -123157,10 +123422,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -123171,49 +123436,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123248,7 +123513,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -123257,10 +123522,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -123271,49 +123536,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123321,55 +123586,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team": [ - 4287 + 4307 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "tournament_team_id": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123430,43 +123695,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123518,43 +123783,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123606,43 +123871,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123650,7 +123915,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5217 + 5237 ], "ordering": [ 236 @@ -123688,7 +123953,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -123697,10 +123962,10 @@ export default { 38 ], "tournament_id": [ - 4442 + 4462 ], "tournament_team_id": [ - 4442 + 4462 ], "wins": [ 38 @@ -123738,7 +124003,7 @@ export default { 38 ], "team_kdr": [ - 1180 + 1200 ], "total_deaths": [ 38 @@ -123755,43 +124020,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123843,43 +124108,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -123931,43 +124196,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124019,43 +124284,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2461 + 2481 ], "head_to_head_rounds_won": [ - 2461 + 2481 ], "losses": [ - 2461 + 2481 ], "maps_lost": [ - 2461 + 2481 ], "maps_won": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "matches_remaining": [ - 2461 + 2481 ], "rounds_lost": [ - 2461 + 2481 ], "rounds_won": [ - 2461 + 2481 ], "team_kdr": [ - 2461 + 2481 ], "total_deaths": [ - 2461 + 2481 ], "total_kills": [ - 2461 + 2481 ], "wins": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124069,13 +124334,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124084,16 +124349,16 @@ export default { 38 ], "player": [ - 3419 + 3439 ], "player_steam_id": [ 180 ], "tournament": [ - 4396 + 4416 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -124101,10 +124366,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5240 + 5260 ], "nodes": [ - 5226 + 5246 ], "__typename": [ 78 @@ -124112,31 +124377,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5229 + 5249 ], "corr": [ - 5230 + 5250 ], "count": [ - 5232 + 5252 ], "covar_samp": [ - 5233 + 5253 ], "max": [ - 5235 + 5255 ], "min": [ - 5236 + 5256 ], "stddev_samp": [ - 5237 + 5257 ], "sum": [ - 5238 + 5258 ], "var_samp": [ - 5239 + 5259 ], "__typename": [ 78 @@ -124144,16 +124409,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5253 + 5273 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124161,16 +124426,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5231 + 5251 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124178,10 +124443,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5254 + 5274 ], "Y": [ - 5254 + 5274 ], "__typename": [ 78 @@ -124189,13 +124454,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5252 + 5272 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ 39 @@ -124206,16 +124471,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5234 + 5254 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124223,10 +124488,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5255 + 5275 ], "Y": [ - 5255 + 5275 ], "__typename": [ 78 @@ -124234,16 +124499,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5256 + 5276 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124251,16 +124516,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5257 + 5277 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124268,16 +124533,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5258 + 5278 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124285,16 +124550,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5259 + 5279 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124302,16 +124567,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5260 + 5280 ], "distinct": [ 3 ], "filter": [ - 5245 + 5265 ], "predicate": [ - 1181 + 1201 ], "__typename": [ 78 @@ -124319,13 +124584,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5243 + 5263 ], "count": [ 38, { "columns": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -124334,31 +124599,31 @@ export default { } ], "max": [ - 5247 + 5267 ], "min": [ - 5249 + 5269 ], "stddev": [ - 5261 + 5281 ], "stddev_pop": [ - 5263 + 5283 ], "stddev_samp": [ - 5265 + 5285 ], "sum": [ - 5269 + 5289 ], "var_pop": [ - 5271 + 5291 ], "var_samp": [ - 5273 + 5293 ], "variance": [ - 5275 + 5295 ], "__typename": [ 78 @@ -124366,37 +124631,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5244 + 5264 ], "count": [ - 2461 + 2481 ], "max": [ - 5248 + 5268 ], "min": [ - 5250 + 5270 ], "stddev": [ - 5262 + 5282 ], "stddev_pop": [ - 5264 + 5284 ], "stddev_samp": [ - 5266 + 5286 ], "sum": [ - 5270 + 5290 ], "var_pop": [ - 5272 + 5292 ], "var_samp": [ - 5274 + 5294 ], "variance": [ - 5276 + 5296 ], "__typename": [ 78 @@ -124404,7 +124669,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5246 + 5266 ], "__typename": [ 78 @@ -124441,28 +124706,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124470,13 +124735,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5245 + 5265 ], "_not": [ - 5245 + 5265 ], "_or": [ - 5245 + 5265 ], "assists": [ 39 @@ -124485,13 +124750,13 @@ export default { 39 ], "headshot_percentage": [ - 1181 + 1201 ], "headshots": [ 39 ], "kdr": [ - 1181 + 1201 ], "kills": [ 39 @@ -124500,16 +124765,16 @@ export default { 39 ], "player": [ - 3423 + 3443 ], "player_steam_id": [ 182 ], "tournament": [ - 4407 + 4427 ], "tournament_id": [ - 4444 + 4464 ], "__typename": [ 78 @@ -124523,13 +124788,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124538,16 +124803,16 @@ export default { 38 ], "player": [ - 3430 + 3450 ], "player_steam_id": [ 180 ], "tournament": [ - 4416 + 4436 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -124561,13 +124826,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124579,7 +124844,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -124587,31 +124852,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124625,13 +124890,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124643,7 +124908,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -124651,31 +124916,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124683,37 +124948,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player": [ - 3432 + 3452 ], "player_steam_id": [ - 2461 + 2481 ], "tournament": [ - 4418 + 4438 ], "tournament_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124759,28 +125024,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124817,28 +125082,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124875,28 +125140,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -124904,7 +125169,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5268 + 5288 ], "ordering": [ 236 @@ -124921,13 +125186,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124939,7 +125204,7 @@ export default { 180 ], "tournament_id": [ - 4442 + 4462 ], "__typename": [ 78 @@ -124953,13 +125218,13 @@ export default { 38 ], "headshot_percentage": [ - 1180 + 1200 ], "headshots": [ 38 ], "kdr": [ - 1180 + 1200 ], "kills": [ 38 @@ -124976,28 +125241,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -125034,28 +125299,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -125092,28 +125357,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -125150,28 +125415,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2461 + 2481 ], "deaths": [ - 2461 + 2481 ], "headshot_percentage": [ - 2461 + 2481 ], "headshots": [ - 2461 + 2481 ], "kdr": [ - 2461 + 2481 ], "kills": [ - 2461 + 2481 ], "matches_played": [ - 2461 + 2481 ], "player_steam_id": [ - 2461 + 2481 ], "__typename": [ 78 @@ -125226,11 +125491,11 @@ export default { 92, { "map_id": [ - 4442, + 4462, "uuid!" ], "map_pool_id": [ - 4442, + 4462, "uuid!" ] } @@ -125283,7 +125548,7 @@ export default { 111, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -125336,7 +125601,7 @@ export default { 152, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -125389,7 +125654,7 @@ export default { 185, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -125445,7 +125710,7 @@ export default { 237, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -125498,7 +125763,7 @@ export default { 264, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -125551,7 +125816,7 @@ export default { 309, { "draft_game_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -125608,7 +125873,7 @@ export default { 354, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -126885,12 +127150,12 @@ export default { ] } ], - "e_ready_settings": [ + "e_plugin_runtimes": [ 896, { "distinct_on": [ 910, - "[e_ready_settings_select_column!]" + "[e_plugin_runtimes_select_column!]" ], "limit": [ 38 @@ -126900,19 +127165,19 @@ export default { ], "order_by": [ 908, - "[e_ready_settings_order_by!]" + "[e_plugin_runtimes_order_by!]" ], "where": [ 899 ] } ], - "e_ready_settings_aggregate": [ + "e_plugin_runtimes_aggregate": [ 897, { "distinct_on": [ 910, - "[e_ready_settings_select_column!]" + "[e_plugin_runtimes_select_column!]" ], "limit": [ 38 @@ -126922,14 +127187,14 @@ export default { ], "order_by": [ 908, - "[e_ready_settings_order_by!]" + "[e_plugin_runtimes_order_by!]" ], "where": [ 899 ] } ], - "e_ready_settings_by_pk": [ + "e_plugin_runtimes_by_pk": [ 896, { "value": [ @@ -126938,12 +127203,12 @@ export default { ] } ], - "e_sanction_types": [ + "e_ready_settings": [ 916, { "distinct_on": [ - 931, - "[e_sanction_types_select_column!]" + 930, + "[e_ready_settings_select_column!]" ], "limit": [ 38 @@ -126952,20 +127217,20 @@ export default { 38 ], "order_by": [ - 929, - "[e_sanction_types_order_by!]" + 928, + "[e_ready_settings_order_by!]" ], "where": [ 919 ] } ], - "e_sanction_types_aggregate": [ + "e_ready_settings_aggregate": [ 917, { "distinct_on": [ - 931, - "[e_sanction_types_select_column!]" + 930, + "[e_ready_settings_select_column!]" ], "limit": [ 38 @@ -126974,15 +127239,15 @@ export default { 38 ], "order_by": [ - 929, - "[e_sanction_types_order_by!]" + 928, + "[e_ready_settings_order_by!]" ], "where": [ 919 ] } ], - "e_sanction_types_by_pk": [ + "e_ready_settings_by_pk": [ 916, { "value": [ @@ -126991,12 +127256,12 @@ export default { ] } ], - "e_scrim_request_statuses": [ - 937, + "e_sanction_types": [ + 936, { "distinct_on": [ 951, - "[e_scrim_request_statuses_select_column!]" + "[e_sanction_types_select_column!]" ], "limit": [ 38 @@ -127006,19 +127271,19 @@ export default { ], "order_by": [ 949, - "[e_scrim_request_statuses_order_by!]" + "[e_sanction_types_order_by!]" ], "where": [ - 940 + 939 ] } ], - "e_scrim_request_statuses_aggregate": [ - 938, + "e_sanction_types_aggregate": [ + 937, { "distinct_on": [ 951, - "[e_scrim_request_statuses_select_column!]" + "[e_sanction_types_select_column!]" ], "limit": [ 38 @@ -127028,15 +127293,15 @@ export default { ], "order_by": [ 949, - "[e_scrim_request_statuses_order_by!]" + "[e_sanction_types_order_by!]" ], "where": [ - 940 + 939 ] } ], - "e_scrim_request_statuses_by_pk": [ - 937, + "e_sanction_types_by_pk": [ + 936, { "value": [ 78, @@ -127044,12 +127309,12 @@ export default { ] } ], - "e_server_types": [ + "e_scrim_request_statuses": [ 957, { "distinct_on": [ 971, - "[e_server_types_select_column!]" + "[e_scrim_request_statuses_select_column!]" ], "limit": [ 38 @@ -127059,19 +127324,19 @@ export default { ], "order_by": [ 969, - "[e_server_types_order_by!]" + "[e_scrim_request_statuses_order_by!]" ], "where": [ 960 ] } ], - "e_server_types_aggregate": [ + "e_scrim_request_statuses_aggregate": [ 958, { "distinct_on": [ 971, - "[e_server_types_select_column!]" + "[e_scrim_request_statuses_select_column!]" ], "limit": [ 38 @@ -127081,14 +127346,14 @@ export default { ], "order_by": [ 969, - "[e_server_types_order_by!]" + "[e_scrim_request_statuses_order_by!]" ], "where": [ 960 ] } ], - "e_server_types_by_pk": [ + "e_scrim_request_statuses_by_pk": [ 957, { "value": [ @@ -127097,12 +127362,12 @@ export default { ] } ], - "e_sides": [ + "e_server_types": [ 977, { "distinct_on": [ 991, - "[e_sides_select_column!]" + "[e_server_types_select_column!]" ], "limit": [ 38 @@ -127112,19 +127377,19 @@ export default { ], "order_by": [ 989, - "[e_sides_order_by!]" + "[e_server_types_order_by!]" ], "where": [ 980 ] } ], - "e_sides_aggregate": [ + "e_server_types_aggregate": [ 978, { "distinct_on": [ 991, - "[e_sides_select_column!]" + "[e_server_types_select_column!]" ], "limit": [ 38 @@ -127134,14 +127399,14 @@ export default { ], "order_by": [ 989, - "[e_sides_order_by!]" + "[e_server_types_order_by!]" ], "where": [ 980 ] } ], - "e_sides_by_pk": [ + "e_server_types_by_pk": [ 977, { "value": [ @@ -127150,12 +127415,12 @@ export default { ] } ], - "e_system_alert_types": [ + "e_sides": [ 997, { "distinct_on": [ 1011, - "[e_system_alert_types_select_column!]" + "[e_sides_select_column!]" ], "limit": [ 38 @@ -127165,19 +127430,19 @@ export default { ], "order_by": [ 1009, - "[e_system_alert_types_order_by!]" + "[e_sides_order_by!]" ], "where": [ 1000 ] } ], - "e_system_alert_types_aggregate": [ + "e_sides_aggregate": [ 998, { "distinct_on": [ 1011, - "[e_system_alert_types_select_column!]" + "[e_sides_select_column!]" ], "limit": [ 38 @@ -127187,14 +127452,14 @@ export default { ], "order_by": [ 1009, - "[e_system_alert_types_order_by!]" + "[e_sides_order_by!]" ], "where": [ 1000 ] } ], - "e_system_alert_types_by_pk": [ + "e_sides_by_pk": [ 997, { "value": [ @@ -127203,11 +127468,64 @@ export default { ] } ], - "e_team_roles": [ + "e_system_alert_types": [ + 1017, + { + "distinct_on": [ + 1031, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1029, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1020 + ] + } + ], + "e_system_alert_types_aggregate": [ + 1018, + { + "distinct_on": [ + 1031, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1029, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1020 + ] + } + ], + "e_system_alert_types_by_pk": [ 1017, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_team_roles": [ + 1037, { "distinct_on": [ - 1032, + 1052, "[e_team_roles_select_column!]" ], "limit": [ @@ -127217,19 +127535,19 @@ export default { 38 ], "order_by": [ - 1030, + 1050, "[e_team_roles_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_team_roles_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1032, + 1052, "[e_team_roles_select_column!]" ], "limit": [ @@ -127239,16 +127557,16 @@ export default { 38 ], "order_by": [ - 1030, + 1050, "[e_team_roles_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_team_roles_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -127257,10 +127575,10 @@ export default { } ], "e_team_roster_statuses": [ - 1038, + 1058, { "distinct_on": [ - 1052, + 1072, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127270,19 +127588,19 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1041 + 1061 ] } ], "e_team_roster_statuses_aggregate": [ - 1039, + 1059, { "distinct_on": [ - 1052, + 1072, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127292,16 +127610,16 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1041 + 1061 ] } ], "e_team_roster_statuses_by_pk": [ - 1038, + 1058, { "value": [ 78, @@ -127310,10 +127628,10 @@ export default { } ], "e_timeout_settings": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127323,19 +127641,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_timeout_settings_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_timeout_settings_aggregate": [ - 1059, + 1079, { "distinct_on": [ - 1072, + 1092, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127345,16 +127663,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_timeout_settings_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_timeout_settings_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -127363,10 +127681,10 @@ export default { } ], "e_tournament_stage_types": [ - 1078, + 1098, { "distinct_on": [ - 1093, + 1113, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127376,19 +127694,19 @@ export default { 38 ], "order_by": [ - 1091, + 1111, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_stage_types_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1093, + 1113, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127398,16 +127716,16 @@ export default { 38 ], "order_by": [ - 1091, + 1111, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_stage_types_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -127416,10 +127734,10 @@ export default { } ], "e_tournament_status": [ - 1099, + 1119, { "distinct_on": [ - 1114, + 1134, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127429,19 +127747,19 @@ export default { 38 ], "order_by": [ - 1112, + 1132, "[e_tournament_status_order_by!]" ], "where": [ - 1102 + 1122 ] } ], "e_tournament_status_aggregate": [ - 1100, + 1120, { "distinct_on": [ - 1114, + 1134, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127451,16 +127769,16 @@ export default { 38 ], "order_by": [ - 1112, + 1132, "[e_tournament_status_order_by!]" ], "where": [ - 1102 + 1122 ] } ], "e_tournament_status_by_pk": [ - 1099, + 1119, { "value": [ 78, @@ -127469,10 +127787,10 @@ export default { } ], "e_utility_types": [ - 1120, + 1140, { "distinct_on": [ - 1134, + 1154, "[e_utility_types_select_column!]" ], "limit": [ @@ -127482,19 +127800,19 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_utility_types_order_by!]" ], "where": [ - 1123 + 1143 ] } ], "e_utility_types_aggregate": [ - 1121, + 1141, { "distinct_on": [ - 1134, + 1154, "[e_utility_types_select_column!]" ], "limit": [ @@ -127504,16 +127822,16 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_utility_types_order_by!]" ], "where": [ - 1123 + 1143 ] } ], "e_utility_types_by_pk": [ - 1120, + 1140, { "value": [ 78, @@ -127522,10 +127840,10 @@ export default { } ], "e_veto_pick_types": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127535,19 +127853,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_veto_pick_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_veto_pick_types_aggregate": [ - 1141, + 1161, { "distinct_on": [ - 1154, + 1174, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127557,16 +127875,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_veto_pick_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_veto_pick_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -127575,10 +127893,10 @@ export default { } ], "e_winning_reasons": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127588,19 +127906,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_winning_reasons_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_winning_reasons_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127610,16 +127928,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_winning_reasons_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_winning_reasons_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -127628,10 +127946,10 @@ export default { } ], "friends": [ - 1182, + 1202, { "distinct_on": [ - 1196, + 1216, "[friends_select_column!]" ], "limit": [ @@ -127641,19 +127959,19 @@ export default { 38 ], "order_by": [ - 1194, + 1214, "[friends_order_by!]" ], "where": [ - 1186 + 1206 ] } ], "friends_aggregate": [ - 1183, + 1203, { "distinct_on": [ - 1196, + 1216, "[friends_select_column!]" ], "limit": [ @@ -127663,16 +127981,16 @@ export default { 38 ], "order_by": [ - 1194, + 1214, "[friends_order_by!]" ], "where": [ - 1186 + 1206 ] } ], "friends_by_pk": [ - 1182, + 1202, { "other_player_steam_id": [ 180, @@ -127685,10 +128003,10 @@ export default { } ], "game_server_nodes": [ - 1209, + 1229, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -127698,19 +128016,19 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], "game_server_nodes_aggregate": [ - 1210, + 1230, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -127720,16 +128038,16 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], "game_server_nodes_by_pk": [ - 1209, + 1229, { "id": [ 78, @@ -127738,10 +128056,10 @@ export default { } ], "game_versions": [ - 1260, + 1280, { "distinct_on": [ - 1280, + 1300, "[game_versions_select_column!]" ], "limit": [ @@ -127751,19 +128069,19 @@ export default { 38 ], "order_by": [ - 1277, + 1297, "[game_versions_order_by!]" ], "where": [ - 1265 + 1285 ] } ], "game_versions_aggregate": [ - 1261, + 1281, { "distinct_on": [ - 1280, + 1300, "[game_versions_select_column!]" ], "limit": [ @@ -127773,16 +128091,16 @@ export default { 38 ], "order_by": [ - 1277, + 1297, "[game_versions_order_by!]" ], "where": [ - 1265 + 1285 ] } ], "game_versions_by_pk": [ - 1260, + 1280, { "build_id": [ 38, @@ -127791,10 +128109,10 @@ export default { } ], "gamedata_signature_validations": [ - 1293, + 1313, { "distinct_on": [ - 1312, + 1332, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -127804,19 +128122,19 @@ export default { 38 ], "order_by": [ - 1309, + 1329, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1298 + 1318 ] } ], "gamedata_signature_validations_aggregate": [ - 1294, + 1314, { "distinct_on": [ - 1312, + 1332, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -127826,19 +128144,19 @@ export default { 38 ], "order_by": [ - 1309, + 1329, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1298 + 1318 ] } ], "gamedata_signature_validations_by_pk": [ - 1293, + 1313, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -127874,7 +128192,7 @@ export default { 34, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "target_steam_id": [ @@ -127959,14 +128277,14 @@ export default { 89 ], "get_leaderboard": [ - 1335, + 1355, { "args": [ - 1325, + 1345, "get_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -127976,23 +128294,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_leaderboard_aggregate": [ - 1336, + 1356, { "args": [ - 1325, + 1345, "get_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128002,23 +128320,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_league_season_leaderboard": [ - 1335, + 1355, { "args": [ - 1326, + 1346, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128028,23 +128346,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_league_season_leaderboard_aggregate": [ - 1336, + 1356, { "args": [ - 1326, + 1346, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128054,23 +128372,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_player_leaderboard_rank": [ - 2902, + 2922, { "args": [ - 1327, + 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128080,23 +128398,23 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2903, + 2923, { "args": [ - 1327, + 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128106,19 +128424,19 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "leaderboard_entries": [ - 1335, + 1355, { "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128128,19 +128446,19 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "leaderboard_entries_aggregate": [ - 1336, + 1356, { "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128150,19 +128468,19 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "league_divisions": [ - 1359, + 1379, { "distinct_on": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "limit": [ @@ -128172,19 +128490,19 @@ export default { 38 ], "order_by": [ - 1372, + 1392, "[league_divisions_order_by!]" ], "where": [ - 1363 + 1383 ] } ], "league_divisions_aggregate": [ - 1360, + 1380, { "distinct_on": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "limit": [ @@ -128194,28 +128512,28 @@ export default { 38 ], "order_by": [ - 1372, + 1392, "[league_divisions_order_by!]" ], "where": [ - 1363 + 1383 ] } ], "league_divisions_by_pk": [ - 1359, + 1379, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_match_weeks": [ - 1387, + 1407, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128225,19 +128543,19 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], "league_match_weeks_aggregate": [ - 1388, + 1408, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128247,28 +128565,28 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], "league_match_weeks_by_pk": [ - 1387, + 1407, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_relegation_playoffs": [ - 1428, + 1448, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128278,19 +128596,19 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], "league_relegation_playoffs_aggregate": [ - 1429, + 1449, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128300,28 +128618,28 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], "league_relegation_playoffs_by_pk": [ - 1428, + 1448, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_scheduling_proposals": [ - 1469, + 1489, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128331,19 +128649,19 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "league_scheduling_proposals_aggregate": [ - 1470, + 1490, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128353,28 +128671,28 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "league_scheduling_proposals_by_pk": [ - 1469, + 1489, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_season_divisions": [ - 1510, + 1530, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128384,19 +128702,19 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "league_season_divisions_aggregate": [ - 1511, + 1531, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128406,28 +128724,28 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "league_season_divisions_by_pk": [ - 1510, + 1530, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_seasons": [ - 1535, + 1555, { "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -128437,19 +128755,19 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], "league_seasons_aggregate": [ - 1536, + 1556, { "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -128459,28 +128777,28 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], "league_seasons_by_pk": [ - 1535, + 1555, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_team_movements": [ - 1568, + 1588, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -128490,19 +128808,19 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "league_team_movements_aggregate": [ - 1569, + 1589, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -128512,28 +128830,28 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "league_team_movements_by_pk": [ - 1568, + 1588, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_team_rosters": [ - 1609, + 1629, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128543,19 +128861,19 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "league_team_rosters_aggregate": [ - 1610, + 1630, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128565,19 +128883,19 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "league_team_rosters_by_pk": [ - 1609, + 1629, { "league_team_season_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -128587,10 +128905,10 @@ export default { } ], "league_team_seasons": [ - 1650, + 1670, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128600,19 +128918,19 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "league_team_seasons_aggregate": [ - 1651, + 1671, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128622,28 +128940,28 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "league_team_seasons_by_pk": [ - 1650, + 1670, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_teams": [ - 1692, + 1712, { "distinct_on": [ - 1705, + 1725, "[league_teams_select_column!]" ], "limit": [ @@ -128653,19 +128971,19 @@ export default { 38 ], "order_by": [ - 1703, + 1723, "[league_teams_order_by!]" ], "where": [ - 1695 + 1715 ] } ], "league_teams_aggregate": [ - 1693, + 1713, { "distinct_on": [ - 1705, + 1725, "[league_teams_select_column!]" ], "limit": [ @@ -128675,19 +128993,19 @@ export default { 38 ], "order_by": [ - 1703, + 1723, "[league_teams_order_by!]" ], "where": [ - 1695 + 1715 ] } ], "league_teams_by_pk": [ - 1692, + 1712, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -128708,10 +129026,10 @@ export default { } ], "lobbies": [ - 1711, + 1731, { "distinct_on": [ - 1724, + 1744, "[lobbies_select_column!]" ], "limit": [ @@ -128721,19 +129039,19 @@ export default { 38 ], "order_by": [ - 1722, + 1742, "[lobbies_order_by!]" ], "where": [ - 1714 + 1734 ] } ], "lobbies_aggregate": [ - 1712, + 1732, { "distinct_on": [ - 1724, + 1744, "[lobbies_select_column!]" ], "limit": [ @@ -128743,28 +129061,28 @@ export default { 38 ], "order_by": [ - 1722, + 1742, "[lobbies_order_by!]" ], "where": [ - 1714 + 1734 ] } ], "lobbies_by_pk": [ - 1711, + 1731, { "id": [ - 4442, + 4462, "uuid!" ] } ], "lobby_players": [ - 1730, + 1750, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -128774,19 +129092,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "lobby_players_aggregate": [ - 1731, + 1751, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -128796,19 +129114,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "lobby_players_by_pk": [ - 1730, + 1750, { "lobby_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -128818,10 +129136,10 @@ export default { } ], "map_pools": [ - 1775, + 1795, { "distinct_on": [ - 1788, + 1808, "[map_pools_select_column!]" ], "limit": [ @@ -128831,19 +129149,19 @@ export default { 38 ], "order_by": [ - 1786, + 1806, "[map_pools_order_by!]" ], "where": [ - 1778 + 1798 ] } ], "map_pools_aggregate": [ - 1776, + 1796, { "distinct_on": [ - 1788, + 1808, "[map_pools_select_column!]" ], "limit": [ @@ -128853,28 +129171,28 @@ export default { 38 ], "order_by": [ - 1786, + 1806, "[map_pools_order_by!]" ], "where": [ - 1778 + 1798 ] } ], "map_pools_by_pk": [ - 1775, + 1795, { "id": [ - 4442, + 4462, "uuid!" ] } ], "maps": [ - 1794, + 1814, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -128884,19 +129202,19 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], "maps_aggregate": [ - 1795, + 1815, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -128906,28 +129224,28 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], "maps_by_pk": [ - 1794, + 1814, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_clips": [ - 1823, + 1843, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -128937,19 +129255,19 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_aggregate": [ - 1824, + 1844, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -128959,28 +129277,28 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_by_pk": [ - 1823, + 1843, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_demo_sessions": [ - 1865, + 1885, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -128990,19 +129308,19 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], "match_demo_sessions_aggregate": [ - 1866, + 1886, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -129012,28 +129330,28 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], "match_demo_sessions_by_pk": [ - 1865, + 1885, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_lineup_players": [ - 1911, + 1931, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129043,19 +129361,19 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "match_lineup_players_aggregate": [ - 1912, + 1932, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129065,28 +129383,28 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "match_lineup_players_by_pk": [ - 1911, + 1931, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_lineups": [ - 1956, + 1976, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -129096,19 +129414,19 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "match_lineups_aggregate": [ - 1957, + 1977, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -129118,28 +129436,28 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "match_lineups_by_pk": [ - 1956, + 1976, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_demos": [ - 1998, + 2018, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -129149,19 +129467,19 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "match_map_demos_aggregate": [ - 1999, + 2019, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -129171,28 +129489,28 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "match_map_demos_by_pk": [ - 1998, + 2018, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_rounds": [ - 2049, + 2069, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129202,19 +129520,19 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "match_map_rounds_aggregate": [ - 2050, + 2070, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129224,28 +129542,28 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "match_map_rounds_by_pk": [ - 2049, + 2069, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129255,19 +129573,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_map_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129277,28 +129595,28 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_map_veto_picks_by_pk": [ - 2090, + 2110, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_maps": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -129308,19 +129626,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -129330,28 +129648,28 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_by_pk": [ - 2114, + 2134, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_options": [ - 2156, + 2176, { "distinct_on": [ - 2171, + 2191, "[match_options_select_column!]" ], "limit": [ @@ -129361,19 +129679,19 @@ export default { 38 ], "order_by": [ - 2169, + 2189, "[match_options_order_by!]" ], "where": [ - 2160 + 2180 ] } ], "match_options_aggregate": [ - 2157, + 2177, { "distinct_on": [ - 2171, + 2191, "[match_options_select_column!]" ], "limit": [ @@ -129383,28 +129701,28 @@ export default { 38 ], "order_by": [ - 2169, + 2189, "[match_options_order_by!]" ], "where": [ - 2160 + 2180 ] } ], "match_options_by_pk": [ - 2156, + 2176, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_region_veto_picks": [ - 2184, + 2204, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129414,19 +129732,19 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], "match_region_veto_picks_aggregate": [ - 2185, + 2205, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129436,28 +129754,28 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], "match_region_veto_picks_by_pk": [ - 2184, + 2204, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_streams": [ - 2208, + 2228, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -129467,19 +129785,19 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "match_streams_aggregate": [ - 2209, + 2229, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -129489,28 +129807,28 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "match_streams_by_pk": [ - 2208, + 2228, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_type_cfgs": [ - 2258, + 2278, { "distinct_on": [ - 2270, + 2290, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129520,19 +129838,19 @@ export default { 38 ], "order_by": [ - 2268, + 2288, "[match_type_cfgs_order_by!]" ], "where": [ - 2261 + 2281 ] } ], "match_type_cfgs_aggregate": [ - 2259, + 2279, { "distinct_on": [ - 2270, + 2290, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129542,16 +129860,16 @@ export default { 38 ], "order_by": [ - 2268, + 2288, "[match_type_cfgs_order_by!]" ], "where": [ - 2261 + 2281 ] } ], "match_type_cfgs_by_pk": [ - 2258, + 2278, { "type": [ 551, @@ -129560,10 +129878,10 @@ export default { } ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -129573,19 +129891,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_aggregate": [ - 2277, + 2297, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -129595,19 +129913,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_by_pk": [ - 2276, + 2296, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -129616,10 +129934,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2318, + 2338, { "distinct_on": [ - 2330, + 2350, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129629,19 +129947,19 @@ export default { 38 ], "order_by": [ - 2328, + 2348, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2321 + 2341 ] } ], "migration_hashes_hashes_aggregate": [ - 2319, + 2339, { "distinct_on": [ - 2330, + 2350, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129651,16 +129969,16 @@ export default { 38 ], "order_by": [ - 2328, + 2348, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2321 + 2341 ] } ], "migration_hashes_hashes_by_pk": [ - 2318, + 2338, { "name": [ 78, @@ -129669,10 +129987,10 @@ export default { } ], "my_friends": [ - 2336, + 2356, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -129682,19 +130000,19 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], "my_friends_aggregate": [ - 2337, + 2357, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -129704,11 +130022,11 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], @@ -129716,7 +130034,7 @@ export default { 48, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -129725,10 +130043,10 @@ export default { 48 ], "news_articles": [ - 2382, + 2402, { "distinct_on": [ - 2396, + 2416, "[news_articles_select_column!]" ], "limit": [ @@ -129738,19 +130056,19 @@ export default { 38 ], "order_by": [ - 2394, + 2414, "[news_articles_order_by!]" ], "where": [ - 2386 + 2406 ] } ], "news_articles_aggregate": [ - 2383, + 2403, { "distinct_on": [ - 2396, + 2416, "[news_articles_select_column!]" ], "limit": [ @@ -129760,28 +130078,28 @@ export default { 38 ], "order_by": [ - 2394, + 2414, "[news_articles_order_by!]" ], "where": [ - 2386 + 2406 ] } ], "news_articles_by_pk": [ - 2382, + 2402, { "id": [ - 4442, + 4462, "uuid!" ] } ], "notifications": [ - 2409, + 2429, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -129791,19 +130109,19 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "notifications_aggregate": [ - 2410, + 2430, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -129813,28 +130131,28 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "notifications_by_pk": [ - 2409, + 2429, { "id": [ - 4442, + 4462, "uuid!" ] } ], "pending_match_import_players": [ - 2462, + 2482, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -129844,19 +130162,19 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "pending_match_import_players_aggregate": [ - 2463, + 2483, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -129866,32 +130184,32 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "pending_match_import_players_by_pk": [ - 2462, + 2482, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "pending_match_imports": [ - 2503, + 2523, { "distinct_on": [ - 2518, + 2538, "[pending_match_imports_select_column!]" ], "limit": [ @@ -129901,19 +130219,19 @@ export default { 38 ], "order_by": [ - 2516, + 2536, "[pending_match_imports_order_by!]" ], "where": [ - 2507 + 2527 ] } ], "pending_match_imports_aggregate": [ - 2504, + 2524, { "distinct_on": [ - 2518, + 2538, "[pending_match_imports_select_column!]" ], "limit": [ @@ -129923,28 +130241,28 @@ export default { 38 ], "order_by": [ - 2516, + 2536, "[pending_match_imports_order_by!]" ], "where": [ - 2507 + 2527 ] } ], "pending_match_imports_by_pk": [ - 2503, + 2523, { "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "player_aim_stats_demo": [ - 2531, + 2551, { "distinct_on": [ - 2545, + 2565, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -129954,19 +130272,19 @@ export default { 38 ], "order_by": [ - 2543, + 2563, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2535 + 2555 ] } ], "player_aim_stats_demo_aggregate": [ - 2532, + 2552, { "distinct_on": [ - 2545, + 2565, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -129976,32 +130294,32 @@ export default { 38 ], "order_by": [ - 2543, + 2563, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2535 + 2555 ] } ], "player_aim_stats_demo_by_pk": [ - 2531, + 2551, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2558, + 2578, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130011,19 +130329,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "player_aim_weapon_stats_aggregate": [ - 2559, + 2579, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130033,19 +130351,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "player_aim_weapon_stats_by_pk": [ - 2558, + 2578, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -130059,10 +130377,10 @@ export default { } ], "player_assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -130072,19 +130390,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -130094,16 +130412,16 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_by_pk": [ - 2599, + 2619, { "attacked_steam_id": [ 180, @@ -130114,20 +130432,20 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_career_stats_v": [ - 2644, + 2664, { "distinct_on": [ - 2652, + 2672, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130137,19 +130455,19 @@ export default { 38 ], "order_by": [ - 2651, + 2671, "[player_career_stats_v_order_by!]" ], "where": [ - 2648 + 2668 ] } ], "player_career_stats_v_aggregate": [ - 2645, + 2665, { "distinct_on": [ - 2652, + 2672, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130159,19 +130477,19 @@ export default { 38 ], "order_by": [ - 2651, + 2671, "[player_career_stats_v_order_by!]" ], "where": [ - 2648 + 2668 ] } ], "player_damages": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -130181,19 +130499,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -130203,36 +130521,36 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_by_pk": [ - 2662, + 2682, { "id": [ - 4442, + 4462, "uuid!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_elo": [ - 2703, + 2723, { "distinct_on": [ - 2717, + 2737, "[player_elo_select_column!]" ], "limit": [ @@ -130242,19 +130560,19 @@ export default { 38 ], "order_by": [ - 2715, + 2735, "[player_elo_order_by!]" ], "where": [ - 2707 + 2727 ] } ], "player_elo_aggregate": [ - 2704, + 2724, { "distinct_on": [ - 2717, + 2737, "[player_elo_select_column!]" ], "limit": [ @@ -130264,19 +130582,19 @@ export default { 38 ], "order_by": [ - 2715, + 2735, "[player_elo_order_by!]" ], "where": [ - 2707 + 2727 ] } ], "player_elo_by_pk": [ - 2703, + 2723, { "match_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -130290,10 +130608,10 @@ export default { } ], "player_faceit_rank_history": [ - 2730, + 2750, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130303,19 +130621,19 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], "player_faceit_rank_history_aggregate": [ - 2731, + 2751, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130325,28 +130643,28 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], "player_faceit_rank_history_by_pk": [ - 2730, + 2750, { "id": [ - 4442, + 4462, "uuid!" ] } ], "player_flashes": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -130356,19 +130674,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_flashes_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -130378,16 +130696,16 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_flashes_by_pk": [ - 2771, + 2791, { "attacked_steam_id": [ 180, @@ -130398,20 +130716,20 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -130421,19 +130739,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -130443,16 +130761,16 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_by_pk": [ - 2816, + 2836, { "attacked_steam_id": [ 180, @@ -130463,20 +130781,20 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2828, + 2848, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130486,19 +130804,19 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], "player_kills_by_weapon_aggregate": [ - 2829, + 2849, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130508,16 +130826,16 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], "player_kills_by_weapon_by_pk": [ - 2828, + 2848, { "player_steam_id": [ 180, @@ -130530,10 +130848,10 @@ export default { } ], "player_leaderboard_rank": [ - 2902, + 2922, { "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130543,19 +130861,19 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "player_leaderboard_rank_aggregate": [ - 2903, + 2923, { "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130565,19 +130883,19 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "player_match_map_stats": [ - 2925, + 2945, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130587,19 +130905,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "player_match_map_stats_aggregate": [ - 2926, + 2946, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130609,19 +130927,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "player_match_map_stats_by_pk": [ - 2925, + 2945, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -130631,10 +130949,10 @@ export default { } ], "player_match_performance_v": [ - 2966, + 2986, { "distinct_on": [ - 2974, + 2994, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130644,19 +130962,19 @@ export default { 38 ], "order_by": [ - 2973, + 2993, "[player_match_performance_v_order_by!]" ], "where": [ - 2970 + 2990 ] } ], "player_match_performance_v_aggregate": [ - 2967, + 2987, { "distinct_on": [ - 2974, + 2994, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130666,19 +130984,19 @@ export default { 38 ], "order_by": [ - 2973, + 2993, "[player_match_performance_v_order_by!]" ], "where": [ - 2970 + 2990 ] } ], "player_match_stats_v": [ - 2984, + 3004, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -130688,19 +131006,19 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "player_match_stats_v_aggregate": [ - 2985, + 3005, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -130710,19 +131028,19 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "player_objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -130732,19 +131050,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -130754,19 +131072,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_by_pk": [ - 3017, + 3037, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -130774,16 +131092,16 @@ export default { "bigint!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_performance_v": [ - 3058, + 3078, { "distinct_on": [ - 3066, + 3086, "[player_performance_v_select_column!]" ], "limit": [ @@ -130793,19 +131111,19 @@ export default { 38 ], "order_by": [ - 3065, + 3085, "[player_performance_v_order_by!]" ], "where": [ - 3062 + 3082 ] } ], "player_performance_v_aggregate": [ - 3059, + 3079, { "distinct_on": [ - 3066, + 3086, "[player_performance_v_select_column!]" ], "limit": [ @@ -130815,19 +131133,19 @@ export default { 38 ], "order_by": [ - 3065, + 3085, "[player_performance_v_order_by!]" ], "where": [ - 3062 + 3082 ] } ], "player_premier_rank_history": [ - 3076, + 3096, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -130837,19 +131155,19 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "player_premier_rank_history_aggregate": [ - 3077, + 3097, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -130859,28 +131177,28 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "player_premier_rank_history_by_pk": [ - 3076, + 3096, { "id": [ - 4442, + 4462, "uuid!" ] } ], "player_sanctions": [ - 3117, + 3137, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -130890,19 +131208,19 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "player_sanctions_aggregate": [ - 3118, + 3138, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -130912,32 +131230,32 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "player_sanctions_by_pk": [ - 3117, + 3137, { "created_at": [ - 4004, + 4024, "timestamptz!" ], "id": [ - 4442, + 4462, "uuid!" ] } ], "player_season_stats": [ - 3158, + 3178, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -130947,19 +131265,19 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "player_season_stats_aggregate": [ - 3159, + 3179, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -130969,32 +131287,32 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "player_season_stats_by_pk": [ - 3158, + 3178, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4442, + 4462, "uuid!" ] } ], "player_stats": [ - 3217, + 3237, { "distinct_on": [ - 3232, + 3252, "[player_stats_select_column!]" ], "limit": [ @@ -131004,19 +131322,19 @@ export default { 38 ], "order_by": [ - 3230, + 3250, "[player_stats_order_by!]" ], "where": [ - 3221 + 3241 ] } ], "player_stats_aggregate": [ - 3218, + 3238, { "distinct_on": [ - 3232, + 3252, "[player_stats_select_column!]" ], "limit": [ @@ -131026,16 +131344,16 @@ export default { 38 ], "order_by": [ - 3230, + 3250, "[player_stats_order_by!]" ], "where": [ - 3221 + 3241 ] } ], "player_stats_by_pk": [ - 3217, + 3237, { "player_steam_id": [ 180, @@ -131044,10 +131362,10 @@ export default { } ], "player_steam_bot_friend": [ - 3245, + 3265, { "distinct_on": [ - 3264, + 3284, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131057,19 +131375,19 @@ export default { 38 ], "order_by": [ - 3261, + 3281, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3250 + 3270 ] } ], "player_steam_bot_friend_aggregate": [ - 3246, + 3266, { "distinct_on": [ - 3264, + 3284, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131079,16 +131397,16 @@ export default { 38 ], "order_by": [ - 3261, + 3281, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3250 + 3270 ] } ], "player_steam_bot_friend_by_pk": [ - 3245, + 3265, { "steam_id": [ 180, @@ -131097,10 +131415,10 @@ export default { } ], "player_steam_match_auth": [ - 3277, + 3297, { "distinct_on": [ - 3291, + 3311, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131110,19 +131428,19 @@ export default { 38 ], "order_by": [ - 3289, + 3309, "[player_steam_match_auth_order_by!]" ], "where": [ - 3281 + 3301 ] } ], "player_steam_match_auth_aggregate": [ - 3278, + 3298, { "distinct_on": [ - 3291, + 3311, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131132,16 +131450,16 @@ export default { 38 ], "order_by": [ - 3289, + 3309, "[player_steam_match_auth_order_by!]" ], "where": [ - 3281 + 3301 ] } ], "player_steam_match_auth_by_pk": [ - 3277, + 3297, { "steam_id": [ 180, @@ -131150,10 +131468,10 @@ export default { } ], "player_unused_utility": [ - 3304, + 3324, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131163,19 +131481,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utility_aggregate": [ - 3305, + 3325, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131185,19 +131503,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utility_by_pk": [ - 3304, + 3324, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -131207,10 +131525,10 @@ export default { } ], "player_utility": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -131220,19 +131538,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utility_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -131242,36 +131560,36 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utility_by_pk": [ - 3345, + 3365, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3386, + 3406, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131281,19 +131599,19 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], "player_weapon_stats_v_aggregate": [ - 3387, + 3407, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131303,19 +131621,19 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], "players": [ - 3419, + 3439, { "distinct_on": [ - 3434, + 3454, "[players_select_column!]" ], "limit": [ @@ -131325,19 +131643,19 @@ export default { 38 ], "order_by": [ - 3432, + 3452, "[players_order_by!]" ], "where": [ - 3423 + 3443 ] } ], "players_aggregate": [ - 3420, + 3440, { "distinct_on": [ - 3434, + 3454, "[players_select_column!]" ], "limit": [ @@ -131347,16 +131665,16 @@ export default { 38 ], "order_by": [ - 3432, + 3452, "[players_order_by!]" ], "where": [ - 3423 + 3443 ] } ], "players_by_pk": [ - 3419, + 3439, { "steam_id": [ 180, @@ -131365,10 +131683,10 @@ export default { } ], "plugin_versions": [ - 3447, + 3467, { "distinct_on": [ - 3461, + 3481, "[plugin_versions_select_column!]" ], "limit": [ @@ -131378,19 +131696,19 @@ export default { 38 ], "order_by": [ - 3459, + 3479, "[plugin_versions_order_by!]" ], "where": [ - 3451 + 3471 ] } ], "plugin_versions_aggregate": [ - 3448, + 3468, { "distinct_on": [ - 3461, + 3481, "[plugin_versions_select_column!]" ], "limit": [ @@ -131400,17 +131718,21 @@ export default { 38 ], "order_by": [ - 3459, + 3479, "[plugin_versions_order_by!]" ], "where": [ - 3451 + 3471 ] } ], "plugin_versions_by_pk": [ - 3447, + 3467, { + "runtime": [ + 901, + "e_plugin_runtimes_enum!" + ], "version": [ 78, "String!" @@ -131434,10 +131756,10 @@ export default { } ], "seasons": [ - 3478, + 3498, { "distinct_on": [ - 3493, + 3513, "[seasons_select_column!]" ], "limit": [ @@ -131447,19 +131769,19 @@ export default { 38 ], "order_by": [ - 3491, + 3511, "[seasons_order_by!]" ], "where": [ - 3482 + 3502 ] } ], "seasons_aggregate": [ - 3479, + 3499, { "distinct_on": [ - 3493, + 3513, "[seasons_select_column!]" ], "limit": [ @@ -131469,28 +131791,28 @@ export default { 38 ], "order_by": [ - 3491, + 3511, "[seasons_order_by!]" ], "where": [ - 3482 + 3502 ] } ], "seasons_by_pk": [ - 3478, + 3498, { "id": [ - 4442, + 4462, "uuid!" ] } ], "server_regions": [ - 3506, + 3526, { "distinct_on": [ - 3520, + 3540, "[server_regions_select_column!]" ], "limit": [ @@ -131500,19 +131822,19 @@ export default { 38 ], "order_by": [ - 3518, + 3538, "[server_regions_order_by!]" ], "where": [ - 3510 + 3530 ] } ], "server_regions_aggregate": [ - 3507, + 3527, { "distinct_on": [ - 3520, + 3540, "[server_regions_select_column!]" ], "limit": [ @@ -131522,16 +131844,16 @@ export default { 38 ], "order_by": [ - 3518, + 3538, "[server_regions_order_by!]" ], "where": [ - 3510 + 3530 ] } ], "server_regions_by_pk": [ - 3506, + 3526, { "value": [ 78, @@ -131540,10 +131862,10 @@ export default { } ], "servers": [ - 3533, + 3553, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -131553,19 +131875,19 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_aggregate": [ - 3534, + 3554, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -131575,28 +131897,28 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_by_pk": [ - 3533, + 3553, { "id": [ - 4442, + 4462, "uuid!" ] } ], "settings": [ - 3579, + 3599, { "distinct_on": [ - 3591, + 3611, "[settings_select_column!]" ], "limit": [ @@ -131606,19 +131928,19 @@ export default { 38 ], "order_by": [ - 3589, + 3609, "[settings_order_by!]" ], "where": [ - 3582 + 3602 ] } ], "settings_aggregate": [ - 3580, + 3600, { "distinct_on": [ - 3591, + 3611, "[settings_select_column!]" ], "limit": [ @@ -131628,16 +131950,16 @@ export default { 38 ], "order_by": [ - 3589, + 3609, "[settings_order_by!]" ], "where": [ - 3582 + 3602 ] } ], "settings_by_pk": [ - 3579, + 3599, { "name": [ 78, @@ -131649,10 +131971,10 @@ export default { 72 ], "steam_account_claims": [ - 3599, + 3619, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -131662,19 +131984,19 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "steam_account_claims_aggregate": [ - 3600, + 3620, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -131684,28 +132006,28 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "steam_account_claims_by_pk": [ - 3599, + 3619, { "id": [ - 4442, + 4462, "uuid!" ] } ], "steam_accounts": [ - 3623, + 3643, { "distinct_on": [ - 3638, + 3658, "[steam_accounts_select_column!]" ], "limit": [ @@ -131715,19 +132037,19 @@ export default { 38 ], "order_by": [ - 3636, + 3656, "[steam_accounts_order_by!]" ], "where": [ - 3627 + 3647 ] } ], "steam_accounts_aggregate": [ - 3624, + 3644, { "distinct_on": [ - 3638, + 3658, "[steam_accounts_select_column!]" ], "limit": [ @@ -131737,28 +132059,28 @@ export default { 38 ], "order_by": [ - 3636, + 3656, "[steam_accounts_order_by!]" ], "where": [ - 3627 + 3647 ] } ], "steam_accounts_by_pk": [ - 3623, + 3643, { "id": [ - 4442, + 4462, "uuid!" ] } ], "system_alerts": [ - 3651, + 3671, { "distinct_on": [ - 3665, + 3685, "[system_alerts_select_column!]" ], "limit": [ @@ -131768,19 +132090,19 @@ export default { 38 ], "order_by": [ - 3663, + 3683, "[system_alerts_order_by!]" ], "where": [ - 3655 + 3675 ] } ], "system_alerts_aggregate": [ - 3652, + 3672, { "distinct_on": [ - 3665, + 3685, "[system_alerts_select_column!]" ], "limit": [ @@ -131790,19 +132112,19 @@ export default { 38 ], "order_by": [ - 3663, + 3683, "[system_alerts_order_by!]" ], "where": [ - 3655 + 3675 ] } ], "system_alerts_by_pk": [ - 3651, + 3671, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -131811,16 +132133,16 @@ export default { 85, { "team_id": [ - 4442, + 4462, "uuid!" ] } ], "team_invites": [ - 3678, + 3698, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -131830,19 +132152,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_invites_aggregate": [ - 3679, + 3699, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -131852,28 +132174,28 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_invites_by_pk": [ - 3678, + 3698, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_roster": [ - 3719, + 3739, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -131883,19 +132205,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_roster_aggregate": [ - 3720, + 3740, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -131905,32 +132227,32 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_roster_by_pk": [ - 3719, + 3739, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_alerts": [ - 3764, + 3784, { "distinct_on": [ - 3778, + 3798, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -131940,19 +132262,19 @@ export default { 38 ], "order_by": [ - 3776, + 3796, "[team_scrim_alerts_order_by!]" ], "where": [ - 3768 + 3788 ] } ], "team_scrim_alerts_aggregate": [ - 3765, + 3785, { "distinct_on": [ - 3778, + 3798, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -131962,28 +132284,28 @@ export default { 38 ], "order_by": [ - 3776, + 3796, "[team_scrim_alerts_order_by!]" ], "where": [ - 3768 + 3788 ] } ], "team_scrim_alerts_by_pk": [ - 3764, + 3784, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_availability": [ - 3791, + 3811, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -131993,19 +132315,19 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "team_scrim_availability_aggregate": [ - 3792, + 3812, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132015,28 +132337,28 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "team_scrim_availability_by_pk": [ - 3791, + 3811, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3819, + 3839, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132046,19 +132368,19 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "team_scrim_request_proposals_aggregate": [ - 3820, + 3840, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132068,28 +132390,28 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "team_scrim_request_proposals_by_pk": [ - 3819, + 3839, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_requests": [ - 3860, + 3880, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132099,19 +132421,19 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], "team_scrim_requests_aggregate": [ - 3861, + 3881, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132121,28 +132443,28 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], "team_scrim_requests_by_pk": [ - 3860, + 3880, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_settings": [ - 3906, + 3926, { "distinct_on": [ - 3921, + 3941, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132152,19 +132474,19 @@ export default { 38 ], "order_by": [ - 3919, + 3939, "[team_scrim_settings_order_by!]" ], "where": [ - 3910 + 3930 ] } ], "team_scrim_settings_aggregate": [ - 3907, + 3927, { "distinct_on": [ - 3921, + 3941, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132174,28 +132496,28 @@ export default { 38 ], "order_by": [ - 3919, + 3939, "[team_scrim_settings_order_by!]" ], "where": [ - 3910 + 3930 ] } ], "team_scrim_settings_by_pk": [ - 3906, + 3926, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_suggestions": [ - 3934, + 3954, { "distinct_on": [ - 3948, + 3968, "[team_suggestions_select_column!]" ], "limit": [ @@ -132205,19 +132527,19 @@ export default { 38 ], "order_by": [ - 3946, + 3966, "[team_suggestions_order_by!]" ], "where": [ - 3938 + 3958 ] } ], "team_suggestions_aggregate": [ - 3935, + 3955, { "distinct_on": [ - 3948, + 3968, "[team_suggestions_select_column!]" ], "limit": [ @@ -132227,28 +132549,28 @@ export default { 38 ], "order_by": [ - 3946, + 3966, "[team_suggestions_order_by!]" ], "where": [ - 3938 + 3958 ] } ], "team_suggestions_by_pk": [ - 3934, + 3954, { "id": [ - 4442, + 4462, "uuid!" ] } ], "teams": [ - 3961, + 3981, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -132258,19 +132580,19 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "teams_aggregate": [ - 3962, + 3982, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -132280,19 +132602,19 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "teams_by_pk": [ - 3961, + 3981, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -132301,10 +132623,10 @@ export default { 86 ], "tournament_brackets": [ - 4006, + 4026, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132314,19 +132636,19 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "tournament_brackets_aggregate": [ - 4007, + 4027, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132336,28 +132658,28 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "tournament_brackets_by_pk": [ - 4006, + 4026, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_organizers": [ - 4052, + 4072, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132367,19 +132689,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_organizers_aggregate": [ - 4053, + 4073, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132389,32 +132711,32 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_organizers_by_pk": [ - 4052, + 4072, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_stage_windows": [ - 4093, + 4113, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132424,19 +132746,19 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], "tournament_stage_windows_aggregate": [ - 4094, + 4114, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132446,28 +132768,28 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], "tournament_stage_windows_by_pk": [ - 4093, + 4113, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_stages": [ - 4134, + 4154, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -132477,19 +132799,19 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "tournament_stages_aggregate": [ - 4135, + 4155, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -132499,28 +132821,28 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "tournament_stages_by_pk": [ - 4134, + 4154, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_team_invites": [ - 4185, + 4205, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132530,19 +132852,19 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], "tournament_team_invites_aggregate": [ - 4186, + 4206, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132552,28 +132874,28 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], "tournament_team_invites_by_pk": [ - 4185, + 4205, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_team_roster": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132583,19 +132905,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_team_roster_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132605,32 +132927,32 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_team_roster_by_pk": [ - 4226, + 4246, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_teams": [ - 4267, + 4287, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -132640,19 +132962,19 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "tournament_teams_aggregate": [ - 4268, + 4288, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -132662,28 +132984,28 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "tournament_teams_by_pk": [ - 4267, + 4287, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_trophies": [ - 4309, + 4329, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -132693,19 +133015,19 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophies_aggregate": [ - 4310, + 4330, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -132715,28 +133037,28 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophies_by_pk": [ - 4309, + 4329, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_trophy_configs": [ - 4354, + 4374, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -132746,19 +133068,19 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], "tournament_trophy_configs_aggregate": [ - 4355, + 4375, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -132768,28 +133090,28 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], "tournament_trophy_configs_by_pk": [ - 4354, + 4374, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournaments": [ - 4396, + 4416, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -132799,19 +133121,19 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_aggregate": [ - 4397, + 4417, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -132821,28 +133143,28 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_by_pk": [ - 4396, + 4416, { "id": [ - 4442, + 4462, "uuid!" ] } ], "v_gpu_pool_status": [ - 4445, + 4465, { "distinct_on": [ - 4453, + 4473, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -132852,19 +133174,19 @@ export default { 38 ], "order_by": [ - 4452, + 4472, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4449 + 4469 ] } ], "v_gpu_pool_status_aggregate": [ - 4446, + 4466, { "distinct_on": [ - 4453, + 4473, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -132874,19 +133196,19 @@ export default { 38 ], "order_by": [ - 4452, + 4472, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4449 + 4469 ] } ], "v_league_division_standings": [ - 4463, + 4483, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -132896,19 +133218,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "v_league_division_standings_aggregate": [ - 4464, + 4484, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -132918,19 +133240,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "v_league_season_player_stats": [ - 4496, + 4516, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -132940,19 +133262,19 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], "v_league_season_player_stats_aggregate": [ - 4497, + 4517, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -132962,19 +133284,19 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], "v_match_captains": [ - 4547, + 4567, { "distinct_on": [ - 4559, + 4579, "[v_match_captains_select_column!]" ], "limit": [ @@ -132984,19 +133306,19 @@ export default { 38 ], "order_by": [ - 4558, + 4578, "[v_match_captains_order_by!]" ], "where": [ - 4551 + 4571 ] } ], "v_match_captains_aggregate": [ - 4548, + 4568, { "distinct_on": [ - 4559, + 4579, "[v_match_captains_select_column!]" ], "limit": [ @@ -133006,19 +133328,19 @@ export default { 38 ], "order_by": [ - 4558, + 4578, "[v_match_captains_order_by!]" ], "where": [ - 4551 + 4571 ] } ], "v_match_clutches": [ - 4571, + 4591, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133028,19 +133350,19 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], "v_match_clutches_aggregate": [ - 4572, + 4592, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133050,19 +133372,19 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], "v_match_kill_pairs": [ - 4604, + 4624, { "distinct_on": [ - 4612, + 4632, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133072,19 +133394,19 @@ export default { 38 ], "order_by": [ - 4611, + 4631, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4608 + 4628 ] } ], "v_match_kill_pairs_aggregate": [ - 4605, + 4625, { "distinct_on": [ - 4612, + 4632, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133094,19 +133416,19 @@ export default { 38 ], "order_by": [ - 4611, + 4631, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4608 + 4628 ] } ], "v_match_lineup_buy_types": [ - 4622, + 4642, { "distinct_on": [ - 4630, + 4650, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133116,19 +133438,19 @@ export default { 38 ], "order_by": [ - 4629, + 4649, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4626 + 4646 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4623, + 4643, { "distinct_on": [ - 4630, + 4650, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133138,19 +133460,19 @@ export default { 38 ], "order_by": [ - 4629, + 4649, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4626 + 4646 ] } ], "v_match_lineup_map_stats": [ - 4640, + 4660, { "distinct_on": [ - 4648, + 4668, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133160,19 +133482,19 @@ export default { 38 ], "order_by": [ - 4647, + 4667, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4644 + 4664 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4641, + 4661, { "distinct_on": [ - 4648, + 4668, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133182,19 +133504,19 @@ export default { 38 ], "order_by": [ - 4647, + 4667, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4644 + 4664 ] } ], "v_match_map_backup_rounds": [ - 4658, + 4678, { "distinct_on": [ - 4669, + 4689, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133204,19 +133526,19 @@ export default { 38 ], "order_by": [ - 4668, + 4688, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4662 + 4682 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4659, + 4679, { "distinct_on": [ - 4669, + 4689, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133226,19 +133548,19 @@ export default { 38 ], "order_by": [ - 4668, + 4688, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4662 + 4682 ] } ], "v_match_player_buy_types": [ - 4681, + 4701, { "distinct_on": [ - 4689, + 4709, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133248,19 +133570,19 @@ export default { 38 ], "order_by": [ - 4688, + 4708, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4685 + 4705 ] } ], "v_match_player_buy_types_aggregate": [ - 4682, + 4702, { "distinct_on": [ - 4689, + 4709, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133270,19 +133592,19 @@ export default { 38 ], "order_by": [ - 4688, + 4708, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4685 + 4705 ] } ], "v_match_player_opening_duels": [ - 4699, + 4719, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133292,19 +133614,19 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "v_match_player_opening_duels_aggregate": [ - 4700, + 4720, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133314,19 +133636,19 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "v_player_arch_nemesis": [ - 4732, + 4752, { "distinct_on": [ - 4740, + 4760, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133336,19 +133658,19 @@ export default { 38 ], "order_by": [ - 4739, + 4759, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4736 + 4756 ] } ], "v_player_arch_nemesis_aggregate": [ - 4733, + 4753, { "distinct_on": [ - 4740, + 4760, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133358,19 +133680,19 @@ export default { 38 ], "order_by": [ - 4739, + 4759, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4736 + 4756 ] } ], "v_player_damage": [ - 4750, + 4770, { "distinct_on": [ - 4758, + 4778, "[v_player_damage_select_column!]" ], "limit": [ @@ -133380,19 +133702,19 @@ export default { 38 ], "order_by": [ - 4757, + 4777, "[v_player_damage_order_by!]" ], "where": [ - 4754 + 4774 ] } ], "v_player_damage_aggregate": [ - 4751, + 4771, { "distinct_on": [ - 4758, + 4778, "[v_player_damage_select_column!]" ], "limit": [ @@ -133402,19 +133724,19 @@ export default { 38 ], "order_by": [ - 4757, + 4777, "[v_player_damage_order_by!]" ], "where": [ - 4754 + 4774 ] } ], "v_player_elo": [ - 4768, + 4788, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -133424,19 +133746,19 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "v_player_elo_aggregate": [ - 4769, + 4789, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -133446,19 +133768,19 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "v_player_map_losses": [ - 4819, + 4839, { "distinct_on": [ - 4827, + 4847, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133468,19 +133790,19 @@ export default { 38 ], "order_by": [ - 4826, + 4846, "[v_player_map_losses_order_by!]" ], "where": [ - 4823 + 4843 ] } ], "v_player_map_losses_aggregate": [ - 4820, + 4840, { "distinct_on": [ - 4827, + 4847, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133490,19 +133812,19 @@ export default { 38 ], "order_by": [ - 4826, + 4846, "[v_player_map_losses_order_by!]" ], "where": [ - 4823 + 4843 ] } ], "v_player_map_wins": [ - 4837, + 4857, { "distinct_on": [ - 4845, + 4865, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133512,19 +133834,19 @@ export default { 38 ], "order_by": [ - 4844, + 4864, "[v_player_map_wins_order_by!]" ], "where": [ - 4841 + 4861 ] } ], "v_player_map_wins_aggregate": [ - 4838, + 4858, { "distinct_on": [ - 4845, + 4865, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133534,19 +133856,19 @@ export default { 38 ], "order_by": [ - 4844, + 4864, "[v_player_map_wins_order_by!]" ], "where": [ - 4841 + 4861 ] } ], "v_player_match_head_to_head": [ - 4855, + 4875, { "distinct_on": [ - 4863, + 4883, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133556,19 +133878,19 @@ export default { 38 ], "order_by": [ - 4862, + 4882, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4859 + 4879 ] } ], "v_player_match_head_to_head_aggregate": [ - 4856, + 4876, { "distinct_on": [ - 4863, + 4883, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133578,19 +133900,19 @@ export default { 38 ], "order_by": [ - 4862, + 4882, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4859 + 4879 ] } ], "v_player_match_map_hltv": [ - 4873, + 4893, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133600,19 +133922,19 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "v_player_match_map_hltv_aggregate": [ - 4874, + 4894, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133622,19 +133944,19 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "v_player_match_map_roles": [ - 4910, + 4930, { "distinct_on": [ - 4918, + 4938, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133644,19 +133966,19 @@ export default { 38 ], "order_by": [ - 4917, + 4937, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4914 + 4934 ] } ], "v_player_match_map_roles_aggregate": [ - 4911, + 4931, { "distinct_on": [ - 4918, + 4938, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133666,19 +133988,19 @@ export default { 38 ], "order_by": [ - 4917, + 4937, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4914 + 4934 ] } ], "v_player_match_performance": [ - 4928, + 4948, { "distinct_on": [ - 4936, + 4956, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -133688,19 +134010,19 @@ export default { 38 ], "order_by": [ - 4935, + 4955, "[v_player_match_performance_order_by!]" ], "where": [ - 4932 + 4952 ] } ], "v_player_match_performance_aggregate": [ - 4929, + 4949, { "distinct_on": [ - 4936, + 4956, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -133710,19 +134032,19 @@ export default { 38 ], "order_by": [ - 4935, + 4955, "[v_player_match_performance_order_by!]" ], "where": [ - 4932 + 4952 ] } ], "v_player_match_rating": [ - 4946, + 4966, { "distinct_on": [ - 4954, + 4974, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -133732,19 +134054,19 @@ export default { 38 ], "order_by": [ - 4953, + 4973, "[v_player_match_rating_order_by!]" ], "where": [ - 4950 + 4970 ] } ], "v_player_match_rating_aggregate": [ - 4947, + 4967, { "distinct_on": [ - 4954, + 4974, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -133754,19 +134076,19 @@ export default { 38 ], "order_by": [ - 4953, + 4973, "[v_player_match_rating_order_by!]" ], "where": [ - 4950 + 4970 ] } ], "v_player_multi_kills": [ - 4964, + 4984, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -133776,19 +134098,19 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], "v_player_multi_kills_aggregate": [ - 4965, + 4985, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -133798,19 +134120,19 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], "v_player_weapon_damage": [ - 4997, + 5017, { "distinct_on": [ - 5005, + 5025, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -133820,19 +134142,19 @@ export default { 38 ], "order_by": [ - 5004, + 5024, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5001 + 5021 ] } ], "v_player_weapon_damage_aggregate": [ - 4998, + 5018, { "distinct_on": [ - 5005, + 5025, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -133842,19 +134164,19 @@ export default { 38 ], "order_by": [ - 5004, + 5024, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5001 + 5021 ] } ], "v_player_weapon_kills": [ - 5015, + 5035, { "distinct_on": [ - 5023, + 5043, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -133864,19 +134186,19 @@ export default { 38 ], "order_by": [ - 5022, + 5042, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5019 + 5039 ] } ], "v_player_weapon_kills_aggregate": [ - 5016, + 5036, { "distinct_on": [ - 5023, + 5043, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -133886,19 +134208,19 @@ export default { 38 ], "order_by": [ - 5022, + 5042, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5019 + 5039 ] } ], "v_pool_maps": [ - 5033, + 5053, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -133908,19 +134230,19 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], "v_pool_maps_aggregate": [ - 5034, + 5054, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -133930,19 +134252,19 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], "v_steam_account_pool_status": [ - 5057, + 5077, { "distinct_on": [ - 5065, + 5085, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -133952,19 +134274,19 @@ export default { 38 ], "order_by": [ - 5064, + 5084, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5061 + 5081 ] } ], "v_steam_account_pool_status_aggregate": [ - 5058, + 5078, { "distinct_on": [ - 5065, + 5085, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -133974,19 +134296,19 @@ export default { 38 ], "order_by": [ - 5064, + 5084, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5061 + 5081 ] } ], "v_team_ranks": [ - 5075, + 5095, { "distinct_on": [ - 5085, + 5105, "[v_team_ranks_select_column!]" ], "limit": [ @@ -133996,19 +134318,19 @@ export default { 38 ], "order_by": [ - 5084, + 5104, "[v_team_ranks_order_by!]" ], "where": [ - 5079 + 5099 ] } ], "v_team_ranks_aggregate": [ - 5076, + 5096, { "distinct_on": [ - 5085, + 5105, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134018,19 +134340,19 @@ export default { 38 ], "order_by": [ - 5084, + 5104, "[v_team_ranks_order_by!]" ], "where": [ - 5079 + 5099 ] } ], "v_team_reputation": [ - 5095, + 5115, { "distinct_on": [ - 5105, + 5125, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134040,19 +134362,19 @@ export default { 38 ], "order_by": [ - 5104, + 5124, "[v_team_reputation_order_by!]" ], "where": [ - 5099 + 5119 ] } ], "v_team_reputation_aggregate": [ - 5096, + 5116, { "distinct_on": [ - 5105, + 5125, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134062,19 +134384,19 @@ export default { 38 ], "order_by": [ - 5104, + 5124, "[v_team_reputation_order_by!]" ], "where": [ - 5099 + 5119 ] } ], "v_team_stage_results": [ - 5115, + 5135, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134084,19 +134406,19 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "v_team_stage_results_aggregate": [ - 5116, + 5136, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134106,32 +134428,32 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "v_team_stage_results_by_pk": [ - 5115, + 5135, { "tournament_stage_id": [ - 4442, + 4462, "uuid!" ], "tournament_team_id": [ - 4442, + 4462, "uuid!" ] } ], "v_team_tournament_results": [ - 5175, + 5195, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134141,19 +134463,19 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "v_team_tournament_results_aggregate": [ - 5176, + 5196, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134163,19 +134485,19 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "v_tournament_player_stats": [ - 5226, + 5246, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134185,19 +134507,19 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], "v_tournament_player_stats_aggregate": [ - 5227, + 5247, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134207,11 +134529,11 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], @@ -134224,7 +134546,7 @@ export default { 55, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -134233,17 +134555,17 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4004 + 4024 ], "winning_lineup_id": [ - 4442 + 4462 ] } ], @@ -134251,7 +134573,7 @@ export default { 81, { "invite_id": [ - 4442, + 4462, "uuid!" ], "type": [ @@ -134264,7 +134586,7 @@ export default { 81, { "draftGameId": [ - 4442, + 4462, "uuid!" ], "steamId": [ @@ -134303,14 +134625,14 @@ export default { } ], "approve_league_season_movements": [ - 1568, + 1588, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -134320,11 +134642,11 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], @@ -134350,7 +134672,7 @@ export default { 81, { "game_server_node_id": [ - 4442, + 4462, "uuid!" ] } @@ -134371,7 +134693,7 @@ export default { 81, { "game_server_node_id": [ - 4442, + 4462, "uuid!" ] } @@ -134380,7 +134702,7 @@ export default { 81, { "job_id": [ - 4442, + 4462, "uuid!" ] } @@ -134389,7 +134711,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -134398,7 +134720,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -134416,7 +134738,7 @@ export default { 81, { "request_id": [ - 4442, + 4462, "uuid!" ] } @@ -134425,7 +134747,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -134434,7 +134756,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -134452,14 +134774,14 @@ export default { } ], "clone_league_season": [ - 1535, + 1555, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -134469,11 +134791,11 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], @@ -134481,11 +134803,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4004, + 4024, "timestamptz!" ], "request_id": [ - 4442, + 4462, "uuid!" ] } @@ -134506,7 +134828,7 @@ export default { 38 ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "preset": [ @@ -134541,7 +134863,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -134550,7 +134872,7 @@ export default { 14, { "settings": [ - 1332, + 1352, "jsonb!" ] } @@ -134567,7 +134889,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1332, + 1352, "jsonb!" ], "scheduled_at": [ @@ -134596,7 +134918,7 @@ export default { 81, { "clip_id": [ - 4442, + 4462, "uuid!" ] } @@ -134614,7 +134936,7 @@ export default { 81, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134648,7 +134970,7 @@ export default { 81, { "tournament_id": [ - 4442, + 4462, "uuid!" ] } @@ -134666,11 +134988,11 @@ export default { 92, { "map_id": [ - 4442, + 4462, "uuid!" ], "map_pool_id": [ - 4442, + 4462, "uuid!" ] } @@ -134688,7 +135010,7 @@ export default { 111, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134706,7 +135028,7 @@ export default { 152, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134724,7 +135046,7 @@ export default { 185, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134742,7 +135064,7 @@ export default { 237, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134760,7 +135082,7 @@ export default { 264, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -134778,7 +135100,7 @@ export default { 309, { "draft_game_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -134800,7 +135122,7 @@ export default { 354, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -135237,16 +135559,16 @@ export default { ] } ], - "delete_e_ready_settings": [ + "delete_e_plugin_runtimes": [ 906, { "where": [ 899, - "e_ready_settings_bool_exp!" + "e_plugin_runtimes_bool_exp!" ] } ], - "delete_e_ready_settings_by_pk": [ + "delete_e_plugin_runtimes_by_pk": [ 896, { "value": [ @@ -135255,17 +135577,35 @@ export default { ] } ], - "delete_e_sanction_types": [ + "delete_e_ready_settings": [ 926, { "where": [ 919, + "e_ready_settings_bool_exp!" + ] + } + ], + "delete_e_ready_settings_by_pk": [ + 916, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_sanction_types": [ + 946, + { + "where": [ + 939, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 916, + 936, { "value": [ 78, @@ -135274,16 +135614,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 947, + 967, { "where": [ - 940, + 960, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 937, + 957, { "value": [ 78, @@ -135292,16 +135632,16 @@ export default { } ], "delete_e_server_types": [ - 967, + 987, { "where": [ - 960, + 980, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 957, + 977, { "value": [ 78, @@ -135310,16 +135650,16 @@ export default { } ], "delete_e_sides": [ - 987, + 1007, { "where": [ - 980, + 1000, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 977, + 997, { "value": [ 78, @@ -135328,16 +135668,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1007, + 1027, { "where": [ - 1000, + 1020, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -135346,16 +135686,16 @@ export default { } ], "delete_e_team_roles": [ - 1027, + 1047, { "where": [ - 1020, + 1040, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -135364,16 +135704,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1048, + 1068, { "where": [ - 1041, + 1061, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1038, + 1058, { "value": [ 78, @@ -135382,16 +135722,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1068, + 1088, { "where": [ - 1061, + 1081, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -135400,16 +135740,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1088, + 1108, { "where": [ - 1081, + 1101, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -135418,16 +135758,16 @@ export default { } ], "delete_e_tournament_status": [ - 1109, + 1129, { "where": [ - 1102, + 1122, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1099, + 1119, { "value": [ 78, @@ -135436,16 +135776,16 @@ export default { } ], "delete_e_utility_types": [ - 1130, + 1150, { "where": [ - 1123, + 1143, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1120, + 1140, { "value": [ 78, @@ -135454,16 +135794,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1150, + 1170, { "where": [ - 1143, + 1163, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -135472,16 +135812,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1170, + 1190, { "where": [ - 1163, + 1183, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -135490,16 +135830,16 @@ export default { } ], "delete_friends": [ - 1192, + 1212, { "where": [ - 1186, + 1206, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1182, + 1202, { "other_player_steam_id": [ 180, @@ -135512,16 +135852,16 @@ export default { } ], "delete_game_server_nodes": [ - 1232, + 1252, { "where": [ - 1221, + 1241, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1209, + 1229, { "id": [ 78, @@ -135530,16 +135870,16 @@ export default { } ], "delete_game_versions": [ - 1274, + 1294, { "where": [ - 1265, + 1285, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1260, + 1280, { "build_id": [ 38, @@ -135548,172 +135888,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1307, + 1327, { "where": [ - 1298, + 1318, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1293, + 1313, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1344, + 1364, { "where": [ - 1339, + 1359, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1369, + 1389, { "where": [ - 1363, + 1383, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1359, + 1379, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_match_weeks": [ - 1404, + 1424, { "where": [ - 1396, + 1416, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1387, + 1407, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1445, + 1465, { "where": [ - 1437, + 1457, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1428, + 1448, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1486, + 1506, { "where": [ - 1478, + 1498, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1469, + 1489, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_season_divisions": [ - 1524, + 1544, { "where": [ - 1517, + 1537, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1510, + 1530, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_seasons": [ - 1549, + 1569, { "where": [ - 1540, + 1560, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1535, + 1555, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_team_movements": [ - 1585, + 1605, { "where": [ - 1577, + 1597, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1568, + 1588, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_team_rosters": [ - 1626, + 1646, { "where": [ - 1618, + 1638, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1609, + 1629, { "league_team_season_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -135723,73 +136063,73 @@ export default { } ], "delete_league_team_seasons": [ - 1667, + 1687, { "where": [ - 1659, + 1679, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1650, + 1670, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_league_teams": [ - 1700, + 1720, { "where": [ - 1695, + 1715, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 1692, + 1712, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_lobbies": [ - 1719, + 1739, { "where": [ - 1714, + 1734, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1711, + 1731, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_lobby_players": [ - 1749, + 1769, { "where": [ - 1741, + 1761, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1730, + 1750, { "lobby_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -135799,250 +136139,250 @@ export default { } ], "delete_map_pools": [ - 1783, + 1803, { "where": [ - 1778, + 1798, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1775, + 1795, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_maps": [ - 1810, + 1830, { "where": [ - 1803, + 1823, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1794, + 1814, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_clips": [ - 1840, + 1860, { "where": [ - 1832, + 1852, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1823, + 1843, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1886, + 1906, { "where": [ - 1875, + 1895, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1865, + 1885, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_lineup_players": [ - 1930, + 1950, { "where": [ - 1922, + 1942, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1911, + 1931, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_lineups": [ - 1973, + 1993, { "where": [ - 1965, + 1985, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1956, + 1976, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_map_demos": [ - 2021, + 2041, { "where": [ - 2010, + 2030, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1998, + 2018, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_map_rounds": [ - 2066, + 2086, { "where": [ - 2058, + 2078, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2049, + 2069, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2104, + 2124, { "where": [ - 2097, + 2117, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2090, + 2110, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_maps": [ - 2131, + 2151, { "where": [ - 2123, + 2143, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2114, + 2134, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_options": [ - 2166, + 2186, { "where": [ - 2160, + 2180, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2156, + 2176, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2198, + 2218, { "where": [ - 2191, + 2211, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2184, + 2204, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_streams": [ - 2231, + 2251, { "where": [ - 2220, + 2240, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2208, + 2228, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2266, + 2286, { "where": [ - 2261, + 2281, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2258, + 2278, { "type": [ 551, @@ -136051,34 +136391,34 @@ export default { } ], "delete_matches": [ - 2293, + 2313, { "where": [ - 2285, + 2305, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2276, + 2296, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2326, + 2346, { "where": [ - 2321, + 2341, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2318, + 2338, { "name": [ 78, @@ -136087,126 +136427,126 @@ export default { } ], "delete_my_friends": [ - 2358, + 2378, { "where": [ - 2348, + 2368, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2392, + 2412, { "where": [ - 2386, + 2406, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2382, + 2402, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_notifications": [ - 2432, + 2452, { "where": [ - 2421, + 2441, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2409, + 2429, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2479, + 2499, { "where": [ - 2471, + 2491, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2462, + 2482, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "delete_pending_match_imports": [ - 2513, + 2533, { "where": [ - 2507, + 2527, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2503, + 2523, { "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2541, + 2561, { "where": [ - 2535, + 2555, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2531, + 2551, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2575, + 2595, { "where": [ - 2567, + 2587, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2558, + 2578, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -136220,16 +136560,16 @@ export default { } ], "delete_player_assists": [ - 2618, + 2638, { "where": [ - 2610, + 2630, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2599, + 2619, { "attacked_steam_id": [ 180, @@ -136240,55 +136580,55 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_player_damages": [ - 2679, + 2699, { "where": [ - 2671, + 2691, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2662, + 2682, { "id": [ - 4442, + 4462, "uuid!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_player_elo": [ - 2713, + 2733, { "where": [ - 2707, + 2727, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2703, + 2723, { "match_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -136302,34 +136642,34 @@ export default { } ], "delete_player_faceit_rank_history": [ - 2747, + 2767, { "where": [ - 2739, + 2759, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2730, + 2750, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_player_flashes": [ - 2790, + 2810, { "where": [ - 2782, + 2802, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2771, + 2791, { "attacked_steam_id": [ 180, @@ -136340,26 +136680,26 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_player_kills": [ - 2876, + 2896, { "where": [ - 2827, + 2847, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2816, + 2836, { "attacked_steam_id": [ 180, @@ -136370,26 +136710,26 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2845, + 2865, { "where": [ - 2837, + 2857, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2828, + 2848, { "player_steam_id": [ 180, @@ -136402,28 +136742,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 2911, + 2931, { "where": [ - 2906, + 2926, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2942, + 2962, { "where": [ - 2934, + 2954, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2925, + 2945, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -136433,19 +136773,19 @@ export default { } ], "delete_player_objectives": [ - 3034, + 3054, { "where": [ - 3026, + 3046, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3017, + 3037, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -136453,84 +136793,84 @@ export default { "bigint!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3093, + 3113, { "where": [ - 3085, + 3105, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3076, + 3096, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_player_sanctions": [ - 3134, + 3154, { "where": [ - 3126, + 3146, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3117, + 3137, { "created_at": [ - 4004, + 4024, "timestamptz!" ], "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_player_season_stats": [ - 3185, + 3205, { "where": [ - 3177, + 3197, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3158, + 3178, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4442, + 4462, "uuid!" ] } ], "delete_player_stats": [ - 3227, + 3247, { "where": [ - 3221, + 3241, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3217, + 3237, { "player_steam_id": [ 180, @@ -136539,16 +136879,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3259, + 3279, { "where": [ - 3250, + 3270, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3245, + 3265, { "steam_id": [ 180, @@ -136557,16 +136897,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3287, + 3307, { "where": [ - 3281, + 3301, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3277, + 3297, { "steam_id": [ 180, @@ -136575,19 +136915,19 @@ export default { } ], "delete_player_unused_utility": [ - 3321, + 3341, { "where": [ - 3313, + 3333, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3304, + 3324, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -136597,42 +136937,42 @@ export default { } ], "delete_player_utility": [ - 3362, + 3382, { "where": [ - 3354, + 3374, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3345, + 3365, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "delete_players": [ - 3429, + 3449, { "where": [ - 3423, + 3443, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3419, + 3439, { "steam_id": [ 180, @@ -136641,17 +136981,21 @@ export default { } ], "delete_plugin_versions": [ - 3457, + 3477, { "where": [ - 3451, + 3471, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3447, + 3467, { + "runtime": [ + 901, + "e_plugin_runtimes_enum!" + ], "version": [ 78, "String!" @@ -136659,34 +137003,34 @@ export default { } ], "delete_seasons": [ - 3488, + 3508, { "where": [ - 3482, + 3502, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3478, + 3498, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_server_regions": [ - 3515, + 3535, { "where": [ - 3510, + 3530, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3506, + 3526, { "value": [ 78, @@ -136695,34 +137039,34 @@ export default { } ], "delete_servers": [ - 3552, + 3572, { "where": [ - 3544, + 3564, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3533, + 3553, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_settings": [ - 3587, + 3607, { "where": [ - 3582, + 3602, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3579, + 3599, { "name": [ 78, @@ -136731,467 +137075,467 @@ export default { } ], "delete_steam_account_claims": [ - 3613, + 3633, { "where": [ - 3606, + 3626, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3599, + 3619, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_steam_accounts": [ - 3633, + 3653, { "where": [ - 3627, + 3647, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3623, + 3643, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_system_alerts": [ - 3661, + 3681, { "where": [ - 3655, + 3675, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3651, + 3671, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_invites": [ - 3695, + 3715, { "where": [ - 3687, + 3707, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3678, + 3698, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_roster": [ - 3738, + 3758, { "where": [ - 3730, + 3750, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3719, + 3739, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3774, + 3794, { "where": [ - 3768, + 3788, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3764, + 3784, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3807, + 3827, { "where": [ - 3800, + 3820, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3791, + 3811, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3836, + 3856, { "where": [ - 3828, + 3848, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3819, + 3839, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3879, + 3899, { "where": [ - 3871, + 3891, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3860, + 3880, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3916, + 3936, { "where": [ - 3910, + 3930, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3906, + 3926, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_team_suggestions": [ - 3944, + 3964, { "where": [ - 3938, + 3958, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3934, + 3954, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_teams": [ - 3978, + 3998, { "where": [ - 3970, + 3990, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3961, + 3981, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_brackets": [ - 4025, + 4045, { "where": [ - 4017, + 4037, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4006, + 4026, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_organizers": [ - 4069, + 4089, { "where": [ - 4061, + 4081, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4052, + 4072, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4110, + 4130, { "where": [ - 4102, + 4122, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4093, + 4113, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_stages": [ - 4157, + 4177, { "where": [ - 4146, + 4166, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4134, + 4154, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4202, + 4222, { "where": [ - 4194, + 4214, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4185, + 4205, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4243, + 4263, { "where": [ - 4235, + 4255, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4226, + 4246, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_teams": [ - 4284, + 4304, { "where": [ - 4276, + 4296, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4267, + 4287, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_trophies": [ - 4328, + 4348, { "where": [ - 4320, + 4340, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4309, + 4329, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4371, + 4391, { "where": [ - 4363, + 4383, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4354, + 4374, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_tournaments": [ - 4415, + 4435, { "where": [ - 4407, + 4427, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4396, + 4416, { "id": [ - 4442, + 4462, "uuid!" ] } ], "delete_v_match_captains": [ - 4556, + 4576, { "where": [ - 4551, + 4571, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4667, + 4687, { "where": [ - 4662, + 4682, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4889, + 4909, { "where": [ - 4882, + 4902, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5048, + 5068, { "where": [ - 5042, + 5062, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5142, + 5162, { "where": [ - 5134, + 5154, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5115, + 5135, { "tournament_stage_id": [ - 4442, + 4462, "uuid!" ], "tournament_team_id": [ - 4442, + 4462, "uuid!" ] } @@ -137200,7 +137544,7 @@ export default { 81, { "invite_id": [ - 4442, + 4462, "uuid!" ], "type": [ @@ -137213,11 +137557,11 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "winning_lineup_id": [ - 4442, + 4462, "uuid!" ] } @@ -137226,7 +137570,7 @@ export default { 43, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -138002,2481 +138346,2505 @@ export default { ] } ], - "insert_e_ready_settings": [ + "insert_e_plugin_runtimes": [ 906, { "objects": [ 903, - "[e_ready_settings_insert_input!]!" + "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ 907 ] } ], - "insert_e_ready_settings_one": [ + "insert_e_plugin_runtimes_one": [ 896, { "object": [ 903, - "e_ready_settings_insert_input!" + "e_plugin_runtimes_insert_input!" ], "on_conflict": [ 907 ] } ], - "insert_e_sanction_types": [ + "insert_e_ready_settings": [ 926, { "objects": [ 923, - "[e_sanction_types_insert_input!]!" + "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 928 + 927 ] } ], - "insert_e_sanction_types_one": [ + "insert_e_ready_settings_one": [ 916, { "object": [ 923, - "e_sanction_types_insert_input!" + "e_ready_settings_insert_input!" ], "on_conflict": [ - 928 + 927 ] } ], - "insert_e_scrim_request_statuses": [ - 947, + "insert_e_sanction_types": [ + 946, { "objects": [ - 944, - "[e_scrim_request_statuses_insert_input!]!" + 943, + "[e_sanction_types_insert_input!]!" ], "on_conflict": [ 948 ] } ], - "insert_e_scrim_request_statuses_one": [ - 937, + "insert_e_sanction_types_one": [ + 936, { "object": [ - 944, - "e_scrim_request_statuses_insert_input!" + 943, + "e_sanction_types_insert_input!" ], "on_conflict": [ 948 ] } ], - "insert_e_server_types": [ + "insert_e_scrim_request_statuses": [ 967, { "objects": [ 964, - "[e_server_types_insert_input!]!" + "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ 968 ] } ], - "insert_e_server_types_one": [ + "insert_e_scrim_request_statuses_one": [ 957, { "object": [ 964, - "e_server_types_insert_input!" + "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ 968 ] } ], - "insert_e_sides": [ + "insert_e_server_types": [ 987, { "objects": [ 984, - "[e_sides_insert_input!]!" + "[e_server_types_insert_input!]!" ], "on_conflict": [ 988 ] } ], - "insert_e_sides_one": [ + "insert_e_server_types_one": [ 977, { "object": [ 984, - "e_sides_insert_input!" + "e_server_types_insert_input!" ], "on_conflict": [ 988 ] } ], - "insert_e_system_alert_types": [ + "insert_e_sides": [ 1007, { "objects": [ 1004, - "[e_system_alert_types_insert_input!]!" + "[e_sides_insert_input!]!" ], "on_conflict": [ 1008 ] } ], - "insert_e_system_alert_types_one": [ + "insert_e_sides_one": [ 997, { "object": [ 1004, - "e_system_alert_types_insert_input!" + "e_sides_insert_input!" ], "on_conflict": [ 1008 ] } ], - "insert_e_team_roles": [ + "insert_e_system_alert_types": [ 1027, { "objects": [ 1024, - "[e_team_roles_insert_input!]!" + "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1029 + 1028 ] } ], - "insert_e_team_roles_one": [ + "insert_e_system_alert_types_one": [ 1017, { "object": [ 1024, - "e_team_roles_insert_input!" + "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1029 + 1028 ] } ], - "insert_e_team_roster_statuses": [ - 1048, + "insert_e_team_roles": [ + 1047, { "objects": [ - 1045, - "[e_team_roster_statuses_insert_input!]!" + 1044, + "[e_team_roles_insert_input!]!" ], "on_conflict": [ 1049 ] } ], - "insert_e_team_roster_statuses_one": [ - 1038, + "insert_e_team_roles_one": [ + 1037, { "object": [ - 1045, - "e_team_roster_statuses_insert_input!" + 1044, + "e_team_roles_insert_input!" ], "on_conflict": [ 1049 ] } ], - "insert_e_timeout_settings": [ + "insert_e_team_roster_statuses": [ 1068, { "objects": [ 1065, - "[e_timeout_settings_insert_input!]!" + "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ 1069 ] } ], - "insert_e_timeout_settings_one": [ + "insert_e_team_roster_statuses_one": [ 1058, { "object": [ 1065, - "e_timeout_settings_insert_input!" + "e_team_roster_statuses_insert_input!" ], "on_conflict": [ 1069 ] } ], - "insert_e_tournament_stage_types": [ + "insert_e_timeout_settings": [ 1088, { "objects": [ 1085, - "[e_tournament_stage_types_insert_input!]!" + "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1090 + 1089 ] } ], - "insert_e_tournament_stage_types_one": [ + "insert_e_timeout_settings_one": [ 1078, { "object": [ 1085, + "e_timeout_settings_insert_input!" + ], + "on_conflict": [ + 1089 + ] + } + ], + "insert_e_tournament_stage_types": [ + 1108, + { + "objects": [ + 1105, + "[e_tournament_stage_types_insert_input!]!" + ], + "on_conflict": [ + 1110 + ] + } + ], + "insert_e_tournament_stage_types_one": [ + 1098, + { + "object": [ + 1105, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1090 + 1110 ] } ], "insert_e_tournament_status": [ - 1109, + 1129, { "objects": [ - 1106, + 1126, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1111 + 1131 ] } ], "insert_e_tournament_status_one": [ - 1099, + 1119, { "object": [ - 1106, + 1126, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1111 + 1131 ] } ], "insert_e_utility_types": [ - 1130, + 1150, { "objects": [ - 1127, + 1147, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1131 + 1151 ] } ], "insert_e_utility_types_one": [ - 1120, + 1140, { "object": [ - 1127, + 1147, "e_utility_types_insert_input!" ], "on_conflict": [ - 1131 + 1151 ] } ], "insert_e_veto_pick_types": [ - 1150, + 1170, { "objects": [ - 1147, + 1167, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_veto_pick_types_one": [ - 1140, + 1160, { "object": [ - 1147, + 1167, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_winning_reasons": [ - 1170, + 1190, { "objects": [ - 1167, + 1187, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_e_winning_reasons_one": [ - 1160, + 1180, { "object": [ - 1167, + 1187, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_friends": [ - 1192, + 1212, { "objects": [ - 1189, + 1209, "[friends_insert_input!]!" ], "on_conflict": [ - 1193 + 1213 ] } ], "insert_friends_one": [ - 1182, + 1202, { "object": [ - 1189, + 1209, "friends_insert_input!" ], "on_conflict": [ - 1193 + 1213 ] } ], "insert_game_server_nodes": [ - 1232, + 1252, { "objects": [ - 1227, + 1247, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1234 + 1254 ] } ], "insert_game_server_nodes_one": [ - 1209, + 1229, { "object": [ - 1227, + 1247, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1234 + 1254 ] } ], "insert_game_versions": [ - 1274, + 1294, { "objects": [ - 1271, + 1291, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1276 + 1296 ] } ], "insert_game_versions_one": [ - 1260, + 1280, { "object": [ - 1271, + 1291, "game_versions_insert_input!" ], "on_conflict": [ - 1276 + 1296 ] } ], "insert_gamedata_signature_validations": [ - 1307, + 1327, { "objects": [ - 1304, + 1324, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1308 + 1328 ] } ], "insert_gamedata_signature_validations_one": [ - 1293, + 1313, { "object": [ - 1304, + 1324, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1308 + 1328 ] } ], "insert_leaderboard_entries": [ - 1344, + 1364, { "objects": [ - 1341, + 1361, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1335, + 1355, { "object": [ - 1341, + 1361, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1369, + 1389, { "objects": [ - 1366, + 1386, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1371 + 1391 ] } ], "insert_league_divisions_one": [ - 1359, + 1379, { "object": [ - 1366, + 1386, "league_divisions_insert_input!" ], "on_conflict": [ - 1371 + 1391 ] } ], "insert_league_match_weeks": [ - 1404, + 1424, { "objects": [ - 1399, + 1419, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1405 + 1425 ] } ], "insert_league_match_weeks_one": [ - 1387, + 1407, { "object": [ - 1399, + 1419, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1405 + 1425 ] } ], "insert_league_relegation_playoffs": [ - 1445, + 1465, { "objects": [ - 1440, + 1460, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1446 + 1466 ] } ], "insert_league_relegation_playoffs_one": [ - 1428, + 1448, { "object": [ - 1440, + 1460, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1446 + 1466 ] } ], "insert_league_scheduling_proposals": [ - 1486, + 1506, { "objects": [ - 1481, + 1501, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1487 + 1507 ] } ], "insert_league_scheduling_proposals_one": [ - 1469, + 1489, { "object": [ - 1481, + 1501, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1487 + 1507 ] } ], "insert_league_season_divisions": [ - 1524, + 1544, { "objects": [ - 1519, + 1539, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1526 + 1546 ] } ], "insert_league_season_divisions_one": [ - 1510, + 1530, { "object": [ - 1519, + 1539, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1526 + 1546 ] } ], "insert_league_seasons": [ - 1549, + 1569, { "objects": [ - 1546, + 1566, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1551 + 1571 ] } ], "insert_league_seasons_one": [ - 1535, + 1555, { "object": [ - 1546, + 1566, "league_seasons_insert_input!" ], "on_conflict": [ - 1551 + 1571 ] } ], "insert_league_team_movements": [ - 1585, + 1605, { "objects": [ - 1580, + 1600, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1586 + 1606 ] } ], "insert_league_team_movements_one": [ - 1568, + 1588, { "object": [ - 1580, + 1600, "league_team_movements_insert_input!" ], "on_conflict": [ - 1586 + 1606 ] } ], "insert_league_team_rosters": [ - 1626, + 1646, { "objects": [ - 1621, + 1641, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1627 + 1647 ] } ], "insert_league_team_rosters_one": [ - 1609, + 1629, { "object": [ - 1621, + 1641, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1627 + 1647 ] } ], "insert_league_team_seasons": [ - 1667, + 1687, { "objects": [ - 1662, + 1682, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1669 + 1689 ] } ], "insert_league_team_seasons_one": [ - 1650, + 1670, { "object": [ - 1662, + 1682, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1669 + 1689 ] } ], "insert_league_teams": [ - 1700, + 1720, { "objects": [ - 1697, + 1717, "[league_teams_insert_input!]!" ], "on_conflict": [ - 1702 + 1722 ] } ], "insert_league_teams_one": [ - 1692, + 1712, { "object": [ - 1697, + 1717, "league_teams_insert_input!" ], "on_conflict": [ - 1702 + 1722 ] } ], "insert_lobbies": [ - 1719, + 1739, { "objects": [ - 1716, + 1736, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1721 + 1741 ] } ], "insert_lobbies_one": [ - 1711, + 1731, { "object": [ - 1716, + 1736, "lobbies_insert_input!" ], "on_conflict": [ - 1721 + 1741 ] } ], "insert_lobby_players": [ - 1749, + 1769, { "objects": [ - 1744, + 1764, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1750 + 1770 ] } ], "insert_lobby_players_one": [ - 1730, + 1750, { "object": [ - 1744, + 1764, "lobby_players_insert_input!" ], "on_conflict": [ - 1750 + 1770 ] } ], "insert_map_pools": [ - 1783, + 1803, { "objects": [ - 1780, + 1800, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1785 + 1805 ] } ], "insert_map_pools_one": [ - 1775, + 1795, { "object": [ - 1780, + 1800, "map_pools_insert_input!" ], "on_conflict": [ - 1785 + 1805 ] } ], "insert_maps": [ - 1810, + 1830, { "objects": [ - 1805, + 1825, "[maps_insert_input!]!" ], "on_conflict": [ - 1812 + 1832 ] } ], "insert_maps_one": [ - 1794, + 1814, { "object": [ - 1805, + 1825, "maps_insert_input!" ], "on_conflict": [ - 1812 + 1832 ] } ], "insert_match_clips": [ - 1840, + 1860, { "objects": [ - 1835, + 1855, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1842 + 1862 ] } ], "insert_match_clips_one": [ - 1823, + 1843, { "object": [ - 1835, + 1855, "match_clips_insert_input!" ], "on_conflict": [ - 1842 + 1862 ] } ], "insert_match_demo_sessions": [ - 1886, + 1906, { "objects": [ - 1881, + 1901, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1887 + 1907 ] } ], "insert_match_demo_sessions_one": [ - 1865, + 1885, { "object": [ - 1881, + 1901, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1887 + 1907 ] } ], "insert_match_lineup_players": [ - 1930, + 1950, { "objects": [ - 1925, + 1945, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1931 + 1951 ] } ], "insert_match_lineup_players_one": [ - 1911, + 1931, { "object": [ - 1925, + 1945, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1931 + 1951 ] } ], "insert_match_lineups": [ - 1973, + 1993, { "objects": [ - 1968, + 1988, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1975 + 1995 ] } ], "insert_match_lineups_one": [ - 1956, + 1976, { "object": [ - 1968, + 1988, "match_lineups_insert_input!" ], "on_conflict": [ - 1975 + 1995 ] } ], "insert_match_map_demos": [ - 2021, + 2041, { "objects": [ - 2016, + 2036, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2023 + 2043 ] } ], "insert_match_map_demos_one": [ - 1998, + 2018, { "object": [ - 2016, + 2036, "match_map_demos_insert_input!" ], "on_conflict": [ - 2023 + 2043 ] } ], "insert_match_map_rounds": [ - 2066, + 2086, { "objects": [ - 2061, + 2081, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2067 + 2087 ] } ], "insert_match_map_rounds_one": [ - 2049, + 2069, { "object": [ - 2061, + 2081, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2067 + 2087 ] } ], "insert_match_map_veto_picks": [ - 2104, + 2124, { "objects": [ - 2099, + 2119, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2105 + 2125 ] } ], "insert_match_map_veto_picks_one": [ - 2090, + 2110, { "object": [ - 2099, + 2119, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2105 + 2125 ] } ], "insert_match_maps": [ - 2131, + 2151, { "objects": [ - 2126, + 2146, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2133 + 2153 ] } ], "insert_match_maps_one": [ - 2114, + 2134, { "object": [ - 2126, + 2146, "match_maps_insert_input!" ], "on_conflict": [ - 2133 + 2153 ] } ], "insert_match_options": [ - 2166, + 2186, { "objects": [ - 2163, + 2183, "[match_options_insert_input!]!" ], "on_conflict": [ - 2168 + 2188 ] } ], "insert_match_options_one": [ - 2156, + 2176, { "object": [ - 2163, + 2183, "match_options_insert_input!" ], "on_conflict": [ - 2168 + 2188 ] } ], "insert_match_region_veto_picks": [ - 2198, + 2218, { "objects": [ - 2193, + 2213, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2199 + 2219 ] } ], "insert_match_region_veto_picks_one": [ - 2184, + 2204, { "object": [ - 2193, + 2213, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2199 + 2219 ] } ], "insert_match_streams": [ - 2231, + 2251, { "objects": [ - 2226, + 2246, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2232 + 2252 ] } ], "insert_match_streams_one": [ - 2208, + 2228, { "object": [ - 2226, + 2246, "match_streams_insert_input!" ], "on_conflict": [ - 2232 + 2252 ] } ], "insert_match_type_cfgs": [ - 2266, + 2286, { "objects": [ - 2263, + 2283, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2267 + 2287 ] } ], "insert_match_type_cfgs_one": [ - 2258, + 2278, { "object": [ - 2263, + 2283, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2267 + 2287 ] } ], "insert_matches": [ - 2293, + 2313, { "objects": [ - 2288, + 2308, "[matches_insert_input!]!" ], "on_conflict": [ - 2295 + 2315 ] } ], "insert_matches_one": [ - 2276, + 2296, { "object": [ - 2288, + 2308, "matches_insert_input!" ], "on_conflict": [ - 2295 + 2315 ] } ], "insert_migration_hashes_hashes": [ - 2326, + 2346, { "objects": [ - 2323, + 2343, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2327 + 2347 ] } ], "insert_migration_hashes_hashes_one": [ - 2318, + 2338, { "object": [ - 2323, + 2343, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2327 + 2347 ] } ], "insert_my_friends": [ - 2358, + 2378, { "objects": [ - 2353, + 2373, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2336, + 2356, { "object": [ - 2353, + 2373, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2392, + 2412, { "objects": [ - 2389, + 2409, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2393 + 2413 ] } ], "insert_news_articles_one": [ - 2382, + 2402, { "object": [ - 2389, + 2409, "news_articles_insert_input!" ], "on_conflict": [ - 2393 + 2413 ] } ], "insert_notifications": [ - 2432, + 2452, { "objects": [ - 2427, + 2447, "[notifications_insert_input!]!" ], "on_conflict": [ - 2433 + 2453 ] } ], "insert_notifications_one": [ - 2409, + 2429, { "object": [ - 2427, + 2447, "notifications_insert_input!" ], "on_conflict": [ - 2433 + 2453 ] } ], "insert_pending_match_import_players": [ - 2479, + 2499, { "objects": [ - 2474, + 2494, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2480 + 2500 ] } ], "insert_pending_match_import_players_one": [ - 2462, + 2482, { "object": [ - 2474, + 2494, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2480 + 2500 ] } ], "insert_pending_match_imports": [ - 2513, + 2533, { "objects": [ - 2510, + 2530, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2515 + 2535 ] } ], "insert_pending_match_imports_one": [ - 2503, + 2523, { "object": [ - 2510, + 2530, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2515 + 2535 ] } ], "insert_player_aim_stats_demo": [ - 2541, + 2561, { "objects": [ - 2538, + 2558, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2542 + 2562 ] } ], "insert_player_aim_stats_demo_one": [ - 2531, + 2551, { "object": [ - 2538, + 2558, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2542 + 2562 ] } ], "insert_player_aim_weapon_stats": [ - 2575, + 2595, { "objects": [ - 2570, + 2590, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2576 + 2596 ] } ], "insert_player_aim_weapon_stats_one": [ - 2558, + 2578, { "object": [ - 2570, + 2590, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2576 + 2596 ] } ], "insert_player_assists": [ - 2618, + 2638, { "objects": [ - 2613, + 2633, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2619 + 2639 ] } ], "insert_player_assists_one": [ - 2599, + 2619, { "object": [ - 2613, + 2633, "player_assists_insert_input!" ], "on_conflict": [ - 2619 + 2639 ] } ], "insert_player_damages": [ - 2679, + 2699, { "objects": [ - 2674, + 2694, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2680 + 2700 ] } ], "insert_player_damages_one": [ - 2662, + 2682, { "object": [ - 2674, + 2694, "player_damages_insert_input!" ], "on_conflict": [ - 2680 + 2700 ] } ], "insert_player_elo": [ - 2713, + 2733, { "objects": [ - 2710, + 2730, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2714 + 2734 ] } ], "insert_player_elo_one": [ - 2703, + 2723, { "object": [ - 2710, + 2730, "player_elo_insert_input!" ], "on_conflict": [ - 2714 + 2734 ] } ], "insert_player_faceit_rank_history": [ - 2747, + 2767, { "objects": [ - 2742, + 2762, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2748 + 2768 ] } ], "insert_player_faceit_rank_history_one": [ - 2730, + 2750, { "object": [ - 2742, + 2762, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2748 + 2768 ] } ], "insert_player_flashes": [ - 2790, + 2810, { "objects": [ - 2785, + 2805, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2791 + 2811 ] } ], "insert_player_flashes_one": [ - 2771, + 2791, { "object": [ - 2785, + 2805, "player_flashes_insert_input!" ], "on_conflict": [ - 2791 + 2811 ] } ], "insert_player_kills": [ - 2876, + 2896, { "objects": [ - 2871, + 2891, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2877 + 2897 ] } ], "insert_player_kills_by_weapon": [ - 2845, + 2865, { "objects": [ - 2840, + 2860, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2846 + 2866 ] } ], "insert_player_kills_by_weapon_one": [ - 2828, + 2848, { "object": [ - 2840, + 2860, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2846 + 2866 ] } ], "insert_player_kills_one": [ - 2816, + 2836, { "object": [ - 2871, + 2891, "player_kills_insert_input!" ], "on_conflict": [ - 2877 + 2897 ] } ], "insert_player_leaderboard_rank": [ - 2911, + 2931, { "objects": [ - 2908, + 2928, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2902, + 2922, { "object": [ - 2908, + 2928, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2942, + 2962, { "objects": [ - 2937, + 2957, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2943 + 2963 ] } ], "insert_player_match_map_stats_one": [ - 2925, + 2945, { "object": [ - 2937, + 2957, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2943 + 2963 ] } ], "insert_player_objectives": [ - 3034, + 3054, { "objects": [ - 3029, + 3049, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3035 + 3055 ] } ], "insert_player_objectives_one": [ - 3017, + 3037, { "object": [ - 3029, + 3049, "player_objectives_insert_input!" ], "on_conflict": [ - 3035 + 3055 ] } ], "insert_player_premier_rank_history": [ - 3093, + 3113, { "objects": [ - 3088, + 3108, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3094 + 3114 ] } ], "insert_player_premier_rank_history_one": [ - 3076, + 3096, { "object": [ - 3088, + 3108, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3094 + 3114 ] } ], "insert_player_sanctions": [ - 3134, + 3154, { "objects": [ - 3129, + 3149, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3135 + 3155 ] } ], "insert_player_sanctions_one": [ - 3117, + 3137, { "object": [ - 3129, + 3149, "player_sanctions_insert_input!" ], "on_conflict": [ - 3135 + 3155 ] } ], "insert_player_season_stats": [ - 3185, + 3205, { "objects": [ - 3180, + 3200, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3186 + 3206 ] } ], "insert_player_season_stats_one": [ - 3158, + 3178, { "object": [ - 3180, + 3200, "player_season_stats_insert_input!" ], "on_conflict": [ - 3186 + 3206 ] } ], "insert_player_stats": [ - 3227, + 3247, { "objects": [ - 3224, + 3244, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3229 + 3249 ] } ], "insert_player_stats_one": [ - 3217, + 3237, { "object": [ - 3224, + 3244, "player_stats_insert_input!" ], "on_conflict": [ - 3229 + 3249 ] } ], "insert_player_steam_bot_friend": [ - 3259, + 3279, { "objects": [ - 3256, + 3276, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3260 + 3280 ] } ], "insert_player_steam_bot_friend_one": [ - 3245, + 3265, { "object": [ - 3256, + 3276, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3260 + 3280 ] } ], "insert_player_steam_match_auth": [ - 3287, + 3307, { "objects": [ - 3284, + 3304, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3288 + 3308 ] } ], "insert_player_steam_match_auth_one": [ - 3277, + 3297, { "object": [ - 3284, + 3304, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3288 + 3308 ] } ], "insert_player_unused_utility": [ - 3321, + 3341, { "objects": [ - 3316, + 3336, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3322 + 3342 ] } ], "insert_player_unused_utility_one": [ - 3304, + 3324, { "object": [ - 3316, + 3336, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3322 + 3342 ] } ], "insert_player_utility": [ - 3362, + 3382, { "objects": [ - 3357, + 3377, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3363 + 3383 ] } ], "insert_player_utility_one": [ - 3345, + 3365, { "object": [ - 3357, + 3377, "player_utility_insert_input!" ], "on_conflict": [ - 3363 + 3383 ] } ], "insert_players": [ - 3429, + 3449, { "objects": [ - 3426, + 3446, "[players_insert_input!]!" ], "on_conflict": [ - 3431 + 3451 ] } ], "insert_players_one": [ - 3419, + 3439, { "object": [ - 3426, + 3446, "players_insert_input!" ], "on_conflict": [ - 3431 + 3451 ] } ], "insert_plugin_versions": [ - 3457, + 3477, { "objects": [ - 3454, + 3474, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3458 + 3478 ] } ], "insert_plugin_versions_one": [ - 3447, + 3467, { "object": [ - 3454, + 3474, "plugin_versions_insert_input!" ], "on_conflict": [ - 3458 + 3478 ] } ], "insert_seasons": [ - 3488, + 3508, { "objects": [ - 3485, + 3505, "[seasons_insert_input!]!" ], "on_conflict": [ - 3490 + 3510 ] } ], "insert_seasons_one": [ - 3478, + 3498, { "object": [ - 3485, + 3505, "seasons_insert_input!" ], "on_conflict": [ - 3490 + 3510 ] } ], "insert_server_regions": [ - 3515, + 3535, { "objects": [ - 3512, + 3532, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3517 + 3537 ] } ], "insert_server_regions_one": [ - 3506, + 3526, { "object": [ - 3512, + 3532, "server_regions_insert_input!" ], "on_conflict": [ - 3517 + 3537 ] } ], "insert_servers": [ - 3552, + 3572, { "objects": [ - 3547, + 3567, "[servers_insert_input!]!" ], "on_conflict": [ - 3554 + 3574 ] } ], "insert_servers_one": [ - 3533, + 3553, { "object": [ - 3547, + 3567, "servers_insert_input!" ], "on_conflict": [ - 3554 + 3574 ] } ], "insert_settings": [ - 3587, + 3607, { "objects": [ - 3584, + 3604, "[settings_insert_input!]!" ], "on_conflict": [ - 3588 + 3608 ] } ], "insert_settings_one": [ - 3579, + 3599, { "object": [ - 3584, + 3604, "settings_insert_input!" ], "on_conflict": [ - 3588 + 3608 ] } ], "insert_steam_account_claims": [ - 3613, + 3633, { "objects": [ - 3608, + 3628, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3614 + 3634 ] } ], "insert_steam_account_claims_one": [ - 3599, + 3619, { "object": [ - 3608, + 3628, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3614 + 3634 ] } ], "insert_steam_accounts": [ - 3633, + 3653, { "objects": [ - 3630, + 3650, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3635 + 3655 ] } ], "insert_steam_accounts_one": [ - 3623, + 3643, { "object": [ - 3630, + 3650, "steam_accounts_insert_input!" ], "on_conflict": [ - 3635 + 3655 ] } ], "insert_system_alerts": [ - 3661, + 3681, { "objects": [ - 3658, + 3678, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3662 + 3682 ] } ], "insert_system_alerts_one": [ - 3651, + 3671, { "object": [ - 3658, + 3678, "system_alerts_insert_input!" ], "on_conflict": [ - 3662 + 3682 ] } ], "insert_team_invites": [ - 3695, + 3715, { "objects": [ - 3690, + 3710, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3696 + 3716 ] } ], "insert_team_invites_one": [ - 3678, + 3698, { "object": [ - 3690, + 3710, "team_invites_insert_input!" ], "on_conflict": [ - 3696 + 3716 ] } ], "insert_team_roster": [ - 3738, + 3758, { "objects": [ - 3733, + 3753, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3739 + 3759 ] } ], "insert_team_roster_one": [ - 3719, + 3739, { "object": [ - 3733, + 3753, "team_roster_insert_input!" ], "on_conflict": [ - 3739 + 3759 ] } ], "insert_team_scrim_alerts": [ - 3774, + 3794, { "objects": [ - 3771, + 3791, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3775 + 3795 ] } ], "insert_team_scrim_alerts_one": [ - 3764, + 3784, { "object": [ - 3771, + 3791, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3775 + 3795 ] } ], "insert_team_scrim_availability": [ - 3807, + 3827, { "objects": [ - 3802, + 3822, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3808 + 3828 ] } ], "insert_team_scrim_availability_one": [ - 3791, + 3811, { "object": [ - 3802, + 3822, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3808 + 3828 ] } ], "insert_team_scrim_request_proposals": [ - 3836, + 3856, { "objects": [ - 3831, + 3851, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3837 + 3857 ] } ], "insert_team_scrim_request_proposals_one": [ - 3819, + 3839, { "object": [ - 3831, + 3851, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3837 + 3857 ] } ], "insert_team_scrim_requests": [ - 3879, + 3899, { "objects": [ - 3874, + 3894, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3881 + 3901 ] } ], "insert_team_scrim_requests_one": [ - 3860, + 3880, { "object": [ - 3874, + 3894, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3881 + 3901 ] } ], "insert_team_scrim_settings": [ - 3916, + 3936, { "objects": [ - 3913, + 3933, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3918 + 3938 ] } ], "insert_team_scrim_settings_one": [ - 3906, + 3926, { "object": [ - 3913, + 3933, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3918 + 3938 ] } ], "insert_team_suggestions": [ - 3944, + 3964, { "objects": [ - 3941, + 3961, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3945 + 3965 ] } ], "insert_team_suggestions_one": [ - 3934, + 3954, { "object": [ - 3941, + 3961, "team_suggestions_insert_input!" ], "on_conflict": [ - 3945 + 3965 ] } ], "insert_teams": [ - 3978, + 3998, { "objects": [ - 3973, + 3993, "[teams_insert_input!]!" ], "on_conflict": [ - 3980 + 4000 ] } ], "insert_teams_one": [ - 3961, + 3981, { "object": [ - 3973, + 3993, "teams_insert_input!" ], "on_conflict": [ - 3980 + 4000 ] } ], "insert_tournament_brackets": [ - 4025, + 4045, { "objects": [ - 4020, + 4040, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4027 + 4047 ] } ], "insert_tournament_brackets_one": [ - 4006, + 4026, { "object": [ - 4020, + 4040, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4027 + 4047 ] } ], "insert_tournament_organizers": [ - 4069, + 4089, { "objects": [ - 4064, + 4084, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4070 + 4090 ] } ], "insert_tournament_organizers_one": [ - 4052, + 4072, { "object": [ - 4064, + 4084, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4070 + 4090 ] } ], "insert_tournament_stage_windows": [ - 4110, + 4130, { "objects": [ - 4105, + 4125, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4111 + 4131 ] } ], "insert_tournament_stage_windows_one": [ - 4093, + 4113, { "object": [ - 4105, + 4125, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4111 + 4131 ] } ], "insert_tournament_stages": [ - 4157, + 4177, { "objects": [ - 4152, + 4172, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4159 + 4179 ] } ], "insert_tournament_stages_one": [ - 4134, + 4154, { "object": [ - 4152, + 4172, "tournament_stages_insert_input!" ], "on_conflict": [ - 4159 + 4179 ] } ], "insert_tournament_team_invites": [ - 4202, + 4222, { "objects": [ - 4197, + 4217, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4203 + 4223 ] } ], "insert_tournament_team_invites_one": [ - 4185, + 4205, { "object": [ - 4197, + 4217, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4203 + 4223 ] } ], "insert_tournament_team_roster": [ - 4243, + 4263, { "objects": [ - 4238, + 4258, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4244 + 4264 ] } ], "insert_tournament_team_roster_one": [ - 4226, + 4246, { "object": [ - 4238, + 4258, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4244 + 4264 ] } ], "insert_tournament_teams": [ - 4284, + 4304, { "objects": [ - 4279, + 4299, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4286 + 4306 ] } ], "insert_tournament_teams_one": [ - 4267, + 4287, { "object": [ - 4279, + 4299, "tournament_teams_insert_input!" ], "on_conflict": [ - 4286 + 4306 ] } ], "insert_tournament_trophies": [ - 4328, + 4348, { "objects": [ - 4323, + 4343, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4329 + 4349 ] } ], "insert_tournament_trophies_one": [ - 4309, + 4329, { "object": [ - 4323, + 4343, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4329 + 4349 ] } ], "insert_tournament_trophy_configs": [ - 4371, + 4391, { "objects": [ - 4366, + 4386, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4373 + 4393 ] } ], "insert_tournament_trophy_configs_one": [ - 4354, + 4374, { "object": [ - 4366, + 4386, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4373 + 4393 ] } ], "insert_tournaments": [ - 4415, + 4435, { "objects": [ - 4410, + 4430, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4417 + 4437 ] } ], "insert_tournaments_one": [ - 4396, + 4416, { "object": [ - 4410, + 4430, "tournaments_insert_input!" ], "on_conflict": [ - 4417 + 4437 ] } ], "insert_v_match_captains": [ - 4556, + 4576, { "objects": [ - 4553, + 4573, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4547, + 4567, { "object": [ - 4553, + 4573, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4667, + 4687, { "objects": [ - 4664, + 4684, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 4658, + 4678, { "object": [ - 4664, + 4684, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4889, + 4909, { "objects": [ - 4884, + 4904, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4873, + 4893, { "object": [ - 4884, + 4904, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5048, + 5068, { "objects": [ - 5043, + 5063, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5033, + 5053, { "object": [ - 5043, + 5063, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5142, + 5162, { "objects": [ - 5137, + 5157, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5144 + 5164 ] } ], "insert_v_team_stage_results_one": [ - 5115, + 5135, { "object": [ - 5137, + 5157, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5144 + 5164 ] } ], @@ -140484,7 +140852,7 @@ export default { 81, { "draftGameId": [ - 4442, + 4462, "uuid!" ], "inviteCode": [ @@ -140496,7 +140864,7 @@ export default { 81, { "draftGameId": [ - 4442, + 4462, "uuid!" ], "inviteCode": [ @@ -140521,14 +140889,14 @@ export default { } ], "league_award_forfeit": [ - 2276, + 2296, { "args": [ - 1358, + 1378, "league_award_forfeit_args!" ], "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -140538,11 +140906,11 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], @@ -140601,7 +140969,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -140613,7 +140981,7 @@ export default { 22, { "draftGameId": [ - 4442, + 4462, "uuid!" ], "inviteCode": [ @@ -140628,7 +140996,7 @@ export default { 38 ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "preset": [ @@ -140654,7 +141022,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -140663,20 +141031,20 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4309, + 4329, { "args": [ - 3474, + 3494, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -140686,11 +141054,11 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], @@ -140704,7 +141072,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -140728,7 +141096,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -140755,14 +141123,14 @@ export default { } ], "remove_league_team_from_season": [ - 1650, + 1670, { "args": [ - 3475, + 3495, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -140772,11 +141140,11 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], @@ -140801,14 +141169,14 @@ export default { } ], "reorder_league_divisions": [ - 1359, + 1379, { "args": [ - 3476, + 3496, "reorder_league_divisions_args!" ], "distinct_on": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "limit": [ @@ -140818,11 +141186,11 @@ export default { 38 ], "order_by": [ - 1372, + 1392, "[league_divisions_order_by!]" ], "where": [ - 1363 + 1383 ] } ], @@ -140836,7 +141204,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -140845,7 +141213,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -140867,7 +141235,7 @@ export default { 81, { "job_id": [ - 4442, + 4462, "uuid!" ] } @@ -140880,7 +141248,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4442, + 4462, "uuid!" ] } @@ -140893,7 +141261,7 @@ export default { "Boolean!" ], "request_id": [ - 4442, + 4462, "uuid!" ] } @@ -140908,14 +141276,14 @@ export default { } ], "restart_league_season": [ - 1535, + 1555, { "args": [ - 3477, + 3497, "restart_league_season_args!" ], "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -140925,11 +141293,11 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], @@ -140937,7 +141305,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -140946,7 +141314,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "only_failed": [ @@ -140996,7 +141364,7 @@ export default { 78 ], "id": [ - 4442 + 4462 ], "teaser": [ 78 @@ -141017,11 +141385,11 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004 + 4024 ] } ], @@ -141032,18 +141400,18 @@ export default { 38 ], "from_team_id": [ - 4442, + 4462, "uuid!" ], "proposed_scheduled_at": [ - 4004, + 4024, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4442, + 4462, "uuid!" ] } @@ -141065,7 +141433,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "mode": [ @@ -141078,15 +141446,15 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "winning_lineup_id": [ - 4442, + 4462, "uuid!" ] } @@ -141095,11 +141463,11 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "winning_lineup_id": [ - 4442, + 4462, "uuid!" ] } @@ -141108,7 +141476,7 @@ export default { 48, { "id": [ - 4442, + 4462, "uuid!" ], "status": [ @@ -141124,7 +141492,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141137,7 +141505,7 @@ export default { "Boolean!" ], "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141150,7 +141518,7 @@ export default { "String!" ], "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141159,7 +141527,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "visible": [ @@ -141172,7 +141540,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141181,7 +141549,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141194,7 +141562,7 @@ export default { "Int!" ], "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141203,7 +141571,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "show": [ @@ -141216,7 +141584,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "slot": [ @@ -141233,7 +141601,7 @@ export default { "Boolean!" ], "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141242,7 +141610,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "mode": [ @@ -141255,11 +141623,11 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ], "server_id": [ - 4442 + 4462 ] } ], @@ -141267,7 +141635,7 @@ export default { 81, { "game_server_node_id": [ - 4442, + 4462, "uuid!" ] } @@ -141276,7 +141644,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141285,7 +141653,7 @@ export default { 81, { "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -141307,7 +141675,7 @@ export default { 81, { "match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141325,7 +141693,7 @@ export default { 81, { "from_match_id": [ - 4442, + 4462, "uuid!" ], "mode": [ @@ -141333,7 +141701,7 @@ export default { "String!" ], "to_match_id": [ - 4442, + 4462, "uuid!" ] } @@ -141373,7 +141741,7 @@ export default { 81, { "clip_id": [ - 4442, + 4462, "uuid!" ], "target_steam_id": [ @@ -141394,7 +141762,7 @@ export default { 78 ], "game_server_node_id": [ - 4442 + 4462 ] } ], @@ -141402,11 +141770,11 @@ export default { 81, { "draftGameId": [ - 4442, + 4462, "uuid!" ], "settings": [ - 1332, + 1352, "jsonb!" ] } @@ -142542,7 +142910,7 @@ export default { ] } ], - "update_e_ready_settings": [ + "update_e_plugin_runtimes": [ 906, { "_set": [ @@ -142550,11 +142918,11 @@ export default { ], "where": [ 899, - "e_ready_settings_bool_exp!" + "e_plugin_runtimes_bool_exp!" ] } ], - "update_e_ready_settings_by_pk": [ + "update_e_plugin_runtimes_by_pk": [ 896, { "_set": [ @@ -142562,86 +142930,86 @@ export default { ], "pk_columns": [ 909, - "e_ready_settings_pk_columns_input!" + "e_plugin_runtimes_pk_columns_input!" ] } ], - "update_e_ready_settings_many": [ + "update_e_plugin_runtimes_many": [ 906, { "updates": [ 915, - "[e_ready_settings_updates!]!" + "[e_plugin_runtimes_updates!]!" ] } ], - "update_e_sanction_types": [ + "update_e_ready_settings": [ 926, { "_set": [ - 932 + 931 ], "where": [ 919, - "e_sanction_types_bool_exp!" + "e_ready_settings_bool_exp!" ] } ], - "update_e_sanction_types_by_pk": [ + "update_e_ready_settings_by_pk": [ 916, { "_set": [ - 932 + 931 ], "pk_columns": [ - 930, - "e_sanction_types_pk_columns_input!" + 929, + "e_ready_settings_pk_columns_input!" ] } ], - "update_e_sanction_types_many": [ + "update_e_ready_settings_many": [ 926, { "updates": [ - 936, - "[e_sanction_types_updates!]!" + 935, + "[e_ready_settings_updates!]!" ] } ], - "update_e_scrim_request_statuses": [ - 947, + "update_e_sanction_types": [ + 946, { "_set": [ 952 ], "where": [ - 940, - "e_scrim_request_statuses_bool_exp!" + 939, + "e_sanction_types_bool_exp!" ] } ], - "update_e_scrim_request_statuses_by_pk": [ - 937, + "update_e_sanction_types_by_pk": [ + 936, { "_set": [ 952 ], "pk_columns": [ 950, - "e_scrim_request_statuses_pk_columns_input!" + "e_sanction_types_pk_columns_input!" ] } ], - "update_e_scrim_request_statuses_many": [ - 947, + "update_e_sanction_types_many": [ + 946, { "updates": [ 956, - "[e_scrim_request_statuses_updates!]!" + "[e_sanction_types_updates!]!" ] } ], - "update_e_server_types": [ + "update_e_scrim_request_statuses": [ 967, { "_set": [ @@ -142649,11 +143017,11 @@ export default { ], "where": [ 960, - "e_server_types_bool_exp!" + "e_scrim_request_statuses_bool_exp!" ] } ], - "update_e_server_types_by_pk": [ + "update_e_scrim_request_statuses_by_pk": [ 957, { "_set": [ @@ -142661,20 +143029,20 @@ export default { ], "pk_columns": [ 970, - "e_server_types_pk_columns_input!" + "e_scrim_request_statuses_pk_columns_input!" ] } ], - "update_e_server_types_many": [ + "update_e_scrim_request_statuses_many": [ 967, { "updates": [ 976, - "[e_server_types_updates!]!" + "[e_scrim_request_statuses_updates!]!" ] } ], - "update_e_sides": [ + "update_e_server_types": [ 987, { "_set": [ @@ -142682,11 +143050,11 @@ export default { ], "where": [ 980, - "e_sides_bool_exp!" + "e_server_types_bool_exp!" ] } ], - "update_e_sides_by_pk": [ + "update_e_server_types_by_pk": [ 977, { "_set": [ @@ -142694,20 +143062,20 @@ export default { ], "pk_columns": [ 990, - "e_sides_pk_columns_input!" + "e_server_types_pk_columns_input!" ] } ], - "update_e_sides_many": [ + "update_e_server_types_many": [ 987, { "updates": [ 996, - "[e_sides_updates!]!" + "[e_server_types_updates!]!" ] } ], - "update_e_system_alert_types": [ + "update_e_sides": [ 1007, { "_set": [ @@ -142715,11 +143083,11 @@ export default { ], "where": [ 1000, - "e_system_alert_types_bool_exp!" + "e_sides_bool_exp!" ] } ], - "update_e_system_alert_types_by_pk": [ + "update_e_sides_by_pk": [ 997, { "_set": [ @@ -142727,3957 +143095,3990 @@ export default { ], "pk_columns": [ 1010, - "e_system_alert_types_pk_columns_input!" + "e_sides_pk_columns_input!" ] } ], - "update_e_system_alert_types_many": [ + "update_e_sides_many": [ 1007, { "updates": [ 1016, - "[e_system_alert_types_updates!]!" + "[e_sides_updates!]!" ] } ], - "update_e_team_roles": [ + "update_e_system_alert_types": [ 1027, { "_set": [ - 1033 + 1032 ], "where": [ 1020, + "e_system_alert_types_bool_exp!" + ] + } + ], + "update_e_system_alert_types_by_pk": [ + 1017, + { + "_set": [ + 1032 + ], + "pk_columns": [ + 1030, + "e_system_alert_types_pk_columns_input!" + ] + } + ], + "update_e_system_alert_types_many": [ + 1027, + { + "updates": [ + 1036, + "[e_system_alert_types_updates!]!" + ] + } + ], + "update_e_team_roles": [ + 1047, + { + "_set": [ + 1053 + ], + "where": [ + 1040, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1017, + 1037, { "_set": [ - 1033 + 1053 ], "pk_columns": [ - 1031, + 1051, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1027, + 1047, { "updates": [ - 1037, + 1057, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1048, + 1068, { "_set": [ - 1053 + 1073 ], "where": [ - 1041, + 1061, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1038, + 1058, { "_set": [ - 1053 + 1073 ], "pk_columns": [ - 1051, + 1071, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1048, + 1068, { "updates": [ - 1057, + 1077, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1068, + 1088, { "_set": [ - 1073 + 1093 ], "where": [ - 1061, + 1081, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1058, + 1078, { "_set": [ - 1073 + 1093 ], "pk_columns": [ - 1071, + 1091, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1068, + 1088, { "updates": [ - 1077, + 1097, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1088, + 1108, { "_set": [ - 1094 + 1114 ], "where": [ - 1081, + 1101, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1078, + 1098, { "_set": [ - 1094 + 1114 ], "pk_columns": [ - 1092, + 1112, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1088, + 1108, { "updates": [ - 1098, + 1118, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1109, + 1129, { "_set": [ - 1115 + 1135 ], "where": [ - 1102, + 1122, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1099, + 1119, { "_set": [ - 1115 + 1135 ], "pk_columns": [ - 1113, + 1133, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1109, + 1129, { "updates": [ - 1119, + 1139, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1130, + 1150, { "_set": [ - 1135 + 1155 ], "where": [ - 1123, + 1143, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1120, + 1140, { "_set": [ - 1135 + 1155 ], "pk_columns": [ - 1133, + 1153, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1130, + 1150, { "updates": [ - 1139, + 1159, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1150, + 1170, { "_set": [ - 1155 + 1175 ], "where": [ - 1143, + 1163, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1140, + 1160, { "_set": [ - 1155 + 1175 ], "pk_columns": [ - 1153, + 1173, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1150, + 1170, { "updates": [ - 1159, + 1179, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1170, + 1190, { "_set": [ - 1175 + 1195 ], "where": [ - 1163, + 1183, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1160, + 1180, { "_set": [ - 1175 + 1195 ], "pk_columns": [ - 1173, + 1193, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1170, + 1190, { "updates": [ - 1179, + 1199, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 1192, + 1212, { "_inc": [ - 1188 + 1208 ], "_set": [ - 1197 + 1217 ], "where": [ - 1186, + 1206, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1182, + 1202, { "_inc": [ - 1188 + 1208 ], "_set": [ - 1197 + 1217 ], "pk_columns": [ - 1195, + 1215, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1192, + 1212, { "updates": [ - 1205, + 1225, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1232, + 1252, { "_append": [ - 1217 + 1237 ], "_delete_at_path": [ - 1223 + 1243 ], "_delete_elem": [ - 1224 + 1244 ], "_delete_key": [ - 1225 + 1245 ], "_inc": [ - 1226 + 1246 ], "_prepend": [ - 1237 + 1257 ], "_set": [ - 1241 + 1261 ], "where": [ - 1221, + 1241, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1209, + 1229, { "_append": [ - 1217 + 1237 ], "_delete_at_path": [ - 1223 + 1243 ], "_delete_elem": [ - 1224 + 1244 ], "_delete_key": [ - 1225 + 1245 ], "_inc": [ - 1226 + 1246 ], "_prepend": [ - 1237 + 1257 ], "_set": [ - 1241 + 1261 ], "pk_columns": [ - 1236, + 1256, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1232, + 1252, { "updates": [ - 1253, + 1273, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1274, + 1294, { "_append": [ - 1263 + 1283 ], "_delete_at_path": [ - 1267 + 1287 ], "_delete_elem": [ - 1268 + 1288 ], "_delete_key": [ - 1269 + 1289 ], "_inc": [ - 1270 + 1290 ], "_prepend": [ - 1279 + 1299 ], "_set": [ - 1281 + 1301 ], "where": [ - 1265, + 1285, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1260, + 1280, { "_append": [ - 1263 + 1283 ], "_delete_at_path": [ - 1267 + 1287 ], "_delete_elem": [ - 1268 + 1288 ], "_delete_key": [ - 1269 + 1289 ], "_inc": [ - 1270 + 1290 ], "_prepend": [ - 1279 + 1299 ], "_set": [ - 1281 + 1301 ], "pk_columns": [ - 1278, + 1298, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1274, + 1294, { "updates": [ - 1289, + 1309, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1307, + 1327, { "_append": [ - 1296 + 1316 ], "_delete_at_path": [ - 1300 + 1320 ], "_delete_elem": [ - 1301 + 1321 ], "_delete_key": [ - 1302 + 1322 ], "_inc": [ - 1303 + 1323 ], "_prepend": [ - 1311 + 1331 ], "_set": [ - 1313 + 1333 ], "where": [ - 1298, + 1318, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1293, + 1313, { "_append": [ - 1296 + 1316 ], "_delete_at_path": [ - 1300 + 1320 ], "_delete_elem": [ - 1301 + 1321 ], "_delete_key": [ - 1302 + 1322 ], "_inc": [ - 1303 + 1323 ], "_prepend": [ - 1311 + 1331 ], "_set": [ - 1313 + 1333 ], "pk_columns": [ - 1310, + 1330, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1307, + 1327, { "updates": [ - 1321, + 1341, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1344, + 1364, { "_inc": [ - 1340 + 1360 ], "_set": [ - 1347 + 1367 ], "where": [ - 1339, + 1359, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1344, + 1364, { "updates": [ - 1354, + 1374, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1369, + 1389, { "_inc": [ - 1365 + 1385 ], "_set": [ - 1375 + 1395 ], "where": [ - 1363, + 1383, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1359, + 1379, { "_inc": [ - 1365 + 1385 ], "_set": [ - 1375 + 1395 ], "pk_columns": [ - 1373, + 1393, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1369, + 1389, { "updates": [ - 1383, + 1403, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1404, + 1424, { "_inc": [ - 1398 + 1418 ], "_set": [ - 1409 + 1429 ], "where": [ - 1396, + 1416, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1387, + 1407, { "_inc": [ - 1398 + 1418 ], "_set": [ - 1409 + 1429 ], "pk_columns": [ - 1407, + 1427, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1404, + 1424, { "updates": [ - 1421, + 1441, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1445, + 1465, { "_inc": [ - 1439 + 1459 ], "_set": [ - 1450 + 1470 ], "where": [ - 1437, + 1457, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1428, + 1448, { "_inc": [ - 1439 + 1459 ], "_set": [ - 1450 + 1470 ], "pk_columns": [ - 1448, + 1468, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1445, + 1465, { "updates": [ - 1462, + 1482, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1486, + 1506, { "_inc": [ - 1480 + 1500 ], "_set": [ - 1491 + 1511 ], "where": [ - 1478, + 1498, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1469, + 1489, { "_inc": [ - 1480 + 1500 ], "_set": [ - 1491 + 1511 ], "pk_columns": [ - 1489, + 1509, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1486, + 1506, { "updates": [ - 1503, + 1523, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1524, + 1544, { "_set": [ - 1530 + 1550 ], "where": [ - 1517, + 1537, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1510, + 1530, { "_set": [ - 1530 + 1550 ], "pk_columns": [ - 1528, + 1548, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1524, + 1544, { "updates": [ - 1534, + 1554, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1549, + 1569, { "_append": [ - 1538 + 1558 ], "_delete_at_path": [ - 1542 + 1562 ], "_delete_elem": [ - 1543 + 1563 ], "_delete_key": [ - 1544 + 1564 ], "_inc": [ - 1545 + 1565 ], "_prepend": [ - 1554 + 1574 ], "_set": [ - 1556 + 1576 ], "where": [ - 1540, + 1560, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1535, + 1555, { "_append": [ - 1538 + 1558 ], "_delete_at_path": [ - 1542 + 1562 ], "_delete_elem": [ - 1543 + 1563 ], "_delete_key": [ - 1544 + 1564 ], "_inc": [ - 1545 + 1565 ], "_prepend": [ - 1554 + 1574 ], "_set": [ - 1556 + 1576 ], "pk_columns": [ - 1553, + 1573, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1549, + 1569, { "updates": [ - 1564, + 1584, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1585, + 1605, { "_inc": [ - 1579 + 1599 ], "_set": [ - 1590 + 1610 ], "where": [ - 1577, + 1597, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1568, + 1588, { "_inc": [ - 1579 + 1599 ], "_set": [ - 1590 + 1610 ], "pk_columns": [ - 1588, + 1608, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1585, + 1605, { "updates": [ - 1602, + 1622, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1626, + 1646, { "_inc": [ - 1620 + 1640 ], "_set": [ - 1631 + 1651 ], "where": [ - 1618, + 1638, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1609, + 1629, { "_inc": [ - 1620 + 1640 ], "_set": [ - 1631 + 1651 ], "pk_columns": [ - 1629, + 1649, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1626, + 1646, { "updates": [ - 1643, + 1663, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1667, + 1687, { "_inc": [ - 1661 + 1681 ], "_set": [ - 1673 + 1693 ], "where": [ - 1659, + 1679, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1650, + 1670, { "_inc": [ - 1661 + 1681 ], "_set": [ - 1673 + 1693 ], "pk_columns": [ - 1671, + 1691, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1667, + 1687, { "updates": [ - 1685, + 1705, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 1700, + 1720, { "_set": [ - 1706 + 1726 ], "where": [ - 1695, + 1715, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 1692, + 1712, { "_set": [ - 1706 + 1726 ], "pk_columns": [ - 1704, + 1724, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 1700, + 1720, { "updates": [ - 1710, + 1730, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 1719, + 1739, { "_set": [ - 1725 + 1745 ], "where": [ - 1714, + 1734, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1711, + 1731, { "_set": [ - 1725 + 1745 ], "pk_columns": [ - 1723, + 1743, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1719, + 1739, { "updates": [ - 1729, + 1749, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1749, + 1769, { "_inc": [ - 1743 + 1763 ], "_set": [ - 1756 + 1776 ], "where": [ - 1741, + 1761, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1730, + 1750, { "_inc": [ - 1743 + 1763 ], "_set": [ - 1756 + 1776 ], "pk_columns": [ - 1752, + 1772, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1749, + 1769, { "updates": [ - 1768, + 1788, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1783, + 1803, { "_set": [ - 1789 + 1809 ], "where": [ - 1778, + 1798, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1775, + 1795, { "_set": [ - 1789 + 1809 ], "pk_columns": [ - 1787, + 1807, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1783, + 1803, { "updates": [ - 1793, + 1813, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1810, + 1830, { "_set": [ - 1818 + 1838 ], "where": [ - 1803, + 1823, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1794, + 1814, { "_set": [ - 1818 + 1838 ], "pk_columns": [ - 1814, + 1834, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1810, + 1830, { "updates": [ - 1822, + 1842, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1840, + 1860, { "_inc": [ - 1834 + 1854 ], "_set": [ - 1846 + 1866 ], "where": [ - 1832, + 1852, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1823, + 1843, { "_inc": [ - 1834 + 1854 ], "_set": [ - 1846 + 1866 ], "pk_columns": [ - 1844, + 1864, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1840, + 1860, { "updates": [ - 1858, + 1878, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1886, + 1906, { "_append": [ - 1871 + 1891 ], "_delete_at_path": [ - 1877 + 1897 ], "_delete_elem": [ - 1878 + 1898 ], "_delete_key": [ - 1879 + 1899 ], "_inc": [ - 1880 + 1900 ], "_prepend": [ - 1890 + 1910 ], "_set": [ - 1892 + 1912 ], "where": [ - 1875, + 1895, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1865, + 1885, { "_append": [ - 1871 + 1891 ], "_delete_at_path": [ - 1877 + 1897 ], "_delete_elem": [ - 1878 + 1898 ], "_delete_key": [ - 1879 + 1899 ], "_inc": [ - 1880 + 1900 ], "_prepend": [ - 1890 + 1910 ], "_set": [ - 1892 + 1912 ], "pk_columns": [ - 1889, + 1909, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1886, + 1906, { "updates": [ - 1904, + 1924, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1930, + 1950, { "_inc": [ - 1924 + 1944 ], "_set": [ - 1937 + 1957 ], "where": [ - 1922, + 1942, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1911, + 1931, { "_inc": [ - 1924 + 1944 ], "_set": [ - 1937 + 1957 ], "pk_columns": [ - 1933, + 1953, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1930, + 1950, { "updates": [ - 1949, + 1969, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1973, + 1993, { "_inc": [ - 1967 + 1987 ], "_set": [ - 1979 + 1999 ], "where": [ - 1965, + 1985, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1956, + 1976, { "_inc": [ - 1967 + 1987 ], "_set": [ - 1979 + 1999 ], "pk_columns": [ - 1977, + 1997, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1973, + 1993, { "updates": [ - 1991, + 2011, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2021, + 2041, { "_append": [ - 2006 + 2026 ], "_delete_at_path": [ - 2012 + 2032 ], "_delete_elem": [ - 2013 + 2033 ], "_delete_key": [ - 2014 + 2034 ], "_inc": [ - 2015 + 2035 ], "_prepend": [ - 2026 + 2046 ], "_set": [ - 2030 + 2050 ], "where": [ - 2010, + 2030, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1998, + 2018, { "_append": [ - 2006 + 2026 ], "_delete_at_path": [ - 2012 + 2032 ], "_delete_elem": [ - 2013 + 2033 ], "_delete_key": [ - 2014 + 2034 ], "_inc": [ - 2015 + 2035 ], "_prepend": [ - 2026 + 2046 ], "_set": [ - 2030 + 2050 ], "pk_columns": [ - 2025, + 2045, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2021, + 2041, { "updates": [ - 2042, + 2062, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2066, + 2086, { "_inc": [ - 2060 + 2080 ], "_set": [ - 2071 + 2091 ], "where": [ - 2058, + 2078, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2049, + 2069, { "_inc": [ - 2060 + 2080 ], "_set": [ - 2071 + 2091 ], "pk_columns": [ - 2069, + 2089, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2066, + 2086, { "updates": [ - 2083, + 2103, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2104, + 2124, { "_set": [ - 2109 + 2129 ], "where": [ - 2097, + 2117, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2090, + 2110, { "_set": [ - 2109 + 2129 ], "pk_columns": [ - 2107, + 2127, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2104, + 2124, { "updates": [ - 2113, + 2133, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2131, + 2151, { "_inc": [ - 2125 + 2145 ], "_set": [ - 2137 + 2157 ], "where": [ - 2123, + 2143, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2114, + 2134, { "_inc": [ - 2125 + 2145 ], "_set": [ - 2137 + 2157 ], "pk_columns": [ - 2135, + 2155, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2131, + 2151, { "updates": [ - 2149, + 2169, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2166, + 2186, { "_inc": [ - 2162 + 2182 ], "_set": [ - 2172 + 2192 ], "where": [ - 2160, + 2180, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2156, + 2176, { "_inc": [ - 2162 + 2182 ], "_set": [ - 2172 + 2192 ], "pk_columns": [ - 2170, + 2190, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2166, + 2186, { "updates": [ - 2180, + 2200, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2198, + 2218, { "_set": [ - 2203 + 2223 ], "where": [ - 2191, + 2211, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2184, + 2204, { "_set": [ - 2203 + 2223 ], "pk_columns": [ - 2201, + 2221, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2198, + 2218, { "updates": [ - 2207, + 2227, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2231, + 2251, { "_append": [ - 2216 + 2236 ], "_delete_at_path": [ - 2222 + 2242 ], "_delete_elem": [ - 2223 + 2243 ], "_delete_key": [ - 2224 + 2244 ], "_inc": [ - 2225 + 2245 ], "_prepend": [ - 2235 + 2255 ], "_set": [ - 2239 + 2259 ], "where": [ - 2220, + 2240, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2208, + 2228, { "_append": [ - 2216 + 2236 ], "_delete_at_path": [ - 2222 + 2242 ], "_delete_elem": [ - 2223 + 2243 ], "_delete_key": [ - 2224 + 2244 ], "_inc": [ - 2225 + 2245 ], "_prepend": [ - 2235 + 2255 ], "_set": [ - 2239 + 2259 ], "pk_columns": [ - 2234, + 2254, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2231, + 2251, { "updates": [ - 2251, + 2271, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2266, + 2286, { "_set": [ - 2271 + 2291 ], "where": [ - 2261, + 2281, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2258, + 2278, { "_set": [ - 2271 + 2291 ], "pk_columns": [ - 2269, + 2289, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2266, + 2286, { "updates": [ - 2275, + 2295, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2293, + 2313, { "_inc": [ - 2287 + 2307 ], "_set": [ - 2299 + 2319 ], "where": [ - 2285, + 2305, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2276, + 2296, { "_inc": [ - 2287 + 2307 ], "_set": [ - 2299 + 2319 ], "pk_columns": [ - 2297, + 2317, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2293, + 2313, { "updates": [ - 2311, + 2331, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2326, + 2346, { "_set": [ - 2331 + 2351 ], "where": [ - 2321, + 2341, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2318, + 2338, { "_set": [ - 2331 + 2351 ], "pk_columns": [ - 2329, + 2349, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2326, + 2346, { "updates": [ - 2335, + 2355, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2358, + 2378, { "_append": [ - 2344 + 2364 ], "_delete_at_path": [ - 2349 + 2369 ], "_delete_elem": [ - 2350 + 2370 ], "_delete_key": [ - 2351 + 2371 ], "_inc": [ - 2352 + 2372 ], "_prepend": [ - 2360 + 2380 ], "_set": [ - 2364 + 2384 ], "where": [ - 2348, + 2368, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2358, + 2378, { "updates": [ - 2375, + 2395, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2392, + 2412, { "_inc": [ - 2388 + 2408 ], "_set": [ - 2397 + 2417 ], "where": [ - 2386, + 2406, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2382, + 2402, { "_inc": [ - 2388 + 2408 ], "_set": [ - 2397 + 2417 ], "pk_columns": [ - 2395, + 2415, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2392, + 2412, { "updates": [ - 2405, + 2425, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2432, + 2452, { "_append": [ - 2417 + 2437 ], "_delete_at_path": [ - 2423 + 2443 ], "_delete_elem": [ - 2424 + 2444 ], "_delete_key": [ - 2425 + 2445 ], "_inc": [ - 2426 + 2446 ], "_prepend": [ - 2436 + 2456 ], "_set": [ - 2440 + 2460 ], "where": [ - 2421, + 2441, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2409, + 2429, { "_append": [ - 2417 + 2437 ], "_delete_at_path": [ - 2423 + 2443 ], "_delete_elem": [ - 2424 + 2444 ], "_delete_key": [ - 2425 + 2445 ], "_inc": [ - 2426 + 2446 ], "_prepend": [ - 2436 + 2456 ], "_set": [ - 2440 + 2460 ], "pk_columns": [ - 2435, + 2455, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2432, + 2452, { "updates": [ - 2452, + 2472, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2479, + 2499, { "_inc": [ - 2473 + 2493 ], "_set": [ - 2484 + 2504 ], "where": [ - 2471, + 2491, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2462, + 2482, { "_inc": [ - 2473 + 2493 ], "_set": [ - 2484 + 2504 ], "pk_columns": [ - 2482, + 2502, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2479, + 2499, { "updates": [ - 2496, + 2516, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2513, + 2533, { "_inc": [ - 2509 + 2529 ], "_set": [ - 2519 + 2539 ], "where": [ - 2507, + 2527, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2503, + 2523, { "_inc": [ - 2509 + 2529 ], "_set": [ - 2519 + 2539 ], "pk_columns": [ - 2517, + 2537, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2513, + 2533, { "updates": [ - 2527, + 2547, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2541, + 2561, { "_inc": [ - 2537 + 2557 ], "_set": [ - 2546 + 2566 ], "where": [ - 2535, + 2555, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2531, + 2551, { "_inc": [ - 2537 + 2557 ], "_set": [ - 2546 + 2566 ], "pk_columns": [ - 2544, + 2564, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2541, + 2561, { "updates": [ - 2554, + 2574, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2575, + 2595, { "_inc": [ - 2569 + 2589 ], "_set": [ - 2580 + 2600 ], "where": [ - 2567, + 2587, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2558, + 2578, { "_inc": [ - 2569 + 2589 ], "_set": [ - 2580 + 2600 ], "pk_columns": [ - 2578, + 2598, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2575, + 2595, { "updates": [ - 2592, + 2612, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2618, + 2638, { "_inc": [ - 2612 + 2632 ], "_set": [ - 2625 + 2645 ], "where": [ - 2610, + 2630, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2599, + 2619, { "_inc": [ - 2612 + 2632 ], "_set": [ - 2625 + 2645 ], "pk_columns": [ - 2621, + 2641, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2618, + 2638, { "updates": [ - 2637, + 2657, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2679, + 2699, { "_inc": [ - 2673 + 2693 ], "_set": [ - 2684 + 2704 ], "where": [ - 2671, + 2691, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2662, + 2682, { "_inc": [ - 2673 + 2693 ], "_set": [ - 2684 + 2704 ], "pk_columns": [ - 2682, + 2702, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2679, + 2699, { "updates": [ - 2696, + 2716, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2713, + 2733, { "_inc": [ - 2709 + 2729 ], "_set": [ - 2718 + 2738 ], "where": [ - 2707, + 2727, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2703, + 2723, { "_inc": [ - 2709 + 2729 ], "_set": [ - 2718 + 2738 ], "pk_columns": [ - 2716, + 2736, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2713, + 2733, { "updates": [ - 2726, + 2746, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2747, + 2767, { "_inc": [ - 2741 + 2761 ], "_set": [ - 2752 + 2772 ], "where": [ - 2739, + 2759, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2730, + 2750, { "_inc": [ - 2741 + 2761 ], "_set": [ - 2752 + 2772 ], "pk_columns": [ - 2750, + 2770, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2747, + 2767, { "updates": [ - 2764, + 2784, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2790, + 2810, { "_inc": [ - 2784 + 2804 ], "_set": [ - 2797 + 2817 ], "where": [ - 2782, + 2802, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2771, + 2791, { "_inc": [ - 2784 + 2804 ], "_set": [ - 2797 + 2817 ], "pk_columns": [ - 2793, + 2813, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2790, + 2810, { "updates": [ - 2809, + 2829, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2876, + 2896, { "_inc": [ - 2870 + 2890 ], "_set": [ - 2883 + 2903 ], "where": [ - 2827, + 2847, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2816, + 2836, { "_inc": [ - 2870 + 2890 ], "_set": [ - 2883 + 2903 ], "pk_columns": [ - 2879, + 2899, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2845, + 2865, { "_inc": [ - 2839 + 2859 ], "_set": [ - 2850 + 2870 ], "where": [ - 2837, + 2857, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2828, + 2848, { "_inc": [ - 2839 + 2859 ], "_set": [ - 2850 + 2870 ], "pk_columns": [ - 2848, + 2868, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2845, + 2865, { "updates": [ - 2862, + 2882, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2876, + 2896, { "updates": [ - 2895, + 2915, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2911, + 2931, { "_inc": [ - 2907 + 2927 ], "_set": [ - 2914 + 2934 ], "where": [ - 2906, + 2926, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2911, + 2931, { "updates": [ - 2921, + 2941, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2942, + 2962, { "_inc": [ - 2936 + 2956 ], "_set": [ - 2947 + 2967 ], "where": [ - 2934, + 2954, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2925, + 2945, { "_inc": [ - 2936 + 2956 ], "_set": [ - 2947 + 2967 ], "pk_columns": [ - 2945, + 2965, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2942, + 2962, { "updates": [ - 2959, + 2979, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3034, + 3054, { "_inc": [ - 3028 + 3048 ], "_set": [ - 3039 + 3059 ], "where": [ - 3026, + 3046, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3017, + 3037, { "_inc": [ - 3028 + 3048 ], "_set": [ - 3039 + 3059 ], "pk_columns": [ - 3037, + 3057, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3034, + 3054, { "updates": [ - 3051, + 3071, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3093, + 3113, { "_inc": [ - 3087 + 3107 ], "_set": [ - 3098 + 3118 ], "where": [ - 3085, + 3105, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3076, + 3096, { "_inc": [ - 3087 + 3107 ], "_set": [ - 3098 + 3118 ], "pk_columns": [ - 3096, + 3116, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3093, + 3113, { "updates": [ - 3110, + 3130, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3134, + 3154, { "_inc": [ - 3128 + 3148 ], "_set": [ - 3139 + 3159 ], "where": [ - 3126, + 3146, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3117, + 3137, { "_inc": [ - 3128 + 3148 ], "_set": [ - 3139 + 3159 ], "pk_columns": [ - 3137, + 3157, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3134, + 3154, { "updates": [ - 3151, + 3171, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3185, + 3205, { "_inc": [ - 3179 + 3199 ], "_set": [ - 3198 + 3218 ], "where": [ - 3177, + 3197, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3158, + 3178, { "_inc": [ - 3179 + 3199 ], "_set": [ - 3198 + 3218 ], "pk_columns": [ - 3188, + 3208, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3185, + 3205, { "updates": [ - 3210, + 3230, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3227, + 3247, { "_inc": [ - 3223 + 3243 ], "_set": [ - 3233 + 3253 ], "where": [ - 3221, + 3241, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3217, + 3237, { "_inc": [ - 3223 + 3243 ], "_set": [ - 3233 + 3253 ], "pk_columns": [ - 3231, + 3251, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3227, + 3247, { "updates": [ - 3241, + 3261, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3259, + 3279, { "_append": [ - 3248 + 3268 ], "_delete_at_path": [ - 3252 + 3272 ], "_delete_elem": [ - 3253 + 3273 ], "_delete_key": [ - 3254 + 3274 ], "_inc": [ - 3255 + 3275 ], "_prepend": [ - 3263 + 3283 ], "_set": [ - 3265 + 3285 ], "where": [ - 3250, + 3270, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3245, + 3265, { "_append": [ - 3248 + 3268 ], "_delete_at_path": [ - 3252 + 3272 ], "_delete_elem": [ - 3253 + 3273 ], "_delete_key": [ - 3254 + 3274 ], "_inc": [ - 3255 + 3275 ], "_prepend": [ - 3263 + 3283 ], "_set": [ - 3265 + 3285 ], "pk_columns": [ - 3262, + 3282, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3259, + 3279, { "updates": [ - 3273, + 3293, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3287, + 3307, { "_inc": [ - 3283 + 3303 ], "_set": [ - 3292 + 3312 ], "where": [ - 3281, + 3301, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3277, + 3297, { "_inc": [ - 3283 + 3303 ], "_set": [ - 3292 + 3312 ], "pk_columns": [ - 3290, + 3310, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3287, + 3307, { "updates": [ - 3300, + 3320, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3321, + 3341, { "_inc": [ - 3315 + 3335 ], "_set": [ - 3326 + 3346 ], "where": [ - 3313, + 3333, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3304, + 3324, { "_inc": [ - 3315 + 3335 ], "_set": [ - 3326 + 3346 ], "pk_columns": [ - 3324, + 3344, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3321, + 3341, { "updates": [ - 3338, + 3358, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3362, + 3382, { "_inc": [ - 3356 + 3376 ], "_set": [ - 3367 + 3387 ], "where": [ - 3354, + 3374, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3345, + 3365, { "_inc": [ - 3356 + 3376 ], "_set": [ - 3367 + 3387 ], "pk_columns": [ - 3365, + 3385, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3362, + 3382, { "updates": [ - 3379, + 3399, "[player_utility_updates!]!" ] } ], "update_players": [ - 3429, + 3449, { "_inc": [ - 3425 + 3445 ], "_set": [ - 3435 + 3455 ], "where": [ - 3423, + 3443, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3419, + 3439, { "_inc": [ - 3425 + 3445 ], "_set": [ - 3435 + 3455 ], "pk_columns": [ - 3433, + 3453, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3429, + 3449, { "updates": [ - 3443, + 3463, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3457, + 3477, { "_inc": [ - 3453 + 3473 ], "_set": [ - 3462 + 3482 ], "where": [ - 3451, + 3471, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3447, + 3467, { "_inc": [ - 3453 + 3473 ], "_set": [ - 3462 + 3482 ], "pk_columns": [ - 3460, + 3480, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3457, + 3477, { "updates": [ - 3470, + 3490, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3488, + 3508, { "_inc": [ - 3484 + 3504 ], "_set": [ - 3494 + 3514 ], "where": [ - 3482, + 3502, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3478, + 3498, { "_inc": [ - 3484 + 3504 ], "_set": [ - 3494 + 3514 ], "pk_columns": [ - 3492, + 3512, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3488, + 3508, { "updates": [ - 3502, + 3522, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3515, + 3535, { "_set": [ - 3521 + 3541 ], "where": [ - 3510, + 3530, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3506, + 3526, { "_set": [ - 3521 + 3541 ], "pk_columns": [ - 3519, + 3539, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3515, + 3535, { "updates": [ - 3529, + 3549, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3552, + 3572, { "_inc": [ - 3546 + 3566 ], "_set": [ - 3560 + 3580 ], "where": [ - 3544, + 3564, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3533, + 3553, { "_inc": [ - 3546 + 3566 ], "_set": [ - 3560 + 3580 ], "pk_columns": [ - 3556, + 3576, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3552, + 3572, { "updates": [ - 3572, + 3592, "[servers_updates!]!" ] } ], "update_settings": [ - 3587, + 3607, { "_set": [ - 3592 + 3612 ], "where": [ - 3582, + 3602, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3579, + 3599, { "_set": [ - 3592 + 3612 ], "pk_columns": [ - 3590, + 3610, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3587, + 3607, { "updates": [ - 3596, + 3616, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3613, + 3633, { "_set": [ - 3618 + 3638 ], "where": [ - 3606, + 3626, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3599, + 3619, { "_set": [ - 3618 + 3638 ], "pk_columns": [ - 3616, + 3636, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3613, + 3633, { "updates": [ - 3622, + 3642, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3633, + 3653, { "_inc": [ - 3629 + 3649 ], "_set": [ - 3639 + 3659 ], "where": [ - 3627, + 3647, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3623, + 3643, { "_inc": [ - 3629 + 3649 ], "_set": [ - 3639 + 3659 ], "pk_columns": [ - 3637, + 3657, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3633, + 3653, { "updates": [ - 3647, + 3667, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3661, + 3681, { "_inc": [ - 3657 + 3677 ], "_set": [ - 3666 + 3686 ], "where": [ - 3655, + 3675, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3651, + 3671, { "_inc": [ - 3657 + 3677 ], "_set": [ - 3666 + 3686 ], "pk_columns": [ - 3664, + 3684, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3661, + 3681, { "updates": [ - 3674, + 3694, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3695, + 3715, { "_inc": [ - 3689 + 3709 ], "_set": [ - 3700 + 3720 ], "where": [ - 3687, + 3707, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3678, + 3698, { "_inc": [ - 3689 + 3709 ], "_set": [ - 3700 + 3720 ], "pk_columns": [ - 3698, + 3718, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3695, + 3715, { "updates": [ - 3712, + 3732, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3738, + 3758, { "_inc": [ - 3732 + 3752 ], "_set": [ - 3745 + 3765 ], "where": [ - 3730, + 3750, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3719, + 3739, { "_inc": [ - 3732 + 3752 ], "_set": [ - 3745 + 3765 ], "pk_columns": [ - 3741, + 3761, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3738, + 3758, { "updates": [ - 3757, + 3777, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3774, + 3794, { "_inc": [ - 3770 + 3790 ], "_set": [ - 3779 + 3799 ], "where": [ - 3768, + 3788, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3764, + 3784, { "_inc": [ - 3770 + 3790 ], "_set": [ - 3779 + 3799 ], "pk_columns": [ - 3777, + 3797, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3774, + 3794, { "updates": [ - 3787, + 3807, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3807, + 3827, { "_set": [ - 3814 + 3834 ], "where": [ - 3800, + 3820, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3791, + 3811, { "_set": [ - 3814 + 3834 ], "pk_columns": [ - 3810, + 3830, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3807, + 3827, { "updates": [ - 3818, + 3838, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3836, + 3856, { "_inc": [ - 3830 + 3850 ], "_set": [ - 3841 + 3861 ], "where": [ - 3828, + 3848, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3819, + 3839, { "_inc": [ - 3830 + 3850 ], "_set": [ - 3841 + 3861 ], "pk_columns": [ - 3839, + 3859, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3836, + 3856, { "updates": [ - 3853, + 3873, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3879, + 3899, { "_inc": [ - 3873 + 3893 ], "_set": [ - 3887 + 3907 ], "where": [ - 3871, + 3891, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3860, + 3880, { "_inc": [ - 3873 + 3893 ], "_set": [ - 3887 + 3907 ], "pk_columns": [ - 3883, + 3903, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3879, + 3899, { "updates": [ - 3899, + 3919, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3916, + 3936, { "_inc": [ - 3912 + 3932 ], "_set": [ - 3922 + 3942 ], "where": [ - 3910, + 3930, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3906, + 3926, { "_inc": [ - 3912 + 3932 ], "_set": [ - 3922 + 3942 ], "pk_columns": [ - 3920, + 3940, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3916, + 3936, { "updates": [ - 3930, + 3950, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3944, + 3964, { "_inc": [ - 3940 + 3960 ], "_set": [ - 3949 + 3969 ], "where": [ - 3938, + 3958, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3934, + 3954, { "_inc": [ - 3940 + 3960 ], "_set": [ - 3949 + 3969 ], "pk_columns": [ - 3947, + 3967, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3944, + 3964, { "updates": [ - 3957, + 3977, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3978, + 3998, { "_inc": [ - 3972 + 3992 ], "_set": [ - 3984 + 4004 ], "where": [ - 3970, + 3990, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3961, + 3981, { "_inc": [ - 3972 + 3992 ], "_set": [ - 3984 + 4004 ], "pk_columns": [ - 3982, + 4002, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3978, + 3998, { "updates": [ - 3996, + 4016, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4025, + 4045, { "_inc": [ - 4019 + 4039 ], "_set": [ - 4033 + 4053 ], "where": [ - 4017, + 4037, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4006, + 4026, { "_inc": [ - 4019 + 4039 ], "_set": [ - 4033 + 4053 ], "pk_columns": [ - 4029, + 4049, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4025, + 4045, { "updates": [ - 4045, + 4065, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4069, + 4089, { "_inc": [ - 4063 + 4083 ], "_set": [ - 4074 + 4094 ], "where": [ - 4061, + 4081, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4052, + 4072, { "_inc": [ - 4063 + 4083 ], "_set": [ - 4074 + 4094 ], "pk_columns": [ - 4072, + 4092, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4069, + 4089, { "updates": [ - 4086, + 4106, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4110, + 4130, { "_inc": [ - 4104 + 4124 ], "_set": [ - 4115 + 4135 ], "where": [ - 4102, + 4122, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4093, + 4113, { "_inc": [ - 4104 + 4124 ], "_set": [ - 4115 + 4135 ], "pk_columns": [ - 4113, + 4133, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4110, + 4130, { "updates": [ - 4127, + 4147, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4157, + 4177, { "_append": [ - 4142 + 4162 ], "_delete_at_path": [ - 4148 + 4168 ], "_delete_elem": [ - 4149 + 4169 ], "_delete_key": [ - 4150 + 4170 ], "_inc": [ - 4151 + 4171 ], "_prepend": [ - 4162 + 4182 ], "_set": [ - 4166 + 4186 ], "where": [ - 4146, + 4166, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4134, + 4154, { "_append": [ - 4142 + 4162 ], "_delete_at_path": [ - 4148 + 4168 ], "_delete_elem": [ - 4149 + 4169 ], "_delete_key": [ - 4150 + 4170 ], "_inc": [ - 4151 + 4171 ], "_prepend": [ - 4162 + 4182 ], "_set": [ - 4166 + 4186 ], "pk_columns": [ - 4161, + 4181, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4157, + 4177, { "updates": [ - 4178, + 4198, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4202, + 4222, { "_inc": [ - 4196 + 4216 ], "_set": [ - 4207 + 4227 ], "where": [ - 4194, + 4214, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4185, + 4205, { "_inc": [ - 4196 + 4216 ], "_set": [ - 4207 + 4227 ], "pk_columns": [ - 4205, + 4225, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4202, + 4222, { "updates": [ - 4219, + 4239, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4243, + 4263, { "_inc": [ - 4237 + 4257 ], "_set": [ - 4248 + 4268 ], "where": [ - 4235, + 4255, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4226, + 4246, { "_inc": [ - 4237 + 4257 ], "_set": [ - 4248 + 4268 ], "pk_columns": [ - 4246, + 4266, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4243, + 4263, { "updates": [ - 4260, + 4280, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4284, + 4304, { "_inc": [ - 4278 + 4298 ], "_set": [ - 4290 + 4310 ], "where": [ - 4276, + 4296, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4267, + 4287, { "_inc": [ - 4278 + 4298 ], "_set": [ - 4290 + 4310 ], "pk_columns": [ - 4288, + 4308, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4284, + 4304, { "updates": [ - 4302, + 4322, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4328, + 4348, { "_inc": [ - 4322 + 4342 ], "_set": [ - 4335 + 4355 ], "where": [ - 4320, + 4340, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4309, + 4329, { "_inc": [ - 4322 + 4342 ], "_set": [ - 4335 + 4355 ], "pk_columns": [ - 4331, + 4351, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4328, + 4348, { "updates": [ - 4347, + 4367, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4371, + 4391, { "_inc": [ - 4365 + 4385 ], "_set": [ - 4377 + 4397 ], "where": [ - 4363, + 4383, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4354, + 4374, { "_inc": [ - 4365 + 4385 ], "_set": [ - 4377 + 4397 ], "pk_columns": [ - 4375, + 4395, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4371, + 4391, { "updates": [ - 4389, + 4409, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4415, + 4435, { "_inc": [ - 4409 + 4429 ], "_set": [ - 4423 + 4443 ], "where": [ - 4407, + 4427, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4396, + 4416, { "_inc": [ - 4409 + 4429 ], "_set": [ - 4423 + 4443 ], "pk_columns": [ - 4419, + 4439, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4415, + 4435, { "updates": [ - 4435, + 4455, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4556, + 4576, { "_inc": [ - 4552 + 4572 ], "_set": [ - 4560 + 4580 ], "where": [ - 4551, + 4571, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4556, + 4576, { "updates": [ - 4567, + 4587, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4667, + 4687, { "_inc": [ - 4663 + 4683 ], "_set": [ - 4670 + 4690 ], "where": [ - 4662, + 4682, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4667, + 4687, { "updates": [ - 4677, + 4697, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4889, + 4909, { "_inc": [ - 4883 + 4903 ], "_set": [ - 4892 + 4912 ], "where": [ - 4882, + 4902, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4889, + 4909, { "updates": [ - 4903, + 4923, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5048, + 5068, { "_set": [ - 5053 + 5073 ], "where": [ - 5042, + 5062, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5048, + 5068, { "updates": [ - 5056, + 5076, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5142, + 5162, { "_inc": [ - 5136 + 5156 ], "_set": [ - 5156 + 5176 ], "where": [ - 5134, + 5154, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5115, + 5135, { "_inc": [ - 5136 + 5156 ], "_set": [ - 5156 + 5176 ], "pk_columns": [ - 5146, + 5166, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5142, + 5162, { "updates": [ - 5168, + 5188, "[v_team_stage_results_updates!]!" ] } @@ -146686,7 +147087,7 @@ export default { 81, { "game_server_node_id": [ - 4442, + 4462, "uuid!" ] } @@ -146695,10 +147096,10 @@ export default { 91, { "match_map_demo_id": [ - 4442 + 4462 ], "match_map_id": [ - 4442, + 4462, "uuid!" ] } @@ -146776,11 +147177,11 @@ export default { 92, { "map_id": [ - 4442, + 4462, "uuid!" ], "map_pool_id": [ - 4442, + 4462, "uuid!" ] } @@ -146849,7 +147250,7 @@ export default { 111, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -146918,7 +147319,7 @@ export default { 152, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -146987,7 +147388,7 @@ export default { 185, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -147056,7 +147457,7 @@ export default { 237, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -147125,7 +147526,7 @@ export default { 264, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -147194,7 +147595,7 @@ export default { 309, { "draft_game_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -147267,7 +147668,7 @@ export default { 354, { "id": [ - 4442, + 4462, "uuid!" ] } @@ -148944,12 +149345,12 @@ export default { ] } ], - "e_ready_settings": [ + "e_plugin_runtimes": [ 896, { "distinct_on": [ 910, - "[e_ready_settings_select_column!]" + "[e_plugin_runtimes_select_column!]" ], "limit": [ 38 @@ -148959,19 +149360,19 @@ export default { ], "order_by": [ 908, - "[e_ready_settings_order_by!]" + "[e_plugin_runtimes_order_by!]" ], "where": [ 899 ] } ], - "e_ready_settings_aggregate": [ + "e_plugin_runtimes_aggregate": [ 897, { "distinct_on": [ 910, - "[e_ready_settings_select_column!]" + "[e_plugin_runtimes_select_column!]" ], "limit": [ 38 @@ -148981,14 +149382,14 @@ export default { ], "order_by": [ 908, - "[e_ready_settings_order_by!]" + "[e_plugin_runtimes_order_by!]" ], "where": [ 899 ] } ], - "e_ready_settings_by_pk": [ + "e_plugin_runtimes_by_pk": [ 896, { "value": [ @@ -148997,7 +149398,7 @@ export default { ] } ], - "e_ready_settings_stream": [ + "e_plugin_runtimes_stream": [ 896, { "batch_size": [ @@ -149006,19 +149407,19 @@ export default { ], "cursor": [ 912, - "[e_ready_settings_stream_cursor_input]!" + "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ 899 ] } ], - "e_sanction_types": [ + "e_ready_settings": [ 916, { "distinct_on": [ - 931, - "[e_sanction_types_select_column!]" + 930, + "[e_ready_settings_select_column!]" ], "limit": [ 38 @@ -149027,20 +149428,20 @@ export default { 38 ], "order_by": [ - 929, - "[e_sanction_types_order_by!]" + 928, + "[e_ready_settings_order_by!]" ], "where": [ 919 ] } ], - "e_sanction_types_aggregate": [ + "e_ready_settings_aggregate": [ 917, { "distinct_on": [ - 931, - "[e_sanction_types_select_column!]" + 930, + "[e_ready_settings_select_column!]" ], "limit": [ 38 @@ -149049,15 +149450,15 @@ export default { 38 ], "order_by": [ - 929, - "[e_sanction_types_order_by!]" + 928, + "[e_ready_settings_order_by!]" ], "where": [ 919 ] } ], - "e_sanction_types_by_pk": [ + "e_ready_settings_by_pk": [ 916, { "value": [ @@ -149066,7 +149467,7 @@ export default { ] } ], - "e_sanction_types_stream": [ + "e_ready_settings_stream": [ 916, { "batch_size": [ @@ -149074,20 +149475,20 @@ export default { "Int!" ], "cursor": [ - 933, - "[e_sanction_types_stream_cursor_input]!" + 932, + "[e_ready_settings_stream_cursor_input]!" ], "where": [ 919 ] } ], - "e_scrim_request_statuses": [ - 937, + "e_sanction_types": [ + 936, { "distinct_on": [ 951, - "[e_scrim_request_statuses_select_column!]" + "[e_sanction_types_select_column!]" ], "limit": [ 38 @@ -149097,19 +149498,19 @@ export default { ], "order_by": [ 949, - "[e_scrim_request_statuses_order_by!]" + "[e_sanction_types_order_by!]" ], "where": [ - 940 + 939 ] } ], - "e_scrim_request_statuses_aggregate": [ - 938, + "e_sanction_types_aggregate": [ + 937, { "distinct_on": [ 951, - "[e_scrim_request_statuses_select_column!]" + "[e_sanction_types_select_column!]" ], "limit": [ 38 @@ -149119,15 +149520,15 @@ export default { ], "order_by": [ 949, - "[e_scrim_request_statuses_order_by!]" + "[e_sanction_types_order_by!]" ], "where": [ - 940 + 939 ] } ], - "e_scrim_request_statuses_by_pk": [ - 937, + "e_sanction_types_by_pk": [ + 936, { "value": [ 78, @@ -149135,8 +149536,8 @@ export default { ] } ], - "e_scrim_request_statuses_stream": [ - 937, + "e_sanction_types_stream": [ + 936, { "batch_size": [ 38, @@ -149144,19 +149545,19 @@ export default { ], "cursor": [ 953, - "[e_scrim_request_statuses_stream_cursor_input]!" + "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 940 + 939 ] } ], - "e_server_types": [ + "e_scrim_request_statuses": [ 957, { "distinct_on": [ 971, - "[e_server_types_select_column!]" + "[e_scrim_request_statuses_select_column!]" ], "limit": [ 38 @@ -149166,19 +149567,19 @@ export default { ], "order_by": [ 969, - "[e_server_types_order_by!]" + "[e_scrim_request_statuses_order_by!]" ], "where": [ 960 ] } ], - "e_server_types_aggregate": [ + "e_scrim_request_statuses_aggregate": [ 958, { "distinct_on": [ 971, - "[e_server_types_select_column!]" + "[e_scrim_request_statuses_select_column!]" ], "limit": [ 38 @@ -149188,14 +149589,14 @@ export default { ], "order_by": [ 969, - "[e_server_types_order_by!]" + "[e_scrim_request_statuses_order_by!]" ], "where": [ 960 ] } ], - "e_server_types_by_pk": [ + "e_scrim_request_statuses_by_pk": [ 957, { "value": [ @@ -149204,7 +149605,7 @@ export default { ] } ], - "e_server_types_stream": [ + "e_scrim_request_statuses_stream": [ 957, { "batch_size": [ @@ -149213,19 +149614,19 @@ export default { ], "cursor": [ 973, - "[e_server_types_stream_cursor_input]!" + "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ 960 ] } ], - "e_sides": [ + "e_server_types": [ 977, { "distinct_on": [ 991, - "[e_sides_select_column!]" + "[e_server_types_select_column!]" ], "limit": [ 38 @@ -149235,19 +149636,19 @@ export default { ], "order_by": [ 989, - "[e_sides_order_by!]" + "[e_server_types_order_by!]" ], "where": [ 980 ] } ], - "e_sides_aggregate": [ + "e_server_types_aggregate": [ 978, { "distinct_on": [ 991, - "[e_sides_select_column!]" + "[e_server_types_select_column!]" ], "limit": [ 38 @@ -149257,14 +149658,14 @@ export default { ], "order_by": [ 989, - "[e_sides_order_by!]" + "[e_server_types_order_by!]" ], "where": [ 980 ] } ], - "e_sides_by_pk": [ + "e_server_types_by_pk": [ 977, { "value": [ @@ -149273,7 +149674,7 @@ export default { ] } ], - "e_sides_stream": [ + "e_server_types_stream": [ 977, { "batch_size": [ @@ -149282,19 +149683,19 @@ export default { ], "cursor": [ 993, - "[e_sides_stream_cursor_input]!" + "[e_server_types_stream_cursor_input]!" ], "where": [ 980 ] } ], - "e_system_alert_types": [ + "e_sides": [ 997, { "distinct_on": [ 1011, - "[e_system_alert_types_select_column!]" + "[e_sides_select_column!]" ], "limit": [ 38 @@ -149304,19 +149705,19 @@ export default { ], "order_by": [ 1009, - "[e_system_alert_types_order_by!]" + "[e_sides_order_by!]" ], "where": [ 1000 ] } ], - "e_system_alert_types_aggregate": [ + "e_sides_aggregate": [ 998, { "distinct_on": [ 1011, - "[e_system_alert_types_select_column!]" + "[e_sides_select_column!]" ], "limit": [ 38 @@ -149326,14 +149727,14 @@ export default { ], "order_by": [ 1009, - "[e_system_alert_types_order_by!]" + "[e_sides_order_by!]" ], "where": [ 1000 ] } ], - "e_system_alert_types_by_pk": [ + "e_sides_by_pk": [ 997, { "value": [ @@ -149342,7 +149743,7 @@ export default { ] } ], - "e_system_alert_types_stream": [ + "e_sides_stream": [ 997, { "batch_size": [ @@ -149351,18 +149752,87 @@ export default { ], "cursor": [ 1013, - "[e_system_alert_types_stream_cursor_input]!" + "[e_sides_stream_cursor_input]!" ], "where": [ 1000 ] } ], - "e_team_roles": [ + "e_system_alert_types": [ 1017, { "distinct_on": [ - 1032, + 1031, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1029, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1020 + ] + } + ], + "e_system_alert_types_aggregate": [ + 1018, + { + "distinct_on": [ + 1031, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1029, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1020 + ] + } + ], + "e_system_alert_types_by_pk": [ + 1017, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_system_alert_types_stream": [ + 1017, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1033, + "[e_system_alert_types_stream_cursor_input]!" + ], + "where": [ + 1020 + ] + } + ], + "e_team_roles": [ + 1037, + { + "distinct_on": [ + 1052, "[e_team_roles_select_column!]" ], "limit": [ @@ -149372,19 +149842,19 @@ export default { 38 ], "order_by": [ - 1030, + 1050, "[e_team_roles_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_team_roles_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1032, + 1052, "[e_team_roles_select_column!]" ], "limit": [ @@ -149394,16 +149864,16 @@ export default { 38 ], "order_by": [ - 1030, + 1050, "[e_team_roles_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_team_roles_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -149412,26 +149882,26 @@ export default { } ], "e_team_roles_stream": [ - 1017, + 1037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1034, + 1054, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1020 + 1040 ] } ], "e_team_roster_statuses": [ - 1038, + 1058, { "distinct_on": [ - 1052, + 1072, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149441,19 +149911,19 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1041 + 1061 ] } ], "e_team_roster_statuses_aggregate": [ - 1039, + 1059, { "distinct_on": [ - 1052, + 1072, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149463,16 +149933,16 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1041 + 1061 ] } ], "e_team_roster_statuses_by_pk": [ - 1038, + 1058, { "value": [ 78, @@ -149481,26 +149951,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1038, + 1058, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1054, + 1074, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1041 + 1061 ] } ], "e_timeout_settings": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -149510,19 +149980,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_timeout_settings_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_timeout_settings_aggregate": [ - 1059, + 1079, { "distinct_on": [ - 1072, + 1092, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -149532,16 +150002,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_timeout_settings_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_timeout_settings_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -149550,26 +150020,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1058, + 1078, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1074, + 1094, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1061 + 1081 ] } ], "e_tournament_stage_types": [ - 1078, + 1098, { "distinct_on": [ - 1093, + 1113, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -149579,19 +150049,19 @@ export default { 38 ], "order_by": [ - 1091, + 1111, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_stage_types_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1093, + 1113, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -149601,16 +150071,16 @@ export default { 38 ], "order_by": [ - 1091, + 1111, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_stage_types_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -149619,26 +150089,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1078, + 1098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1095, + 1115, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_status": [ - 1099, + 1119, { "distinct_on": [ - 1114, + 1134, "[e_tournament_status_select_column!]" ], "limit": [ @@ -149648,19 +150118,19 @@ export default { 38 ], "order_by": [ - 1112, + 1132, "[e_tournament_status_order_by!]" ], "where": [ - 1102 + 1122 ] } ], "e_tournament_status_aggregate": [ - 1100, + 1120, { "distinct_on": [ - 1114, + 1134, "[e_tournament_status_select_column!]" ], "limit": [ @@ -149670,16 +150140,16 @@ export default { 38 ], "order_by": [ - 1112, + 1132, "[e_tournament_status_order_by!]" ], "where": [ - 1102 + 1122 ] } ], "e_tournament_status_by_pk": [ - 1099, + 1119, { "value": [ 78, @@ -149688,26 +150158,26 @@ export default { } ], "e_tournament_status_stream": [ - 1099, + 1119, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1116, + 1136, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1102 + 1122 ] } ], "e_utility_types": [ - 1120, + 1140, { "distinct_on": [ - 1134, + 1154, "[e_utility_types_select_column!]" ], "limit": [ @@ -149717,19 +150187,19 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_utility_types_order_by!]" ], "where": [ - 1123 + 1143 ] } ], "e_utility_types_aggregate": [ - 1121, + 1141, { "distinct_on": [ - 1134, + 1154, "[e_utility_types_select_column!]" ], "limit": [ @@ -149739,16 +150209,16 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_utility_types_order_by!]" ], "where": [ - 1123 + 1143 ] } ], "e_utility_types_by_pk": [ - 1120, + 1140, { "value": [ 78, @@ -149757,26 +150227,26 @@ export default { } ], "e_utility_types_stream": [ - 1120, + 1140, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1136, + 1156, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1123 + 1143 ] } ], "e_veto_pick_types": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -149786,19 +150256,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_veto_pick_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_veto_pick_types_aggregate": [ - 1141, + 1161, { "distinct_on": [ - 1154, + 1174, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -149808,16 +150278,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_veto_pick_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_veto_pick_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -149826,26 +150296,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1140, + 1160, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1156, + 1176, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1143 + 1163 ] } ], "e_winning_reasons": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -149855,19 +150325,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_winning_reasons_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_winning_reasons_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -149877,16 +150347,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_winning_reasons_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_winning_reasons_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -149895,26 +150365,26 @@ export default { } ], "e_winning_reasons_stream": [ - 1160, + 1180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, + 1196, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1163 + 1183 ] } ], "friends": [ - 1182, + 1202, { "distinct_on": [ - 1196, + 1216, "[friends_select_column!]" ], "limit": [ @@ -149924,19 +150394,19 @@ export default { 38 ], "order_by": [ - 1194, + 1214, "[friends_order_by!]" ], "where": [ - 1186 + 1206 ] } ], "friends_aggregate": [ - 1183, + 1203, { "distinct_on": [ - 1196, + 1216, "[friends_select_column!]" ], "limit": [ @@ -149946,16 +150416,16 @@ export default { 38 ], "order_by": [ - 1194, + 1214, "[friends_order_by!]" ], "where": [ - 1186 + 1206 ] } ], "friends_by_pk": [ - 1182, + 1202, { "other_player_steam_id": [ 180, @@ -149968,26 +150438,26 @@ export default { } ], "friends_stream": [ - 1182, + 1202, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1201, + 1221, "[friends_stream_cursor_input]!" ], "where": [ - 1186 + 1206 ] } ], "game_server_nodes": [ - 1209, + 1229, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -149997,19 +150467,19 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], "game_server_nodes_aggregate": [ - 1210, + 1230, { "distinct_on": [ - 1238, + 1258, "[game_server_nodes_select_column!]" ], "limit": [ @@ -150019,16 +150489,16 @@ export default { 38 ], "order_by": [ - 1235, + 1255, "[game_server_nodes_order_by!]" ], "where": [ - 1221 + 1241 ] } ], "game_server_nodes_by_pk": [ - 1209, + 1229, { "id": [ 78, @@ -150037,26 +150507,26 @@ export default { } ], "game_server_nodes_stream": [ - 1209, + 1229, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1248, + 1268, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1221 + 1241 ] } ], "game_versions": [ - 1260, + 1280, { "distinct_on": [ - 1280, + 1300, "[game_versions_select_column!]" ], "limit": [ @@ -150066,19 +150536,19 @@ export default { 38 ], "order_by": [ - 1277, + 1297, "[game_versions_order_by!]" ], "where": [ - 1265 + 1285 ] } ], "game_versions_aggregate": [ - 1261, + 1281, { "distinct_on": [ - 1280, + 1300, "[game_versions_select_column!]" ], "limit": [ @@ -150088,16 +150558,16 @@ export default { 38 ], "order_by": [ - 1277, + 1297, "[game_versions_order_by!]" ], "where": [ - 1265 + 1285 ] } ], "game_versions_by_pk": [ - 1260, + 1280, { "build_id": [ 38, @@ -150106,26 +150576,26 @@ export default { } ], "game_versions_stream": [ - 1260, + 1280, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1285, + 1305, "[game_versions_stream_cursor_input]!" ], "where": [ - 1265 + 1285 ] } ], "gamedata_signature_validations": [ - 1293, + 1313, { "distinct_on": [ - 1312, + 1332, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150135,19 +150605,19 @@ export default { 38 ], "order_by": [ - 1309, + 1329, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1298 + 1318 ] } ], "gamedata_signature_validations_aggregate": [ - 1294, + 1314, { "distinct_on": [ - 1312, + 1332, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150157,48 +150627,48 @@ export default { 38 ], "order_by": [ - 1309, + 1329, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1298 + 1318 ] } ], "gamedata_signature_validations_by_pk": [ - 1293, + 1313, { "id": [ - 4442, + 4462, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1293, + 1313, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1317, + 1337, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1298 + 1318 ] } ], "get_leaderboard": [ - 1335, + 1355, { "args": [ - 1325, + 1345, "get_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150208,23 +150678,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_leaderboard_aggregate": [ - 1336, + 1356, { "args": [ - 1325, + 1345, "get_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150234,23 +150704,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_league_season_leaderboard": [ - 1335, + 1355, { "args": [ - 1326, + 1346, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150260,23 +150730,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_league_season_leaderboard_aggregate": [ - 1336, + 1356, { "args": [ - 1326, + 1346, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150286,23 +150756,23 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "get_player_leaderboard_rank": [ - 2902, + 2922, { "args": [ - 1327, + 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150312,23 +150782,23 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2903, + 2923, { "args": [ - 1327, + 1347, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150338,19 +150808,19 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "leaderboard_entries": [ - 1335, + 1355, { "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150360,19 +150830,19 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "leaderboard_entries_aggregate": [ - 1336, + 1356, { "distinct_on": [ - 1346, + 1366, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150382,35 +150852,35 @@ export default { 38 ], "order_by": [ - 1345, + 1365, "[leaderboard_entries_order_by!]" ], "where": [ - 1339 + 1359 ] } ], "leaderboard_entries_stream": [ - 1335, + 1355, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1351, + 1371, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1339 + 1359 ] } ], "league_divisions": [ - 1359, + 1379, { "distinct_on": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "limit": [ @@ -150420,19 +150890,19 @@ export default { 38 ], "order_by": [ - 1372, + 1392, "[league_divisions_order_by!]" ], "where": [ - 1363 + 1383 ] } ], "league_divisions_aggregate": [ - 1360, + 1380, { "distinct_on": [ - 1374, + 1394, "[league_divisions_select_column!]" ], "limit": [ @@ -150442,44 +150912,44 @@ export default { 38 ], "order_by": [ - 1372, + 1392, "[league_divisions_order_by!]" ], "where": [ - 1363 + 1383 ] } ], "league_divisions_by_pk": [ - 1359, + 1379, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_divisions_stream": [ - 1359, + 1379, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1379, + 1399, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1363 + 1383 ] } ], "league_match_weeks": [ - 1387, + 1407, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150489,19 +150959,19 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], "league_match_weeks_aggregate": [ - 1388, + 1408, { "distinct_on": [ - 1408, + 1428, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150511,44 +150981,44 @@ export default { 38 ], "order_by": [ - 1406, + 1426, "[league_match_weeks_order_by!]" ], "where": [ - 1396 + 1416 ] } ], "league_match_weeks_by_pk": [ - 1387, + 1407, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_match_weeks_stream": [ - 1387, + 1407, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1416, + 1436, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1396 + 1416 ] } ], "league_relegation_playoffs": [ - 1428, + 1448, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -150558,19 +151028,19 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], "league_relegation_playoffs_aggregate": [ - 1429, + 1449, { "distinct_on": [ - 1449, + 1469, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -150580,44 +151050,44 @@ export default { 38 ], "order_by": [ - 1447, + 1467, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1437 + 1457 ] } ], "league_relegation_playoffs_by_pk": [ - 1428, + 1448, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1428, + 1448, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1457, + 1477, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1437 + 1457 ] } ], "league_scheduling_proposals": [ - 1469, + 1489, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -150627,19 +151097,19 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "league_scheduling_proposals_aggregate": [ - 1470, + 1490, { "distinct_on": [ - 1490, + 1510, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -150649,44 +151119,44 @@ export default { 38 ], "order_by": [ - 1488, + 1508, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1478 + 1498 ] } ], "league_scheduling_proposals_by_pk": [ - 1469, + 1489, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1469, + 1489, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1498, + 1518, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1478 + 1498 ] } ], "league_season_divisions": [ - 1510, + 1530, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -150696,19 +151166,19 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "league_season_divisions_aggregate": [ - 1511, + 1531, { "distinct_on": [ - 1529, + 1549, "[league_season_divisions_select_column!]" ], "limit": [ @@ -150718,44 +151188,44 @@ export default { 38 ], "order_by": [ - 1527, + 1547, "[league_season_divisions_order_by!]" ], "where": [ - 1517 + 1537 ] } ], "league_season_divisions_by_pk": [ - 1510, + 1530, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_season_divisions_stream": [ - 1510, + 1530, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1531, + 1551, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1517 + 1537 ] } ], "league_seasons": [ - 1535, + 1555, { "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -150765,19 +151235,19 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], "league_seasons_aggregate": [ - 1536, + 1556, { "distinct_on": [ - 1555, + 1575, "[league_seasons_select_column!]" ], "limit": [ @@ -150787,44 +151257,44 @@ export default { 38 ], "order_by": [ - 1552, + 1572, "[league_seasons_order_by!]" ], "where": [ - 1540 + 1560 ] } ], "league_seasons_by_pk": [ - 1535, + 1555, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_seasons_stream": [ - 1535, + 1555, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1560, + 1580, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1540 + 1560 ] } ], "league_team_movements": [ - 1568, + 1588, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -150834,19 +151304,19 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "league_team_movements_aggregate": [ - 1569, + 1589, { "distinct_on": [ - 1589, + 1609, "[league_team_movements_select_column!]" ], "limit": [ @@ -150856,44 +151326,44 @@ export default { 38 ], "order_by": [ - 1587, + 1607, "[league_team_movements_order_by!]" ], "where": [ - 1577 + 1597 ] } ], "league_team_movements_by_pk": [ - 1568, + 1588, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_team_movements_stream": [ - 1568, + 1588, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1597, + 1617, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1577 + 1597 ] } ], "league_team_rosters": [ - 1609, + 1629, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -150903,19 +151373,19 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "league_team_rosters_aggregate": [ - 1610, + 1630, { "distinct_on": [ - 1630, + 1650, "[league_team_rosters_select_column!]" ], "limit": [ @@ -150925,19 +151395,19 @@ export default { 38 ], "order_by": [ - 1628, + 1648, "[league_team_rosters_order_by!]" ], "where": [ - 1618 + 1638 ] } ], "league_team_rosters_by_pk": [ - 1609, + 1629, { "league_team_season_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -150947,26 +151417,26 @@ export default { } ], "league_team_rosters_stream": [ - 1609, + 1629, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1638, + 1658, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1618 + 1638 ] } ], "league_team_seasons": [ - 1650, + 1670, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -150976,19 +151446,19 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "league_team_seasons_aggregate": [ - 1651, + 1671, { "distinct_on": [ - 1672, + 1692, "[league_team_seasons_select_column!]" ], "limit": [ @@ -150998,44 +151468,44 @@ export default { 38 ], "order_by": [ - 1670, + 1690, "[league_team_seasons_order_by!]" ], "where": [ - 1659 + 1679 ] } ], "league_team_seasons_by_pk": [ - 1650, + 1670, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_team_seasons_stream": [ - 1650, + 1670, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1680, + 1700, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1659 + 1679 ] } ], "league_teams": [ - 1692, + 1712, { "distinct_on": [ - 1705, + 1725, "[league_teams_select_column!]" ], "limit": [ @@ -151045,19 +151515,19 @@ export default { 38 ], "order_by": [ - 1703, + 1723, "[league_teams_order_by!]" ], "where": [ - 1695 + 1715 ] } ], "league_teams_aggregate": [ - 1693, + 1713, { "distinct_on": [ - 1705, + 1725, "[league_teams_select_column!]" ], "limit": [ @@ -151067,44 +151537,44 @@ export default { 38 ], "order_by": [ - 1703, + 1723, "[league_teams_order_by!]" ], "where": [ - 1695 + 1715 ] } ], "league_teams_by_pk": [ - 1692, + 1712, { "id": [ - 4442, + 4462, "uuid!" ] } ], "league_teams_stream": [ - 1692, + 1712, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1707, + 1727, "[league_teams_stream_cursor_input]!" ], "where": [ - 1695 + 1715 ] } ], "lobbies": [ - 1711, + 1731, { "distinct_on": [ - 1724, + 1744, "[lobbies_select_column!]" ], "limit": [ @@ -151114,19 +151584,19 @@ export default { 38 ], "order_by": [ - 1722, + 1742, "[lobbies_order_by!]" ], "where": [ - 1714 + 1734 ] } ], "lobbies_aggregate": [ - 1712, + 1732, { "distinct_on": [ - 1724, + 1744, "[lobbies_select_column!]" ], "limit": [ @@ -151136,44 +151606,44 @@ export default { 38 ], "order_by": [ - 1722, + 1742, "[lobbies_order_by!]" ], "where": [ - 1714 + 1734 ] } ], "lobbies_by_pk": [ - 1711, + 1731, { "id": [ - 4442, + 4462, "uuid!" ] } ], "lobbies_stream": [ - 1711, + 1731, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1726, + 1746, "[lobbies_stream_cursor_input]!" ], "where": [ - 1714 + 1734 ] } ], "lobby_players": [ - 1730, + 1750, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -151183,19 +151653,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "lobby_players_aggregate": [ - 1731, + 1751, { "distinct_on": [ - 1753, + 1773, "[lobby_players_select_column!]" ], "limit": [ @@ -151205,19 +151675,19 @@ export default { 38 ], "order_by": [ - 1751, + 1771, "[lobby_players_order_by!]" ], "where": [ - 1741 + 1761 ] } ], "lobby_players_by_pk": [ - 1730, + 1750, { "lobby_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -151227,26 +151697,26 @@ export default { } ], "lobby_players_stream": [ - 1730, + 1750, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1763, + 1783, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1741 + 1761 ] } ], "map_pools": [ - 1775, + 1795, { "distinct_on": [ - 1788, + 1808, "[map_pools_select_column!]" ], "limit": [ @@ -151256,19 +151726,19 @@ export default { 38 ], "order_by": [ - 1786, + 1806, "[map_pools_order_by!]" ], "where": [ - 1778 + 1798 ] } ], "map_pools_aggregate": [ - 1776, + 1796, { "distinct_on": [ - 1788, + 1808, "[map_pools_select_column!]" ], "limit": [ @@ -151278,44 +151748,44 @@ export default { 38 ], "order_by": [ - 1786, + 1806, "[map_pools_order_by!]" ], "where": [ - 1778 + 1798 ] } ], "map_pools_by_pk": [ - 1775, + 1795, { "id": [ - 4442, + 4462, "uuid!" ] } ], "map_pools_stream": [ - 1775, + 1795, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1790, + 1810, "[map_pools_stream_cursor_input]!" ], "where": [ - 1778 + 1798 ] } ], "maps": [ - 1794, + 1814, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -151325,19 +151795,19 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], "maps_aggregate": [ - 1795, + 1815, { "distinct_on": [ - 1815, + 1835, "[maps_select_column!]" ], "limit": [ @@ -151347,44 +151817,44 @@ export default { 38 ], "order_by": [ - 1813, + 1833, "[maps_order_by!]" ], "where": [ - 1803 + 1823 ] } ], "maps_by_pk": [ - 1794, + 1814, { "id": [ - 4442, + 4462, "uuid!" ] } ], "maps_stream": [ - 1794, + 1814, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1819, + 1839, "[maps_stream_cursor_input]!" ], "where": [ - 1803 + 1823 ] } ], "match_clips": [ - 1823, + 1843, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -151394,19 +151864,19 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_aggregate": [ - 1824, + 1844, { "distinct_on": [ - 1845, + 1865, "[match_clips_select_column!]" ], "limit": [ @@ -151416,44 +151886,44 @@ export default { 38 ], "order_by": [ - 1843, + 1863, "[match_clips_order_by!]" ], "where": [ - 1832 + 1852 ] } ], "match_clips_by_pk": [ - 1823, + 1843, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_clips_stream": [ - 1823, + 1843, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1853, + 1873, "[match_clips_stream_cursor_input]!" ], "where": [ - 1832 + 1852 ] } ], "match_demo_sessions": [ - 1865, + 1885, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151463,19 +151933,19 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], "match_demo_sessions_aggregate": [ - 1866, + 1886, { "distinct_on": [ - 1891, + 1911, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151485,44 +151955,44 @@ export default { 38 ], "order_by": [ - 1888, + 1908, "[match_demo_sessions_order_by!]" ], "where": [ - 1875 + 1895 ] } ], "match_demo_sessions_by_pk": [ - 1865, + 1885, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1865, + 1885, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1899, + 1919, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1875 + 1895 ] } ], "match_lineup_players": [ - 1911, + 1931, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -151532,19 +152002,19 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "match_lineup_players_aggregate": [ - 1912, + 1932, { "distinct_on": [ - 1934, + 1954, "[match_lineup_players_select_column!]" ], "limit": [ @@ -151554,44 +152024,44 @@ export default { 38 ], "order_by": [ - 1932, + 1952, "[match_lineup_players_order_by!]" ], "where": [ - 1922 + 1942 ] } ], "match_lineup_players_by_pk": [ - 1911, + 1931, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_lineup_players_stream": [ - 1911, + 1931, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1944, + 1964, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1922 + 1942 ] } ], "match_lineups": [ - 1956, + 1976, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -151601,19 +152071,19 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "match_lineups_aggregate": [ - 1957, + 1977, { "distinct_on": [ - 1978, + 1998, "[match_lineups_select_column!]" ], "limit": [ @@ -151623,44 +152093,44 @@ export default { 38 ], "order_by": [ - 1976, + 1996, "[match_lineups_order_by!]" ], "where": [ - 1965 + 1985 ] } ], "match_lineups_by_pk": [ - 1956, + 1976, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_lineups_stream": [ - 1956, + 1976, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1986, + 2006, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1965 + 1985 ] } ], "match_map_demos": [ - 1998, + 2018, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -151670,19 +152140,19 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "match_map_demos_aggregate": [ - 1999, + 2019, { "distinct_on": [ - 2027, + 2047, "[match_map_demos_select_column!]" ], "limit": [ @@ -151692,44 +152162,44 @@ export default { 38 ], "order_by": [ - 2024, + 2044, "[match_map_demos_order_by!]" ], "where": [ - 2010 + 2030 ] } ], "match_map_demos_by_pk": [ - 1998, + 2018, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_demos_stream": [ - 1998, + 2018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2037, + 2057, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2010 + 2030 ] } ], "match_map_rounds": [ - 2049, + 2069, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -151739,19 +152209,19 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "match_map_rounds_aggregate": [ - 2050, + 2070, { "distinct_on": [ - 2070, + 2090, "[match_map_rounds_select_column!]" ], "limit": [ @@ -151761,44 +152231,44 @@ export default { 38 ], "order_by": [ - 2068, + 2088, "[match_map_rounds_order_by!]" ], "where": [ - 2058 + 2078 ] } ], "match_map_rounds_by_pk": [ - 2049, + 2069, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_rounds_stream": [ - 2049, + 2069, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2078, + 2098, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2058 + 2078 ] } ], "match_map_veto_picks": [ - 2090, + 2110, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -151808,19 +152278,19 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_map_veto_picks_aggregate": [ - 2091, + 2111, { "distinct_on": [ - 2108, + 2128, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -151830,44 +152300,44 @@ export default { 38 ], "order_by": [ - 2106, + 2126, "[match_map_veto_picks_order_by!]" ], "where": [ - 2097 + 2117 ] } ], "match_map_veto_picks_by_pk": [ - 2090, + 2110, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2090, + 2110, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2110, + 2130, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2097 + 2117 ] } ], "match_maps": [ - 2114, + 2134, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -151877,19 +152347,19 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_aggregate": [ - 2115, + 2135, { "distinct_on": [ - 2136, + 2156, "[match_maps_select_column!]" ], "limit": [ @@ -151899,44 +152369,44 @@ export default { 38 ], "order_by": [ - 2134, + 2154, "[match_maps_order_by!]" ], "where": [ - 2123 + 2143 ] } ], "match_maps_by_pk": [ - 2114, + 2134, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_maps_stream": [ - 2114, + 2134, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2144, + 2164, "[match_maps_stream_cursor_input]!" ], "where": [ - 2123 + 2143 ] } ], "match_options": [ - 2156, + 2176, { "distinct_on": [ - 2171, + 2191, "[match_options_select_column!]" ], "limit": [ @@ -151946,19 +152416,19 @@ export default { 38 ], "order_by": [ - 2169, + 2189, "[match_options_order_by!]" ], "where": [ - 2160 + 2180 ] } ], "match_options_aggregate": [ - 2157, + 2177, { "distinct_on": [ - 2171, + 2191, "[match_options_select_column!]" ], "limit": [ @@ -151968,44 +152438,44 @@ export default { 38 ], "order_by": [ - 2169, + 2189, "[match_options_order_by!]" ], "where": [ - 2160 + 2180 ] } ], "match_options_by_pk": [ - 2156, + 2176, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_options_stream": [ - 2156, + 2176, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2176, + 2196, "[match_options_stream_cursor_input]!" ], "where": [ - 2160 + 2180 ] } ], "match_region_veto_picks": [ - 2184, + 2204, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152015,19 +152485,19 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], "match_region_veto_picks_aggregate": [ - 2185, + 2205, { "distinct_on": [ - 2202, + 2222, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152037,44 +152507,44 @@ export default { 38 ], "order_by": [ - 2200, + 2220, "[match_region_veto_picks_order_by!]" ], "where": [ - 2191 + 2211 ] } ], "match_region_veto_picks_by_pk": [ - 2184, + 2204, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2184, + 2204, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2204, + 2224, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2191 + 2211 ] } ], "match_streams": [ - 2208, + 2228, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -152084,19 +152554,19 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "match_streams_aggregate": [ - 2209, + 2229, { "distinct_on": [ - 2236, + 2256, "[match_streams_select_column!]" ], "limit": [ @@ -152106,44 +152576,44 @@ export default { 38 ], "order_by": [ - 2233, + 2253, "[match_streams_order_by!]" ], "where": [ - 2220 + 2240 ] } ], "match_streams_by_pk": [ - 2208, + 2228, { "id": [ - 4442, + 4462, "uuid!" ] } ], "match_streams_stream": [ - 2208, + 2228, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2246, + 2266, "[match_streams_stream_cursor_input]!" ], "where": [ - 2220 + 2240 ] } ], "match_type_cfgs": [ - 2258, + 2278, { "distinct_on": [ - 2270, + 2290, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152153,19 +152623,19 @@ export default { 38 ], "order_by": [ - 2268, + 2288, "[match_type_cfgs_order_by!]" ], "where": [ - 2261 + 2281 ] } ], "match_type_cfgs_aggregate": [ - 2259, + 2279, { "distinct_on": [ - 2270, + 2290, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152175,16 +152645,16 @@ export default { 38 ], "order_by": [ - 2268, + 2288, "[match_type_cfgs_order_by!]" ], "where": [ - 2261 + 2281 ] } ], "match_type_cfgs_by_pk": [ - 2258, + 2278, { "type": [ 551, @@ -152193,26 +152663,26 @@ export default { } ], "match_type_cfgs_stream": [ - 2258, + 2278, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2272, + 2292, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2261 + 2281 ] } ], "matches": [ - 2276, + 2296, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -152222,19 +152692,19 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_aggregate": [ - 2277, + 2297, { "distinct_on": [ - 2298, + 2318, "[matches_select_column!]" ], "limit": [ @@ -152244,44 +152714,44 @@ export default { 38 ], "order_by": [ - 2296, + 2316, "[matches_order_by!]" ], "where": [ - 2285 + 2305 ] } ], "matches_by_pk": [ - 2276, + 2296, { "id": [ - 4442, + 4462, "uuid!" ] } ], "matches_stream": [ - 2276, + 2296, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2306, + 2326, "[matches_stream_cursor_input]!" ], "where": [ - 2285 + 2305 ] } ], "migration_hashes_hashes": [ - 2318, + 2338, { "distinct_on": [ - 2330, + 2350, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152291,19 +152761,19 @@ export default { 38 ], "order_by": [ - 2328, + 2348, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2321 + 2341 ] } ], "migration_hashes_hashes_aggregate": [ - 2319, + 2339, { "distinct_on": [ - 2330, + 2350, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152313,16 +152783,16 @@ export default { 38 ], "order_by": [ - 2328, + 2348, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2321 + 2341 ] } ], "migration_hashes_hashes_by_pk": [ - 2318, + 2338, { "name": [ 78, @@ -152331,26 +152801,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2318, + 2338, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2332, + 2352, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2321 + 2341 ] } ], "my_friends": [ - 2336, + 2356, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -152360,19 +152830,19 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], "my_friends_aggregate": [ - 2337, + 2357, { "distinct_on": [ - 2361, + 2381, "[my_friends_select_column!]" ], "limit": [ @@ -152382,35 +152852,35 @@ export default { 38 ], "order_by": [ - 2359, + 2379, "[my_friends_order_by!]" ], "where": [ - 2348 + 2368 ] } ], "my_friends_stream": [ - 2336, + 2356, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2371, + 2391, "[my_friends_stream_cursor_input]!" ], "where": [ - 2348 + 2368 ] } ], "news_articles": [ - 2382, + 2402, { "distinct_on": [ - 2396, + 2416, "[news_articles_select_column!]" ], "limit": [ @@ -152420,19 +152890,19 @@ export default { 38 ], "order_by": [ - 2394, + 2414, "[news_articles_order_by!]" ], "where": [ - 2386 + 2406 ] } ], "news_articles_aggregate": [ - 2383, + 2403, { "distinct_on": [ - 2396, + 2416, "[news_articles_select_column!]" ], "limit": [ @@ -152442,44 +152912,44 @@ export default { 38 ], "order_by": [ - 2394, + 2414, "[news_articles_order_by!]" ], "where": [ - 2386 + 2406 ] } ], "news_articles_by_pk": [ - 2382, + 2402, { "id": [ - 4442, + 4462, "uuid!" ] } ], "news_articles_stream": [ - 2382, + 2402, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2401, + 2421, "[news_articles_stream_cursor_input]!" ], "where": [ - 2386 + 2406 ] } ], "notifications": [ - 2409, + 2429, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -152489,19 +152959,19 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "notifications_aggregate": [ - 2410, + 2430, { "distinct_on": [ - 2437, + 2457, "[notifications_select_column!]" ], "limit": [ @@ -152511,44 +152981,44 @@ export default { 38 ], "order_by": [ - 2434, + 2454, "[notifications_order_by!]" ], "where": [ - 2421 + 2441 ] } ], "notifications_by_pk": [ - 2409, + 2429, { "id": [ - 4442, + 4462, "uuid!" ] } ], "notifications_stream": [ - 2409, + 2429, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2447, + 2467, "[notifications_stream_cursor_input]!" ], "where": [ - 2421 + 2441 ] } ], "pending_match_import_players": [ - 2462, + 2482, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -152558,19 +153028,19 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "pending_match_import_players_aggregate": [ - 2463, + 2483, { "distinct_on": [ - 2483, + 2503, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -152580,48 +153050,48 @@ export default { 38 ], "order_by": [ - 2481, + 2501, "[pending_match_import_players_order_by!]" ], "where": [ - 2471 + 2491 ] } ], "pending_match_import_players_by_pk": [ - 2462, + 2482, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2462, + 2482, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2491, + 2511, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2471 + 2491 ] } ], "pending_match_imports": [ - 2503, + 2523, { "distinct_on": [ - 2518, + 2538, "[pending_match_imports_select_column!]" ], "limit": [ @@ -152631,19 +153101,19 @@ export default { 38 ], "order_by": [ - 2516, + 2536, "[pending_match_imports_order_by!]" ], "where": [ - 2507 + 2527 ] } ], "pending_match_imports_aggregate": [ - 2504, + 2524, { "distinct_on": [ - 2518, + 2538, "[pending_match_imports_select_column!]" ], "limit": [ @@ -152653,44 +153123,44 @@ export default { 38 ], "order_by": [ - 2516, + 2536, "[pending_match_imports_order_by!]" ], "where": [ - 2507 + 2527 ] } ], "pending_match_imports_by_pk": [ - 2503, + 2523, { "valve_match_id": [ - 2459, + 2479, "numeric!" ] } ], "pending_match_imports_stream": [ - 2503, + 2523, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2523, + 2543, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2507 + 2527 ] } ], "player_aim_stats_demo": [ - 2531, + 2551, { "distinct_on": [ - 2545, + 2565, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -152700,19 +153170,19 @@ export default { 38 ], "order_by": [ - 2543, + 2563, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2535 + 2555 ] } ], "player_aim_stats_demo_aggregate": [ - 2532, + 2552, { "distinct_on": [ - 2545, + 2565, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -152722,48 +153192,48 @@ export default { 38 ], "order_by": [ - 2543, + 2563, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2535 + 2555 ] } ], "player_aim_stats_demo_by_pk": [ - 2531, + 2551, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2531, + 2551, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2550, + 2570, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2535 + 2555 ] } ], "player_aim_weapon_stats": [ - 2558, + 2578, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -152773,19 +153243,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "player_aim_weapon_stats_aggregate": [ - 2559, + 2579, { "distinct_on": [ - 2579, + 2599, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -152795,19 +153265,19 @@ export default { 38 ], "order_by": [ - 2577, + 2597, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2567 + 2587 ] } ], "player_aim_weapon_stats_by_pk": [ - 2558, + 2578, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -152821,26 +153291,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2558, + 2578, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2587, + 2607, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2567 + 2587 ] } ], "player_assists": [ - 2599, + 2619, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -152850,19 +153320,19 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_aggregate": [ - 2600, + 2620, { "distinct_on": [ - 2622, + 2642, "[player_assists_select_column!]" ], "limit": [ @@ -152872,16 +153342,16 @@ export default { 38 ], "order_by": [ - 2620, + 2640, "[player_assists_order_by!]" ], "where": [ - 2610 + 2630 ] } ], "player_assists_by_pk": [ - 2599, + 2619, { "attacked_steam_id": [ 180, @@ -152892,36 +153362,36 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_assists_stream": [ - 2599, + 2619, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2632, + 2652, "[player_assists_stream_cursor_input]!" ], "where": [ - 2610 + 2630 ] } ], "player_career_stats_v": [ - 2644, + 2664, { "distinct_on": [ - 2652, + 2672, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -152931,19 +153401,19 @@ export default { 38 ], "order_by": [ - 2651, + 2671, "[player_career_stats_v_order_by!]" ], "where": [ - 2648 + 2668 ] } ], "player_career_stats_v_aggregate": [ - 2645, + 2665, { "distinct_on": [ - 2652, + 2672, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -152953,35 +153423,35 @@ export default { 38 ], "order_by": [ - 2651, + 2671, "[player_career_stats_v_order_by!]" ], "where": [ - 2648 + 2668 ] } ], "player_career_stats_v_stream": [ - 2644, + 2664, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2656, + 2676, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2648 + 2668 ] } ], "player_damages": [ - 2662, + 2682, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -152991,19 +153461,19 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_aggregate": [ - 2663, + 2683, { "distinct_on": [ - 2683, + 2703, "[player_damages_select_column!]" ], "limit": [ @@ -153013,52 +153483,52 @@ export default { 38 ], "order_by": [ - 2681, + 2701, "[player_damages_order_by!]" ], "where": [ - 2671 + 2691 ] } ], "player_damages_by_pk": [ - 2662, + 2682, { "id": [ - 4442, + 4462, "uuid!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_damages_stream": [ - 2662, + 2682, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2691, + 2711, "[player_damages_stream_cursor_input]!" ], "where": [ - 2671 + 2691 ] } ], "player_elo": [ - 2703, + 2723, { "distinct_on": [ - 2717, + 2737, "[player_elo_select_column!]" ], "limit": [ @@ -153068,19 +153538,19 @@ export default { 38 ], "order_by": [ - 2715, + 2735, "[player_elo_order_by!]" ], "where": [ - 2707 + 2727 ] } ], "player_elo_aggregate": [ - 2704, + 2724, { "distinct_on": [ - 2717, + 2737, "[player_elo_select_column!]" ], "limit": [ @@ -153090,19 +153560,19 @@ export default { 38 ], "order_by": [ - 2715, + 2735, "[player_elo_order_by!]" ], "where": [ - 2707 + 2727 ] } ], "player_elo_by_pk": [ - 2703, + 2723, { "match_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -153116,26 +153586,26 @@ export default { } ], "player_elo_stream": [ - 2703, + 2723, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2722, + 2742, "[player_elo_stream_cursor_input]!" ], "where": [ - 2707 + 2727 ] } ], "player_faceit_rank_history": [ - 2730, + 2750, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153145,19 +153615,19 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], "player_faceit_rank_history_aggregate": [ - 2731, + 2751, { "distinct_on": [ - 2751, + 2771, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153167,44 +153637,44 @@ export default { 38 ], "order_by": [ - 2749, + 2769, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2739 + 2759 ] } ], "player_faceit_rank_history_by_pk": [ - 2730, + 2750, { "id": [ - 4442, + 4462, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2730, + 2750, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2759, + 2779, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2739 + 2759 ] } ], "player_flashes": [ - 2771, + 2791, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -153214,19 +153684,19 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_flashes_aggregate": [ - 2772, + 2792, { "distinct_on": [ - 2794, + 2814, "[player_flashes_select_column!]" ], "limit": [ @@ -153236,16 +153706,16 @@ export default { 38 ], "order_by": [ - 2792, + 2812, "[player_flashes_order_by!]" ], "where": [ - 2782 + 2802 ] } ], "player_flashes_by_pk": [ - 2771, + 2791, { "attacked_steam_id": [ 180, @@ -153256,36 +153726,36 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_flashes_stream": [ - 2771, + 2791, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2804, + 2824, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2782 + 2802 ] } ], "player_kills": [ - 2816, + 2836, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -153295,19 +153765,19 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_aggregate": [ - 2817, + 2837, { "distinct_on": [ - 2880, + 2900, "[player_kills_select_column!]" ], "limit": [ @@ -153317,16 +153787,16 @@ export default { 38 ], "order_by": [ - 2878, + 2898, "[player_kills_order_by!]" ], "where": [ - 2827 + 2847 ] } ], "player_kills_by_pk": [ - 2816, + 2836, { "attacked_steam_id": [ 180, @@ -153337,20 +153807,20 @@ export default { "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2828, + 2848, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153360,19 +153830,19 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], "player_kills_by_weapon_aggregate": [ - 2829, + 2849, { "distinct_on": [ - 2849, + 2869, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153382,16 +153852,16 @@ export default { 38 ], "order_by": [ - 2847, + 2867, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2837 + 2857 ] } ], "player_kills_by_weapon_by_pk": [ - 2828, + 2848, { "player_steam_id": [ 180, @@ -153404,42 +153874,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 2828, + 2848, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2857, + 2877, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2837 + 2857 ] } ], "player_kills_stream": [ - 2816, + 2836, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2890, + 2910, "[player_kills_stream_cursor_input]!" ], "where": [ - 2827 + 2847 ] } ], "player_leaderboard_rank": [ - 2902, + 2922, { "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153449,19 +153919,19 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "player_leaderboard_rank_aggregate": [ - 2903, + 2923, { "distinct_on": [ - 2913, + 2933, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153471,35 +153941,35 @@ export default { 38 ], "order_by": [ - 2912, + 2932, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2906 + 2926 ] } ], "player_leaderboard_rank_stream": [ - 2902, + 2922, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2918, + 2938, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2906 + 2926 ] } ], "player_match_map_stats": [ - 2925, + 2945, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -153509,19 +153979,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "player_match_map_stats_aggregate": [ - 2926, + 2946, { "distinct_on": [ - 2946, + 2966, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -153531,19 +154001,19 @@ export default { 38 ], "order_by": [ - 2944, + 2964, "[player_match_map_stats_order_by!]" ], "where": [ - 2934 + 2954 ] } ], "player_match_map_stats_by_pk": [ - 2925, + 2945, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "steam_id": [ @@ -153553,26 +154023,26 @@ export default { } ], "player_match_map_stats_stream": [ - 2925, + 2945, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2954, + 2974, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2934 + 2954 ] } ], "player_match_performance_v": [ - 2966, + 2986, { "distinct_on": [ - 2974, + 2994, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -153582,19 +154052,19 @@ export default { 38 ], "order_by": [ - 2973, + 2993, "[player_match_performance_v_order_by!]" ], "where": [ - 2970 + 2990 ] } ], "player_match_performance_v_aggregate": [ - 2967, + 2987, { "distinct_on": [ - 2974, + 2994, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -153604,35 +154074,35 @@ export default { 38 ], "order_by": [ - 2973, + 2993, "[player_match_performance_v_order_by!]" ], "where": [ - 2970 + 2990 ] } ], "player_match_performance_v_stream": [ - 2966, + 2986, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2978, + 2998, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2970 + 2990 ] } ], "player_match_stats_v": [ - 2984, + 3004, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -153642,19 +154112,19 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "player_match_stats_v_aggregate": [ - 2985, + 3005, { "distinct_on": [ - 3000, + 3020, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -153664,35 +154134,35 @@ export default { 38 ], "order_by": [ - 2999, + 3019, "[player_match_stats_v_order_by!]" ], "where": [ - 2993 + 3013 ] } ], "player_match_stats_v_stream": [ - 2984, + 3004, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3007, + 3027, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2993 + 3013 ] } ], "player_objectives": [ - 3017, + 3037, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -153702,19 +154172,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_aggregate": [ - 3018, + 3038, { "distinct_on": [ - 3038, + 3058, "[player_objectives_select_column!]" ], "limit": [ @@ -153724,19 +154194,19 @@ export default { 38 ], "order_by": [ - 3036, + 3056, "[player_objectives_order_by!]" ], "where": [ - 3026 + 3046 ] } ], "player_objectives_by_pk": [ - 3017, + 3037, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -153744,32 +154214,32 @@ export default { "bigint!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_objectives_stream": [ - 3017, + 3037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3046, + 3066, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3026 + 3046 ] } ], "player_performance_v": [ - 3058, + 3078, { "distinct_on": [ - 3066, + 3086, "[player_performance_v_select_column!]" ], "limit": [ @@ -153779,19 +154249,19 @@ export default { 38 ], "order_by": [ - 3065, + 3085, "[player_performance_v_order_by!]" ], "where": [ - 3062 + 3082 ] } ], "player_performance_v_aggregate": [ - 3059, + 3079, { "distinct_on": [ - 3066, + 3086, "[player_performance_v_select_column!]" ], "limit": [ @@ -153801,35 +154271,35 @@ export default { 38 ], "order_by": [ - 3065, + 3085, "[player_performance_v_order_by!]" ], "where": [ - 3062 + 3082 ] } ], "player_performance_v_stream": [ - 3058, + 3078, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3070, + 3090, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3062 + 3082 ] } ], "player_premier_rank_history": [ - 3076, + 3096, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -153839,19 +154309,19 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "player_premier_rank_history_aggregate": [ - 3077, + 3097, { "distinct_on": [ - 3097, + 3117, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -153861,44 +154331,44 @@ export default { 38 ], "order_by": [ - 3095, + 3115, "[player_premier_rank_history_order_by!]" ], "where": [ - 3085 + 3105 ] } ], "player_premier_rank_history_by_pk": [ - 3076, + 3096, { "id": [ - 4442, + 4462, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3076, + 3096, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3105, + 3125, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3085 + 3105 ] } ], "player_sanctions": [ - 3117, + 3137, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -153908,19 +154378,19 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "player_sanctions_aggregate": [ - 3118, + 3138, { "distinct_on": [ - 3138, + 3158, "[player_sanctions_select_column!]" ], "limit": [ @@ -153930,48 +154400,48 @@ export default { 38 ], "order_by": [ - 3136, + 3156, "[player_sanctions_order_by!]" ], "where": [ - 3126 + 3146 ] } ], "player_sanctions_by_pk": [ - 3117, + 3137, { "created_at": [ - 4004, + 4024, "timestamptz!" ], "id": [ - 4442, + 4462, "uuid!" ] } ], "player_sanctions_stream": [ - 3117, + 3137, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3146, + 3166, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3126 + 3146 ] } ], "player_season_stats": [ - 3158, + 3178, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -153981,19 +154451,19 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "player_season_stats_aggregate": [ - 3159, + 3179, { "distinct_on": [ - 3189, + 3209, "[player_season_stats_select_column!]" ], "limit": [ @@ -154003,48 +154473,48 @@ export default { 38 ], "order_by": [ - 3187, + 3207, "[player_season_stats_order_by!]" ], "where": [ - 3177 + 3197 ] } ], "player_season_stats_by_pk": [ - 3158, + 3178, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4442, + 4462, "uuid!" ] } ], "player_season_stats_stream": [ - 3158, + 3178, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3205, + 3225, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3177 + 3197 ] } ], "player_stats": [ - 3217, + 3237, { "distinct_on": [ - 3232, + 3252, "[player_stats_select_column!]" ], "limit": [ @@ -154054,19 +154524,19 @@ export default { 38 ], "order_by": [ - 3230, + 3250, "[player_stats_order_by!]" ], "where": [ - 3221 + 3241 ] } ], "player_stats_aggregate": [ - 3218, + 3238, { "distinct_on": [ - 3232, + 3252, "[player_stats_select_column!]" ], "limit": [ @@ -154076,16 +154546,16 @@ export default { 38 ], "order_by": [ - 3230, + 3250, "[player_stats_order_by!]" ], "where": [ - 3221 + 3241 ] } ], "player_stats_by_pk": [ - 3217, + 3237, { "player_steam_id": [ 180, @@ -154094,26 +154564,26 @@ export default { } ], "player_stats_stream": [ - 3217, + 3237, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3237, + 3257, "[player_stats_stream_cursor_input]!" ], "where": [ - 3221 + 3241 ] } ], "player_steam_bot_friend": [ - 3245, + 3265, { "distinct_on": [ - 3264, + 3284, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154123,19 +154593,19 @@ export default { 38 ], "order_by": [ - 3261, + 3281, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3250 + 3270 ] } ], "player_steam_bot_friend_aggregate": [ - 3246, + 3266, { "distinct_on": [ - 3264, + 3284, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154145,16 +154615,16 @@ export default { 38 ], "order_by": [ - 3261, + 3281, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3250 + 3270 ] } ], "player_steam_bot_friend_by_pk": [ - 3245, + 3265, { "steam_id": [ 180, @@ -154163,26 +154633,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3245, + 3265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3269, + 3289, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3250 + 3270 ] } ], "player_steam_match_auth": [ - 3277, + 3297, { "distinct_on": [ - 3291, + 3311, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154192,19 +154662,19 @@ export default { 38 ], "order_by": [ - 3289, + 3309, "[player_steam_match_auth_order_by!]" ], "where": [ - 3281 + 3301 ] } ], "player_steam_match_auth_aggregate": [ - 3278, + 3298, { "distinct_on": [ - 3291, + 3311, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154214,16 +154684,16 @@ export default { 38 ], "order_by": [ - 3289, + 3309, "[player_steam_match_auth_order_by!]" ], "where": [ - 3281 + 3301 ] } ], "player_steam_match_auth_by_pk": [ - 3277, + 3297, { "steam_id": [ 180, @@ -154232,26 +154702,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3277, + 3297, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3296, + 3316, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3281 + 3301 ] } ], "player_unused_utility": [ - 3304, + 3324, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154261,19 +154731,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utility_aggregate": [ - 3305, + 3325, { "distinct_on": [ - 3325, + 3345, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154283,19 +154753,19 @@ export default { 38 ], "order_by": [ - 3323, + 3343, "[player_unused_utility_order_by!]" ], "where": [ - 3313 + 3333 ] } ], "player_unused_utility_by_pk": [ - 3304, + 3324, { "match_map_id": [ - 4442, + 4462, "uuid!" ], "player_steam_id": [ @@ -154305,26 +154775,26 @@ export default { } ], "player_unused_utility_stream": [ - 3304, + 3324, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3333, + 3353, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3313 + 3333 ] } ], "player_utility": [ - 3345, + 3365, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -154334,19 +154804,19 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utility_aggregate": [ - 3346, + 3366, { "distinct_on": [ - 3366, + 3386, "[player_utility_select_column!]" ], "limit": [ @@ -154356,52 +154826,52 @@ export default { 38 ], "order_by": [ - 3364, + 3384, "[player_utility_order_by!]" ], "where": [ - 3354 + 3374 ] } ], "player_utility_by_pk": [ - 3345, + 3365, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4442, + 4462, "uuid!" ], "time": [ - 4004, + 4024, "timestamptz!" ] } ], "player_utility_stream": [ - 3345, + 3365, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3374, + 3394, "[player_utility_stream_cursor_input]!" ], "where": [ - 3354 + 3374 ] } ], "player_weapon_stats_v": [ - 3386, + 3406, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154411,19 +154881,19 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], "player_weapon_stats_v_aggregate": [ - 3387, + 3407, { "distinct_on": [ - 3402, + 3422, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154433,35 +154903,35 @@ export default { 38 ], "order_by": [ - 3401, + 3421, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3395 + 3415 ] } ], "player_weapon_stats_v_stream": [ - 3386, + 3406, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3409, + 3429, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3395 + 3415 ] } ], "players": [ - 3419, + 3439, { "distinct_on": [ - 3434, + 3454, "[players_select_column!]" ], "limit": [ @@ -154471,19 +154941,19 @@ export default { 38 ], "order_by": [ - 3432, + 3452, "[players_order_by!]" ], "where": [ - 3423 + 3443 ] } ], "players_aggregate": [ - 3420, + 3440, { "distinct_on": [ - 3434, + 3454, "[players_select_column!]" ], "limit": [ @@ -154493,16 +154963,16 @@ export default { 38 ], "order_by": [ - 3432, + 3452, "[players_order_by!]" ], "where": [ - 3423 + 3443 ] } ], "players_by_pk": [ - 3419, + 3439, { "steam_id": [ 180, @@ -154511,26 +154981,26 @@ export default { } ], "players_stream": [ - 3419, + 3439, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3439, + 3459, "[players_stream_cursor_input]!" ], "where": [ - 3423 + 3443 ] } ], "plugin_versions": [ - 3447, + 3467, { "distinct_on": [ - 3461, + 3481, "[plugin_versions_select_column!]" ], "limit": [ @@ -154540,19 +155010,19 @@ export default { 38 ], "order_by": [ - 3459, + 3479, "[plugin_versions_order_by!]" ], "where": [ - 3451 + 3471 ] } ], "plugin_versions_aggregate": [ - 3448, + 3468, { "distinct_on": [ - 3461, + 3481, "[plugin_versions_select_column!]" ], "limit": [ @@ -154562,17 +155032,21 @@ export default { 38 ], "order_by": [ - 3459, + 3479, "[plugin_versions_order_by!]" ], "where": [ - 3451 + 3471 ] } ], "plugin_versions_by_pk": [ - 3447, + 3467, { + "runtime": [ + 901, + "e_plugin_runtimes_enum!" + ], "version": [ 78, "String!" @@ -154580,26 +155054,26 @@ export default { } ], "plugin_versions_stream": [ - 3447, + 3467, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3466, + 3486, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3451 + 3471 ] } ], "seasons": [ - 3478, + 3498, { "distinct_on": [ - 3493, + 3513, "[seasons_select_column!]" ], "limit": [ @@ -154609,19 +155083,19 @@ export default { 38 ], "order_by": [ - 3491, + 3511, "[seasons_order_by!]" ], "where": [ - 3482 + 3502 ] } ], "seasons_aggregate": [ - 3479, + 3499, { "distinct_on": [ - 3493, + 3513, "[seasons_select_column!]" ], "limit": [ @@ -154631,44 +155105,44 @@ export default { 38 ], "order_by": [ - 3491, + 3511, "[seasons_order_by!]" ], "where": [ - 3482 + 3502 ] } ], "seasons_by_pk": [ - 3478, + 3498, { "id": [ - 4442, + 4462, "uuid!" ] } ], "seasons_stream": [ - 3478, + 3498, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3498, + 3518, "[seasons_stream_cursor_input]!" ], "where": [ - 3482 + 3502 ] } ], "server_regions": [ - 3506, + 3526, { "distinct_on": [ - 3520, + 3540, "[server_regions_select_column!]" ], "limit": [ @@ -154678,19 +155152,19 @@ export default { 38 ], "order_by": [ - 3518, + 3538, "[server_regions_order_by!]" ], "where": [ - 3510 + 3530 ] } ], "server_regions_aggregate": [ - 3507, + 3527, { "distinct_on": [ - 3520, + 3540, "[server_regions_select_column!]" ], "limit": [ @@ -154700,16 +155174,16 @@ export default { 38 ], "order_by": [ - 3518, + 3538, "[server_regions_order_by!]" ], "where": [ - 3510 + 3530 ] } ], "server_regions_by_pk": [ - 3506, + 3526, { "value": [ 78, @@ -154718,26 +155192,26 @@ export default { } ], "server_regions_stream": [ - 3506, + 3526, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3525, + 3545, "[server_regions_stream_cursor_input]!" ], "where": [ - 3510 + 3530 ] } ], "servers": [ - 3533, + 3553, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -154747,19 +155221,19 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_aggregate": [ - 3534, + 3554, { "distinct_on": [ - 3557, + 3577, "[servers_select_column!]" ], "limit": [ @@ -154769,44 +155243,44 @@ export default { 38 ], "order_by": [ - 3555, + 3575, "[servers_order_by!]" ], "where": [ - 3544 + 3564 ] } ], "servers_by_pk": [ - 3533, + 3553, { "id": [ - 4442, + 4462, "uuid!" ] } ], "servers_stream": [ - 3533, + 3553, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3567, + 3587, "[servers_stream_cursor_input]!" ], "where": [ - 3544 + 3564 ] } ], "settings": [ - 3579, + 3599, { "distinct_on": [ - 3591, + 3611, "[settings_select_column!]" ], "limit": [ @@ -154816,19 +155290,19 @@ export default { 38 ], "order_by": [ - 3589, + 3609, "[settings_order_by!]" ], "where": [ - 3582 + 3602 ] } ], "settings_aggregate": [ - 3580, + 3600, { "distinct_on": [ - 3591, + 3611, "[settings_select_column!]" ], "limit": [ @@ -154838,16 +155312,16 @@ export default { 38 ], "order_by": [ - 3589, + 3609, "[settings_order_by!]" ], "where": [ - 3582 + 3602 ] } ], "settings_by_pk": [ - 3579, + 3599, { "name": [ 78, @@ -154856,26 +155330,26 @@ export default { } ], "settings_stream": [ - 3579, + 3599, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3593, + 3613, "[settings_stream_cursor_input]!" ], "where": [ - 3582 + 3602 ] } ], "steam_account_claims": [ - 3599, + 3619, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -154885,19 +155359,19 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "steam_account_claims_aggregate": [ - 3600, + 3620, { "distinct_on": [ - 3617, + 3637, "[steam_account_claims_select_column!]" ], "limit": [ @@ -154907,44 +155381,44 @@ export default { 38 ], "order_by": [ - 3615, + 3635, "[steam_account_claims_order_by!]" ], "where": [ - 3606 + 3626 ] } ], "steam_account_claims_by_pk": [ - 3599, + 3619, { "id": [ - 4442, + 4462, "uuid!" ] } ], "steam_account_claims_stream": [ - 3599, + 3619, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3619, + 3639, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3606 + 3626 ] } ], "steam_accounts": [ - 3623, + 3643, { "distinct_on": [ - 3638, + 3658, "[steam_accounts_select_column!]" ], "limit": [ @@ -154954,19 +155428,19 @@ export default { 38 ], "order_by": [ - 3636, + 3656, "[steam_accounts_order_by!]" ], "where": [ - 3627 + 3647 ] } ], "steam_accounts_aggregate": [ - 3624, + 3644, { "distinct_on": [ - 3638, + 3658, "[steam_accounts_select_column!]" ], "limit": [ @@ -154976,44 +155450,44 @@ export default { 38 ], "order_by": [ - 3636, + 3656, "[steam_accounts_order_by!]" ], "where": [ - 3627 + 3647 ] } ], "steam_accounts_by_pk": [ - 3623, + 3643, { "id": [ - 4442, + 4462, "uuid!" ] } ], "steam_accounts_stream": [ - 3623, + 3643, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3643, + 3663, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3627 + 3647 ] } ], "system_alerts": [ - 3651, + 3671, { "distinct_on": [ - 3665, + 3685, "[system_alerts_select_column!]" ], "limit": [ @@ -155023,19 +155497,19 @@ export default { 38 ], "order_by": [ - 3663, + 3683, "[system_alerts_order_by!]" ], "where": [ - 3655 + 3675 ] } ], "system_alerts_aggregate": [ - 3652, + 3672, { "distinct_on": [ - 3665, + 3685, "[system_alerts_select_column!]" ], "limit": [ @@ -155045,44 +155519,44 @@ export default { 38 ], "order_by": [ - 3663, + 3683, "[system_alerts_order_by!]" ], "where": [ - 3655 + 3675 ] } ], "system_alerts_by_pk": [ - 3651, + 3671, { "id": [ - 4442, + 4462, "uuid!" ] } ], "system_alerts_stream": [ - 3651, + 3671, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3670, + 3690, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3655 + 3675 ] } ], "team_invites": [ - 3678, + 3698, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -155092,19 +155566,19 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_invites_aggregate": [ - 3679, + 3699, { "distinct_on": [ - 3699, + 3719, "[team_invites_select_column!]" ], "limit": [ @@ -155114,44 +155588,44 @@ export default { 38 ], "order_by": [ - 3697, + 3717, "[team_invites_order_by!]" ], "where": [ - 3687 + 3707 ] } ], "team_invites_by_pk": [ - 3678, + 3698, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_invites_stream": [ - 3678, + 3698, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3707, + 3727, "[team_invites_stream_cursor_input]!" ], "where": [ - 3687 + 3707 ] } ], "team_roster": [ - 3719, + 3739, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -155161,19 +155635,19 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_roster_aggregate": [ - 3720, + 3740, { "distinct_on": [ - 3742, + 3762, "[team_roster_select_column!]" ], "limit": [ @@ -155183,48 +155657,48 @@ export default { 38 ], "order_by": [ - 3740, + 3760, "[team_roster_order_by!]" ], "where": [ - 3730 + 3750 ] } ], "team_roster_by_pk": [ - 3719, + 3739, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4442, + 4462, "uuid!" ] } ], "team_roster_stream": [ - 3719, + 3739, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3752, + 3772, "[team_roster_stream_cursor_input]!" ], "where": [ - 3730 + 3750 ] } ], "team_scrim_alerts": [ - 3764, + 3784, { "distinct_on": [ - 3778, + 3798, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155234,19 +155708,19 @@ export default { 38 ], "order_by": [ - 3776, + 3796, "[team_scrim_alerts_order_by!]" ], "where": [ - 3768 + 3788 ] } ], "team_scrim_alerts_aggregate": [ - 3765, + 3785, { "distinct_on": [ - 3778, + 3798, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155256,44 +155730,44 @@ export default { 38 ], "order_by": [ - 3776, + 3796, "[team_scrim_alerts_order_by!]" ], "where": [ - 3768 + 3788 ] } ], "team_scrim_alerts_by_pk": [ - 3764, + 3784, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3764, + 3784, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3783, + 3803, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3768 + 3788 ] } ], "team_scrim_availability": [ - 3791, + 3811, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155303,19 +155777,19 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "team_scrim_availability_aggregate": [ - 3792, + 3812, { "distinct_on": [ - 3811, + 3831, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155325,44 +155799,44 @@ export default { 38 ], "order_by": [ - 3809, + 3829, "[team_scrim_availability_order_by!]" ], "where": [ - 3800 + 3820 ] } ], "team_scrim_availability_by_pk": [ - 3791, + 3811, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3791, + 3811, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3815, + 3835, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3800 + 3820 ] } ], "team_scrim_request_proposals": [ - 3819, + 3839, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155372,19 +155846,19 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "team_scrim_request_proposals_aggregate": [ - 3820, + 3840, { "distinct_on": [ - 3840, + 3860, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155394,44 +155868,44 @@ export default { 38 ], "order_by": [ - 3838, + 3858, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3828 + 3848 ] } ], "team_scrim_request_proposals_by_pk": [ - 3819, + 3839, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3819, + 3839, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3848, + 3868, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3828 + 3848 ] } ], "team_scrim_requests": [ - 3860, + 3880, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155441,19 +155915,19 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], "team_scrim_requests_aggregate": [ - 3861, + 3881, { "distinct_on": [ - 3884, + 3904, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155463,44 +155937,44 @@ export default { 38 ], "order_by": [ - 3882, + 3902, "[team_scrim_requests_order_by!]" ], "where": [ - 3871 + 3891 ] } ], "team_scrim_requests_by_pk": [ - 3860, + 3880, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3860, + 3880, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3894, + 3914, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3871 + 3891 ] } ], "team_scrim_settings": [ - 3906, + 3926, { "distinct_on": [ - 3921, + 3941, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -155510,19 +155984,19 @@ export default { 38 ], "order_by": [ - 3919, + 3939, "[team_scrim_settings_order_by!]" ], "where": [ - 3910 + 3930 ] } ], "team_scrim_settings_aggregate": [ - 3907, + 3927, { "distinct_on": [ - 3921, + 3941, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -155532,44 +156006,44 @@ export default { 38 ], "order_by": [ - 3919, + 3939, "[team_scrim_settings_order_by!]" ], "where": [ - 3910 + 3930 ] } ], "team_scrim_settings_by_pk": [ - 3906, + 3926, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3906, + 3926, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3926, + 3946, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3910 + 3930 ] } ], "team_suggestions": [ - 3934, + 3954, { "distinct_on": [ - 3948, + 3968, "[team_suggestions_select_column!]" ], "limit": [ @@ -155579,19 +156053,19 @@ export default { 38 ], "order_by": [ - 3946, + 3966, "[team_suggestions_order_by!]" ], "where": [ - 3938 + 3958 ] } ], "team_suggestions_aggregate": [ - 3935, + 3955, { "distinct_on": [ - 3948, + 3968, "[team_suggestions_select_column!]" ], "limit": [ @@ -155601,44 +156075,44 @@ export default { 38 ], "order_by": [ - 3946, + 3966, "[team_suggestions_order_by!]" ], "where": [ - 3938 + 3958 ] } ], "team_suggestions_by_pk": [ - 3934, + 3954, { "id": [ - 4442, + 4462, "uuid!" ] } ], "team_suggestions_stream": [ - 3934, + 3954, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3953, + 3973, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3938 + 3958 ] } ], "teams": [ - 3961, + 3981, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -155648,19 +156122,19 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "teams_aggregate": [ - 3962, + 3982, { "distinct_on": [ - 3983, + 4003, "[teams_select_column!]" ], "limit": [ @@ -155670,44 +156144,44 @@ export default { 38 ], "order_by": [ - 3981, + 4001, "[teams_order_by!]" ], "where": [ - 3970 + 3990 ] } ], "teams_by_pk": [ - 3961, + 3981, { "id": [ - 4442, + 4462, "uuid!" ] } ], "teams_stream": [ - 3961, + 3981, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3991, + 4011, "[teams_stream_cursor_input]!" ], "where": [ - 3970 + 3990 ] } ], "tournament_brackets": [ - 4006, + 4026, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -155717,19 +156191,19 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "tournament_brackets_aggregate": [ - 4007, + 4027, { "distinct_on": [ - 4030, + 4050, "[tournament_brackets_select_column!]" ], "limit": [ @@ -155739,44 +156213,44 @@ export default { 38 ], "order_by": [ - 4028, + 4048, "[tournament_brackets_order_by!]" ], "where": [ - 4017 + 4037 ] } ], "tournament_brackets_by_pk": [ - 4006, + 4026, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_brackets_stream": [ - 4006, + 4026, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4040, + 4060, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4017 + 4037 ] } ], "tournament_organizers": [ - 4052, + 4072, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -155786,19 +156260,19 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_organizers_aggregate": [ - 4053, + 4073, { "distinct_on": [ - 4073, + 4093, "[tournament_organizers_select_column!]" ], "limit": [ @@ -155808,48 +156282,48 @@ export default { 38 ], "order_by": [ - 4071, + 4091, "[tournament_organizers_order_by!]" ], "where": [ - 4061 + 4081 ] } ], "tournament_organizers_by_pk": [ - 4052, + 4072, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_organizers_stream": [ - 4052, + 4072, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4081, + 4101, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4061 + 4081 ] } ], "tournament_stage_windows": [ - 4093, + 4113, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -155859,19 +156333,19 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], "tournament_stage_windows_aggregate": [ - 4094, + 4114, { "distinct_on": [ - 4114, + 4134, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -155881,44 +156355,44 @@ export default { 38 ], "order_by": [ - 4112, + 4132, "[tournament_stage_windows_order_by!]" ], "where": [ - 4102 + 4122 ] } ], "tournament_stage_windows_by_pk": [ - 4093, + 4113, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4093, + 4113, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4122, + 4142, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4102 + 4122 ] } ], "tournament_stages": [ - 4134, + 4154, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -155928,19 +156402,19 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "tournament_stages_aggregate": [ - 4135, + 4155, { "distinct_on": [ - 4163, + 4183, "[tournament_stages_select_column!]" ], "limit": [ @@ -155950,44 +156424,44 @@ export default { 38 ], "order_by": [ - 4160, + 4180, "[tournament_stages_order_by!]" ], "where": [ - 4146 + 4166 ] } ], "tournament_stages_by_pk": [ - 4134, + 4154, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_stages_stream": [ - 4134, + 4154, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4173, + 4193, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4146 + 4166 ] } ], "tournament_team_invites": [ - 4185, + 4205, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -155997,19 +156471,19 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], "tournament_team_invites_aggregate": [ - 4186, + 4206, { "distinct_on": [ - 4206, + 4226, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156019,44 +156493,44 @@ export default { 38 ], "order_by": [ - 4204, + 4224, "[tournament_team_invites_order_by!]" ], "where": [ - 4194 + 4214 ] } ], "tournament_team_invites_by_pk": [ - 4185, + 4205, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4185, + 4205, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4214, + 4234, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4194 + 4214 ] } ], "tournament_team_roster": [ - 4226, + 4246, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156066,19 +156540,19 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_team_roster_aggregate": [ - 4227, + 4247, { "distinct_on": [ - 4247, + 4267, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156088,48 +156562,48 @@ export default { 38 ], "order_by": [ - 4245, + 4265, "[tournament_team_roster_order_by!]" ], "where": [ - 4235 + 4255 ] } ], "tournament_team_roster_by_pk": [ - 4226, + 4246, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4226, + 4246, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4255, + 4275, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4235 + 4255 ] } ], "tournament_teams": [ - 4267, + 4287, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -156139,19 +156613,19 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "tournament_teams_aggregate": [ - 4268, + 4288, { "distinct_on": [ - 4289, + 4309, "[tournament_teams_select_column!]" ], "limit": [ @@ -156161,44 +156635,44 @@ export default { 38 ], "order_by": [ - 4287, + 4307, "[tournament_teams_order_by!]" ], "where": [ - 4276 + 4296 ] } ], "tournament_teams_by_pk": [ - 4267, + 4287, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_teams_stream": [ - 4267, + 4287, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4297, + 4317, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4276 + 4296 ] } ], "tournament_trophies": [ - 4309, + 4329, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156208,19 +156682,19 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophies_aggregate": [ - 4310, + 4330, { "distinct_on": [ - 4332, + 4352, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156230,44 +156704,44 @@ export default { 38 ], "order_by": [ - 4330, + 4350, "[tournament_trophies_order_by!]" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophies_by_pk": [ - 4309, + 4329, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_trophies_stream": [ - 4309, + 4329, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4342, + 4362, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4320 + 4340 ] } ], "tournament_trophy_configs": [ - 4354, + 4374, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156277,19 +156751,19 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], "tournament_trophy_configs_aggregate": [ - 4355, + 4375, { "distinct_on": [ - 4376, + 4396, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156299,44 +156773,44 @@ export default { 38 ], "order_by": [ - 4374, + 4394, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4363 + 4383 ] } ], "tournament_trophy_configs_by_pk": [ - 4354, + 4374, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4354, + 4374, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4384, + 4404, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4363 + 4383 ] } ], "tournaments": [ - 4396, + 4416, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -156346,19 +156820,19 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_aggregate": [ - 4397, + 4417, { "distinct_on": [ - 4420, + 4440, "[tournaments_select_column!]" ], "limit": [ @@ -156368,44 +156842,44 @@ export default { 38 ], "order_by": [ - 4418, + 4438, "[tournaments_order_by!]" ], "where": [ - 4407 + 4427 ] } ], "tournaments_by_pk": [ - 4396, + 4416, { "id": [ - 4442, + 4462, "uuid!" ] } ], "tournaments_stream": [ - 4396, + 4416, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4430, + 4450, "[tournaments_stream_cursor_input]!" ], "where": [ - 4407 + 4427 ] } ], "v_gpu_pool_status": [ - 4445, + 4465, { "distinct_on": [ - 4453, + 4473, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156415,19 +156889,19 @@ export default { 38 ], "order_by": [ - 4452, + 4472, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4449 + 4469 ] } ], "v_gpu_pool_status_aggregate": [ - 4446, + 4466, { "distinct_on": [ - 4453, + 4473, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156437,35 +156911,35 @@ export default { 38 ], "order_by": [ - 4452, + 4472, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4449 + 4469 ] } ], "v_gpu_pool_status_stream": [ - 4445, + 4465, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4457, + 4477, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4449 + 4469 ] } ], "v_league_division_standings": [ - 4463, + 4483, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156475,19 +156949,19 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "v_league_division_standings_aggregate": [ - 4464, + 4484, { "distinct_on": [ - 4479, + 4499, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156497,35 +156971,35 @@ export default { 38 ], "order_by": [ - 4478, + 4498, "[v_league_division_standings_order_by!]" ], "where": [ - 4472 + 4492 ] } ], "v_league_division_standings_stream": [ - 4463, + 4483, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4486, + 4506, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4472 + 4492 ] } ], "v_league_season_player_stats": [ - 4496, + 4516, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -156535,19 +157009,19 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], "v_league_season_player_stats_aggregate": [ - 4497, + 4517, { "distinct_on": [ - 4522, + 4542, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -156557,35 +157031,35 @@ export default { 38 ], "order_by": [ - 4521, + 4541, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4515 + 4535 ] } ], "v_league_season_player_stats_stream": [ - 4496, + 4516, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4537, + 4557, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4515 + 4535 ] } ], "v_match_captains": [ - 4547, + 4567, { "distinct_on": [ - 4559, + 4579, "[v_match_captains_select_column!]" ], "limit": [ @@ -156595,19 +157069,19 @@ export default { 38 ], "order_by": [ - 4558, + 4578, "[v_match_captains_order_by!]" ], "where": [ - 4551 + 4571 ] } ], "v_match_captains_aggregate": [ - 4548, + 4568, { "distinct_on": [ - 4559, + 4579, "[v_match_captains_select_column!]" ], "limit": [ @@ -156617,35 +157091,35 @@ export default { 38 ], "order_by": [ - 4558, + 4578, "[v_match_captains_order_by!]" ], "where": [ - 4551 + 4571 ] } ], "v_match_captains_stream": [ - 4547, + 4567, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4564, + 4584, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4551 + 4571 ] } ], "v_match_clutches": [ - 4571, + 4591, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -156655,19 +157129,19 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], "v_match_clutches_aggregate": [ - 4572, + 4592, { "distinct_on": [ - 4587, + 4607, "[v_match_clutches_select_column!]" ], "limit": [ @@ -156677,35 +157151,35 @@ export default { 38 ], "order_by": [ - 4586, + 4606, "[v_match_clutches_order_by!]" ], "where": [ - 4580 + 4600 ] } ], "v_match_clutches_stream": [ - 4571, + 4591, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4594, + 4614, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4580 + 4600 ] } ], "v_match_kill_pairs": [ - 4604, + 4624, { "distinct_on": [ - 4612, + 4632, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -156715,19 +157189,19 @@ export default { 38 ], "order_by": [ - 4611, + 4631, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4608 + 4628 ] } ], "v_match_kill_pairs_aggregate": [ - 4605, + 4625, { "distinct_on": [ - 4612, + 4632, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -156737,35 +157211,35 @@ export default { 38 ], "order_by": [ - 4611, + 4631, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4608 + 4628 ] } ], "v_match_kill_pairs_stream": [ - 4604, + 4624, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4616, + 4636, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4608 + 4628 ] } ], "v_match_lineup_buy_types": [ - 4622, + 4642, { "distinct_on": [ - 4630, + 4650, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -156775,19 +157249,19 @@ export default { 38 ], "order_by": [ - 4629, + 4649, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4626 + 4646 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4623, + 4643, { "distinct_on": [ - 4630, + 4650, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -156797,35 +157271,35 @@ export default { 38 ], "order_by": [ - 4629, + 4649, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4626 + 4646 ] } ], "v_match_lineup_buy_types_stream": [ - 4622, + 4642, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4634, + 4654, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4626 + 4646 ] } ], "v_match_lineup_map_stats": [ - 4640, + 4660, { "distinct_on": [ - 4648, + 4668, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -156835,19 +157309,19 @@ export default { 38 ], "order_by": [ - 4647, + 4667, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4644 + 4664 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4641, + 4661, { "distinct_on": [ - 4648, + 4668, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -156857,35 +157331,35 @@ export default { 38 ], "order_by": [ - 4647, + 4667, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4644 + 4664 ] } ], "v_match_lineup_map_stats_stream": [ - 4640, + 4660, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4652, + 4672, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 4644 + 4664 ] } ], "v_match_map_backup_rounds": [ - 4658, + 4678, { "distinct_on": [ - 4669, + 4689, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -156895,19 +157369,19 @@ export default { 38 ], "order_by": [ - 4668, + 4688, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4662 + 4682 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4659, + 4679, { "distinct_on": [ - 4669, + 4689, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -156917,35 +157391,35 @@ export default { 38 ], "order_by": [ - 4668, + 4688, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4662 + 4682 ] } ], "v_match_map_backup_rounds_stream": [ - 4658, + 4678, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4674, + 4694, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4662 + 4682 ] } ], "v_match_player_buy_types": [ - 4681, + 4701, { "distinct_on": [ - 4689, + 4709, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -156955,19 +157429,19 @@ export default { 38 ], "order_by": [ - 4688, + 4708, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4685 + 4705 ] } ], "v_match_player_buy_types_aggregate": [ - 4682, + 4702, { "distinct_on": [ - 4689, + 4709, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -156977,35 +157451,35 @@ export default { 38 ], "order_by": [ - 4688, + 4708, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4685 + 4705 ] } ], "v_match_player_buy_types_stream": [ - 4681, + 4701, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4693, + 4713, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4685 + 4705 ] } ], "v_match_player_opening_duels": [ - 4699, + 4719, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157015,19 +157489,19 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "v_match_player_opening_duels_aggregate": [ - 4700, + 4720, { "distinct_on": [ - 4715, + 4735, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157037,35 +157511,35 @@ export default { 38 ], "order_by": [ - 4714, + 4734, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4708 + 4728 ] } ], "v_match_player_opening_duels_stream": [ - 4699, + 4719, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4722, + 4742, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4708 + 4728 ] } ], "v_player_arch_nemesis": [ - 4732, + 4752, { "distinct_on": [ - 4740, + 4760, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157075,19 +157549,19 @@ export default { 38 ], "order_by": [ - 4739, + 4759, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4736 + 4756 ] } ], "v_player_arch_nemesis_aggregate": [ - 4733, + 4753, { "distinct_on": [ - 4740, + 4760, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157097,35 +157571,35 @@ export default { 38 ], "order_by": [ - 4739, + 4759, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4736 + 4756 ] } ], "v_player_arch_nemesis_stream": [ - 4732, + 4752, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4744, + 4764, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4736 + 4756 ] } ], "v_player_damage": [ - 4750, + 4770, { "distinct_on": [ - 4758, + 4778, "[v_player_damage_select_column!]" ], "limit": [ @@ -157135,19 +157609,19 @@ export default { 38 ], "order_by": [ - 4757, + 4777, "[v_player_damage_order_by!]" ], "where": [ - 4754 + 4774 ] } ], "v_player_damage_aggregate": [ - 4751, + 4771, { "distinct_on": [ - 4758, + 4778, "[v_player_damage_select_column!]" ], "limit": [ @@ -157157,35 +157631,35 @@ export default { 38 ], "order_by": [ - 4757, + 4777, "[v_player_damage_order_by!]" ], "where": [ - 4754 + 4774 ] } ], "v_player_damage_stream": [ - 4750, + 4770, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4762, + 4782, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4754 + 4774 ] } ], "v_player_elo": [ - 4768, + 4788, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -157195,19 +157669,19 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "v_player_elo_aggregate": [ - 4769, + 4789, { "distinct_on": [ - 4794, + 4814, "[v_player_elo_select_column!]" ], "limit": [ @@ -157217,35 +157691,35 @@ export default { 38 ], "order_by": [ - 4793, + 4813, "[v_player_elo_order_by!]" ], "where": [ - 4787 + 4807 ] } ], "v_player_elo_stream": [ - 4768, + 4788, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4809, + 4829, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4787 + 4807 ] } ], "v_player_map_losses": [ - 4819, + 4839, { "distinct_on": [ - 4827, + 4847, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157255,19 +157729,19 @@ export default { 38 ], "order_by": [ - 4826, + 4846, "[v_player_map_losses_order_by!]" ], "where": [ - 4823 + 4843 ] } ], "v_player_map_losses_aggregate": [ - 4820, + 4840, { "distinct_on": [ - 4827, + 4847, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157277,35 +157751,35 @@ export default { 38 ], "order_by": [ - 4826, + 4846, "[v_player_map_losses_order_by!]" ], "where": [ - 4823 + 4843 ] } ], "v_player_map_losses_stream": [ - 4819, + 4839, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4831, + 4851, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4823 + 4843 ] } ], "v_player_map_wins": [ - 4837, + 4857, { "distinct_on": [ - 4845, + 4865, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157315,19 +157789,19 @@ export default { 38 ], "order_by": [ - 4844, + 4864, "[v_player_map_wins_order_by!]" ], "where": [ - 4841 + 4861 ] } ], "v_player_map_wins_aggregate": [ - 4838, + 4858, { "distinct_on": [ - 4845, + 4865, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157337,35 +157811,35 @@ export default { 38 ], "order_by": [ - 4844, + 4864, "[v_player_map_wins_order_by!]" ], "where": [ - 4841 + 4861 ] } ], "v_player_map_wins_stream": [ - 4837, + 4857, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4849, + 4869, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4841 + 4861 ] } ], "v_player_match_head_to_head": [ - 4855, + 4875, { "distinct_on": [ - 4863, + 4883, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157375,19 +157849,19 @@ export default { 38 ], "order_by": [ - 4862, + 4882, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4859 + 4879 ] } ], "v_player_match_head_to_head_aggregate": [ - 4856, + 4876, { "distinct_on": [ - 4863, + 4883, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157397,35 +157871,35 @@ export default { 38 ], "order_by": [ - 4862, + 4882, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4859 + 4879 ] } ], "v_player_match_head_to_head_stream": [ - 4855, + 4875, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4867, + 4887, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4859 + 4879 ] } ], "v_player_match_map_hltv": [ - 4873, + 4893, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157435,19 +157909,19 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "v_player_match_map_hltv_aggregate": [ - 4874, + 4894, { "distinct_on": [ - 4891, + 4911, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157457,35 +157931,35 @@ export default { 38 ], "order_by": [ - 4890, + 4910, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4882 + 4902 ] } ], "v_player_match_map_hltv_stream": [ - 4873, + 4893, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4899, + 4919, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4882 + 4902 ] } ], "v_player_match_map_roles": [ - 4910, + 4930, { "distinct_on": [ - 4918, + 4938, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157495,19 +157969,19 @@ export default { 38 ], "order_by": [ - 4917, + 4937, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4914 + 4934 ] } ], "v_player_match_map_roles_aggregate": [ - 4911, + 4931, { "distinct_on": [ - 4918, + 4938, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157517,35 +157991,35 @@ export default { 38 ], "order_by": [ - 4917, + 4937, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4914 + 4934 ] } ], "v_player_match_map_roles_stream": [ - 4910, + 4930, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4922, + 4942, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4914 + 4934 ] } ], "v_player_match_performance": [ - 4928, + 4948, { "distinct_on": [ - 4936, + 4956, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -157555,19 +158029,19 @@ export default { 38 ], "order_by": [ - 4935, + 4955, "[v_player_match_performance_order_by!]" ], "where": [ - 4932 + 4952 ] } ], "v_player_match_performance_aggregate": [ - 4929, + 4949, { "distinct_on": [ - 4936, + 4956, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -157577,35 +158051,35 @@ export default { 38 ], "order_by": [ - 4935, + 4955, "[v_player_match_performance_order_by!]" ], "where": [ - 4932 + 4952 ] } ], "v_player_match_performance_stream": [ - 4928, + 4948, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4940, + 4960, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4932 + 4952 ] } ], "v_player_match_rating": [ - 4946, + 4966, { "distinct_on": [ - 4954, + 4974, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -157615,19 +158089,19 @@ export default { 38 ], "order_by": [ - 4953, + 4973, "[v_player_match_rating_order_by!]" ], "where": [ - 4950 + 4970 ] } ], "v_player_match_rating_aggregate": [ - 4947, + 4967, { "distinct_on": [ - 4954, + 4974, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -157637,35 +158111,35 @@ export default { 38 ], "order_by": [ - 4953, + 4973, "[v_player_match_rating_order_by!]" ], "where": [ - 4950 + 4970 ] } ], "v_player_match_rating_stream": [ - 4946, + 4966, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4958, + 4978, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4950 + 4970 ] } ], "v_player_multi_kills": [ - 4964, + 4984, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -157675,19 +158149,19 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], "v_player_multi_kills_aggregate": [ - 4965, + 4985, { "distinct_on": [ - 4980, + 5000, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -157697,35 +158171,35 @@ export default { 38 ], "order_by": [ - 4979, + 4999, "[v_player_multi_kills_order_by!]" ], "where": [ - 4973 + 4993 ] } ], "v_player_multi_kills_stream": [ - 4964, + 4984, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4987, + 5007, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4973 + 4993 ] } ], "v_player_weapon_damage": [ - 4997, + 5017, { "distinct_on": [ - 5005, + 5025, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -157735,19 +158209,19 @@ export default { 38 ], "order_by": [ - 5004, + 5024, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5001 + 5021 ] } ], "v_player_weapon_damage_aggregate": [ - 4998, + 5018, { "distinct_on": [ - 5005, + 5025, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -157757,35 +158231,35 @@ export default { 38 ], "order_by": [ - 5004, + 5024, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5001 + 5021 ] } ], "v_player_weapon_damage_stream": [ - 4997, + 5017, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5009, + 5029, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5001 + 5021 ] } ], "v_player_weapon_kills": [ - 5015, + 5035, { "distinct_on": [ - 5023, + 5043, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -157795,19 +158269,19 @@ export default { 38 ], "order_by": [ - 5022, + 5042, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5019 + 5039 ] } ], "v_player_weapon_kills_aggregate": [ - 5016, + 5036, { "distinct_on": [ - 5023, + 5043, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -157817,35 +158291,35 @@ export default { 38 ], "order_by": [ - 5022, + 5042, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5019 + 5039 ] } ], "v_player_weapon_kills_stream": [ - 5015, + 5035, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5027, + 5047, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5019 + 5039 ] } ], "v_pool_maps": [ - 5033, + 5053, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -157855,19 +158329,19 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], "v_pool_maps_aggregate": [ - 5034, + 5054, { "distinct_on": [ - 5050, + 5070, "[v_pool_maps_select_column!]" ], "limit": [ @@ -157877,35 +158351,35 @@ export default { 38 ], "order_by": [ - 5049, + 5069, "[v_pool_maps_order_by!]" ], "where": [ - 5042 + 5062 ] } ], "v_pool_maps_stream": [ - 5033, + 5053, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5054, + 5074, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5042 + 5062 ] } ], "v_steam_account_pool_status": [ - 5057, + 5077, { "distinct_on": [ - 5065, + 5085, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -157915,19 +158389,19 @@ export default { 38 ], "order_by": [ - 5064, + 5084, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5061 + 5081 ] } ], "v_steam_account_pool_status_aggregate": [ - 5058, + 5078, { "distinct_on": [ - 5065, + 5085, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -157937,35 +158411,35 @@ export default { 38 ], "order_by": [ - 5064, + 5084, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5061 + 5081 ] } ], "v_steam_account_pool_status_stream": [ - 5057, + 5077, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5069, + 5089, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5061 + 5081 ] } ], "v_team_ranks": [ - 5075, + 5095, { "distinct_on": [ - 5085, + 5105, "[v_team_ranks_select_column!]" ], "limit": [ @@ -157975,19 +158449,19 @@ export default { 38 ], "order_by": [ - 5084, + 5104, "[v_team_ranks_order_by!]" ], "where": [ - 5079 + 5099 ] } ], "v_team_ranks_aggregate": [ - 5076, + 5096, { "distinct_on": [ - 5085, + 5105, "[v_team_ranks_select_column!]" ], "limit": [ @@ -157997,35 +158471,35 @@ export default { 38 ], "order_by": [ - 5084, + 5104, "[v_team_ranks_order_by!]" ], "where": [ - 5079 + 5099 ] } ], "v_team_ranks_stream": [ - 5075, + 5095, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5089, + 5109, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5079 + 5099 ] } ], "v_team_reputation": [ - 5095, + 5115, { "distinct_on": [ - 5105, + 5125, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158035,19 +158509,19 @@ export default { 38 ], "order_by": [ - 5104, + 5124, "[v_team_reputation_order_by!]" ], "where": [ - 5099 + 5119 ] } ], "v_team_reputation_aggregate": [ - 5096, + 5116, { "distinct_on": [ - 5105, + 5125, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158057,35 +158531,35 @@ export default { 38 ], "order_by": [ - 5104, + 5124, "[v_team_reputation_order_by!]" ], "where": [ - 5099 + 5119 ] } ], "v_team_reputation_stream": [ - 5095, + 5115, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5109, + 5129, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5099 + 5119 ] } ], "v_team_stage_results": [ - 5115, + 5135, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158095,19 +158569,19 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "v_team_stage_results_aggregate": [ - 5116, + 5136, { "distinct_on": [ - 5147, + 5167, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158117,48 +158591,48 @@ export default { 38 ], "order_by": [ - 5145, + 5165, "[v_team_stage_results_order_by!]" ], "where": [ - 5134 + 5154 ] } ], "v_team_stage_results_by_pk": [ - 5115, + 5135, { "tournament_stage_id": [ - 4442, + 4462, "uuid!" ], "tournament_team_id": [ - 4442, + 4462, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5115, + 5135, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5163, + 5183, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5134 + 5154 ] } ], "v_team_tournament_results": [ - 5175, + 5195, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158168,19 +158642,19 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "v_team_tournament_results_aggregate": [ - 5176, + 5196, { "distinct_on": [ - 5201, + 5221, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158190,35 +158664,35 @@ export default { 38 ], "order_by": [ - 5200, + 5220, "[v_team_tournament_results_order_by!]" ], "where": [ - 5194 + 5214 ] } ], "v_team_tournament_results_stream": [ - 5175, + 5195, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5216, + 5236, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5194 + 5214 ] } ], "v_tournament_player_stats": [ - 5226, + 5246, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158228,19 +158702,19 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], "v_tournament_player_stats_aggregate": [ - 5227, + 5247, { "distinct_on": [ - 5252, + 5272, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158250,27 +158724,27 @@ export default { 38 ], "order_by": [ - 5251, + 5271, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5245 + 5265 ] } ], "v_tournament_player_stats_stream": [ - 5226, + 5246, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5267, + 5287, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5245 + 5265 ] } ], diff --git a/hasura/enums/plugin-runtimes.sql b/hasura/enums/plugin-runtimes.sql new file mode 100644 index 000000000..9a83d7b08 --- /dev/null +++ b/hasura/enums/plugin-runtimes.sql @@ -0,0 +1,4 @@ +insert into e_plugin_runtimes ("value", "description") values + ('swiftlys2', 'Plugin loads under the SwiftlyS2 framework'), + ('counterstrikesharp', 'Plugin loads under Metamod and CounterStrikeSharp') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/functions/game-server-node/plugin-supported.sql b/hasura/functions/game-server-node/plugin-supported.sql index 67689b28c..5eecc1536 100644 --- a/hasura/functions/game-server-node/plugin-supported.sql +++ b/hasura/functions/game-server-node/plugin-supported.sql @@ -4,6 +4,10 @@ begin return true; end if; - return game_version_supports_plugin(game_server_node.build_id, game_server_node.pin_plugin_version); + return game_version_supports_plugin( + game_server_node.build_id, + game_server_node.pin_plugin_version, + coalesce(game_server_node.pin_plugin_runtime, active_plugin_runtime()) + ); end; $$ language plpgsql stable; \ No newline at end of file diff --git a/hasura/functions/plugin-versions/active-plugin-runtime.sql b/hasura/functions/plugin-versions/active-plugin-runtime.sql new file mode 100644 index 000000000..541bedf66 --- /dev/null +++ b/hasura/functions/plugin-versions/active-plugin-runtime.sql @@ -0,0 +1,15 @@ +create or replace function active_plugin_runtime() returns text as $$ +declare + runtime text; +begin + select value from settings + where name = 'public.game_server_plugin_runtime' + into runtime; + + if runtime is null or not exists (select 1 from e_plugin_runtimes where value = runtime) then + return 'swiftlys2'; + end if; + + return runtime; +end; +$$ language plpgsql stable; diff --git a/hasura/functions/plugin-versions/game-version-supports-plugin.sql b/hasura/functions/plugin-versions/game-version-supports-plugin.sql index b6ad39ecf..8cf787211 100644 --- a/hasura/functions/plugin-versions/game-version-supports-plugin.sql +++ b/hasura/functions/plugin-versions/game-version-supports-plugin.sql @@ -1,19 +1,27 @@ -create or replace function game_version_supports_plugin(game_build_id integer, plugin_version text) returns boolean as $$ +create or replace function game_version_supports_plugin(game_build_id integer, plugin_version text, plugin_runtime text default null) returns boolean as $$ declare plugin_version_record plugin_versions%rowtype; + target_runtime text; begin + target_runtime := coalesce(plugin_runtime, active_plugin_runtime()); + if plugin_version is null then - select * from plugin_versions + select * from plugin_versions where min_game_build_id is not null - order by published_at desc - limit 1 + and plugin_versions.runtime = target_runtime + order by published_at desc + limit 1 into plugin_version_record; else - select * from plugin_versions where version = plugin_version into plugin_version_record; + select * from plugin_versions + where version = plugin_version + and plugin_versions.runtime = target_runtime + into plugin_version_record; if(plugin_version_record.min_game_build_id is null) then - select * from plugin_versions + select * from plugin_versions where min_game_build_id is not null + and plugin_versions.runtime = target_runtime AND published_at <= plugin_version_record.published_at order by published_at desc into plugin_version_record; @@ -27,4 +35,3 @@ begin return game_build_id >= plugin_version_record.min_game_build_id; end; $$ language plpgsql stable; - diff --git a/hasura/metadata/databases/default/tables/public_e_plugin_runtimes.yaml b/hasura/metadata/databases/default/tables/public_e_plugin_runtimes.yaml new file mode 100644 index 000000000..029d440ab --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_plugin_runtimes.yaml @@ -0,0 +1,19 @@ +table: + name: e_plugin_runtimes + schema: public +is_enum: true +select_permissions: + - role: administrator + permission: + columns: + - description + - value + filter: {} + comment: "" + - role: user + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml b/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml index 805f70495..cb5f29900 100644 --- a/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml +++ b/hasura/metadata/databases/default/tables/public_game_server_nodes.yaml @@ -79,6 +79,7 @@ select_permissions: - node_ip - offline_at - pin_build_id + - pin_plugin_runtime - pin_plugin_version - public_ip - region @@ -112,6 +113,7 @@ update_permissions: - gpu_streaming_enabled - label - pin_build_id + - pin_plugin_runtime - pin_plugin_version - region - start_port_range diff --git a/hasura/metadata/databases/default/tables/public_plugin_versions.yaml b/hasura/metadata/databases/default/tables/public_plugin_versions.yaml index 0b37ec24b..9e94a18e9 100644 --- a/hasura/metadata/databases/default/tables/public_plugin_versions.yaml +++ b/hasura/metadata/databases/default/tables/public_plugin_versions.yaml @@ -7,6 +7,7 @@ select_permissions: columns: - min_game_build_id - published_at + - runtime - version filter: {} comment: "" diff --git a/hasura/metadata/databases/default/tables/public_servers.yaml b/hasura/metadata/databases/default/tables/public_servers.yaml index 61c842afa..92693b98f 100644 --- a/hasura/metadata/databases/default/tables/public_servers.yaml +++ b/hasura/metadata/databases/default/tables/public_servers.yaml @@ -82,6 +82,7 @@ select_permissions: - label - max_players - offline_at + - plugin_runtime - plugin_version - port - rcon_status @@ -107,6 +108,7 @@ select_permissions: - id - label - max_players + - plugin_runtime - plugin_version - port - rcon_status @@ -137,6 +139,7 @@ select_permissions: - is_dedicated - label - max_players + - plugin_runtime - plugin_version - port - rcon_status @@ -165,6 +168,7 @@ select_permissions: - is_dedicated - label - max_players + - plugin_runtime - plugin_version - port - rcon_status diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index e773ac4eb..0ff30849c 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -31,6 +31,7 @@ - "!include public_e_notification_types.yaml" - "!include public_e_objective_types.yaml" - "!include public_e_player_roles.yaml" +- "!include public_e_plugin_runtimes.yaml" - "!include public_e_ready_settings.yaml" - "!include public_e_sanction_types.yaml" - "!include public_e_scrim_request_statuses.yaml" diff --git a/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql b/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql new file mode 100644 index 000000000..795df6cb2 --- /dev/null +++ b/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql @@ -0,0 +1,41 @@ +DROP FUNCTION IF EXISTS public.game_version_supports_plugin(integer, text, text); +DROP FUNCTION IF EXISTS public.active_plugin_runtime(); + +ALTER TABLE public.servers + DROP CONSTRAINT IF EXISTS "servers_plugin_runtime_fkey"; + +ALTER TABLE public.servers + DROP COLUMN IF EXISTS "plugin_runtime"; + +ALTER TABLE public.game_server_nodes + DROP CONSTRAINT IF EXISTS "game_server_nodes_pin_plugin_version_fkey"; + +ALTER TABLE public.game_server_nodes + DROP CONSTRAINT IF EXISTS "game_server_nodes_pin_plugin_version_check"; + +ALTER TABLE public.game_server_nodes + DROP COLUMN IF EXISTS "pin_plugin_runtime"; + +ALTER TABLE public.plugin_versions + DROP CONSTRAINT IF EXISTS "plugin_versions_runtime_fkey"; + +ALTER TABLE public.plugin_versions + DROP CONSTRAINT IF EXISTS "plugin_versions_pkey"; + +-- Collapsing back to a single lineage: keep only the CounterStrikeSharp rows, +-- which is what the pre-migration release feed produced. +DELETE FROM public.plugin_versions WHERE "runtime" <> 'counterstrikesharp'; + +ALTER TABLE public.plugin_versions + DROP COLUMN IF EXISTS "runtime"; + +ALTER TABLE public.plugin_versions + ADD CONSTRAINT "plugin_versions_pkey" PRIMARY KEY ("version"); + +ALTER TABLE public.game_server_nodes + ADD CONSTRAINT "game_server_nodes_pin_plugin_version_fkey" + FOREIGN KEY ("pin_plugin_version") + REFERENCES public.plugin_versions ("version") + ON UPDATE CASCADE ON DELETE SET NULL; + +DROP TABLE IF EXISTS public.e_plugin_runtimes; diff --git a/hasura/migrations/default/1870000000000_plugin_runtimes/up.sql b/hasura/migrations/default/1870000000000_plugin_runtimes/up.sql new file mode 100644 index 000000000..9d939f90b --- /dev/null +++ b/hasura/migrations/default/1870000000000_plugin_runtimes/up.sql @@ -0,0 +1,66 @@ +CREATE TABLE IF NOT EXISTS public.e_plugin_runtimes ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO e_plugin_runtimes ("value", "description") VALUES + ('swiftlys2', 'Plugin loads under the SwiftlyS2 framework'), + ('counterstrikesharp', 'Plugin loads under Metamod and CounterStrikeSharp') +ON CONFLICT(value) DO UPDATE SET "description" = EXCLUDED."description"; + +-- Every row already in plugin_versions was ingested from the CounterStrikeSharp +-- plugin repo, which was the only release feed before this migration. +ALTER TABLE public.plugin_versions + ADD COLUMN IF NOT EXISTS "runtime" text NOT NULL DEFAULT 'counterstrikesharp'; + +ALTER TABLE public.plugin_versions + ALTER COLUMN "runtime" DROP DEFAULT; + +ALTER TABLE public.game_server_nodes + DROP CONSTRAINT IF EXISTS "game_server_nodes_pin_plugin_version_fkey"; + +-- Both plugin repos mint tags from their own counter, so v0.0.42 exists in each. +-- The version alone can no longer identify a release. +ALTER TABLE public.plugin_versions + DROP CONSTRAINT IF EXISTS "plugin_versions_pkey"; + +ALTER TABLE public.plugin_versions + ADD CONSTRAINT "plugin_versions_pkey" PRIMARY KEY ("runtime", "version"); + +ALTER TABLE public.plugin_versions + ADD CONSTRAINT "plugin_versions_runtime_fkey" + FOREIGN KEY ("runtime") + REFERENCES public.e_plugin_runtimes ("value") + ON UPDATE CASCADE ON DELETE RESTRICT; + +ALTER TABLE public.game_server_nodes + ADD COLUMN IF NOT EXISTS "pin_plugin_runtime" text NULL; + +UPDATE public.game_server_nodes + SET "pin_plugin_runtime" = 'counterstrikesharp' + WHERE "pin_plugin_version" IS NOT NULL + AND "pin_plugin_runtime" IS NULL; + +ALTER TABLE public.game_server_nodes + ADD CONSTRAINT "game_server_nodes_pin_plugin_version_check" + CHECK (("pin_plugin_runtime" IS NULL) = ("pin_plugin_version" IS NULL)); + +ALTER TABLE public.game_server_nodes + ADD CONSTRAINT "game_server_nodes_pin_plugin_version_fkey" + FOREIGN KEY ("pin_plugin_runtime", "pin_plugin_version") + REFERENCES public.plugin_versions ("runtime", "version") + ON UPDATE CASCADE ON DELETE SET NULL; + +-- game_version_supports_plugin gains a runtime argument. Adding a parameter makes +-- `create or replace` mint an overload rather than replace, so the old signature +-- has to go before hasura/functions is re-applied on boot. +DROP FUNCTION IF EXISTS public.game_version_supports_plugin(integer, text); + +ALTER TABLE public.servers + ADD COLUMN IF NOT EXISTS "plugin_runtime" text NULL; + +ALTER TABLE public.servers + ADD CONSTRAINT "servers_plugin_runtime_fkey" + FOREIGN KEY ("plugin_runtime") + REFERENCES public.e_plugin_runtimes ("value") + ON UPDATE CASCADE ON DELETE SET NULL; diff --git a/src/configs/game-servers.ts b/src/configs/game-servers.ts index c6309eda0..c46eab29e 100644 --- a/src/configs/game-servers.ts +++ b/src/configs/game-servers.ts @@ -4,8 +4,13 @@ export default (): { gameServers: GameServersConfig; } => ({ gameServers: { - serverImage: - process.env.SERVER_IMAGE || "ghcr.io/5stackgg/game-server:latest", + // The runtime is picked in application settings. SERVER_IMAGE remains an + // escape hatch for custom or mirrored images and takes precedence over it. + serverImageOverride: process.env.SERVER_IMAGE || null, + pluginRuntimeImages: { + swiftlys2: "ghcr.io/5stackgg/swiftly-game-server", + counterstrikesharp: "ghcr.io/5stackgg/game-server", + }, gameStreamerImage: process.env.GAME_STREAMER_IMAGE || "ghcr.io/5stackgg/game-streamer:latest", diff --git a/src/configs/types/GameServersConfig.ts b/src/configs/types/GameServersConfig.ts index 4b7ec4561..46b6bfd28 100644 --- a/src/configs/types/GameServersConfig.ts +++ b/src/configs/types/GameServersConfig.ts @@ -1,5 +1,16 @@ +export const PLUGIN_RUNTIMES = ["swiftlys2", "counterstrikesharp"] as const; + +export type PluginRuntime = (typeof PLUGIN_RUNTIMES)[number]; + +export const DEFAULT_PLUGIN_RUNTIME: PluginRuntime = "swiftlys2"; + +export const isPluginRuntime = ( + value?: string | null, +): value is PluginRuntime => PLUGIN_RUNTIMES.includes(value as PluginRuntime); + export type GameServersConfig = { namespace: string; - serverImage: string; + serverImageOverride: string | null; + pluginRuntimeImages: Record; gameStreamerImage: string; }; diff --git a/src/dedicated-servers/dedicated-servers.module.ts b/src/dedicated-servers/dedicated-servers.module.ts index 3fca64af5..56831bc92 100644 --- a/src/dedicated-servers/dedicated-servers.module.ts +++ b/src/dedicated-servers/dedicated-servers.module.ts @@ -14,6 +14,7 @@ import { getQueuesProcessors } from "src/utilities/QueueProcessors"; import { RconModule } from "src/rcon/rcon.module"; import { RedisModule } from "src/redis/redis.module"; import { SystemModule } from "src/system/system.module"; +import { PluginRuntimeModule } from "src/plugin-runtime/plugin-runtime.module"; @Module({ imports: [ @@ -29,6 +30,7 @@ import { SystemModule } from "src/system/system.module"; RconModule, RedisModule, SystemModule, + PluginRuntimeModule, ], providers: [ DedicatedServersService, diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 32f23f392..7fb304d1a 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -10,6 +10,7 @@ import { RconService } from "src/rcon/rcon.service"; import { RedisManagerService } from "src/redis/redis-manager/redis-manager.service"; import { Redis } from "ioredis"; import { SystemService } from "src/system/system.service"; +import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; @Injectable() export class DedicatedServersService { @@ -30,6 +31,7 @@ export class DedicatedServersService { private readonly RconService: RconService, private readonly redisManager: RedisManagerService, private readonly systemService: SystemService, + private readonly pluginRuntimeService: PluginRuntimeService, ) { this.redis = this.redisManager.getConnection(); @@ -66,6 +68,7 @@ export class DedicatedServersService { game_server_node: { id: true, pin_plugin_version: true, + pin_plugin_runtime: true, supports_cpu_pinning: true, }, server_region: { @@ -126,16 +129,29 @@ export class DedicatedServersService { ? `serverfiles-csgo-${sanitizedGameServerNodeId}` : `serverfiles-${sanitizedGameServerNodeId}`; - let pluginImage = this.gameServerConfig.serverImage; - - const pinPluginVersion = server.game_server_node?.pin_plugin_version; - - if (pinPluginVersion) { - pluginImage = this.gameServerConfig.serverImage.replace( - /:.+$/, - `:v${pinPluginVersion.toString()}`, + const pluginImage = + await this.pluginRuntimeService.resolveGameServerPluginImage( + server.game_server_node, ); - } + + // Seeded here so out-of-date checks know the framework even before the + // plugin's first ping; the ping overwrites it with what actually loaded. + await this.hasura.mutation({ + update_servers_by_pk: { + __args: { + pk_columns: { + id: serverId, + }, + _set: { + plugin_runtime: + await this.pluginRuntimeService.resolvePluginRuntime( + server.game_server_node, + ), + }, + }, + __typename: true, + }, + }); const dedicatedServerDeploymentName = this.getDedicatedServerDeploymentName(serverId); diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index 732db7475..aa5c9b321 100644 --- a/src/game-server-node/game-server-node.controller.ts +++ b/src/game-server-node/game-server-node.controller.ts @@ -11,6 +11,10 @@ import { BakeShaders } from "./jobs/BakeShaders"; import { ValidateGamedata } from "./jobs/ValidateGamedata"; import { ConfigService } from "@nestjs/config"; import { AppConfig } from "../configs/types/AppConfig"; +import { + isPluginRuntime, + PluginRuntime, +} from "../configs/types/GameServersConfig"; import { Request, Response } from "express"; import { LoggingService } from "src/k8s/logging/logging.service"; import { RconService } from "src/rcon/rcon.service"; @@ -801,6 +805,10 @@ UNIT pluginVersion: string; }; + const { pluginRuntime: reportedRuntime } = request.query as { + pluginRuntime: string; + }; + if (steamRelay && !steamID) { return; } @@ -809,12 +817,19 @@ UNIT pluginVersion = "dev"; } + // Plugins older than the runtime setting don't send this; the value seeded + // when the deployment was created stands in until they're recycled. + const pluginRuntime: PluginRuntime | null = isPluginRuntime(reportedRuntime) + ? reportedRuntime + : null; + const { servers_by_pk: server } = await this.hasura.query({ servers_by_pk: { __args: { id: serverId, }, plugin_version: true, + plugin_runtime: true, connected: true, enabled: true, steam_relay: true, @@ -859,7 +874,11 @@ UNIT return; } - if (pluginVersion && server.plugin_version !== pluginVersion) { + if ( + pluginVersion && + (server.plugin_version !== pluginVersion || + (pluginRuntime && server.plugin_runtime !== pluginRuntime)) + ) { await this.hasura.mutation({ update_servers_by_pk: { __args: { @@ -868,6 +887,7 @@ UNIT }, _set: { plugin_version: pluginVersion, + ...(pluginRuntime ? { plugin_runtime: pluginRuntime } : {}), }, }, __typename: true, @@ -892,6 +912,7 @@ UNIT if ( !server.connected || server.plugin_version !== pluginVersion || + (pluginRuntime && server.plugin_runtime !== pluginRuntime) || (server.steam_relay && !steamRelay) || server.steam_relay !== steamID ) { @@ -905,6 +926,7 @@ UNIT connected: true, steam_relay: steamRelay ? steamID : null, plugin_version: pluginVersion, + ...(pluginRuntime ? { plugin_runtime: pluginRuntime } : {}), offline_at: null, }, }, diff --git a/src/game-server-node/game-server-node.module.ts b/src/game-server-node/game-server-node.module.ts index 8ff43bc33..1aa6332b8 100644 --- a/src/game-server-node/game-server-node.module.ts +++ b/src/game-server-node/game-server-node.module.ts @@ -29,6 +29,7 @@ import { HasuraService } from "src/hasura/hasura.service"; import { GetPluginVersions } from "./jobs/GetPluginVersions"; import { K8sModule } from "src/k8s/k8s.module"; import { GameStreamerModule } from "../matches/game-streamer/game-streamer.module"; +import { PluginRuntimeModule } from "src/plugin-runtime/plugin-runtime.module"; import { BakeShaders } from "./jobs/BakeShaders"; import { ValidateGamedata } from "./jobs/ValidateGamedata"; @@ -55,6 +56,7 @@ import { ValidateGamedata } from "./jobs/ValidateGamedata"; RconModule, K8sModule, GameStreamerModule, + PluginRuntimeModule, BullModule.registerQueue( { name: GameServerQueues.GameUpdate, @@ -162,22 +164,12 @@ export class GameServerNodeModule implements OnApplicationBootstrap { }, }); - const { game_server_nodes } = await this.hasura.query({ - game_server_nodes: { - __args: { - where: { - status: { - _eq: "Online", - }, - }, - }, - id: true, - }, - }); - - for (const node of game_server_nodes) { - void this.gameServerNodeService.moitorUpdateStatus(node.id); - } + // re-attach monitors to running update jobs (e.g. after an API restart) + // and clear stale statuses; the interval keeps doing so as a safety net + void this.gameServerNodeService.reconcileUpdateStatuses(); + setInterval(() => { + void this.gameServerNodeService.reconcileUpdateStatuses(); + }, 60 * 1000); } configure(consumer: MiddlewareConsumer) { diff --git a/src/game-server-node/game-server-node.service.ts b/src/game-server-node/game-server-node.service.ts index 6fee7deeb..21f8abea0 100644 --- a/src/game-server-node/game-server-node.service.ts +++ b/src/game-server-node/game-server-node.service.ts @@ -21,21 +21,27 @@ import { NodeDisk } from "./interfaces/NodeDisk"; import { InjectQueue } from "@nestjs/bullmq"; import { Queue } from "bullmq"; import { GameServerQueues } from "./enums/GameServerQueues"; +import { NotificationsService } from "src/notifications/notifications.service"; +import { PluginRuntime } from "src/configs/types/GameServersConfig"; + +export type GamedataValidationRuntime = PluginRuntime; + +export type GamedataValidationEntry = { + set: string; + runtimes?: Array; + signature: string; + kind?: "signature" | "vtable" | "patch"; + count: number | null; + skipped?: boolean; + reason?: string; +}; export type GamedataValidationResult = { build_id?: number | null; status: "pass" | "fail" | "error"; - broken: Array<{ - set: string; - signature: string; - kind?: "signature" | "vtable"; - count: number | null; - }>; - warnings?: Array<{ - set: string; - signature: string; - count: number; - }>; + broken: Array; + warnings?: Array; + skipped?: Array; results?: Array>; error?: string; }; @@ -51,6 +57,9 @@ export class GameServerNodeService { private coreApi: CoreV1Api; private batchApi: BatchV1Api; + // nodes (`${nodeId}:${game}`) with an active update-status monitor loop + private activeUpdateMonitors = new Set(); + // keep 1.5 hours of stats; with a ping every 30 seconds, that's 3,600 / 30 = 120 per hour, so 1.5 * 120 = 180 entries. private maxOfflineStatsHistory = 60 * 90; private maxStatsHistory: number = 180 - 1; @@ -61,6 +70,7 @@ export class GameServerNodeService { protected readonly hasura: HasuraService, redisManager: RedisManagerService, protected readonly loggingService: LoggingService, + protected readonly notifications: NotificationsService, @InjectQueue(GameServerQueues.ValidateGamedata) private readonly validateGamedataQueue: Queue, ) { @@ -448,23 +458,8 @@ export class GameServerNodeService { const pod = await this.loggingService.getJobPod(jobName); if (pod) { - if (game_server_nodes_by_pk.update_status === null) { - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: "Initializing", - }, - }, - update_status: true, - }, - }); - } - - await this.moitorUpdateStatus(gameServerNodeId, 0, game); + // an update job is already running: just make sure it's monitored + void this.monitorUpdateStatus(gameServerNodeId, game); return; } @@ -606,23 +601,9 @@ export class GameServerNodeService { }, }); - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: "Initializing", - }, - }, - update_status: true, - }, - }); + await this.setUpdateStatus(gameServerNodeId, "Initializing"); - setTimeout(() => { - void this.moitorUpdateStatus(gameServerNodeId, 3, game); - }, 5000); + void this.monitorUpdateStatus(gameServerNodeId, game); } catch (error) { this.logger.error( `Error creating job for ${gameServerNodeId}`, @@ -665,144 +646,274 @@ export class GameServerNodeService { ); } - public async moitorUpdateStatus( + /** + * Supervises the update job for a node: waits for the pod, streams its logs + * to derive a human-readable update_status, and re-attaches whenever the log + * stream drops. The terminal decision (clear status / mark failed) is based + * on the Job state, never on the log stream ending. + */ + public async monitorUpdateStatus( gameServerNodeId: string, - attempts = 0, game = "cs2", ): Promise { - try { - const pod = await this.loggingService.getJobPod( - GameServerNodeService.GET_UPDATE_JOB_NAME(gameServerNodeId, game), - ); + const monitorKey = `${gameServerNodeId}:${game}`; + if (this.activeUpdateMonitors.has(monitorKey)) { + return; + } + this.activeUpdateMonitors.add(monitorKey); - if (!pod) { - this.logger.warn(`[${gameServerNodeId}] unable to find update job pod`); - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: null, - }, - }, - update_status: true, - }, - }); + const jobName = GameServerNodeService.GET_UPDATE_JOB_NAME( + gameServerNodeId, + game, + ); + let lastWrittenStatus: string | null | undefined; + const writeStatus = async (status: string | null) => { + if (status === lastWrittenStatus) { return; } + lastWrittenStatus = status; + await this.setUpdateStatus(gameServerNodeId, status); + }; - const kc = new KubeConfig(); - kc.loadFromDefault(); + try { + while (true) { + const job = await this.loggingService.getJob(jobName); + const pod = await this.loggingService.getJobPod(jobName); - let currentType: string; - let currentPercentage = 0; + if (!job && !pod) { + await writeStatus(null); + return; + } - const { game_server_nodes_by_pk } = await this.hasura.query({ - game_server_nodes_by_pk: { - __args: { - id: gameServerNodeId, - }, - update_status: true, - }, - }); + if (job?.status?.succeeded) { + await writeStatus(null); + return; + } - let _currentStatus = game_server_nodes_by_pk?.update_status; + if (job?.status?.failed && !job?.status?.active) { + this.logger.warn(`[${gameServerNodeId}] ${game} update job failed`); + await writeStatus(null); + void this.notifications.send("GameUpdate", { + message: `The ${game === "csgo" ? "CSGO" : "CS2"} update failed on node ${gameServerNodeId}. Check the update logs for details.`, + title: "Game Update Failed", + role: "administrator", + }); + return; + } - if (_currentStatus) { - const match = _currentStatus.match(/([^0-9]+) ([0-9.]+)/); - if (match) { - currentType = match[1].trim(); - currentPercentage = parseFloat(match[2]); + if (pod?.status?.phase !== "Running") { + await writeStatus("Initializing"); + await GameServerNodeService.sleep(5000); + continue; } + + await this.streamUpdateProgress(pod, writeStatus); + + // the log stream dropped; loop to re-check the job and re-attach + await GameServerNodeService.sleep(2500); } + } catch (error) { + // transient k8s error: leave update_status as-is, the periodic + // reconciler will re-attach or clean up + this.logger.warn( + `[${gameServerNodeId}] unable to monitor update status`, + error, + ); + } finally { + this.activeUpdateMonitors.delete(monitorKey); + } + } - const stream = new PassThrough(); - void this.loggingService.getLogsForPod(pod, stream).catch(() => { - stream.destroy(); - }); + private async streamUpdateProgress( + pod: V1Pod, + writeStatus: (status: string | null) => Promise, + ): Promise { + let currentStep = "Updating"; - stream.on("data", async (data) => { - const { log } = JSON.parse(data.toString()); + const handleLogLine = (log: string) => { + const line = log.trim(); + if (!line) { + return; + } - if (!log) { - return; - } + // unpinned: steamcmd app_update "Update state (0x61) downloading, progress: 12.34 (...)" + const steamcmd = line.match( + /Update state \(0x[0-9a-f]+\) ([^,]+), progress: ([0-9.]+)/, + ); + if (steamcmd) { + const type = steamcmd[1].trim(); + const percentage = Math.round(parseFloat(steamcmd[2])); + void writeStatus(`${type} ${percentage}%`); + return; + } - const typeMatch = log.match(/Update state \(0x[0-9a-f]+\) ([^,]+)/); - const type = typeMatch ? typeMatch[1] : null; - let percentage = log.match(/progress: (\d+\.\d+)/)?.[1]; + // pinned: "---Downloading Depot 2347770 (2/4) manifest ...---" + const downloadHeader = line.match( + /^---Downloading Depot \d+ \((\d+)\/(\d+)\)/, + ); + if (downloadHeader) { + currentStep = `Downloading depot ${downloadHeader[1]}/${downloadHeader[2]}`; + void writeStatus(currentStep); + return; + } - if (!percentage) { - return; - } + // pinned: "---Syncing Depot 2347770 (3/4, 5.2G) to ServerFiles---" + const syncHeader = line.match(/^---Syncing Depot \d+ \((\d+)\/(\d+)/); + if (syncHeader) { + currentStep = `Installing depot ${syncHeader[1]}/${syncHeader[2]}`; + void writeStatus(currentStep); + return; + } - percentage = Math.round(parseFloat(percentage) * 100) / 100; + // pinned: "[depot 2347770] 1200 MB / 5230 MB (24%) downloaded (137 files)..." + const depotProgress = line.match( + /^\[depot \d+\] .*?\((\d+)%\) downloaded/, + ); + if (depotProgress) { + void writeStatus(`${currentStep} ${depotProgress[1]}%`); + return; + } - if (type === currentType && percentage < currentPercentage + 5) { - return; + // pinned, total not known yet: "[depot 2347770] 1200 MB downloaded so far (137 files)..." + const depotProgressNoTotal = line.match( + /^\[depot \d+\] (\d+) MB downloaded so far/, + ); + if (depotProgressNoTotal) { + void writeStatus(`${currentStep} (${depotProgressNoTotal[1]} MB)`); + return; + } + + // pinned: "[depot 2347770 sync] 45% (262,144,000, 118.2MB/s)" + const syncProgress = line.match(/^\[depot \d+ sync\] (\d+)%/); + if (syncProgress) { + void writeStatus(`${currentStep} ${syncProgress[1]}%`); + return; + } + + if (line.startsWith("---Done Updating Server To Version")) { + void writeStatus("Finishing"); + } + }; + + const stream = new PassThrough(); + + await new Promise((resolve) => { + let settled = false; + const settle = () => { + if (!settled) { + settled = true; + resolve(); } + }; - currentType = type; - currentPercentage = percentage; + stream.on("data", (data: Buffer) => { + // a chunk may contain several concatenated JSON objects + for (const piece of data.toString().split(/(?<=})\s*(?={")/)) { + let log: string | undefined; + try { + ({ log } = JSON.parse(piece)); + } catch { + continue; + } + if (log) { + handleLogLine(log); + } + } + }); - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: `${type} ${percentage}%`, - }, - }, - update_status: true, - }, - }); + stream.on("end", settle); + stream.on("close", settle); + stream.on("error", settle); + + void this.loggingService.getLogsForPod(pod, stream).catch(() => { + if (!stream.destroyed) { + stream.destroy(); + } + settle(); }); + }); + } - stream.on("end", async () => { - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: null, - }, + /** + * Periodic safety net: attaches a monitor to any update job that is running + * without one (e.g. after an API restart), and clears stale update_status + * values whose job no longer exists. + */ + public async reconcileUpdateStatuses(): Promise { + const { game_server_nodes } = await this.hasura.query({ + game_server_nodes: { + __args: { + where: { + enabled: { + _eq: true, }, - update_status: true, }, - }); - }); - } catch (error) { - if (process.env.DEV) { - this.logger.warn("unable to monitor update status", error); - } - if (attempts > 0) { - setTimeout(() => { - void this.moitorUpdateStatus(gameServerNodeId, attempts - 1, game); - }, 5000); - return; + }, + id: true, + update_status: true, + }, + }); + + for (const node of game_server_nodes) { + try { + let hasUpdateJob = false; + + for (const game of ["cs2", "csgo"]) { + const jobName = GameServerNodeService.GET_UPDATE_JOB_NAME( + node.id, + game, + ); + const job = await this.loggingService.getJob(jobName); + const pod = await this.loggingService.getJobPod(jobName); + + if (job || pod) { + hasUpdateJob = true; + void this.monitorUpdateStatus(node.id, game); + } + } + + if ( + !hasUpdateJob && + node.update_status !== null && + !this.activeUpdateMonitors.has(`${node.id}:cs2`) && + !this.activeUpdateMonitors.has(`${node.id}:csgo`) + ) { + this.logger.warn( + `[${node.id}] clearing stale update status (${node.update_status})`, + ); + await this.setUpdateStatus(node.id, null); + } + } catch (error) { + this.logger.warn( + `[${node.id}] unable to reconcile update status`, + error, + ); } + } + } - await this.hasura.mutation({ - update_game_server_nodes_by_pk: { - __args: { - pk_columns: { - id: gameServerNodeId, - }, - _set: { - update_status: null, - }, + private async setUpdateStatus( + gameServerNodeId: string, + status: string | null, + ): Promise { + await this.hasura.mutation({ + update_game_server_nodes_by_pk: { + __args: { + pk_columns: { + id: gameServerNodeId, + }, + _set: { + update_status: status, }, - update_status: true, }, - }); - } + update_status: true, + }, + }); + } + + private static sleep(ms: number): Promise { + return new Promise((resolve) => setTimeout(resolve, ms)); } public static GET_VALIDATE_GAMEDATA_JOB_NAME( diff --git a/src/game-server-node/jobs/CheckServerPluginVersions.ts b/src/game-server-node/jobs/CheckServerPluginVersions.ts index daa1c3769..6482877b5 100644 --- a/src/game-server-node/jobs/CheckServerPluginVersions.ts +++ b/src/game-server-node/jobs/CheckServerPluginVersions.ts @@ -4,12 +4,14 @@ import { HasuraService } from "../../hasura/hasura.service"; import { UseQueue } from "../../utilities/QueueProcessors"; import { NotificationsService } from "../../notifications/notifications.service"; import { DISCORD_COLORS } from "../../notifications/utilities/constants"; +import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; @UseQueue("GameServerNode", GameServerQueues.PluginVersion) export class CheckServerPluginVersions extends WorkerHost { constructor( protected readonly hasura: HasuraService, protected readonly notifications: NotificationsService, + protected readonly pluginRuntimeService: PluginRuntimeService, ) { super(); } @@ -40,10 +42,17 @@ export class CheckServerPluginVersions extends WorkerHost { return; } + const runtime = await this.pluginRuntimeService.getPluginRuntime(); + const { plugin_versions } = await this.hasura.query({ plugin_versions: { __args: { limit: 1, + where: { + runtime: { + _eq: runtime, + }, + }, order_by: [ { published_at: "desc", @@ -73,6 +82,22 @@ export class CheckServerPluginVersions extends WorkerHost { connected: { _eq: true, }, + // A server known to be on the other framework is waiting to be + // recycled onto the selected runtime, not running an out of date + // plugin. A server that has never reported one is assumed to be on + // the selected runtime so it still gets flagged. + _or: [ + { + plugin_runtime: { + _eq: runtime, + }, + }, + { + plugin_runtime: { + _is_null: true, + }, + }, + ], _and: [ { plugin_version: { diff --git a/src/game-server-node/jobs/GetPluginVersions.ts b/src/game-server-node/jobs/GetPluginVersions.ts index d901c3198..0c82f4463 100644 --- a/src/game-server-node/jobs/GetPluginVersions.ts +++ b/src/game-server-node/jobs/GetPluginVersions.ts @@ -3,9 +3,22 @@ import { UseQueue } from "../../utilities/QueueProcessors"; import { GameServerQueues } from "../enums/GameServerQueues"; import { Logger } from "@nestjs/common"; import { HasuraService } from "src/hasura/hasura.service"; +import { PluginRuntime } from "src/configs/types/GameServersConfig"; + +type PluginRelease = { + version: string; + min_game_build_id: number | null; + published_at: string; +}; @UseQueue("GameServerNode", GameServerQueues.GameUpdate) export class GetPluginVersions extends WorkerHost { + private static readonly RUNTIME_REPOSITORIES: Record = + { + swiftlys2: "5stackgg/swiftly-game-server", + counterstrikesharp: "5stackgg/game-server", + }; + constructor( protected readonly logger: Logger, protected readonly hasuraService: HasuraService, @@ -14,23 +27,29 @@ export class GetPluginVersions extends WorkerHost { } async process(): Promise { - const response = await fetch( - "https://api.github.com/repos/5stackgg/game-server/releases", - ); + for (const [runtime, repository] of Object.entries( + GetPluginVersions.RUNTIME_REPOSITORIES, + )) { + try { + await this.syncRuntime(runtime as PluginRuntime, repository); + } catch (error) { + this.logger.warn( + `unable to sync plugin versions for ${runtime}`, + error.message, + ); + } + } + } - const releases = (await response.json()) - .map( - (release: { tag_name: string; body: string; published_at: string }) => { - const gameVersion = release.body?.trim(); + private async syncRuntime(runtime: PluginRuntime, repository: string) { + const releases = await this.fetchReleases(repository); - return { - version: release.tag_name.replace("v", ""), - min_game_build_id: gameVersion?.length > 0 ? gameVersion : null, - published_at: release.published_at, - }; - }, - ) - .filter((release: any) => release !== undefined); + if (releases.length === 0) { + // Never prune on an empty read; a rate-limited GitHub response would wipe + // every version for this runtime and null out the nodes pinned to them. + this.logger.warn(`no plugin releases returned for ${repository}`); + return; + } for (const { version, min_game_build_id, published_at } of releases) { const { plugin_versions } = await this.hasuraService.query({ @@ -40,6 +59,9 @@ export class GetPluginVersions extends WorkerHost { version: { _eq: version, }, + runtime: { + _eq: runtime, + }, }, }, version: true, @@ -59,6 +81,7 @@ export class GetPluginVersions extends WorkerHost { __args: { object: { version, + runtime, min_game_build_id, published_at, }, @@ -76,10 +99,11 @@ export class GetPluginVersions extends WorkerHost { delete_plugin_versions: { __args: { where: { + runtime: { + _eq: runtime, + }, version: { - _nin: releases.map( - (release: { version: string }) => release.version, - ), + _nin: releases.map((release) => release.version), }, }, }, @@ -87,4 +111,35 @@ export class GetPluginVersions extends WorkerHost { }, }); } + + private async fetchReleases( + repository: string, + ): Promise> { + const response = await fetch( + `https://api.github.com/repos/${repository}/releases`, + ); + + if (!response.ok) { + throw new Error(`${response.status} from ${repository} releases`); + } + + const releases = await response.json(); + + if (!Array.isArray(releases)) { + throw new Error(`unexpected releases payload from ${repository}`); + } + + return releases.map( + (release: { tag_name: string; body: string; published_at: string }) => { + // The minimum game build is hand-written into the release notes. + const buildId = Number.parseInt(release.body?.trim(), 10); + + return { + version: release.tag_name.replace("v", ""), + min_game_build_id: Number.isNaN(buildId) ? null : buildId, + published_at: release.published_at, + }; + }, + ); + } } diff --git a/src/game-server-node/jobs/ValidateGamedata.ts b/src/game-server-node/jobs/ValidateGamedata.ts index cd610f7f6..f9a88c338 100644 --- a/src/game-server-node/jobs/ValidateGamedata.ts +++ b/src/game-server-node/jobs/ValidateGamedata.ts @@ -5,7 +5,10 @@ import { UseQueue } from "../../utilities/QueueProcessors"; import { GameServerQueues } from "../enums/GameServerQueues"; import { NotificationsService } from "src/notifications/notifications.service"; import { DISCORD_COLORS } from "src/notifications/utilities/constants"; -import { GameServerNodeService } from "../game-server-node.service"; +import { + GameServerNodeService, + GamedataValidationEntry, +} from "../game-server-node.service"; type ValidateGamedataData = { gameServerNodeId: string; @@ -18,6 +21,15 @@ const GAMEDATA_ROUTING = { role: "discord_gamedata_notifications_role_id", }; +const UNKNOWN_RUNTIME = "unknown"; + +// Swiftly first: it is the default game server runtime. +const RUNTIME_LABELS: Record = { + swiftlys2: "Swiftly", + counterstrikesharp: "CounterStrikeSharp", + [UNKNOWN_RUNTIME]: "Unknown Runtime", +}; + @UseQueue("GameServerNode", GameServerQueues.ValidateGamedata) export class ValidateGamedata extends WorkerHost { constructor( @@ -54,20 +66,24 @@ export class ValidateGamedata extends WorkerHost { return; } + const skipped = ValidateGamedata.skippedNote(result.skipped); + if (result.status === "fail") { - const items = result.broken - .map((entry) => { - const name = - entry.kind === "vtable" - ? `${entry.signature} (vtable)` - : entry.signature; - return `
  • ${name} — ${entry.set}
  • `; + const sections = ValidateGamedata.groupByRuntime(result.broken) + .map(([runtime, entries]) => { + const items = entries + .map( + (entry) => + `
  • ${ValidateGamedata.entryLabel(entry)} — ${entry.set}
  • `, + ) + .join(""); + return `${RUNTIME_LABELS[runtime]}
      ${items}
    `; }) .join(""); this.notify( "Gamedata Validation Failed", - `CS2 build ${buildId} broke ${result.broken.length} signature(s):
      ${items}
    `, + `CS2 build ${buildId} broke ${result.broken.length} gamedata entr${result.broken.length === 1 ? "y" : "ies"}:${sections}${skipped}`, DISCORD_COLORS.RED, ); return; @@ -83,7 +99,7 @@ export class ValidateGamedata extends WorkerHost { this.notify( "Gamedata Validation Warning", - `CS2 build ${buildId}${result.warnings.length} signature(s) are no longer unique (still resolve, but matched more than once):
      ${items}
    `, + `CS2 build ${buildId}${result.warnings.length} signature(s) are no longer unique (still resolve, but matched more than once):
      ${items}
    ${skipped}`, DISCORD_COLORS.ORANGE, ); return; @@ -91,11 +107,50 @@ export class ValidateGamedata extends WorkerHost { this.notify( "Gamedata Validation Passed", - `CS2 build ${buildId} — all gamedata signatures verified.`, + `CS2 build ${buildId} — all Swiftly and CounterStrikeSharp gamedata verified.${skipped}`, DISCORD_COLORS.GREEN, ); } + private static entryLabel(entry: GamedataValidationEntry): string { + if (entry.kind === "vtable" || entry.kind === "patch") { + return `${entry.signature} (${entry.kind})`; + } + return entry.signature; + } + + private static skippedNote(skipped?: Array): string { + if (!skipped?.length) { + return ""; + } + return `
    ${skipped.length} entr${skipped.length === 1 ? "y" : "ies"} could not be checked.`; + } + + private static groupByRuntime( + entries: Array, + ): Array<[string, Array]> { + const groups = new Map>( + Object.keys(RUNTIME_LABELS).map( + (runtime): [string, Array] => [runtime, []], + ), + ); + + for (const entry of entries) { + const runtimes = entry.runtimes?.length + ? entry.runtimes + : [UNKNOWN_RUNTIME]; + + for (const runtime of runtimes) { + if (!groups.has(runtime)) { + groups.set(runtime, []); + } + groups.get(runtime).push(entry); + } + } + + return [...groups].filter(([, grouped]) => grouped.length > 0); + } + private notify(title: string, message: string, color: number): void { void this.notifications.send( "GameUpdate", diff --git a/src/k8s/logging/logging.service.ts b/src/k8s/logging/logging.service.ts index e3a3b6fca..96bad378b 100644 --- a/src/k8s/logging/logging.service.ts +++ b/src/k8s/logging/logging.service.ts @@ -672,6 +672,20 @@ export class LoggingService { }; } + public async getJob(jobName: string): Promise { + try { + return await this.batchApi.readNamespacedJob({ + name: jobName, + namespace: this.namespace, + }); + } catch (error) { + if (error.code?.toString() !== "404") { + throw error; + } + return null; + } + } + public async getJobStatus(jobName: string) { try { const job = await this.batchApi.readNamespacedJob({ diff --git a/src/matches/match-assistant/match-assistant.service.spec.ts b/src/matches/match-assistant/match-assistant.service.spec.ts index 76f55b3ce..9a31458a6 100644 --- a/src/matches/match-assistant/match-assistant.service.spec.ts +++ b/src/matches/match-assistant/match-assistant.service.spec.ts @@ -57,6 +57,12 @@ describe("MatchAssistantService", () => { hasura as any, {} as any, loggingService as any, + { + resolveGameServerPluginImage: jest.fn( + async () => "ghcr.io/5stackgg/swiftly-game-server:latest", + ), + resolvePluginRuntime: jest.fn(async () => "swiftlys2"), + } as any, queue as any, ); }); diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 814321d2b..9ddd9453f 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -1,5 +1,6 @@ import { Injectable, Logger } from "@nestjs/common"; import { HasuraService } from "../../hasura/hasura.service"; +import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; import { BatchV1Api, CoreV1Api, @@ -57,6 +58,7 @@ export class MatchAssistantService { private readonly hasura: HasuraService, private readonly encryption: EncryptionService, private readonly loggingService: LoggingService, + private readonly pluginRuntimeService: PluginRuntimeService, @InjectQueue(MatchQueues.MatchServers) private queue: Queue, ) { this.appConfig = this.config.get("app"); @@ -663,6 +665,7 @@ export class MatchAssistantService { game_server_node: { id: true, pin_plugin_version: true, + pin_plugin_runtime: true, supports_cpu_pinning: true, }, server_region: { @@ -750,16 +753,10 @@ export class MatchAssistantService { "-", ); - let pluginImage = this.gameServerConfig.serverImage; - - const pinPluginVersion = server.game_server_node?.pin_plugin_version; - - if (pinPluginVersion) { - pluginImage = this.gameServerConfig.serverImage.replace( - /:.+$/, - `:v${pinPluginVersion.toString()}`, + const pluginImage = + await this.pluginRuntimeService.resolveGameServerPluginImage( + server.game_server_node, ); - } const fivestackRanksSettingName = match.is_tournament_match ? "fivestack_ranks_tournaments" diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index 73957ae87..4d47ff732 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -10,6 +10,7 @@ import { MatchesController } from "./matches.controller"; import { MatchAssistantService } from "./match-assistant/match-assistant.service"; import { HasuraModule } from "../hasura/hasura.module"; import { RconModule } from "../rcon/rcon.module"; +import { PluginRuntimeModule } from "../plugin-runtime/plugin-runtime.module"; import { CacheModule } from "../cache/cache.module"; import { RedisModule } from "../redis/redis.module"; import { S3Module } from "../s3/s3.module"; @@ -88,6 +89,7 @@ import { LeaguesModule } from "../leagues/leagues.module"; MatchMaking, ChatModule, LeaguesModule, + PluginRuntimeModule, BullModule.registerQueue( { name: MatchQueues.MatchServers, diff --git a/src/plugin-runtime/plugin-runtime.module.ts b/src/plugin-runtime/plugin-runtime.module.ts new file mode 100644 index 000000000..64465e9bb --- /dev/null +++ b/src/plugin-runtime/plugin-runtime.module.ts @@ -0,0 +1,10 @@ +import { Module } from "@nestjs/common"; +import { PluginRuntimeService } from "./plugin-runtime.service"; +import { PostgresModule } from "src/postgres/postgres.module"; + +@Module({ + imports: [PostgresModule], + providers: [PluginRuntimeService], + exports: [PluginRuntimeService], +}) +export class PluginRuntimeModule {} diff --git a/src/plugin-runtime/plugin-runtime.service.ts b/src/plugin-runtime/plugin-runtime.service.ts new file mode 100644 index 000000000..e5fccf240 --- /dev/null +++ b/src/plugin-runtime/plugin-runtime.service.ts @@ -0,0 +1,67 @@ +import { Injectable } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import { PostgresService } from "src/postgres/postgres.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; +import { + DEFAULT_PLUGIN_RUNTIME, + GameServersConfig, + isPluginRuntime, + PluginRuntime, +} from "src/configs/types/GameServersConfig"; + +// Deliberately depends on postgres + config only. Everything that resolves a +// game server image (matches, dedicated servers, the plugin-version job) would +// otherwise reach for SystemService and close a module cycle back through +// GameServerNodeModule. +@Injectable() +export class PluginRuntimeService { + constructor( + private readonly config: ConfigService, + private readonly postgres: PostgresService, + ) {} + + public async getPluginRuntime(): Promise { + const [setting] = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [SystemSettingName.GameServerPluginRuntime], + ); + + return isPluginRuntime(setting?.value) + ? setting.value + : DEFAULT_PLUGIN_RUNTIME; + } + + // A pin carries the runtime it was made against, so a node pinned under one + // framework stays on that framework even if the deployment-wide setting moves. + public async resolvePluginRuntime(pin?: { + pin_plugin_runtime?: string | null; + }): Promise { + if (isPluginRuntime(pin?.pin_plugin_runtime)) { + return pin.pin_plugin_runtime; + } + + return await this.getPluginRuntime(); + } + + public async resolveGameServerPluginImage(pin?: { + pin_plugin_version?: string | null; + pin_plugin_runtime?: string | null; + }): Promise { + const { serverImageOverride, pluginRuntimeImages } = + this.config.get("gameServers"); + + const pinnedVersion = pin?.pin_plugin_version; + + if (serverImageOverride) { + if (!pinnedVersion) { + return serverImageOverride; + } + return serverImageOverride.replace(/:.+$/, `:v${pinnedVersion}`); + } + + const repository = + pluginRuntimeImages[await this.resolvePluginRuntime(pin)]; + + return `${repository}:${pinnedVersion ? `v${pinnedVersion}` : "latest"}`; + } +} diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 0a31b76d0..518e6ebb2 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -11,4 +11,6 @@ export enum SystemSettingName { PostNewsRole = "public.post_news_role", RequireLoginForLiveStreams = "public.require_login_for_live_streams", LeaguesEnabled = "public.leagues_enabled", + GameServerPluginRuntime = "public.game_server_plugin_runtime", + GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", } diff --git a/src/system/system.gateway.ts.ts b/src/system/system.gateway.ts.ts index 1f3c0a0f6..12f8bf0c7 100644 --- a/src/system/system.gateway.ts.ts +++ b/src/system/system.gateway.ts.ts @@ -111,7 +111,11 @@ export class SystemGateway { if (isJob) { const jobStatus = await this.loggingService.getJobStatus(resolvedService); - if ( + if (jobStatus?.active) { + // job is still running — never report finished, even if stale k8s + // events from a previous same-named job look terminal + jobFinshed = false; + } else if ( jobStatus?.succeeded || (await this.loggingService.isJobTerminal(resolvedService)) ) { diff --git a/src/system/system.service.ts b/src/system/system.service.ts index 30ca019e6..676ab9fa4 100644 --- a/src/system/system.service.ts +++ b/src/system/system.service.ts @@ -15,6 +15,7 @@ import { DiscordConfig } from "src/configs/types/DiscordConfig"; import { SteamConfig } from "src/configs/types/SteamConfig"; import { PostgresService } from "src/postgres/postgres.service"; import { SystemSettingName } from "./enums/SystemSettingName"; +import { GameServersConfig } from "src/configs/types/GameServersConfig"; @Injectable() export class SystemService { @@ -156,6 +157,25 @@ export class SystemService { }, }); + const { serverImageOverride } = + this.config.get("gameServers"); + + await this.hasura.mutation({ + insert_settings_one: { + __args: { + object: { + name: SystemSettingName.GameServerPluginRuntimeLocked, + value: (!!serverImageOverride).toString(), + }, + on_conflict: { + constraint: "settings_pkey", + update_columns: ["value"], + }, + }, + __typename: true, + }, + }); + this.featuresDetected = true; } catch (error) { this.logger.warn("Error detecting features", error); From 4bfae6ad311dfb972c67369a66c214a22ec1d6b8 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 9 Jul 2026 15:24:38 -0400 Subject: [PATCH 2/2] wip --- .../1870000000000_plugin_runtimes/down.sql | 7 ++ .../dedicated-servers.service.ts | 11 ++- .../game-server-node.service.ts | 20 +++- .../jobs/GetPluginVersions.ts | 98 +++++++++++++------ src/matches/clips/clips.service.ts | 4 +- src/plugin-runtime/plugin-runtime.service.ts | 19 ++-- src/s3/s3.service.ts | 9 +- 7 files changed, 120 insertions(+), 48 deletions(-) diff --git a/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql b/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql index 795df6cb2..adde1db36 100644 --- a/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql +++ b/hasura/migrations/default/1870000000000_plugin_runtimes/down.sql @@ -13,6 +13,13 @@ ALTER TABLE public.game_server_nodes ALTER TABLE public.game_server_nodes DROP CONSTRAINT IF EXISTS "game_server_nodes_pin_plugin_version_check"; +-- these pins survive the DELETE below and then fail the single-column foreign key +-- when it is re-added +UPDATE public.game_server_nodes + SET "pin_plugin_version" = NULL + WHERE "pin_plugin_version" IS NOT NULL + AND "pin_plugin_runtime" IS DISTINCT FROM 'counterstrikesharp'; + ALTER TABLE public.game_server_nodes DROP COLUMN IF EXISTS "pin_plugin_runtime"; diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 7fb304d1a..39e11aafc 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -129,9 +129,15 @@ export class DedicatedServersService { ? `serverfiles-csgo-${sanitizedGameServerNodeId}` : `serverfiles-${sanitizedGameServerNodeId}`; + const pluginRuntime = + await this.pluginRuntimeService.resolvePluginRuntime( + server.game_server_node, + ); + const pluginImage = await this.pluginRuntimeService.resolveGameServerPluginImage( server.game_server_node, + pluginRuntime, ); // Seeded here so out-of-date checks know the framework even before the @@ -143,10 +149,7 @@ export class DedicatedServersService { id: serverId, }, _set: { - plugin_runtime: - await this.pluginRuntimeService.resolvePluginRuntime( - server.game_server_node, - ), + plugin_runtime: pluginRuntime, }, }, __typename: true, diff --git a/src/game-server-node/game-server-node.service.ts b/src/game-server-node/game-server-node.service.ts index 21f8abea0..0522612cc 100644 --- a/src/game-server-node/game-server-node.service.ts +++ b/src/game-server-node/game-server-node.service.ts @@ -22,6 +22,7 @@ import { InjectQueue } from "@nestjs/bullmq"; import { Queue } from "bullmq"; import { GameServerQueues } from "./enums/GameServerQueues"; import { NotificationsService } from "src/notifications/notifications.service"; +import { PluginRuntimeService } from "src/plugin-runtime/plugin-runtime.service"; import { PluginRuntime } from "src/configs/types/GameServersConfig"; export type GamedataValidationRuntime = PluginRuntime; @@ -71,6 +72,7 @@ export class GameServerNodeService { redisManager: RedisManagerService, protected readonly loggingService: LoggingService, protected readonly notifications: NotificationsService, + protected readonly pluginRuntimeService: PluginRuntimeService, @InjectQueue(GameServerQueues.ValidateGamedata) private readonly validateGamedataQueue: Queue, ) { @@ -982,6 +984,17 @@ export class GameServerNodeService { const sanitizedGameServerNodeId = gameServerNodeId.replaceAll(".", "-"); const serverfilesVolumeName = `serverfiles-${sanitizedGameServerNodeId}`; + // without --runtime the validator defaults to "all" and fetches SwiftlyS2 gamedata, + // so a GitHub blip fails validation on installs that never load SwiftlyS2 + const { game_server_nodes_by_pk: node } = await this.hasura.query({ + game_server_nodes_by_pk: { + __args: { id: gameServerNodeId }, + pin_plugin_runtime: true, + }, + }); + + const runtime = await this.pluginRuntimeService.resolvePluginRuntime(node); + const lockKey = `gamedata:validate:lock:${buildId}:${branch}`; const acquired = await this.redis.set(lockKey, 1, "EX", 60 * 60, "NX"); if (acquired === null) { @@ -1043,7 +1056,12 @@ export class GameServerNodeService { { name: "validate-gamedata", image: "ghcr.io/5stackgg/gamedata-validator:latest", - args: ["--build-id", buildId.toString()], + args: [ + "--build-id", + buildId.toString(), + "--runtime", + runtime, + ], volumeMounts: [ { name: serverfilesVolumeName, diff --git a/src/game-server-node/jobs/GetPluginVersions.ts b/src/game-server-node/jobs/GetPluginVersions.ts index 0c82f4463..51a29e672 100644 --- a/src/game-server-node/jobs/GetPluginVersions.ts +++ b/src/game-server-node/jobs/GetPluginVersions.ts @@ -5,6 +5,12 @@ import { Logger } from "@nestjs/common"; import { HasuraService } from "src/hasura/hasura.service"; import { PluginRuntime } from "src/configs/types/GameServersConfig"; +type GithubRelease = { + tag_name: string; + body: string; + published_at: string; +}; + type PluginRelease = { version: string; min_game_build_id: number | null; @@ -13,11 +19,14 @@ type PluginRelease = { @UseQueue("GameServerNode", GameServerQueues.GameUpdate) export class GetPluginVersions extends WorkerHost { - private static readonly RUNTIME_REPOSITORIES: Record = - { - swiftlys2: "5stackgg/swiftly-game-server", - counterstrikesharp: "5stackgg/game-server", - }; + private static readonly REPOSITORY = "5stackgg/game-server"; + + // both plugins release out of one repo. CounterStrikeSharp's pre-monorepo tags are + // bare v0.0.N and must keep matching, or the prune below strands nodes pinned to them. + private static readonly RUNTIME_TAGS: Record = { + swiftlys2: /^sw-v(\d+\.\d+\.\d+)$/, + counterstrikesharp: /^(?:css-)?v(\d+\.\d+\.\d+)$/, + }; constructor( protected readonly logger: Logger, @@ -27,11 +36,18 @@ export class GetPluginVersions extends WorkerHost { } async process(): Promise { - for (const [runtime, repository] of Object.entries( - GetPluginVersions.RUNTIME_REPOSITORIES, - )) { + let releases: Array; + + try { + releases = await this.fetchReleases(GetPluginVersions.REPOSITORY); + } catch (error) { + this.logger.warn(`unable to fetch plugin releases`, error.message); + return; + } + + for (const runtime of Object.keys(GetPluginVersions.RUNTIME_TAGS)) { try { - await this.syncRuntime(runtime as PluginRuntime, repository); + await this.syncRuntime(runtime as PluginRuntime, releases); } catch (error) { this.logger.warn( `unable to sync plugin versions for ${runtime}`, @@ -41,17 +57,20 @@ export class GetPluginVersions extends WorkerHost { } } - private async syncRuntime(runtime: PluginRuntime, repository: string) { - const releases = await this.fetchReleases(repository); + private async syncRuntime( + runtime: PluginRuntime, + releases: Array, + ) { + const pluginReleases = this.releasesFor(runtime, releases); - if (releases.length === 0) { - // Never prune on an empty read; a rate-limited GitHub response would wipe - // every version for this runtime and null out the nodes pinned to them. - this.logger.warn(`no plugin releases returned for ${repository}`); + if (pluginReleases.length === 0) { + // never prune on an empty read; a rate-limited response, or a tag scheme that + // stopped matching, would wipe every version and null out the nodes pinned to them + this.logger.warn(`no plugin releases matched for ${runtime}`); return; } - for (const { version, min_game_build_id, published_at } of releases) { + for (const { version, min_game_build_id, published_at } of pluginReleases) { const { plugin_versions } = await this.hasuraService.query({ plugin_versions: { __args: { @@ -103,7 +122,7 @@ export class GetPluginVersions extends WorkerHost { _eq: runtime, }, version: { - _nin: releases.map((release) => release.version), + _nin: pluginReleases.map((release) => release.version), }, }, }, @@ -112,11 +131,39 @@ export class GetPluginVersions extends WorkerHost { }); } + private releasesFor( + runtime: PluginRuntime, + releases: Array, + ): Array { + const pattern = GetPluginVersions.RUNTIME_TAGS[runtime]; + + return releases.flatMap((release) => { + const matched = pattern.exec(release.tag_name); + + if (!matched) { + return []; + } + + // The minimum game build is hand-written into the release notes. + const buildId = Number.parseInt(release.body?.trim(), 10); + + return [ + { + version: matched[1], + min_game_build_id: Number.isNaN(buildId) ? null : buildId, + published_at: release.published_at, + }, + ]; + }); + } + private async fetchReleases( repository: string, - ): Promise> { + ): Promise> { + // two plugins share this feed; the default page of 30 could hide a runtime's + // older releases and let the prune delete them const response = await fetch( - `https://api.github.com/repos/${repository}/releases`, + `https://api.github.com/repos/${repository}/releases?per_page=100`, ); if (!response.ok) { @@ -129,17 +176,6 @@ export class GetPluginVersions extends WorkerHost { throw new Error(`unexpected releases payload from ${repository}`); } - return releases.map( - (release: { tag_name: string; body: string; published_at: string }) => { - // The minimum game build is hand-written into the release notes. - const buildId = Number.parseInt(release.body?.trim(), 10); - - return { - version: release.tag_name.replace("v", ""), - min_game_build_id: Number.isNaN(buildId) ? null : buildId, - published_at: release.published_at, - }; - }, - ); + return releases as Array; } } diff --git a/src/matches/clips/clips.service.ts b/src/matches/clips/clips.service.ts index 9a1bc346d..6ecadcb42 100644 --- a/src/matches/clips/clips.service.ts +++ b/src/matches/clips/clips.service.ts @@ -1699,7 +1699,7 @@ export class ClipsService { jobId, ); - await this.s3.put(key, fileStream); + await this.s3.put(key, fileStream, "image/jpeg"); return { key }; } @@ -1733,7 +1733,7 @@ export class ClipsService { row.user_steam_id != null ? String(row.user_steam_id) : null; const key = ClipsService.GetClipS3Key(userSteamId ?? "system", jobId); - await this.s3.put(key, fileStream); + await this.s3.put(key, fileStream, "video/mp4"); let videoSize = 0; try { diff --git a/src/plugin-runtime/plugin-runtime.service.ts b/src/plugin-runtime/plugin-runtime.service.ts index e5fccf240..a37185492 100644 --- a/src/plugin-runtime/plugin-runtime.service.ts +++ b/src/plugin-runtime/plugin-runtime.service.ts @@ -9,10 +9,8 @@ import { PluginRuntime, } from "src/configs/types/GameServersConfig"; -// Deliberately depends on postgres + config only. Everything that resolves a -// game server image (matches, dedicated servers, the plugin-version job) would -// otherwise reach for SystemService and close a module cycle back through -// GameServerNodeModule. +// Depends on postgres + config only. Reaching for SystemService here instead would +// close a module cycle back through GameServerNodeModule. @Injectable() export class PluginRuntimeService { constructor( @@ -43,10 +41,13 @@ export class PluginRuntimeService { return await this.getPluginRuntime(); } - public async resolveGameServerPluginImage(pin?: { - pin_plugin_version?: string | null; - pin_plugin_runtime?: string | null; - }): Promise { + public async resolveGameServerPluginImage( + pin?: { + pin_plugin_version?: string | null; + pin_plugin_runtime?: string | null; + }, + runtime?: PluginRuntime, + ): Promise { const { serverImageOverride, pluginRuntimeImages } = this.config.get("gameServers"); @@ -60,7 +61,7 @@ export class PluginRuntimeService { } const repository = - pluginRuntimeImages[await this.resolvePluginRuntime(pin)]; + pluginRuntimeImages[runtime ?? (await this.resolvePluginRuntime(pin))]; return `${repository}:${pinnedVersion ? `v${pinnedVersion}` : "latest"}`; } diff --git a/src/s3/s3.service.ts b/src/s3/s3.service.ts index bd566438a..417d81e22 100644 --- a/src/s3/s3.service.ts +++ b/src/s3/s3.service.ts @@ -121,9 +121,16 @@ export class S3Service { public async put( filename: string, stream: Readable | Buffer, + contentType?: string, bucket: string = this.bucket, ): Promise { - await this.client.putObject(bucket, filename, stream); + await this.client.putObject( + bucket, + filename, + stream, + undefined, + contentType ? { "Content-Type": contentType } : undefined, + ); } public async copyObject(