From a96507766e296ff04447a087fb16d7a8ad9bed05 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Wed, 12 Aug 2026 19:17:55 -0400 Subject: [PATCH 01/17] wip --- generated/schema.graphql | 465 + generated/schema.ts | 606 +- generated/types.ts | 42812 ++++++++-------- .../functions/demos/persist_imported_demo.sql | 14 +- .../tournaments/clone_match_options.sql | 35 +- .../update_match_options_best_of.sql | 59 +- .../tables/public_match_camera_tokens.yaml | 20 + .../default/tables/public_match_options.yaml | 6 + .../databases/default/tables/tables.yaml | 1 + .../down.sql | 5 + .../1876000000800_match_camera_tokens/up.sql | 22 + src/app.module.ts | 2 + src/chat/chat.service.ts | 8 +- src/draft-games/draft-game.service.ts | 4 + src/hasura/hasura.service.ts | 22 + .../camera/camera-monitor.service.spec.ts | 175 + src/matches/camera/camera-monitor.service.ts | 254 + src/matches/camera/camera.controller.ts | 166 + src/matches/camera/camera.service.spec.ts | 161 + src/matches/camera/camera.service.ts | 431 + .../game-streamer/game-streamer.service.ts | 4 +- src/matches/jobs/MonitorMatchCameras.ts | 26 + .../match-assistant.service.spec.ts | 71 + .../match-assistant.service.ts | 38 + src/matches/matches.controller.spec.ts | 2 + src/matches/matches.controller.ts | 68 +- src/matches/matches.module.ts | 23 +- src/mediamtx/mediamtx.module.ts | 9 + src/mediamtx/mediamtx.service.ts | 171 + src/system/enums/SystemSettingName.ts | 4 + src/telemetry/telemetry.service.ts | 2 +- src/voice/voice.controller.ts | 91 + src/voice/voice.module.ts | 14 + src/voice/voice.service.spec.ts | 161 + src/voice/voice.service.ts | 135 + test/camera.spec.ts | 151 + test/demo-import-kills.spec.ts | 169 + test/match-options.spec.ts | 96 + 38 files changed, 25315 insertions(+), 21188 deletions(-) create mode 100644 hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml create mode 100644 hasura/migrations/default/1876000000800_match_camera_tokens/down.sql create mode 100644 hasura/migrations/default/1876000000800_match_camera_tokens/up.sql create mode 100644 src/matches/camera/camera-monitor.service.spec.ts create mode 100644 src/matches/camera/camera-monitor.service.ts create mode 100644 src/matches/camera/camera.controller.ts create mode 100644 src/matches/camera/camera.service.spec.ts create mode 100644 src/matches/camera/camera.service.ts create mode 100644 src/matches/jobs/MonitorMatchCameras.ts create mode 100644 src/mediamtx/mediamtx.module.ts create mode 100644 src/mediamtx/mediamtx.service.ts create mode 100644 src/voice/voice.controller.ts create mode 100644 src/voice/voice.module.ts create mode 100644 src/voice/voice.service.spec.ts create mode 100644 src/voice/voice.service.ts create mode 100644 test/camera.spec.ts create mode 100644 test/demo-import-kills.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index c8ea10eb..c245a3e6 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -27104,6 +27104,274 @@ input maps_updates { where: maps_bool_exp! } +""" +columns and relationships of "match_camera_tokens" +""" +type match_camera_tokens { + created_at: timestamptz! + id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! + steam_id: bigint! + token: uuid! +} + +""" +aggregated selection of "match_camera_tokens" +""" +type match_camera_tokens_aggregate { + aggregate: match_camera_tokens_aggregate_fields + nodes: [match_camera_tokens!]! +} + +""" +aggregate fields of "match_camera_tokens" +""" +type match_camera_tokens_aggregate_fields { + avg: match_camera_tokens_avg_fields + count(columns: [match_camera_tokens_select_column!], distinct: Boolean): Int! + max: match_camera_tokens_max_fields + min: match_camera_tokens_min_fields + stddev: match_camera_tokens_stddev_fields + stddev_pop: match_camera_tokens_stddev_pop_fields + stddev_samp: match_camera_tokens_stddev_samp_fields + sum: match_camera_tokens_sum_fields + var_pop: match_camera_tokens_var_pop_fields + var_samp: match_camera_tokens_var_samp_fields + variance: match_camera_tokens_variance_fields +} + +"""aggregate avg on columns""" +type match_camera_tokens_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "match_camera_tokens". All fields are combined with a logical 'AND'. +""" +input match_camera_tokens_bool_exp { + _and: [match_camera_tokens_bool_exp!] + _not: match_camera_tokens_bool_exp + _or: [match_camera_tokens_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + steam_id: bigint_comparison_exp + token: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "match_camera_tokens" +""" +enum match_camera_tokens_constraint { + """ + unique or primary key constraint on columns "steam_id", "match_id" + """ + match_camera_tokens_match_id_steam_id_key + + """ + unique or primary key constraint on columns "id" + """ + match_camera_tokens_pkey + + """ + unique or primary key constraint on columns "token" + """ + match_camera_tokens_token_key +} + +""" +input type for incrementing numeric columns in table "match_camera_tokens" +""" +input match_camera_tokens_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "match_camera_tokens" +""" +input match_camera_tokens_insert_input { + created_at: timestamptz + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + steam_id: bigint + token: uuid +} + +"""aggregate max on columns""" +type match_camera_tokens_max_fields { + created_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint + token: uuid +} + +"""aggregate min on columns""" +type match_camera_tokens_min_fields { + created_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint + token: uuid +} + +""" +response of any mutation on the table "match_camera_tokens" +""" +type match_camera_tokens_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_camera_tokens!]! +} + +""" +on_conflict condition type for table "match_camera_tokens" +""" +input match_camera_tokens_on_conflict { + constraint: match_camera_tokens_constraint! + update_columns: [match_camera_tokens_update_column!]! = [] + where: match_camera_tokens_bool_exp +} + +"""Ordering options when selecting data from "match_camera_tokens".""" +input match_camera_tokens_order_by { + created_at: order_by + id: order_by + match: matches_order_by + match_id: order_by + steam_id: order_by + token: order_by +} + +"""primary key columns input for table: match_camera_tokens""" +input match_camera_tokens_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_camera_tokens" +""" +enum match_camera_tokens_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + steam_id + + """column name""" + token +} + +""" +input type for updating data in table "match_camera_tokens" +""" +input match_camera_tokens_set_input { + created_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint + token: uuid +} + +"""aggregate stddev on columns""" +type match_camera_tokens_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type match_camera_tokens_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type match_camera_tokens_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "match_camera_tokens" +""" +input match_camera_tokens_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_camera_tokens_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_camera_tokens_stream_cursor_value_input { + created_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint + token: uuid +} + +"""aggregate sum on columns""" +type match_camera_tokens_sum_fields { + steam_id: bigint +} + +""" +update columns of table "match_camera_tokens" +""" +enum match_camera_tokens_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + steam_id + + """column name""" + token +} + +input match_camera_tokens_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_camera_tokens_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_camera_tokens_set_input + + """filter the rows which have to be updated""" + where: match_camera_tokens_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_camera_tokens_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type match_camera_tokens_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type match_camera_tokens_variance_fields { + steam_id: Float +} + """ columns and relationships of "match_clips" """ @@ -32819,6 +33087,8 @@ type match_options { auto_cancel_duration: Int auto_cancellation: Boolean! best_of: Int! + camera_allow_teammates: Boolean! + camera_required: Boolean! check_in_setting: e_check_in_settings_enum! coaches: Boolean! default_models: Boolean @@ -32945,6 +33215,8 @@ input match_options_bool_exp { auto_cancel_duration: Int_comparison_exp auto_cancellation: Boolean_comparison_exp best_of: Int_comparison_exp + camera_allow_teammates: Boolean_comparison_exp + camera_required: Boolean_comparison_exp check_in_setting: e_check_in_settings_enum_comparison_exp coaches: Boolean_comparison_exp default_models: Boolean_comparison_exp @@ -33009,6 +33281,8 @@ input match_options_insert_input { auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean @@ -33107,6 +33381,8 @@ input match_options_order_by { auto_cancel_duration: order_by auto_cancellation: order_by best_of: order_by + camera_allow_teammates: order_by + camera_required: order_by check_in_setting: order_by coaches: order_by default_models: order_by @@ -33157,6 +33433,12 @@ enum match_options_select_column { """column name""" best_of + """column name""" + camera_allow_teammates + + """column name""" + camera_required + """column name""" check_in_setting @@ -33237,6 +33519,8 @@ input match_options_set_input { auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean @@ -33315,6 +33599,8 @@ input match_options_stream_cursor_value_input { auto_cancel_duration: Int auto_cancellation: Boolean best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean @@ -33366,6 +33652,12 @@ enum match_options_update_column { """column name""" best_of + """column name""" + camera_allow_teammates + + """column name""" + camera_required + """column name""" check_in_setting @@ -37835,6 +38127,19 @@ type mutation_root { """ delete_maps_by_pk(id: uuid!): maps + """ + delete data from the table: "match_camera_tokens" + """ + delete_match_camera_tokens( + """filter the rows which have to be deleted""" + where: match_camera_tokens_bool_exp! + ): match_camera_tokens_mutation_response + + """ + delete single row from the table: "match_camera_tokens" + """ + delete_match_camera_tokens_by_pk(id: uuid!): match_camera_tokens + """ delete data from the table: "match_clips" """ @@ -40599,6 +40904,28 @@ type mutation_root { on_conflict: maps_on_conflict ): maps + """ + insert data into the table: "match_camera_tokens" + """ + insert_match_camera_tokens( + """the rows to be inserted""" + objects: [match_camera_tokens_insert_input!]! + + """upsert condition""" + on_conflict: match_camera_tokens_on_conflict + ): match_camera_tokens_mutation_response + + """ + insert a single row into the table: "match_camera_tokens" + """ + insert_match_camera_tokens_one( + """the row to be inserted""" + object: match_camera_tokens_insert_input! + + """upsert condition""" + on_conflict: match_camera_tokens_on_conflict + ): match_camera_tokens + """ insert data into the table: "match_clips" """ @@ -45240,6 +45567,40 @@ type mutation_root { updates: [maps_updates!]! ): [maps_mutation_response] + """ + update data of the table: "match_camera_tokens" + """ + update_match_camera_tokens( + """increments the numeric columns with given value of the filtered values""" + _inc: match_camera_tokens_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_camera_tokens_set_input + + """filter the rows which have to be updated""" + where: match_camera_tokens_bool_exp! + ): match_camera_tokens_mutation_response + + """ + update single row of the table: "match_camera_tokens" + """ + update_match_camera_tokens_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_camera_tokens_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_camera_tokens_set_input + pk_columns: match_camera_tokens_pk_columns_input! + ): match_camera_tokens + + """ + update multiples rows of table: "match_camera_tokens" + """ + update_match_camera_tokens_many( + """updates to execute, in order""" + updates: [match_camera_tokens_updates!]! + ): [match_camera_tokens_mutation_response] + """ update data of the table: "match_clips" """ @@ -73409,6 +73770,51 @@ type query_root { """fetch data from the table: "maps" using primary key columns""" maps_by_pk(id: uuid!): maps + """ + fetch data from the table: "match_camera_tokens" + """ + match_camera_tokens( + """distinct select on columns""" + distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] + + """filter the rows returned""" + where: match_camera_tokens_bool_exp + ): [match_camera_tokens!]! + + """ + fetch aggregated fields from the table: "match_camera_tokens" + """ + match_camera_tokens_aggregate( + """distinct select on columns""" + distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] + + """filter the rows returned""" + where: match_camera_tokens_bool_exp + ): match_camera_tokens_aggregate! + + """ + fetch data from the table: "match_camera_tokens" using primary key columns + """ + match_camera_tokens_by_pk(id: uuid!): match_camera_tokens + """An array relationship""" match_clips( """distinct select on columns""" @@ -85391,6 +85797,65 @@ type subscription_root { where: maps_bool_exp ): [maps!]! + """ + fetch data from the table: "match_camera_tokens" + """ + match_camera_tokens( + """distinct select on columns""" + distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] + + """filter the rows returned""" + where: match_camera_tokens_bool_exp + ): [match_camera_tokens!]! + + """ + fetch aggregated fields from the table: "match_camera_tokens" + """ + match_camera_tokens_aggregate( + """distinct select on columns""" + distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] + + """filter the rows returned""" + where: match_camera_tokens_bool_exp + ): match_camera_tokens_aggregate! + + """ + fetch data from the table: "match_camera_tokens" using primary key columns + """ + match_camera_tokens_by_pk(id: uuid!): match_camera_tokens + + """ + fetch data from the table in a streaming manner: "match_camera_tokens" + """ + match_camera_tokens_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_camera_tokens_stream_cursor_input]! + + """filter the rows returned""" + where: match_camera_tokens_bool_exp + ): [match_camera_tokens!]! + """An array relationship""" match_clips( """distinct select on columns""" diff --git a/generated/schema.ts b/generated/schema.ts index 7ad6fda7..41d716e0 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -9546,6 +9546,144 @@ export type maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns export type maps_update_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' +/** columns and relationships of "match_camera_tokens" */ +export interface match_camera_tokens { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + steam_id: Scalars['bigint'] + token: Scalars['uuid'] + __typename: 'match_camera_tokens' +} + + +/** aggregated selection of "match_camera_tokens" */ +export interface match_camera_tokens_aggregate { + aggregate: (match_camera_tokens_aggregate_fields | null) + nodes: match_camera_tokens[] + __typename: 'match_camera_tokens_aggregate' +} + + +/** aggregate fields of "match_camera_tokens" */ +export interface match_camera_tokens_aggregate_fields { + avg: (match_camera_tokens_avg_fields | null) + count: Scalars['Int'] + max: (match_camera_tokens_max_fields | null) + min: (match_camera_tokens_min_fields | null) + stddev: (match_camera_tokens_stddev_fields | null) + stddev_pop: (match_camera_tokens_stddev_pop_fields | null) + stddev_samp: (match_camera_tokens_stddev_samp_fields | null) + sum: (match_camera_tokens_sum_fields | null) + var_pop: (match_camera_tokens_var_pop_fields | null) + var_samp: (match_camera_tokens_var_samp_fields | null) + variance: (match_camera_tokens_variance_fields | null) + __typename: 'match_camera_tokens_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_camera_tokens_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_avg_fields' +} + + +/** unique or primary key constraints on table "match_camera_tokens" */ +export type match_camera_tokens_constraint = 'match_camera_tokens_match_id_steam_id_key' | 'match_camera_tokens_pkey' | 'match_camera_tokens_token_key' + + +/** aggregate max on columns */ +export interface match_camera_tokens_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + token: (Scalars['uuid'] | null) + __typename: 'match_camera_tokens_max_fields' +} + + +/** aggregate min on columns */ +export interface match_camera_tokens_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + token: (Scalars['uuid'] | null) + __typename: 'match_camera_tokens_min_fields' +} + + +/** response of any mutation on the table "match_camera_tokens" */ +export interface match_camera_tokens_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_camera_tokens[] + __typename: 'match_camera_tokens_mutation_response' +} + + +/** select columns of table "match_camera_tokens" */ +export type match_camera_tokens_select_column = 'created_at' | 'id' | 'match_id' | 'steam_id' | 'token' + + +/** aggregate stddev on columns */ +export interface match_camera_tokens_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_camera_tokens_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_camera_tokens_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_camera_tokens_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'match_camera_tokens_sum_fields' +} + + +/** update columns of table "match_camera_tokens" */ +export type match_camera_tokens_update_column = 'created_at' | 'id' | 'match_id' | 'steam_id' | 'token' + + +/** aggregate var_pop on columns */ +export interface match_camera_tokens_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_camera_tokens_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_camera_tokens_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_camera_tokens_variance_fields' +} + + /** columns and relationships of "match_clips" */ export interface match_clips { created_at: Scalars['timestamptz'] @@ -11166,6 +11304,8 @@ export interface match_options { auto_cancel_duration: (Scalars['Int'] | null) auto_cancellation: Scalars['Boolean'] best_of: Scalars['Int'] + camera_allow_teammates: Scalars['Boolean'] + camera_required: Scalars['Boolean'] check_in_setting: e_check_in_settings_enum coaches: Scalars['Boolean'] default_models: (Scalars['Boolean'] | null) @@ -11298,7 +11438,7 @@ export interface match_options_mutation_response { /** select columns of table "match_options" */ -export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' +export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' /** aggregate stddev on columns */ @@ -11358,7 +11498,7 @@ export interface match_options_sum_fields { /** update columns of table "match_options" */ -export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' +export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' /** aggregate var_pop on columns */ @@ -12612,6 +12752,10 @@ export interface mutation_root { delete_maps: (maps_mutation_response | null) /** delete single row from the table: "maps" */ delete_maps_by_pk: (maps | null) + /** delete data from the table: "match_camera_tokens" */ + delete_match_camera_tokens: (match_camera_tokens_mutation_response | null) + /** delete single row from the table: "match_camera_tokens" */ + delete_match_camera_tokens_by_pk: (match_camera_tokens | null) /** delete data from the table: "match_clips" */ delete_match_clips: (match_clips_mutation_response | null) /** delete single row from the table: "match_clips" */ @@ -13236,6 +13380,10 @@ export interface mutation_root { insert_maps: (maps_mutation_response | null) /** insert a single row into the table: "maps" */ insert_maps_one: (maps | null) + /** insert data into the table: "match_camera_tokens" */ + insert_match_camera_tokens: (match_camera_tokens_mutation_response | null) + /** insert a single row into the table: "match_camera_tokens" */ + insert_match_camera_tokens_one: (match_camera_tokens | null) /** insert data into the table: "match_clips" */ insert_match_clips: (match_clips_mutation_response | null) /** insert a single row into the table: "match_clips" */ @@ -14161,6 +14309,12 @@ export interface mutation_root { update_maps_by_pk: (maps | null) /** update multiples rows of table: "maps" */ update_maps_many: ((maps_mutation_response | null)[] | null) + /** update data of the table: "match_camera_tokens" */ + update_match_camera_tokens: (match_camera_tokens_mutation_response | null) + /** update single row of the table: "match_camera_tokens" */ + update_match_camera_tokens_by_pk: (match_camera_tokens | null) + /** update multiples rows of table: "match_camera_tokens" */ + update_match_camera_tokens_many: ((match_camera_tokens_mutation_response | null)[] | null) /** update data of the table: "match_clips" */ update_match_clips: (match_clips_mutation_response | null) /** update single row of the table: "match_clips" */ @@ -23291,6 +23445,12 @@ export interface query_root { maps_aggregate: maps_aggregate /** fetch data from the table: "maps" using primary key columns */ maps_by_pk: (maps | null) + /** fetch data from the table: "match_camera_tokens" */ + match_camera_tokens: match_camera_tokens[] + /** fetch aggregated fields from the table: "match_camera_tokens" */ + match_camera_tokens_aggregate: match_camera_tokens_aggregate + /** fetch data from the table: "match_camera_tokens" using primary key columns */ + match_camera_tokens_by_pk: (match_camera_tokens | null) /** An array relationship */ match_clips: match_clips[] /** An aggregate relationship */ @@ -25418,6 +25578,14 @@ export interface subscription_root { maps_by_pk: (maps | null) /** fetch data from the table in a streaming manner: "maps" */ maps_stream: maps[] + /** fetch data from the table: "match_camera_tokens" */ + match_camera_tokens: match_camera_tokens[] + /** fetch aggregated fields from the table: "match_camera_tokens" */ + match_camera_tokens_aggregate: match_camera_tokens_aggregate + /** fetch data from the table: "match_camera_tokens" using primary key columns */ + match_camera_tokens_by_pk: (match_camera_tokens | null) + /** fetch data from the table in a streaming manner: "match_camera_tokens" */ + match_camera_tokens_stream: match_camera_tokens[] /** An array relationship */ match_clips: match_clips[] /** An aggregate relationship */ @@ -51500,6 +51668,194 @@ _set?: (maps_set_input | null), where: maps_bool_exp} +/** columns and relationships of "match_camera_tokens" */ +export interface match_camera_tokensGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + steam_id?: boolean | number + token?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_camera_tokens" */ +export interface match_camera_tokens_aggregateGenqlSelection{ + aggregate?: match_camera_tokens_aggregate_fieldsGenqlSelection + nodes?: match_camera_tokensGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "match_camera_tokens" */ +export interface match_camera_tokens_aggregate_fieldsGenqlSelection{ + avg?: match_camera_tokens_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_camera_tokens_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_camera_tokens_max_fieldsGenqlSelection + min?: match_camera_tokens_min_fieldsGenqlSelection + stddev?: match_camera_tokens_stddev_fieldsGenqlSelection + stddev_pop?: match_camera_tokens_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_camera_tokens_stddev_samp_fieldsGenqlSelection + sum?: match_camera_tokens_sum_fieldsGenqlSelection + var_pop?: match_camera_tokens_var_pop_fieldsGenqlSelection + var_samp?: match_camera_tokens_var_samp_fieldsGenqlSelection + variance?: match_camera_tokens_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface match_camera_tokens_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "match_camera_tokens". All fields are combined with a logical 'AND'. */ +export interface match_camera_tokens_bool_exp {_and?: (match_camera_tokens_bool_exp[] | null),_not?: (match_camera_tokens_bool_exp | null),_or?: (match_camera_tokens_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),token?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_camera_tokens" */ +export interface match_camera_tokens_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "match_camera_tokens" */ +export interface match_camera_tokens_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface match_camera_tokens_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + match_id?: boolean | number + steam_id?: boolean | number + token?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface match_camera_tokens_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + match_id?: boolean | number + steam_id?: boolean | number + token?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "match_camera_tokens" */ +export interface match_camera_tokens_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_camera_tokensGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_camera_tokens" */ +export interface match_camera_tokens_on_conflict {constraint: match_camera_tokens_constraint,update_columns?: match_camera_tokens_update_column[],where?: (match_camera_tokens_bool_exp | null)} + + +/** Ordering options when selecting data from "match_camera_tokens". */ +export interface match_camera_tokens_order_by {created_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),steam_id?: (order_by | null),token?: (order_by | null)} + + +/** primary key columns input for table: match_camera_tokens */ +export interface match_camera_tokens_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_camera_tokens" */ +export interface match_camera_tokens_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface match_camera_tokens_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface match_camera_tokens_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface match_camera_tokens_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "match_camera_tokens" */ +export interface match_camera_tokens_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_camera_tokens_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_camera_tokens_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface match_camera_tokens_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_camera_tokens_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_camera_tokens_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_camera_tokens_set_input | null), +/** filter the rows which have to be updated */ +where: match_camera_tokens_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_camera_tokens_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface match_camera_tokens_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface match_camera_tokens_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "match_clips" */ export interface match_clipsGenqlSelection{ created_at?: boolean | number @@ -54368,6 +54724,8 @@ export interface match_optionsGenqlSelection{ auto_cancel_duration?: boolean | number auto_cancellation?: boolean | number best_of?: boolean | number + camera_allow_teammates?: boolean | number + camera_required?: boolean | number check_in_setting?: boolean | number coaches?: boolean | number default_models?: boolean | number @@ -54474,7 +54832,7 @@ export interface match_options_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "match_options". All fields are combined with a logical 'AND'. */ -export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),halftime_pausematch?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),round_restart_delay?: (Int_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),veto_pick_timeout?: (Int_comparison_exp | null)} +export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),camera_allow_teammates?: (Boolean_comparison_exp | null),camera_required?: (Boolean_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),halftime_pausematch?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),round_restart_delay?: (Int_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),veto_pick_timeout?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "match_options" */ @@ -54482,7 +54840,7 @@ export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] /** input type for inserting data into table "match_options" */ -export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate max on columns */ @@ -54545,7 +54903,7 @@ export interface match_options_on_conflict {constraint: match_options_constraint /** Ordering options when selecting data from "match_options". */ -export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),halftime_pausematch?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null),veto_pick_timeout?: (order_by | null)} +export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),camera_allow_teammates?: (order_by | null),camera_required?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),halftime_pausematch?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null),veto_pick_timeout?: (order_by | null)} /** primary key columns input for table: match_options */ @@ -54553,7 +54911,7 @@ export interface match_options_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "match_options" */ -export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate stddev on columns */ @@ -54610,7 +54968,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} +export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),camera_allow_teammates?: (Scalars['Boolean'] | null),camera_required?: (Scalars['Boolean'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null),veto_pick_timeout?: (Scalars['Int'] | null)} /** aggregate sum on columns */ @@ -56800,6 +57158,12 @@ export interface mutation_rootGenqlSelection{ where: maps_bool_exp} }) /** delete single row from the table: "maps" */ delete_maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_camera_tokens" */ + delete_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_camera_tokens_bool_exp} }) + /** delete single row from the table: "match_camera_tokens" */ + delete_match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "match_clips" */ delete_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -58232,6 +58596,18 @@ export interface mutation_rootGenqlSelection{ object: maps_insert_input, /** upsert condition */ on_conflict?: (maps_on_conflict | null)} }) + /** insert data into the table: "match_camera_tokens" */ + insert_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_camera_tokens_insert_input[], + /** upsert condition */ + on_conflict?: (match_camera_tokens_on_conflict | null)} }) + /** insert a single row into the table: "match_camera_tokens" */ + insert_match_camera_tokens_one?: (match_camera_tokensGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_camera_tokens_insert_input, + /** upsert condition */ + on_conflict?: (match_camera_tokens_on_conflict | null)} }) /** insert data into the table: "match_clips" */ insert_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -60681,6 +61057,24 @@ export interface mutation_rootGenqlSelection{ update_maps_many?: (maps_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: maps_updates[]} }) + /** update data of the table: "match_camera_tokens" */ + update_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_camera_tokens_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_camera_tokens_set_input | null), + /** filter the rows which have to be updated */ + where: match_camera_tokens_bool_exp} }) + /** update single row of the table: "match_camera_tokens" */ + update_match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_camera_tokens_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_camera_tokens_set_input | null), pk_columns: match_camera_tokens_pk_columns_input} }) + /** update multiples rows of table: "match_camera_tokens" */ + update_match_camera_tokens_many?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_camera_tokens_updates[]} }) /** update data of the table: "match_clips" */ update_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -75951,6 +76345,32 @@ export interface query_rootGenqlSelection{ where?: (maps_bool_exp | null)} }) /** fetch data from the table: "maps" using primary key columns */ maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_camera_tokens" */ + match_camera_tokens?: (match_camera_tokensGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), + /** filter the rows returned */ + where?: (match_camera_tokens_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_camera_tokens" */ + match_camera_tokens_aggregate?: (match_camera_tokens_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), + /** filter the rows returned */ + where?: (match_camera_tokens_bool_exp | null)} }) + /** fetch data from the table: "match_camera_tokens" using primary key columns */ + match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ match_clips?: (match_clipsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -82947,6 +83367,40 @@ export interface subscription_rootGenqlSelection{ cursor: (maps_stream_cursor_input | null)[], /** filter the rows returned */ where?: (maps_bool_exp | null)} }) + /** fetch data from the table: "match_camera_tokens" */ + match_camera_tokens?: (match_camera_tokensGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), + /** filter the rows returned */ + where?: (match_camera_tokens_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_camera_tokens" */ + match_camera_tokens_aggregate?: (match_camera_tokens_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), + /** filter the rows returned */ + where?: (match_camera_tokens_bool_exp | null)} }) + /** fetch data from the table: "match_camera_tokens" using primary key columns */ + match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_camera_tokens" */ + match_camera_tokens_stream?: (match_camera_tokensGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_camera_tokens_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_camera_tokens_bool_exp | null)} }) /** An array relationship */ match_clips?: (match_clipsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -106856,6 +107310,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const match_camera_tokens_possibleTypes: string[] = ['match_camera_tokens'] + export const ismatch_camera_tokens = (obj?: { __typename?: any } | null): obj is match_camera_tokens => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens"') + return match_camera_tokens_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_aggregate_possibleTypes: string[] = ['match_camera_tokens_aggregate'] + export const ismatch_camera_tokens_aggregate = (obj?: { __typename?: any } | null): obj is match_camera_tokens_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_aggregate"') + return match_camera_tokens_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_aggregate_fields_possibleTypes: string[] = ['match_camera_tokens_aggregate_fields'] + export const ismatch_camera_tokens_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_aggregate_fields"') + return match_camera_tokens_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_avg_fields_possibleTypes: string[] = ['match_camera_tokens_avg_fields'] + export const ismatch_camera_tokens_avg_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_avg_fields"') + return match_camera_tokens_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_max_fields_possibleTypes: string[] = ['match_camera_tokens_max_fields'] + export const ismatch_camera_tokens_max_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_max_fields"') + return match_camera_tokens_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_min_fields_possibleTypes: string[] = ['match_camera_tokens_min_fields'] + export const ismatch_camera_tokens_min_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_min_fields"') + return match_camera_tokens_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_mutation_response_possibleTypes: string[] = ['match_camera_tokens_mutation_response'] + export const ismatch_camera_tokens_mutation_response = (obj?: { __typename?: any } | null): obj is match_camera_tokens_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_mutation_response"') + return match_camera_tokens_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_stddev_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_fields'] + export const ismatch_camera_tokens_stddev_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_fields"') + return match_camera_tokens_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_stddev_pop_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_pop_fields'] + export const ismatch_camera_tokens_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_pop_fields"') + return match_camera_tokens_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_stddev_samp_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_samp_fields'] + export const ismatch_camera_tokens_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_samp_fields"') + return match_camera_tokens_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_sum_fields_possibleTypes: string[] = ['match_camera_tokens_sum_fields'] + export const ismatch_camera_tokens_sum_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_sum_fields"') + return match_camera_tokens_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_var_pop_fields_possibleTypes: string[] = ['match_camera_tokens_var_pop_fields'] + export const ismatch_camera_tokens_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_var_pop_fields"') + return match_camera_tokens_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_var_samp_fields_possibleTypes: string[] = ['match_camera_tokens_var_samp_fields'] + export const ismatch_camera_tokens_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_var_samp_fields"') + return match_camera_tokens_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_camera_tokens_variance_fields_possibleTypes: string[] = ['match_camera_tokens_variance_fields'] + export const ismatch_camera_tokens_variance_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_variance_fields"') + return match_camera_tokens_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const match_clips_possibleTypes: string[] = ['match_clips'] export const ismatch_clips = (obj?: { __typename?: any } | null): obj is match_clips => { if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips"') @@ -120107,6 +120673,28 @@ export const enumMapsUpdateColumn = { workshop_map_id: 'workshop_map_id' as const } +export const enumMatchCameraTokensConstraint = { + match_camera_tokens_match_id_steam_id_key: 'match_camera_tokens_match_id_steam_id_key' as const, + match_camera_tokens_pkey: 'match_camera_tokens_pkey' as const, + match_camera_tokens_token_key: 'match_camera_tokens_token_key' as const +} + +export const enumMatchCameraTokensSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + steam_id: 'steam_id' as const, + token: 'token' as const +} + +export const enumMatchCameraTokensUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + steam_id: 'steam_id' as const, + token: 'token' as const +} + export const enumMatchClipsConstraint = { match_clips_pkey: 'match_clips_pkey' as const } @@ -120444,6 +121032,8 @@ export const enumMatchOptionsSelectColumn = { auto_cancel_duration: 'auto_cancel_duration' as const, auto_cancellation: 'auto_cancellation' as const, best_of: 'best_of' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, @@ -120474,6 +121064,8 @@ export const enumMatchOptionsUpdateColumn = { auto_cancel_duration: 'auto_cancel_duration' as const, auto_cancellation: 'auto_cancellation' as const, best_of: 'best_of' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, diff --git a/generated/types.ts b/generated/types.ts index 7842f8e8..498c02c6 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -318,357 +318,360 @@ export default { 2326, 2327, 2331, - 2343, + 2338, + 2347, 2355, - 2367, - 2386, - 2401, + 2370, + 2382, + 2394, 2413, - 2433, - 2444, - 2445, - 2446, - 2458, - 2476, - 2488, - 2500, - 2521, - 2537, - 2538, - 2539, - 2551, - 2569, - 2580, - 2592, - 2610, - 2620, - 2621, - 2622, - 2626, - 2638, - 2650, - 2662, - 2675, - 2685, - 2693, - 2708, - 2718, - 2719, + 2428, + 2440, + 2460, + 2471, + 2472, + 2473, + 2485, + 2503, + 2515, + 2527, + 2548, + 2564, + 2565, + 2566, + 2578, + 2596, + 2607, + 2619, + 2637, + 2647, + 2648, + 2649, + 2653, + 2665, + 2677, + 2689, + 2702, + 2712, 2720, - 2724, - 2739, - 2754, - 2755, - 2756, - 2768, - 2780, - 2788, - 2792, - 2804, - 2816, - 2828, - 2840, - 2848, - 2852, + 2735, + 2745, + 2746, + 2747, + 2751, + 2766, + 2781, + 2782, + 2783, + 2795, + 2807, + 2815, + 2819, + 2831, + 2843, + 2855, + 2867, + 2875, 2879, - 2880, - 2881, - 2905, - 2914, - 2922, - 2940, - 2955, - 2956, - 2957, - 2969, - 2977, - 2979, - 2990, - 3001, - 3013, - 3026, - 3036, - 3044, - 3054, + 2906, + 2907, + 2908, + 2932, + 2941, + 2949, + 2967, + 2982, + 2983, + 2984, + 2996, + 3004, + 3006, + 3017, + 3028, + 3040, + 3053, 3063, 3071, - 3086, - 3097, - 3109, - 3129, - 3140, - 3141, - 3142, - 3154, - 3170, - 3190, - 3201, - 3213, - 3226, - 3235, - 3243, - 3258, - 3269, - 3281, - 3301, - 3312, - 3313, - 3314, - 3326, - 3356, - 3367, - 3379, - 3387, - 3398, - 3399, - 3400, - 3412, - 3431, - 3453, - 3464, - 3476, - 3492, - 3518, + 3081, + 3090, + 3098, + 3113, + 3124, + 3136, + 3156, + 3167, + 3168, + 3169, + 3181, + 3197, + 3217, + 3228, + 3240, + 3253, + 3262, + 3270, + 3285, + 3296, + 3308, + 3328, + 3339, + 3340, + 3341, + 3353, + 3383, + 3394, + 3406, + 3414, + 3425, + 3426, + 3427, + 3439, + 3458, + 3480, + 3491, + 3503, + 3519, 3545, - 3556, - 3568, - 3584, - 3604, - 3615, - 3627, - 3645, - 3656, - 3668, - 3696, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3727, + 3572, + 3583, + 3595, + 3611, + 3631, + 3642, + 3654, + 3672, + 3683, + 3695, + 3723, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, 3740, - 3750, - 3758, - 3769, - 3782, - 3790, - 3800, + 3741, + 3742, + 3754, + 3767, + 3777, + 3785, + 3796, 3809, 3817, - 3832, - 3843, - 3855, - 3873, - 3884, - 3896, - 3920, - 3942, - 3952, - 3960, - 3970, + 3827, + 3836, + 3844, + 3859, + 3870, + 3882, + 3900, + 3911, + 3923, + 3947, + 3969, 3979, 3987, - 4001, - 4011, - 4019, - 4029, + 3997, + 4006, + 4014, + 4028, 4038, 4046, - 4063, - 4075, - 4076, - 4077, - 4089, - 4101, - 4109, - 4113, - 4115, - 4125, - 4135, - 4139, - 4146, - 4156, - 4164, - 4174, + 4056, + 4065, + 4073, + 4090, + 4102, + 4103, + 4104, + 4116, + 4128, + 4136, + 4140, + 4142, + 4152, + 4162, + 4166, + 4173, 4183, 4191, - 4206, - 4217, - 4229, - 4249, - 4260, - 4261, - 4262, - 4274, + 4201, + 4210, + 4218, + 4233, + 4244, + 4256, + 4276, 4287, - 4296, - 4304, - 4319, - 4329, - 4330, + 4288, + 4289, + 4301, + 4314, + 4323, 4331, - 4335, - 4347, + 4346, + 4356, + 4357, 4358, - 4370, - 4390, - 4402, - 4403, - 4404, - 4416, + 4362, + 4374, + 4385, + 4397, + 4417, 4429, - 4439, - 4447, - 4457, + 4430, + 4431, + 4443, + 4456, 4466, 4474, - 4491, - 4503, - 4504, - 4505, - 4517, - 4525, - 4526, - 4538, - 4550, - 4562, - 4582, - 4594, - 4595, - 4596, - 4608, - 4624, - 4634, - 4638, - 4648, - 4658, - 4662, - 4674, + 4484, + 4493, + 4501, + 4518, + 4530, + 4531, + 4532, + 4544, + 4552, + 4553, + 4565, + 4577, + 4589, + 4609, + 4621, + 4622, + 4623, + 4635, + 4651, + 4661, + 4665, + 4675, 4685, - 4697, - 4715, - 4726, - 4738, - 4756, - 4767, - 4779, - 4800, - 4816, - 4817, - 4818, - 4830, - 4848, - 4859, - 4871, - 4889, - 4900, - 4912, - 4930, - 4942, - 4954, - 4984, - 4996, - 4997, - 4998, - 4999, - 5000, - 5001, - 5002, - 5003, - 5004, - 5005, - 5006, - 5018, + 4689, + 4701, + 4712, + 4724, + 4742, + 4753, + 4765, + 4783, + 4794, + 4806, + 4827, + 4843, + 4844, + 4845, + 4857, + 4875, + 4886, + 4898, + 4916, + 4927, + 4939, + 4957, + 4969, + 4981, + 5011, + 5023, + 5024, + 5025, 5026, - 5055, - 5056, - 5057, - 5058, - 5059, - 5060, - 5061, - 5062, - 5063, + 5027, + 5028, + 5029, + 5030, + 5031, + 5032, + 5033, + 5045, + 5053, + 5082, + 5083, + 5084, + 5085, + 5086, + 5087, 5088, - 5114, - 5157, - 5158, - 5159, - 5160, - 5161, - 5162, - 5163, - 5164, - 5165, - 5194, - 5222, - 5247, - 5265, - 5283, - 5304, - 5324, - 5350, - 5375, - 5393, - 5429, - 5430, - 5431, - 5432, - 5433, - 5434, - 5435, - 5436, - 5437, + 5089, + 5090, + 5115, + 5141, + 5184, + 5185, + 5186, + 5187, + 5188, + 5189, + 5190, + 5191, + 5192, + 5221, + 5249, + 5274, + 5292, + 5310, + 5331, + 5351, + 5377, + 5402, + 5420, + 5456, + 5457, + 5458, + 5459, + 5460, + 5461, 5462, - 5480, - 5498, - 5526, + 5463, + 5464, + 5489, + 5507, + 5525, 5553, - 5571, - 5589, - 5615, - 5640, - 5658, - 5676, + 5580, + 5598, + 5616, + 5642, + 5667, + 5685, 5703, - 5704, - 5705, - 5718, - 5738, - 5758, - 5788, - 5800, - 5801, - 5802, - 5803, - 5804, - 5805, - 5806, - 5807, - 5808, - 5820, - 5854, - 5855, - 5856, - 5857, - 5858, - 5859, - 5860, - 5861, - 5862, - 5905, - 5906, - 5907, - 5908, - 5909, - 5910, - 5911, - 5912, - 5913 + 5730, + 5731, + 5732, + 5745, + 5765, + 5785, + 5815, + 5827, + 5828, + 5829, + 5830, + 5831, + 5832, + 5833, + 5834, + 5835, + 5847, + 5881, + 5882, + 5883, + 5884, + 5885, + 5886, + 5887, + 5888, + 5889, + 5932, + 5933, + 5934, + 5935, + 5936, + 5937, + 5938, + 5939, + 5940 ], "types": { "ActiveConnection": { @@ -685,7 +688,7 @@ export default { 80 ], "query_start": [ - 4525 + 4552 ], "state": [ 80 @@ -714,7 +717,7 @@ export default { 80 ], "query_start": [ - 4525 + 4552 ], "state": [ 80 @@ -754,22 +757,22 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -781,7 +784,7 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ 80 @@ -792,7 +795,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 5026 + 5053 ], "awarded_by_steam_id": [ 80 @@ -801,7 +804,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "note": [ 80 @@ -816,13 +819,13 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -934,7 +937,7 @@ export default { 80 ], "match_map_id": [ - 5026 + 5053 ], "output": [ 8 @@ -994,7 +997,7 @@ export default { }, "CpuStat": { "time": [ - 4525 + 4552 ], "total": [ 257 @@ -1011,7 +1014,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 5026 + 5053 ], "success": [ 5 @@ -1022,7 +1025,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 5026 + 5053 ], "__typename": [ 80 @@ -1030,7 +1033,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 5026 + 5053 ], "__typename": [ 80 @@ -1186,7 +1189,7 @@ export default { 22 ], "time": [ - 4525 + 4552 ], "__typename": [ 80 @@ -1212,7 +1215,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mode": [ 80 @@ -1291,7 +1294,7 @@ export default { 5 ], "modified": [ - 4525 + 4552 ], "name": [ 80 @@ -1395,7 +1398,7 @@ export default { 34 ], "time": [ - 4525 + 4552 ], "__typename": [ 80 @@ -1637,7 +1640,7 @@ export default { 80 ], "player": [ - 3937 + 3964 ], "profile_url": [ 80 @@ -1654,7 +1657,7 @@ export default { }, "MemoryStat": { "time": [ - 4525 + 4552 ], "total": [ 257 @@ -1671,7 +1674,7 @@ export default { 51 ], "time": [ - 4525 + 4552 ], "__typename": [ 80 @@ -1691,7 +1694,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "published_at": [ 80 @@ -2449,16 +2452,16 @@ export default { 40 ], "last_analyze": [ - 4525 + 4552 ], "last_autoanalyze": [ - 4525 + 4552 ], "last_autovacuum": [ - 4525 + 4552 ], "last_vacuum": [ - 4525 + 4552 ], "n_dead_tup": [ 40 @@ -2674,7 +2677,7 @@ export default { 80 ], "next_start": [ - 4525 + 4552 ], "__typename": [ 80 @@ -2696,13 +2699,13 @@ export default { }, "TournamentAward": { "award_id": [ - 5026 + 5053 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -2714,7 +2717,7 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2722,7 +2725,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 5026 + 5053 ], "depth": [ 40 @@ -2731,7 +2734,7 @@ export default { 5 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 @@ -2774,10 +2777,10 @@ export default { }, "_map_pool": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2828,10 +2831,10 @@ export default { 103 ], "map_id": [ - 5028 + 5055 ], "map_pool_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -2840,10 +2843,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2851,10 +2854,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2862,10 +2865,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2898,10 +2901,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2979 + 3006 ], "map_pool_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -2909,10 +2912,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2921,10 +2924,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2943,10 +2946,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -2967,16 +2970,16 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3073,7 +3076,7 @@ export default { 127 ], "count": [ - 2979 + 3006 ], "max": [ 133 @@ -3127,7 +3130,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3144,16 +3147,16 @@ export default { 128 ], "abandoned_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "steam_id": [ 259 @@ -3173,16 +3176,16 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3193,13 +3196,13 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3210,16 +3213,16 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3227,13 +3230,13 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3244,16 +3247,16 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3286,19 +3289,19 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3306,7 +3309,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -3315,13 +3318,13 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3340,7 +3343,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3356,7 +3359,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3372,7 +3375,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3391,13 +3394,13 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -3416,7 +3419,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3447,7 +3450,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3463,7 +3466,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3479,7 +3482,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3487,16 +3490,16 @@ export default { }, "api_keys": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3582,16 +3585,16 @@ export default { 164 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "label": [ 82 ], "last_used_at": [ - 4527 + 4554 ], "steam_id": [ 259 @@ -3611,16 +3614,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3631,16 +3634,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3651,16 +3654,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3696,19 +3699,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "last_used_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -3716,7 +3719,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -3725,16 +3728,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3780,16 +3783,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "last_used_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -3847,7 +3850,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -3858,31 +3861,31 @@ export default { 229 ], "award_id": [ - 5026 + 5053 ], "awarded_by": [ - 3937 + 3964 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season": [ 2045 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -3894,40 +3897,40 @@ export default { 80 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 ], "season": [ - 3996 + 4023 ], "season_id": [ - 5026 + 5053 ], "source": [ 514 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4962 + 4989 ], "tournament_award": [ - 4528 + 4555 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team": [ - 4920 + 4947 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4021,7 +4024,7 @@ export default { 196 ], "count": [ - 2979 + 3006 ], "max": [ 202 @@ -4081,13 +4084,13 @@ export default { }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4107,31 +4110,31 @@ export default { 233 ], "award_id": [ - 5028 + 5055 ], "awarded_by": [ - 3941 + 3968 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "id": [ - 5028 + 5055 ], "league_season": [ 2050 ], "league_season_id": [ - 5028 + 5055 ], "note": [ 82 @@ -4143,40 +4146,40 @@ export default { 82 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 ], "season": [ - 4000 + 4027 ], "season_id": [ - 5028 + 5055 ], "source": [ 515 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "tournament": [ - 4983 + 5010 ], "tournament_award": [ - 4537 + 4564 ], "tournament_id": [ - 5028 + 5055 ], "tournament_team": [ - 4929 + 4956 ], "tournament_team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -4202,31 +4205,31 @@ export default { 240 ], "award_id": [ - 5026 + 5053 ], "awarded_by": [ - 3948 + 3975 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season": [ 2060 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -4235,40 +4238,40 @@ export default { 40 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 ], "season": [ - 4007 + 4034 ], "season_id": [ - 5026 + 5053 ], "source": [ 514 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4992 + 5019 ], "tournament_award": [ - 4546 + 4573 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team": [ - 4938 + 4965 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4276,22 +4279,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 5026 + 5053 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -4306,16 +4309,16 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4323,46 +4326,46 @@ export default { }, "award_recipients_max_order_by": { "award_id": [ - 2979 + 3006 ], "awarded_by_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "note": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "placement_tier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4370,22 +4373,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 5026 + 5053 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -4400,16 +4403,16 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4417,46 +4420,46 @@ export default { }, "award_recipients_min_order_by": { "award_id": [ - 2979 + 3006 ], "awarded_by_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "note": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "placement_tier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4492,76 +4495,76 @@ export default { 242 ], "award_id": [ - 2979 + 3006 ], "awarded_by": [ - 3950 + 3977 ], "awarded_by_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season": [ 2062 ], "league_season_id": [ - 2979 + 3006 ], "note": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "placement_tier": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "season": [ - 4009 + 4036 ], "season_id": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_award": [ - 4548 + 4575 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team": [ - 4940 + 4967 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4569,7 +4572,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4578,22 +4581,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5026 + 5053 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -4605,19 +4608,19 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "source": [ 514 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4639,13 +4642,13 @@ export default { }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4667,13 +4670,13 @@ export default { }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4695,13 +4698,13 @@ export default { }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4720,22 +4723,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5026 + 5053 ], "awarded_by_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -4750,19 +4753,19 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "source": [ 514 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -4784,13 +4787,13 @@ export default { }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4827,13 +4830,13 @@ export default { }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4855,13 +4858,13 @@ export default { }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4883,13 +4886,13 @@ export default { }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -4900,10 +4903,10 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by": [ - 3937 + 3964 ], "created_by_steam_id": [ 257 @@ -4915,10 +4918,10 @@ export default { 1661 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -4927,7 +4930,7 @@ export default { 2045 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 @@ -4977,10 +4980,10 @@ export default { } ], "season": [ - 3996 + 4023 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -4992,13 +4995,13 @@ export default { 534 ], "tournament": [ - 4962 + 4989 ], "tournament_configs": [ - 4528, + 4555, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -5008,19 +5011,19 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_configs_aggregate": [ - 4529, + 4556, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -5030,19 +5033,19 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5131,10 +5134,10 @@ export default { 6 ], "created_at": [ - 4527 + 4554 ], "created_by": [ - 3941 + 3968 ], "created_by_steam_id": [ 259 @@ -5146,10 +5149,10 @@ export default { 1665 ], "event_id": [ - 5028 + 5055 ], "id": [ - 5028 + 5055 ], "image_url": [ 82 @@ -5158,7 +5161,7 @@ export default { 2050 ], "league_season_id": [ - 5028 + 5055 ], "name": [ 82 @@ -5170,10 +5173,10 @@ export default { 190 ], "season": [ - 4000 + 4027 ], "season_id": [ - 5028 + 5055 ], "silhouette": [ 41 @@ -5185,19 +5188,19 @@ export default { 535 ], "tournament": [ - 4983 + 5010 ], "tournament_configs": [ - 4537 + 4564 ], "tournament_configs_aggregate": [ - 4530 + 4557 ], "tournament_id": [ - 5028 + 5055 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -5220,10 +5223,10 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by": [ - 3948 + 3975 ], "created_by_steam_id": [ 257 @@ -5235,10 +5238,10 @@ export default { 1672 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -5247,7 +5250,7 @@ export default { 2060 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 @@ -5256,10 +5259,10 @@ export default { 194 ], "season": [ - 4007 + 4034 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -5271,16 +5274,16 @@ export default { 534 ], "tournament": [ - 4992 + 5019 ], "tournament_configs": [ - 4534 + 4561 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5288,7 +5291,7 @@ export default { }, "awards_max_fields": { "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -5297,22 +5300,22 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -5321,10 +5324,10 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5332,7 +5335,7 @@ export default { }, "awards_min_fields": { "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -5341,22 +5344,22 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -5365,10 +5368,10 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5412,70 +5415,70 @@ export default { }, "awards_order_by": { "allow_multiple": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "created_by": [ - 3950 + 3977 ], "created_by_steam_id": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "image_url": [ - 2979 + 3006 ], "league_season": [ 2062 ], "league_season_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "recipients_aggregate": [ 193 ], "season": [ - 4009 + 4036 ], "season_id": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "system_key": [ - 2979 + 3006 ], "tier": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_configs_aggregate": [ - 4533 + 4560 ], "tournament_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -5483,7 +5486,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -5495,7 +5498,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -5504,22 +5507,22 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -5531,10 +5534,10 @@ export default { 534 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5589,7 +5592,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -5598,22 +5601,22 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80 ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -5625,10 +5628,10 @@ export default { 534 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -5799,13 +5802,13 @@ export default { }, "clip_render_jobs": { "clip": [ - 2333 + 2360 ], "clip_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -5817,31 +5820,31 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map": [ - 2628 + 2655 ], "match_map_demo": [ - 2508 + 2535 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "paused": [ 5 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -5869,7 +5872,7 @@ export default { } ], "user": [ - 3937 + 3964 ], "user_steam_id": [ 257 @@ -6006,7 +6009,7 @@ export default { 273 ], "count": [ - 2979 + 3006 ], "max": [ 282 @@ -6077,13 +6080,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6100,13 +6103,13 @@ export default { 274 ], "clip": [ - 2342 + 2369 ], "clip_id": [ - 5028 + 5055 ], "created_at": [ - 4527 + 4554 ], "error_message": [ 82 @@ -6118,31 +6121,31 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4527 + 4554 ], "match_map": [ - 2637 + 2664 ], "match_map_demo": [ - 2520 + 2547 ], "match_map_demo_id": [ - 5028 + 5055 ], "match_map_id": [ - 5028 + 5055 ], "paused": [ 6 ], "progress": [ - 2978 + 3005 ], "session_token": [ 82 @@ -6160,7 +6163,7 @@ export default { 1844 ], "user": [ - 3941 + 3968 ], "user_steam_id": [ 259 @@ -6205,7 +6208,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2977 + 3004 ], "sort_index": [ 40 @@ -6219,13 +6222,13 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2351 + 2378 ], "clip_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -6237,31 +6240,31 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map": [ - 2646 + 2673 ], "match_map_demo": [ - 2532 + 2559 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "paused": [ 5 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -6279,7 +6282,7 @@ export default { 1842 ], "user": [ - 3948 + 3975 ], "user_steam_id": [ 257 @@ -6290,10 +6293,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -6302,22 +6305,22 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -6337,46 +6340,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "progress": [ - 2979 + 3006 ], "session_token": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6384,10 +6387,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -6396,22 +6399,22 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -6431,46 +6434,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "progress": [ - 2979 + 3006 ], "session_token": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6503,70 +6506,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2353 + 2380 ], "clip_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node": [ 1744 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_demo": [ - 2534 + 2561 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "paused": [ - 2979 + 3006 ], "progress": [ - 2979 + 3006 ], "session_token": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "spec": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "status_history": [ - 2979 + 3006 ], "user": [ - 3950 + 3977 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6574,7 +6577,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -6596,10 +6599,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": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -6608,25 +6611,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "paused": [ 5 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -6666,13 +6669,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6694,13 +6697,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6722,13 +6725,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6747,10 +6750,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -6759,25 +6762,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "paused": [ 5 ], "progress": [ - 2977 + 3004 ], "session_token": [ 80 @@ -6803,7 +6806,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2977 + 3004 ], "sort_index": [ 40 @@ -6817,13 +6820,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6875,13 +6878,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6903,13 +6906,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6931,13 +6934,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2979 + 3006 ], "sort_index": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -6945,7 +6948,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -6954,7 +6957,7 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4526 + 4553 ], "deployments": [ 1842, @@ -6974,7 +6977,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_default": [ 5 @@ -7007,7 +7010,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7098,7 +7101,7 @@ export default { 319 ], "created_at": [ - 4527 + 4554 ], "deployments": [ 1844 @@ -7113,7 +7116,7 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "is_default": [ 6 @@ -7146,7 +7149,7 @@ export default { 82 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -7187,7 +7190,7 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4526 + 4553 ], "deployments": [ 1842 @@ -7202,7 +7205,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_default": [ 5 @@ -7235,7 +7238,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7243,7 +7246,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4526 + 4553 ], "exposed_module": [ 80 @@ -7252,7 +7255,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "manifest_url": [ 80 @@ -7279,7 +7282,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7287,7 +7290,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4526 + 4553 ], "exposed_module": [ 80 @@ -7296,7 +7299,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "manifest_url": [ 80 @@ -7323,7 +7326,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7356,55 +7359,55 @@ export default { }, "custom_pages_order_by": { "created_at": [ - 2979 + 3006 ], "deployments": [ - 2979 + 3006 ], "enabled": [ - 2979 + 3006 ], "exposed_module": [ - 2979 + 3006 ], "icon": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_default": [ - 2979 + 3006 ], "manifest_url": [ - 2979 + 3006 ], "nav_group": [ - 2979 + 3006 ], "nav_order": [ - 2979 + 3006 ], "profile_tab_label": [ - 2979 + 3006 ], "remote_entry_url": [ - 2979 + 3006 ], "remote_scope": [ - 2979 + 3006 ], "required_role": [ - 2979 + 3006 ], "slug": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -7412,7 +7415,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -7429,7 +7432,7 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4526 + 4553 ], "deployments": [ 1842 @@ -7444,7 +7447,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_default": [ 5 @@ -7477,7 +7480,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7520,7 +7523,7 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "deployments": [ 1842 @@ -7535,7 +7538,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_default": [ 5 @@ -7568,7 +7571,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -7638,10 +7641,10 @@ export default { }, "db_backups": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7730,10 +7733,10 @@ export default { 350 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "name": [ 82 @@ -7756,10 +7759,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7773,10 +7776,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7790,10 +7793,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7832,16 +7835,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "__typename": [ 80 @@ -7849,7 +7852,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -7858,10 +7861,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7910,10 +7913,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -7977,22 +7980,22 @@ export default { 5 ], "captain": [ - 3937 + 3964 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "draft_game": [ 463 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "is_organizer": [ 5 @@ -8001,7 +8004,7 @@ export default { 40 ], "picked": [ - 3937 + 3964 ], "picked_steam_id": [ 257 @@ -8138,7 +8141,7 @@ export default { 383 ], "count": [ - 2979 + 3006 ], "max": [ 389 @@ -8198,13 +8201,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8224,22 +8227,22 @@ export default { 6 ], "captain": [ - 3941 + 3968 ], "captain_steam_id": [ 259 ], "created_at": [ - 4527 + 4554 ], "draft_game": [ 474 ], "draft_game_id": [ - 5028 + 5055 ], "id": [ - 5028 + 5055 ], "is_organizer": [ 6 @@ -8248,7 +8251,7 @@ export default { 41 ], "picked": [ - 3941 + 3968 ], "picked_steam_id": [ 259 @@ -8277,28 +8280,28 @@ export default { 5 ], "captain": [ - 3948 + 3975 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "draft_game": [ 483 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "lineup": [ 40 ], "picked": [ - 3948 + 3975 ], "picked_steam_id": [ 257 @@ -8312,13 +8315,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "lineup": [ 40 @@ -8332,22 +8335,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "draft_game_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8358,13 +8361,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "lineup": [ 40 @@ -8378,22 +8381,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "draft_game_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8426,37 +8429,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2979 + 3006 ], "captain": [ - 3950 + 3977 ], "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "draft_game": [ 485 ], "draft_game_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked": [ - 3950 + 3977 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8464,7 +8467,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -8481,13 +8484,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "lineup": [ 40 @@ -8515,13 +8518,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8543,13 +8546,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8571,13 +8574,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8602,13 +8605,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "draft_game_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "lineup": [ 40 @@ -8636,13 +8639,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8679,13 +8682,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8707,13 +8710,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8735,13 +8738,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "picked_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -8752,7 +8755,7 @@ export default { 463 ], "draft_game_id": [ - 5026 + 5053 ], "e_draft_game_player_status": [ 632 @@ -8767,7 +8770,7 @@ export default { 5 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -8776,7 +8779,7 @@ export default { 40 ], "player": [ - 3937 + 3964 ], "status": [ 637 @@ -8916,7 +8919,7 @@ export default { 428 ], "count": [ - 2979 + 3006 ], "max": [ 434 @@ -8979,16 +8982,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9008,7 +9011,7 @@ export default { 474 ], "draft_game_id": [ - 5028 + 5055 ], "e_draft_game_player_status": [ 635 @@ -9023,7 +9026,7 @@ export default { 6 ], "joined_at": [ - 4527 + 4554 ], "lineup": [ 41 @@ -9032,7 +9035,7 @@ export default { 41 ], "player": [ - 3941 + 3968 ], "status": [ 638 @@ -9067,7 +9070,7 @@ export default { 483 ], "draft_game_id": [ - 5026 + 5053 ], "e_draft_game_player_status": [ 643 @@ -9079,7 +9082,7 @@ export default { 5 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -9088,7 +9091,7 @@ export default { 40 ], "player": [ - 3948 + 3975 ], "status": [ 637 @@ -9102,13 +9105,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 5026 + 5053 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -9125,22 +9128,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2979 + 3006 ], "elo_snapshot": [ - 2979 + 3006 ], "joined_at": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9148,13 +9151,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 5026 + 5053 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -9171,22 +9174,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2979 + 3006 ], "elo_snapshot": [ - 2979 + 3006 ], "joined_at": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9222,37 +9225,37 @@ export default { 485 ], "draft_game_id": [ - 2979 + 3006 ], "e_draft_game_player_status": [ 645 ], "elo_snapshot": [ - 2979 + 3006 ], "is_captain": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "joined_at": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "status": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9260,7 +9263,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -9274,7 +9277,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": [ - 5026 + 5053 ], "elo_snapshot": [ 40 @@ -9283,7 +9286,7 @@ export default { 5 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -9320,16 +9323,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9354,16 +9357,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9388,16 +9391,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9416,7 +9419,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5026 + 5053 ], "elo_snapshot": [ 40 @@ -9425,7 +9428,7 @@ export default { 5 ], "joined_at": [ - 4526 + 4553 ], "lineup": [ 40 @@ -9462,16 +9465,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9511,16 +9514,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9545,16 +9548,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9579,16 +9582,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2979 + 3006 ], "lineup": [ - 2979 + 3006 ], "pick_order": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -9605,7 +9608,7 @@ export default { 574 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 @@ -9629,22 +9632,22 @@ export default { 860 ], "expires_at": [ - 4526 + 4553 ], "host": [ - 3937 + 3964 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "inner_squad": [ 5 ], "invite_code": [ - 5026 + 5053 ], "is_organizer": [ 5 @@ -9653,16 +9656,16 @@ export default { 2285 ], "map_pool_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -9674,7 +9677,7 @@ export default { 616 ], "options": [ - 2670 + 2697 ], "pattern": [ 1842, @@ -9685,7 +9688,7 @@ export default { } ], "pick_deadline": [ - 4526 + 4553 ], "picks": [ 373, @@ -9782,28 +9785,28 @@ export default { 5 ], "scheduled_at": [ - 4526 + 4553 ], "status": [ 658 ], "team_1": [ - 4479 + 4506 ], "team_1_id": [ - 5026 + 5053 ], "team_2": [ - 4479 + 4506 ], "team_2_id": [ - 5026 + 5053 ], "type": [ 1029 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -9937,7 +9940,7 @@ export default { 473 ], "count": [ - 2979 + 3006 ], "max": [ 479 @@ -10003,19 +10006,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10041,7 +10044,7 @@ export default { 575 ], "created_at": [ - 4527 + 4554 ], "current_pick_lineup": [ 41 @@ -10065,22 +10068,22 @@ export default { 863 ], "expires_at": [ - 4527 + 4554 ], "host": [ - 3941 + 3968 ], "host_steam_id": [ 259 ], "id": [ - 5028 + 5055 ], "inner_squad": [ 6 ], "invite_code": [ - 5028 + 5055 ], "is_organizer": [ 6 @@ -10089,16 +10092,16 @@ export default { 2288 ], "map_pool_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_options_id": [ - 5028 + 5055 ], "max_elo": [ 41 @@ -10110,13 +10113,13 @@ export default { 617 ], "options": [ - 2674 + 2701 ], "pattern": [ 1844 ], "pick_deadline": [ - 4527 + 4554 ], "picks": [ 384 @@ -10137,28 +10140,28 @@ export default { 6 ], "scheduled_at": [ - 4527 + 4554 ], "status": [ 659 ], "team_1": [ - 4490 + 4517 ], "team_1_id": [ - 5028 + 5055 ], "team_2": [ - 4490 + 4517 ], "team_2_id": [ - 5028 + 5055 ], "type": [ 1030 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -10196,7 +10199,7 @@ export default { 574 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 @@ -10220,37 +10223,37 @@ export default { 871 ], "expires_at": [ - 4526 + 4553 ], "host": [ - 3948 + 3975 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "inner_squad": [ 5 ], "invite_code": [ - 5026 + 5053 ], "map_pool": [ 2294 ], "map_pool_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -10262,10 +10265,10 @@ export default { 616 ], "options": [ - 2681 + 2708 ], "pick_deadline": [ - 4526 + 4553 ], "picks": [ 381 @@ -10280,28 +10283,28 @@ export default { 5 ], "scheduled_at": [ - 4526 + 4553 ], "status": [ 658 ], "team_1": [ - 4499 + 4526 ], "team_1_id": [ - 5026 + 5053 ], "team_2": [ - 4499 + 4526 ], "team_2_id": [ - 5026 + 5053 ], "type": [ 1029 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -10312,31 +10315,31 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4526 + 4553 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "invite_code": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -10345,22 +10348,22 @@ export default { 40 ], "pick_deadline": [ - 4526 + 4553 ], "regions": [ 80 ], "scheduled_at": [ - 4526 + 4553 ], "team_1_id": [ - 5026 + 5053 ], "team_2_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -10368,58 +10371,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invite_code": [ - 2979 + 3006 ], "map_pool_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "pick_deadline": [ - 2979 + 3006 ], "regions": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "team_1_id": [ - 2979 + 3006 ], "team_2_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10430,31 +10433,31 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4526 + 4553 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "invite_code": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -10463,22 +10466,22 @@ export default { 40 ], "pick_deadline": [ - 4526 + 4553 ], "regions": [ 80 ], "scheduled_at": [ - 4526 + 4553 ], "team_1_id": [ - 5026 + 5053 ], "team_2_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -10486,58 +10489,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invite_code": [ - 2979 + 3006 ], "map_pool_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "pick_deadline": [ - 2979 + 3006 ], "regions": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "team_1_id": [ - 2979 + 3006 ], "team_2_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10581,22 +10584,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2979 + 3006 ], "capacity": [ - 2979 + 3006 ], "captain_selection": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "draft_order": [ - 2979 + 3006 ], "e_draft_game_captain_selection": [ 582 @@ -10614,58 +10617,58 @@ export default { 873 ], "expires_at": [ - 2979 + 3006 ], "host": [ - 3950 + 3977 ], "host_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "inner_squad": [ - 2979 + 3006 ], "invite_code": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "map_pool": [ 2296 ], "map_pool_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "mode": [ - 2979 + 3006 ], "options": [ - 2683 + 2710 ], "pattern": [ - 2979 + 3006 ], "pick_deadline": [ - 2979 + 3006 ], "picks_aggregate": [ 380 @@ -10674,34 +10677,34 @@ export default { 425 ], "regions": [ - 2979 + 3006 ], "require_approval": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "team_1": [ - 4501 + 4528 ], "team_1_id": [ - 2979 + 3006 ], "team_2": [ - 4501 + 4528 ], "team_2_id": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10709,7 +10712,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -10729,7 +10732,7 @@ export default { 574 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 @@ -10738,28 +10741,28 @@ export default { 595 ], "expires_at": [ - 4526 + 4553 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "inner_squad": [ 5 ], "invite_code": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -10771,7 +10774,7 @@ export default { 616 ], "pick_deadline": [ - 4526 + 4553 ], "regions": [ 80 @@ -10780,22 +10783,22 @@ export default { 5 ], "scheduled_at": [ - 4526 + 4553 ], "status": [ 658 ], "team_1_id": [ - 5026 + 5053 ], "team_2_id": [ - 5026 + 5053 ], "type": [ 1029 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -10823,19 +10826,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10863,19 +10866,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10903,19 +10906,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -10943,7 +10946,7 @@ export default { 574 ], "created_at": [ - 4526 + 4553 ], "current_pick_lineup": [ 40 @@ -10952,28 +10955,28 @@ export default { 595 ], "expires_at": [ - 4526 + 4553 ], "host_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "inner_squad": [ 5 ], "invite_code": [ - 5026 + 5053 ], "map_pool_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_elo": [ 40 @@ -10985,7 +10988,7 @@ export default { 616 ], "pick_deadline": [ - 4526 + 4553 ], "regions": [ 80 @@ -10994,22 +10997,22 @@ export default { 5 ], "scheduled_at": [ - 4526 + 4553 ], "status": [ 658 ], "team_1_id": [ - 5026 + 5053 ], "team_2_id": [ - 5026 + 5053 ], "type": [ 1029 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -11037,19 +11040,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11092,19 +11095,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11132,19 +11135,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11172,19 +11175,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2979 + 3006 ], "current_pick_lineup": [ - 2979 + 3006 ], "host_steam_id": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11337,10 +11340,10 @@ export default { }, "e_award_sources_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11547,10 +11550,10 @@ export default { }, "e_award_tiers_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11757,10 +11760,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -11978,10 +11981,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -12199,10 +12202,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -12420,10 +12423,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -12641,10 +12644,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -12862,10 +12865,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -13072,10 +13075,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -13282,10 +13285,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -13503,10 +13506,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -13713,10 +13716,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -13934,10 +13937,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -14155,10 +14158,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -14376,10 +14379,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -14597,10 +14600,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -14818,10 +14821,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -15039,10 +15042,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -15249,10 +15252,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -15470,10 +15473,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -15538,10 +15541,10 @@ export default { 80 ], "match_clips": [ - 2333, + 2360, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -15551,19 +15554,19 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_aggregate": [ - 2334, + 2361, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -15573,11 +15576,11 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], @@ -15636,10 +15639,10 @@ export default { 82 ], "match_clips": [ - 2342 + 2369 ], "match_clips_aggregate": [ - 2335 + 2362 ], "value": [ 82 @@ -15675,7 +15678,7 @@ export default { 80 ], "match_clips": [ - 2339 + 2366 ], "value": [ 80 @@ -15733,13 +15736,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2979 + 3006 ], "match_clips_aggregate": [ - 2338 + 2365 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -15804,10 +15807,10 @@ export default { 80 ], "match_maps": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -15817,19 +15820,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -15839,11 +15842,11 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], @@ -15902,10 +15905,10 @@ export default { 82 ], "match_maps": [ - 2637 + 2664 ], "match_maps_aggregate": [ - 2630 + 2657 ], "value": [ 82 @@ -15941,7 +15944,7 @@ export default { 80 ], "match_maps": [ - 2634 + 2661 ], "value": [ 80 @@ -16010,13 +16013,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2979 + 3006 ], "match_maps_aggregate": [ - 2633 + 2660 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -16223,10 +16226,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -16291,10 +16294,10 @@ export default { 80 ], "match_lineup_players": [ - 2421, + 2448, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16304,19 +16307,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match_lineup_players_aggregate": [ - 2422, + 2449, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16326,11 +16329,11 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], @@ -16389,10 +16392,10 @@ export default { 82 ], "match_lineup_players": [ - 2432 + 2459 ], "match_lineup_players_aggregate": [ - 2423 + 2450 ], "value": [ 82 @@ -16428,7 +16431,7 @@ export default { 80 ], "match_lineup_players": [ - 2429 + 2456 ], "value": [ 80 @@ -16486,13 +16489,13 @@ export default { }, "e_match_party_sources_order_by": { "description": [ - 2979 + 3006 ], "match_lineup_players_aggregate": [ - 2428 + 2455 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -16557,10 +16560,10 @@ export default { 80 ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -16570,19 +16573,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_aggregate": [ - 2795, + 2822, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -16592,11 +16595,11 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], @@ -16655,10 +16658,10 @@ export default { 82 ], "matches": [ - 2803 + 2830 ], "matches_aggregate": [ - 2796 + 2823 ], "value": [ 82 @@ -16694,7 +16697,7 @@ export default { 80 ], "matches": [ - 2800 + 2827 ], "value": [ 80 @@ -16763,13 +16766,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2979 + 3006 ], "matches_aggregate": [ - 2799 + 2826 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -17040,13 +17043,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2979 + 3006 ], "maps_aggregate": [ 2311 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -17253,10 +17256,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -17321,10 +17324,10 @@ export default { 80 ], "player_objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -17334,19 +17337,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -17356,11 +17359,11 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], @@ -17419,10 +17422,10 @@ export default { 82 ], "player_objectives": [ - 3544 + 3571 ], "player_objectives_aggregate": [ - 3537 + 3564 ], "value": [ 82 @@ -17458,7 +17461,7 @@ export default { 80 ], "player_objectives": [ - 3541 + 3568 ], "value": [ 80 @@ -17516,13 +17519,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2979 + 3006 ], "player_objectives_aggregate": [ - 3540 + 3567 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -17729,10 +17732,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -17939,10 +17942,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -18149,10 +18152,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -18370,10 +18373,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -18438,10 +18441,10 @@ export default { 80 ], "scrim_requests": [ - 4378, + 4405, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18451,19 +18454,19 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], "scrim_requests_aggregate": [ - 4379, + 4406, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18473,11 +18476,11 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], @@ -18536,10 +18539,10 @@ export default { 82 ], "scrim_requests": [ - 4389 + 4416 ], "scrim_requests_aggregate": [ - 4380 + 4407 ], "value": [ 82 @@ -18575,7 +18578,7 @@ export default { 80 ], "scrim_requests": [ - 4386 + 4413 ], "value": [ 80 @@ -18633,13 +18636,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2979 + 3006 ], "scrim_requests_aggregate": [ - 4385 + 4412 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -18704,10 +18707,10 @@ export default { 80 ], "servers": [ - 4051, + 4078, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -18717,19 +18720,19 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_aggregate": [ - 4052, + 4079, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -18739,11 +18742,11 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], @@ -18802,10 +18805,10 @@ export default { 82 ], "servers": [ - 4062 + 4089 ], "servers_aggregate": [ - 4053 + 4080 ], "value": [ 82 @@ -18841,7 +18844,7 @@ export default { 80 ], "servers": [ - 4059 + 4086 ], "value": [ 80 @@ -18899,13 +18902,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2979 + 3006 ], "servers_aggregate": [ - 4058 + 4085 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -18970,10 +18973,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -18983,19 +18986,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_map_lineup_1_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -19005,19 +19008,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_map_lineup_2": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -19027,19 +19030,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_map_lineup_2_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -19049,11 +19052,11 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], @@ -19112,16 +19115,16 @@ export default { 82 ], "match_map_lineup_1": [ - 2637 + 2664 ], "match_map_lineup_1_aggregate": [ - 2630 + 2657 ], "match_map_lineup_2": [ - 2637 + 2664 ], "match_map_lineup_2_aggregate": [ - 2630 + 2657 ], "value": [ 82 @@ -19157,10 +19160,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2634 + 2661 ], "match_map_lineup_2": [ - 2634 + 2661 ], "value": [ 80 @@ -19218,16 +19221,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2979 + 3006 ], "match_map_lineup_1_aggregate": [ - 2633 + 2660 ], "match_map_lineup_2_aggregate": [ - 2633 + 2660 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -19434,10 +19437,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -19502,10 +19505,10 @@ export default { 80 ], "team_rosters": [ - 4237, + 4264, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -19515,19 +19518,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_rosters_aggregate": [ - 4238, + 4265, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -19537,19 +19540,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "tournament_team_rosters": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19559,19 +19562,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_team_rosters_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19581,11 +19584,11 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], @@ -19644,16 +19647,16 @@ export default { 82 ], "team_rosters": [ - 4248 + 4275 ], "team_rosters_aggregate": [ - 4239 + 4266 ], "tournament_team_rosters": [ - 4888 + 4915 ], "tournament_team_rosters_aggregate": [ - 4881 + 4908 ], "value": [ 82 @@ -19689,10 +19692,10 @@ export default { 80 ], "team_rosters": [ - 4245 + 4272 ], "tournament_team_rosters": [ - 4885 + 4912 ], "value": [ 80 @@ -19761,16 +19764,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2979 + 3006 ], "team_rosters_aggregate": [ - 4244 + 4271 ], "tournament_team_rosters_aggregate": [ - 4884 + 4911 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -19977,10 +19980,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -20187,10 +20190,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -20255,10 +20258,10 @@ export default { 80 ], "tournament_categories": [ - 4616, + 4643, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -20268,19 +20271,19 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "tournament_categories_aggregate": [ - 4617, + 4644, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -20290,11 +20293,11 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], @@ -20353,10 +20356,10 @@ export default { 82 ], "tournament_categories": [ - 4623 + 4650 ], "tournament_categories_aggregate": [ - 4618 + 4645 ], "value": [ 82 @@ -20392,7 +20395,7 @@ export default { 80 ], "tournament_categories": [ - 4622 + 4649 ], "value": [ 80 @@ -20461,13 +20464,13 @@ export default { }, "e_tournament_categories_order_by": { "description": [ - 2979 + 3006 ], "tournament_categories_aggregate": [ - 4621 + 4648 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -20532,10 +20535,10 @@ export default { 80 ], "tournament_stages": [ - 4787, + 4814, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -20545,19 +20548,19 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "tournament_stages_aggregate": [ - 4788, + 4815, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -20567,11 +20570,11 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], @@ -20630,10 +20633,10 @@ export default { 82 ], "tournament_stages": [ - 4799 + 4826 ], "tournament_stages_aggregate": [ - 4789 + 4816 ], "value": [ 82 @@ -20669,7 +20672,7 @@ export default { 80 ], "tournament_stages": [ - 4796 + 4823 ], "value": [ 80 @@ -20738,13 +20741,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2979 + 3006 ], "tournament_stages_aggregate": [ - 4794 + 4821 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -20809,10 +20812,10 @@ export default { 80 ], "tournaments": [ - 4962, + 4989, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -20822,19 +20825,19 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_aggregate": [ - 4963, + 4990, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -20844,11 +20847,11 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], @@ -20907,10 +20910,10 @@ export default { 82 ], "tournaments": [ - 4983 + 5010 ], "tournaments_aggregate": [ - 4964 + 4991 ], "value": [ 82 @@ -20946,7 +20949,7 @@ export default { 80 ], "tournaments": [ - 4980 + 5007 ], "value": [ 80 @@ -21015,13 +21018,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2979 + 3006 ], "tournaments_aggregate": [ - 4979 + 5006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -21086,10 +21089,10 @@ export default { 80 ], "player_utilities": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -21099,19 +21102,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utilities_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -21121,11 +21124,11 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], @@ -21184,10 +21187,10 @@ export default { 82 ], "player_utilities": [ - 3872 + 3899 ], "player_utilities_aggregate": [ - 3865 + 3892 ], "value": [ 82 @@ -21223,7 +21226,7 @@ export default { 80 ], "player_utilities": [ - 3869 + 3896 ], "value": [ 80 @@ -21281,13 +21284,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2979 + 3006 ], "player_utilities_aggregate": [ - 3868 + 3895 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -21352,10 +21355,10 @@ export default { 80 ], "match_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21365,19 +21368,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21387,11 +21390,11 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], @@ -21450,10 +21453,10 @@ export default { 82 ], "match_veto_picks": [ - 2609 + 2636 ], "match_veto_picks_aggregate": [ - 2602 + 2629 ], "value": [ 82 @@ -21489,7 +21492,7 @@ export default { 80 ], "match_veto_picks": [ - 2608 + 2635 ], "value": [ 80 @@ -21547,13 +21550,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2979 + 3006 ], "match_veto_picks_aggregate": [ - 2607 + 2634 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -21760,10 +21763,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -21825,19 +21828,19 @@ export default { }, "event_match_links": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -21888,19 +21891,19 @@ export default { 1433 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -21909,19 +21912,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -21929,13 +21932,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -21943,13 +21946,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -21982,19 +21985,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22002,10 +22005,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -22014,13 +22017,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -22039,13 +22042,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -22065,13 +22068,13 @@ export default { }, "event_media": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -22080,7 +22083,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -22139,7 +22142,7 @@ export default { 80 ], "uploader": [ - 3937 + 3964 ], "uploader_steam_id": [ 257 @@ -22236,7 +22239,7 @@ export default { 1456 ], "count": [ - 2979 + 3006 ], "max": [ 1462 @@ -22293,10 +22296,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22313,13 +22316,13 @@ export default { 1457 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "external_url": [ 82 @@ -22328,7 +22331,7 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "mime_type": [ 82 @@ -22349,7 +22352,7 @@ export default { 82 ], "uploader": [ - 3941 + 3968 ], "uploader_steam_id": [ 259 @@ -22372,13 +22375,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -22387,7 +22390,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -22405,7 +22408,7 @@ export default { 80 ], "uploader": [ - 3948 + 3975 ], "uploader_steam_id": [ 257 @@ -22416,10 +22419,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -22428,7 +22431,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -22451,34 +22454,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "external_url": [ - 2979 + 3006 ], "filename": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "mime_type": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "thumbnail_filename": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22486,10 +22489,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -22498,7 +22501,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -22521,34 +22524,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "external_url": [ - 2979 + 3006 ], "filename": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "mime_type": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "thumbnail_filename": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22592,43 +22595,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "external_url": [ - 2979 + 3006 ], "filename": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "mime_type": [ - 2979 + 3006 ], "players_aggregate": [ 1475 ], "size": [ - 2979 + 3006 ], "thumbnail_filename": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "uploader": [ - 3950 + 3977 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22636,7 +22639,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -22644,16 +22647,16 @@ export default { }, "event_media_players": { "created_at": [ - 4526 + 4553 ], "media": [ 1448 ], "media_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -22750,7 +22753,7 @@ export default { 1478 ], "count": [ - 2979 + 3006 ], "max": [ 1484 @@ -22804,7 +22807,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22821,16 +22824,16 @@ export default { 1479 ], "created_at": [ - 4527 + 4554 ], "media": [ 1457 ], "media_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -22850,16 +22853,16 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4526 + 4553 ], "media": [ 1466 ], "media_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 @@ -22870,10 +22873,10 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4526 + 4553 ], "media_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -22884,13 +22887,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 2979 + 3006 ], "media_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22898,10 +22901,10 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4526 + 4553 ], "media_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -22912,13 +22915,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 2979 + 3006 ], "media_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22951,19 +22954,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 2979 + 3006 ], "media": [ 1468 ], "media_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -22971,7 +22974,7 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -22983,10 +22986,10 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4526 + 4553 ], "media_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23005,7 +23008,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23021,7 +23024,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23037,7 +23040,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23056,10 +23059,10 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "media_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23078,7 +23081,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23109,7 +23112,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23125,7 +23128,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23141,7 +23144,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23150,10 +23153,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -23162,7 +23165,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -23196,10 +23199,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23218,10 +23221,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23240,10 +23243,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23262,10 +23265,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "external_url": [ 80 @@ -23274,7 +23277,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "mime_type": [ 80 @@ -23308,10 +23311,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23345,10 +23348,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23367,10 +23370,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23389,10 +23392,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 2979 + 3006 ], "uploader_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23400,16 +23403,16 @@ export default { }, "event_organizers": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "organizer": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -23506,7 +23509,7 @@ export default { 1539 ], "count": [ - 2979 + 3006 ], "max": [ 1545 @@ -23560,7 +23563,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23577,16 +23580,16 @@ export default { 1540 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "organizer": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -23606,16 +23609,16 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "organizer": [ - 3948 + 3975 ], "steam_id": [ 257 @@ -23626,10 +23629,10 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23640,13 +23643,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23654,10 +23657,10 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23668,13 +23671,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23707,19 +23710,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "organizer": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23727,7 +23730,7 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23739,10 +23742,10 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23761,7 +23764,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23777,7 +23780,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23793,7 +23796,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23812,10 +23815,10 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -23834,7 +23837,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23865,7 +23868,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23881,7 +23884,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23897,7 +23900,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -23905,16 +23908,16 @@ export default { }, "event_players": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -24011,7 +24014,7 @@ export default { 1580 ], "count": [ - 2979 + 3006 ], "max": [ 1586 @@ -24065,7 +24068,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24082,16 +24085,16 @@ export default { 1581 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -24111,16 +24114,16 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 @@ -24131,10 +24134,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -24145,13 +24148,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24159,10 +24162,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -24173,13 +24176,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24212,19 +24215,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24232,7 +24235,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -24244,10 +24247,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -24266,7 +24269,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24282,7 +24285,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24298,7 +24301,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24317,10 +24320,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -24339,7 +24342,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24370,7 +24373,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24386,7 +24389,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24402,7 +24405,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24410,19 +24413,19 @@ export default { }, "event_teams": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24489,7 +24492,7 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ 1624 @@ -24523,19 +24526,19 @@ export default { 1620 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -24544,19 +24547,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24564,13 +24567,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24578,13 +24581,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24592,13 +24595,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24606,13 +24609,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24645,19 +24648,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24665,10 +24668,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24677,13 +24680,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24702,13 +24705,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24728,19 +24731,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4526 + 4553 ], "event": [ 1661 ], "event_id": [ - 5026 + 5053 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24807,7 +24810,7 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ 1648 @@ -24841,19 +24844,19 @@ export default { 1644 ], "created_at": [ - 4527 + 4554 ], "event": [ 1665 ], "event_id": [ - 5028 + 5055 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -24862,19 +24865,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4526 + 4553 ], "event": [ 1672 ], "event_id": [ - 5026 + 5053 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24882,13 +24885,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24896,13 +24899,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24910,13 +24913,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24924,13 +24927,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24963,19 +24966,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -24983,10 +24986,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -24995,13 +24998,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -25020,13 +25023,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "event_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -25093,7 +25096,7 @@ export default { 1448 ], "banner_media_id": [ - 5026 + 5053 ], "can_upload_media": [ 5 @@ -25102,19 +25105,19 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "hide_creator_organizer": [ 5 ], "id": [ - 5026 + 5053 ], "is_organizer": [ 5 @@ -25170,7 +25173,7 @@ export default { 80 ], "organizer": [ - 3937 + 3964 ], "organizer_steam_id": [ 257 @@ -25220,10 +25223,10 @@ export default { } ], "player_stats": [ - 5029, + 5056, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25233,19 +25236,19 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], "player_stats_aggregate": [ - 5030, + 5057, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25255,11 +25258,11 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], @@ -25308,7 +25311,7 @@ export default { } ], "starts_at": [ - 4526 + 4553 ], "teams": [ 1613, @@ -25491,7 +25494,7 @@ export default { 1457 ], "banner_media_id": [ - 5028 + 5055 ], "can_upload_media": [ 6 @@ -25500,19 +25503,19 @@ export default { 6 ], "created_at": [ - 4527 + 4554 ], "description": [ 82 ], "ends_at": [ - 4527 + 4554 ], "hide_creator_organizer": [ 6 ], "id": [ - 5028 + 5055 ], "is_organizer": [ 6 @@ -25530,7 +25533,7 @@ export default { 82 ], "organizer": [ - 3941 + 3968 ], "organizer_steam_id": [ 259 @@ -25542,10 +25545,10 @@ export default { 1533 ], "player_stats": [ - 5048 + 5075 ], "player_stats_aggregate": [ - 5031 + 5058 ], "players": [ 1581 @@ -25554,7 +25557,7 @@ export default { 1574 ], "starts_at": [ - 4527 + 4554 ], "teams": [ 1620 @@ -25592,22 +25595,22 @@ export default { 1466 ], "banner_media_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "hide_creator_organizer": [ 5 ], "id": [ - 5026 + 5053 ], "media": [ 1454 @@ -25619,7 +25622,7 @@ export default { 80 ], "organizer": [ - 3948 + 3975 ], "organizer_steam_id": [ 257 @@ -25628,13 +25631,13 @@ export default { 1537 ], "player_stats": [ - 5045 + 5072 ], "players": [ 1578 ], "starts_at": [ - 4526 + 4553 ], "teams": [ 1619 @@ -25651,19 +25654,19 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -25672,7 +25675,7 @@ export default { 257 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -25680,19 +25683,19 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -25701,7 +25704,7 @@ export default { 257 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -25751,58 +25754,58 @@ export default { 1468 ], "banner_media_id": [ - 2979 + 3006 ], "can_upload_media": [ - 2979 + 3006 ], "can_view": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "ends_at": [ - 2979 + 3006 ], "hide_creator_organizer": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "media_access": [ - 2979 + 3006 ], "media_aggregate": [ 1453 ], "name": [ - 2979 + 3006 ], "organizer": [ - 3950 + 3977 ], "organizer_steam_id": [ - 2979 + 3006 ], "organizers_aggregate": [ 1536 ], "player_stats_aggregate": [ - 5044 + 5071 ], "players_aggregate": [ 1577 ], "starts_at": [ - 2979 + 3006 ], "teams_aggregate": [ 1618 @@ -25811,7 +25814,7 @@ export default { 1642 ], "visibility": [ - 2979 + 3006 ], "__typename": [ 80 @@ -25819,7 +25822,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -25828,22 +25831,22 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "hide_creator_organizer": [ 5 ], "id": [ - 5026 + 5053 ], "media_access": [ 679 @@ -25855,7 +25858,7 @@ export default { 257 ], "starts_at": [ - 4526 + 4553 ], "visibility": [ 699 @@ -25901,22 +25904,22 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "hide_creator_organizer": [ 5 ], "id": [ - 5026 + 5053 ], "media_access": [ 679 @@ -25928,7 +25931,7 @@ export default { 257 ], "starts_at": [ - 4526 + 4553 ], "visibility": [ 699 @@ -26210,13 +26213,13 @@ export default { 727 ], "other_player_steam_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "__typename": [ 80 @@ -26434,7 +26437,7 @@ export default { 40 ], "e_region": [ - 4024 + 4051 ], "e_status": [ 755 @@ -26481,7 +26484,7 @@ export default { 1838 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -26505,10 +26508,10 @@ export default { 80 ], "servers": [ - 4051, + 4078, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -26518,19 +26521,19 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_aggregate": [ - 4052, + 4079, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -26540,16 +26543,16 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -26721,7 +26724,7 @@ export default { 1729 ], "count": [ - 2979 + 3006 ], "max": [ 1738 @@ -26840,40 +26843,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -26932,7 +26935,7 @@ export default { 41 ], "e_region": [ - 4028 + 4055 ], "e_status": [ 758 @@ -26974,7 +26977,7 @@ export default { 1839 ], "offline_at": [ - 4527 + 4554 ], "pin_build_id": [ 41 @@ -26998,13 +27001,13 @@ export default { 82 ], "servers": [ - 4062 + 4089 ], "servers_aggregate": [ - 4053 + 4080 ], "shader_bake_progress": [ - 2978 + 3005 ], "shader_bake_progress_stage": [ 82 @@ -27154,7 +27157,7 @@ export default { 40 ], "shader_bake_progress": [ - 2977 + 3004 ], "start_port_range": [ 40 @@ -27204,7 +27207,7 @@ export default { 40 ], "e_region": [ - 4034 + 4061 ], "e_status": [ 766 @@ -27246,7 +27249,7 @@ export default { 1838 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -27267,10 +27270,10 @@ export default { 80 ], "servers": [ - 4059 + 4086 ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -27344,7 +27347,7 @@ export default { 80 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -27359,7 +27362,7 @@ export default { 80 ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -27385,70 +27388,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "pin_plugin_runtime": [ - 2979 + 3006 ], "pin_plugin_version": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "shader_bake_progress_stage": [ - 2979 + 3006 ], "shader_bake_status": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "token": [ - 2979 + 3006 ], "update_status": [ - 2979 + 3006 ], "__typename": [ 80 @@ -27492,7 +27495,7 @@ export default { 80 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -27507,7 +27510,7 @@ export default { 80 ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -27533,70 +27536,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "pin_plugin_runtime": [ - 2979 + 3006 ], "pin_plugin_version": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "shader_bake_progress_stage": [ - 2979 + 3006 ], "shader_bake_status": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "token": [ - 2979 + 3006 ], "update_status": [ - 2979 + 3006 ], "__typename": [ 80 @@ -27640,148 +27643,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2979 + 3006 ], "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_frequency_info": [ - 2979 + 3006 ], "cpu_governor_info": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "cpu_warnings": [ - 2979 + 3006 ], "cs2_launch_options": [ - 2979 + 3006 ], "cs2_video_settings": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "e_region": [ - 4036 + 4063 ], "e_status": [ 768 ], "enabled": [ - 2979 + 3006 ], "enabled_for_match_making": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "gpu": [ - 2979 + 3006 ], "gpu_demos_enabled": [ - 2979 + 3006 ], "gpu_info": [ - 2979 + 3006 ], "gpu_rendering_enabled": [ - 2979 + 3006 ], "gpu_streaming_enabled": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "lan_ip": [ - 2979 + 3006 ], "node_ip": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "pin_plugin_runtime": [ - 2979 + 3006 ], "pin_plugin_version": [ - 2979 + 3006 ], "pinned_version": [ 1786 ], "plugin_supported": [ - 2979 + 3006 ], "public_ip": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "servers_aggregate": [ - 4058 + 4085 ], "shader_bake_progress": [ - 2979 + 3006 ], "shader_bake_progress_stage": [ - 2979 + 3006 ], "shader_bake_status": [ - 2979 + 3006 ], "shader_bake_status_history": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "supports_cpu_pinning": [ - 2979 + 3006 ], "supports_low_latency": [ - 2979 + 3006 ], "token": [ - 2979 + 3006 ], "total_server_count": [ - 2979 + 3006 ], "update_status": [ - 2979 + 3006 ], "version": [ 1786 @@ -27904,7 +27907,7 @@ export default { 1838 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -27922,7 +27925,7 @@ export default { 80 ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -28004,40 +28007,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28092,40 +28095,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28180,40 +28183,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28307,7 +28310,7 @@ export default { 1838 ], "offline_at": [ - 4526 + 4553 ], "pin_build_id": [ 40 @@ -28325,7 +28328,7 @@ export default { 80 ], "shader_bake_progress": [ - 2977 + 3004 ], "shader_bake_progress_stage": [ 80 @@ -28393,7 +28396,7 @@ export default { 40 ], "shader_bake_progress": [ - 2977 + 3004 ], "start_port_range": [ 40 @@ -28407,40 +28410,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28525,40 +28528,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28613,40 +28616,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28701,40 +28704,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2979 + 3006 ], "cpu_cores_per_socket": [ - 2979 + 3006 ], "cpu_sockets": [ - 2979 + 3006 ], "cpu_threads_per_core": [ - 2979 + 3006 ], "csgo_build_id": [ - 2979 + 3006 ], "demo_network_limiter": [ - 2979 + 3006 ], "disk_available_gb": [ - 2979 + 3006 ], "disk_used_percent": [ - 2979 + 3006 ], "end_port_range": [ - 2979 + 3006 ], "pin_build_id": [ - 2979 + 3006 ], "shader_bake_progress": [ - 2979 + 3006 ], "start_port_range": [ - 2979 + 3006 ], "__typename": [ 80 @@ -28762,7 +28765,7 @@ export default { } ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -28871,7 +28874,7 @@ export default { 1844 ], "updated_at": [ - 4527 + 4554 ], "version": [ 82 @@ -28930,7 +28933,7 @@ export default { 1842 ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -28947,7 +28950,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -28964,7 +28967,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -29011,25 +29014,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2979 + 3006 ], "current": [ - 2979 + 3006 ], "cvars": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "downloads": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "version": [ - 2979 + 3006 ], "__typename": [ 80 @@ -29069,7 +29072,7 @@ export default { 1842 ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -29130,7 +29133,7 @@ export default { 1842 ], "updated_at": [ - 4526 + 4553 ], "version": [ 80 @@ -29212,7 +29215,7 @@ export default { 1769 ], "id": [ - 5026 + 5053 ], "results": [ 1842, @@ -29226,7 +29229,7 @@ export default { 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29326,7 +29329,7 @@ export default { 1774 ], "id": [ - 5028 + 5055 ], "results": [ 1844 @@ -29335,7 +29338,7 @@ export default { 82 ], "validated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -29385,7 +29388,7 @@ export default { 1784 ], "id": [ - 5026 + 5053 ], "results": [ 1842 @@ -29394,7 +29397,7 @@ export default { 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29408,13 +29411,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "status": [ 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29428,13 +29431,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "status": [ 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29467,25 +29470,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2979 + 3006 ], "build_id": [ - 2979 + 3006 ], "game_version": [ 1786 ], "id": [ - 2979 + 3006 ], "results": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "validated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -29493,7 +29496,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -29516,7 +29519,7 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "results": [ 1842 @@ -29525,7 +29528,7 @@ export default { 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29574,7 +29577,7 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "results": [ 1842 @@ -29583,7 +29586,7 @@ export default { 80 ], "validated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -29656,7 +29659,7 @@ export default { 80 ], "_event_id": [ - 5026 + 5053 ], "_match_type": [ 80 @@ -29682,7 +29685,7 @@ export default { 80 ], "_season_id": [ - 5026 + 5053 ], "_source": [ 80 @@ -29699,7 +29702,7 @@ export default { 80 ], "_league_season_id": [ - 5026 + 5053 ], "_role": [ 80 @@ -29722,7 +29725,7 @@ export default { 80 ], "_season_id": [ - 5026 + 5053 ], "_source": [ 80 @@ -30133,31 +30136,31 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2979 + 3006 ], "player_avatar_url": [ - 2979 + 3006 ], "player_country": [ - 2979 + 3006 ], "player_custom_avatar_url": [ - 2979 + 3006 ], "player_name": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "secondary_value": [ - 2979 + 3006 ], "tertiary_value": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -30374,10 +30377,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5026 + 5053 ], "_winning_tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -30385,10 +30388,10 @@ export default { }, "league_divisions": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -30438,7 +30441,7 @@ export default { } ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30521,10 +30524,10 @@ export default { 1873 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "name": [ 82 @@ -30536,7 +30539,7 @@ export default { 2022 ], "tier": [ - 4116 + 4143 ], "__typename": [ 80 @@ -30545,7 +30548,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30553,10 +30556,10 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -30565,7 +30568,7 @@ export default { 2026 ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30573,16 +30576,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30590,16 +30593,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30643,19 +30646,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "season_divisions_aggregate": [ 2025 ], "tier": [ - 2979 + 3006 ], "__typename": [ 80 @@ -30663,7 +30666,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -30672,16 +30675,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30724,16 +30727,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 ], "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30741,7 +30744,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 4115 + 4142 ], "__typename": [ 80 @@ -30788,22 +30791,22 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "season": [ 2045 @@ -30903,7 +30906,7 @@ export default { 1905 ], "count": [ - 2979 + 3006 ], "max": [ 1911 @@ -30957,7 +30960,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -30974,22 +30977,22 @@ export default { 1906 ], "closes_at": [ - 4527 + 4554 ], "created_at": [ - 4527 + 4554 ], "default_match_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "opens_at": [ - 4527 + 4554 ], "season": [ 2050 @@ -31012,22 +31015,22 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "season": [ 2060 @@ -31041,22 +31044,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "week_number": [ 40 @@ -31067,25 +31070,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31093,22 +31096,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "week_number": [ 40 @@ -31119,25 +31122,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31170,28 +31173,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "season": [ 2062 ], "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31199,7 +31202,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31208,22 +31211,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "week_number": [ 40 @@ -31242,7 +31245,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31258,7 +31261,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31274,7 +31277,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31293,22 +31296,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "week_number": [ 40 @@ -31327,7 +31330,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31358,7 +31361,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31374,7 +31377,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31390,7 +31393,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31398,40 +31401,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4526 + 4553 ], "higher_division": [ 1869 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division": [ 1869 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "season": [ 2045 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31525,7 +31528,7 @@ export default { 1946 ], "count": [ - 2979 + 3006 ], "max": [ 1952 @@ -31579,7 +31582,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31596,40 +31599,40 @@ export default { 1947 ], "created_at": [ - 4527 + 4554 ], "higher_division": [ 1873 ], "higher_division_id": [ - 5028 + 5055 ], "higher_slots": [ 41 ], "id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "lower_division": [ 1873 ], "lower_division_id": [ - 5028 + 5055 ], "resolved_at": [ - 4527 + 4554 ], "season": [ 2050 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -31646,40 +31649,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4526 + 4553 ], "higher_division": [ 1880 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division": [ 1880 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "season": [ 2060 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31687,28 +31690,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4526 + 4553 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31716,28 +31719,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2979 + 3006 ], "higher_division_id": [ - 2979 + 3006 ], "higher_slots": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "lower_division_id": [ - 2979 + 3006 ], "resolved_at": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31745,28 +31748,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4526 + 4553 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31774,28 +31777,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2979 + 3006 ], "higher_division_id": [ - 2979 + 3006 ], "higher_slots": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "lower_division_id": [ - 2979 + 3006 ], "resolved_at": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31828,40 +31831,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2979 + 3006 ], "higher_division": [ 1882 ], "higher_division_id": [ - 2979 + 3006 ], "higher_slots": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "lower_division": [ 1882 ], "lower_division_id": [ - 2979 + 3006 ], "resolved_at": [ - 2979 + 3006 ], "season": [ 2062 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31869,7 +31872,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31878,28 +31881,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4526 + 4553 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -31915,7 +31918,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31931,7 +31934,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31947,7 +31950,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -31966,28 +31969,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "higher_division_id": [ - 5026 + 5053 ], "higher_slots": [ 40 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "lower_division_id": [ - 5026 + 5053 ], "resolved_at": [ - 4526 + 4553 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32003,7 +32006,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32034,7 +32037,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32050,7 +32053,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32066,7 +32069,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32074,34 +32077,34 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4570 + 4597 ], "created_at": [ - 4526 + 4553 ], "e_proposal_status": [ 797 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by": [ - 3937 + 3964 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by": [ - 3937 + 3964 ], "responded_by_steam_id": [ 257 @@ -32113,7 +32116,7 @@ export default { 2160 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32207,7 +32210,7 @@ export default { 1987 ], "count": [ - 2979 + 3006 ], "max": [ 1993 @@ -32264,10 +32267,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32284,34 +32287,34 @@ export default { 1988 ], "bracket": [ - 4581 + 4608 ], "created_at": [ - 4527 + 4554 ], "e_proposal_status": [ 800 ], "id": [ - 5028 + 5055 ], "message": [ 82 ], "proposed_by": [ - 3941 + 3968 ], "proposed_by_league_team_season_id": [ - 5028 + 5055 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4527 + 4554 ], "responded_by": [ - 3941 + 3968 ], "responded_by_steam_id": [ 259 @@ -32323,7 +32326,7 @@ export default { 2169 ], "tournament_bracket_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -32343,34 +32346,34 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4590 + 4617 ], "created_at": [ - 4526 + 4553 ], "e_proposal_status": [ 808 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by": [ - 3948 + 3975 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by": [ - 3948 + 3975 ], "responded_by_steam_id": [ 257 @@ -32382,7 +32385,7 @@ export default { 2178 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32390,28 +32393,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by_steam_id": [ 257 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32419,28 +32422,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "proposed_by_league_team_season_id": [ - 2979 + 3006 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_time": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "tournament_bracket_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32448,28 +32451,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by_steam_id": [ 257 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32477,28 +32480,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "proposed_by_league_team_season_id": [ - 2979 + 3006 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_time": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "tournament_bracket_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32531,46 +32534,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4592 + 4619 ], "created_at": [ - 2979 + 3006 ], "e_proposal_status": [ 810 ], "id": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "proposed_by": [ - 3950 + 3977 ], "proposed_by_league_team_season_id": [ - 2979 + 3006 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_time": [ - 2979 + 3006 ], "responded_by": [ - 3950 + 3977 ], "responded_by_steam_id": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "team_season": [ 2180 ], "tournament_bracket_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32578,7 +32581,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32587,22 +32590,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by_steam_id": [ 257 @@ -32611,7 +32614,7 @@ export default { 802 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32630,10 +32633,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32652,10 +32655,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32674,10 +32677,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32696,22 +32699,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_time": [ - 4526 + 4553 ], "responded_by_steam_id": [ 257 @@ -32720,7 +32723,7 @@ export default { 802 ], "tournament_bracket_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32739,10 +32742,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32776,10 +32779,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32798,10 +32801,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32820,10 +32823,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "responded_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -32831,28 +32834,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4526 + 4553 ], "division": [ 1869 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "season": [ 2045 ], "standings": [ - 5098, + 5125, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32862,19 +32865,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "standings_aggregate": [ - 5099, + 5126, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32884,19 +32887,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -32963,7 +32966,7 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ 2031 @@ -32997,34 +33000,34 @@ export default { 2027 ], "created_at": [ - 4527 + 4554 ], "division": [ 1873 ], "id": [ - 5028 + 5055 ], "league_division_id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "season": [ 2050 ], "standings": [ - 5107 + 5134 ], "standings_aggregate": [ - 5100 + 5127 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -33033,31 +33036,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4526 + 4553 ], "division": [ 1880 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "season": [ 2060 ], "standings": [ - 5104 + 5131 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33065,19 +33068,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33085,19 +33088,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -33105,19 +33108,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33125,19 +33128,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -33181,31 +33184,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2979 + 3006 ], "division": [ 1882 ], "id": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "season": [ 2062 ], "standings_aggregate": [ - 5103 + 5130 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -33213,7 +33216,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33222,19 +33225,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33253,19 +33256,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "league_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -33335,7 +33338,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -33356,7 +33359,7 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "is_league_admin": [ 5 @@ -33365,7 +33368,7 @@ export default { 5 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks": [ 1897, @@ -33490,13 +33493,13 @@ export default { 80 ], "options": [ - 2670 + 2697 ], "player_stats": [ - 5131, + 5158, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33506,19 +33509,19 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], "player_stats_aggregate": [ - 5132, + 5159, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33528,11 +33531,11 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], @@ -33616,7 +33619,7 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_divisions": [ 2020, @@ -33666,16 +33669,16 @@ export default { 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "standings": [ - 5098, + 5125, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33685,19 +33688,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "standings_aggregate": [ - 5099, + 5126, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33707,16 +33710,16 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "starts_at": [ - 4526 + 4553 ], "status": [ 844 @@ -33919,7 +33922,7 @@ export default { 6 ], "created_at": [ - 4527 + 4554 ], "created_by_steam_id": [ 259 @@ -33940,7 +33943,7 @@ export default { 41 ], "id": [ - 5028 + 5055 ], "is_league_admin": [ 6 @@ -33949,7 +33952,7 @@ export default { 6 ], "match_options_id": [ - 5028 + 5055 ], "match_weeks": [ 1906 @@ -33979,13 +33982,13 @@ export default { 82 ], "options": [ - 2674 + 2701 ], "player_stats": [ - 5150 + 5177 ], "player_stats_aggregate": [ - 5133 + 5160 ], "playoff_best_of": [ 41 @@ -34024,7 +34027,7 @@ export default { 41 ], "roster_lock_at": [ - 4527 + 4554 ], "season_divisions": [ 2027 @@ -34036,19 +34039,19 @@ export default { 41 ], "signup_closes_at": [ - 4527 + 4554 ], "signup_opens_at": [ - 4527 + 4554 ], "standings": [ - 5107 + 5134 ], "standings_aggregate": [ - 5100 + 5127 ], "starts_at": [ - 4527 + 4554 ], "status": [ 845 @@ -34158,7 +34161,7 @@ export default { 194 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -34179,10 +34182,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks": [ 1903 @@ -34203,10 +34206,10 @@ export default { 80 ], "options": [ - 2681 + 2708 ], "player_stats": [ - 5147 + 5174 ], "playoff_best_of": [ 40 @@ -34242,7 +34245,7 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_divisions": [ 2026 @@ -34251,16 +34254,16 @@ export default { 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "standings": [ - 5104 + 5131 ], "starts_at": [ - 4526 + 4553 ], "status": [ 844 @@ -34277,7 +34280,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -34295,10 +34298,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks_count": [ 40 @@ -34331,19 +34334,19 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_number": [ 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -34351,7 +34354,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -34369,10 +34372,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks_count": [ 40 @@ -34405,19 +34408,19 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_number": [ 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -34461,58 +34464,58 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2979 + 3006 ], "awards_aggregate": [ 193 ], "can_register": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "created_by_steam_id": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "direct_promote_count": [ - 2979 + 3006 ], "direct_relegate_count": [ - 2979 + 3006 ], "e_league_season_status": [ 852 ], "games_per_week": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_league_admin": [ - 2979 + 3006 ], "is_roster_locked": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "match_weeks_aggregate": [ 1902 ], "match_weeks_count": [ - 2979 + 3006 ], "max_roster_size": [ - 2979 + 3006 ], "min_roster_size": [ - 2979 + 3006 ], "movements_aggregate": [ 2083 @@ -34521,76 +34524,76 @@ export default { 2165 ], "name": [ - 2979 + 3006 ], "options": [ - 2683 + 2710 ], "player_stats_aggregate": [ - 5146 + 5173 ], "playoff_best_of": [ - 2979 + 3006 ], "playoff_round_best_of": [ - 2979 + 3006 ], "playoff_seats": [ - 2979 + 3006 ], "playoff_stage_type": [ - 2979 + 3006 ], "playoff_third_place_match": [ - 2979 + 3006 ], "promote_count": [ - 2979 + 3006 ], "regular_season_stage_type": [ - 2979 + 3006 ], "relegate_count": [ - 2979 + 3006 ], "relegation_down_count": [ - 2979 + 3006 ], "relegation_playoffs_aggregate": [ 1943 ], "relegation_up_count": [ - 2979 + 3006 ], "roster_lock_at": [ - 2979 + 3006 ], "season_divisions_aggregate": [ 2025 ], "season_number": [ - 2979 + 3006 ], "signup_closes_at": [ - 2979 + 3006 ], "signup_opens_at": [ - 2979 + 3006 ], "standings_aggregate": [ - 5103 + 5130 ], "starts_at": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "team_seasons_aggregate": [ 2165 ], "week_best_of": [ - 2979 + 3006 ], "__typename": [ 80 @@ -34598,7 +34601,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -34621,7 +34624,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -34639,10 +34642,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks_count": [ 40 @@ -34687,19 +34690,19 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_number": [ 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "starts_at": [ - 4526 + 4553 ], "status": [ 844 @@ -34877,7 +34880,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "created_by_steam_id": [ 257 @@ -34895,10 +34898,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_weeks_count": [ 40 @@ -34943,19 +34946,19 @@ export default { 40 ], "roster_lock_at": [ - 4526 + 4553 ], "season_number": [ 40 ], "signup_closes_at": [ - 4526 + 4553 ], "signup_opens_at": [ - 4526 + 4553 ], "starts_at": [ - 4526 + 4553 ], "status": [ 844 @@ -35199,10 +35202,10 @@ export default { }, "league_team_movements": { "approved_at": [ - 4526 + 4553 ], "approved_by": [ - 3937 + 3964 ], "approved_by_steam_id": [ 257 @@ -35211,10 +35214,10 @@ export default { 1869 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "e_movement_type": [ 776 @@ -35226,25 +35229,25 @@ export default { 1869 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division": [ 1869 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2202 ], "league_team_id": [ - 5026 + 5053 ], "season": [ 2045 @@ -35344,7 +35347,7 @@ export default { 2086 ], "count": [ - 2979 + 3006 ], "max": [ 2092 @@ -35401,10 +35404,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35421,10 +35424,10 @@ export default { 2087 ], "approved_at": [ - 4527 + 4554 ], "approved_by": [ - 3941 + 3968 ], "approved_by_steam_id": [ 259 @@ -35433,10 +35436,10 @@ export default { 1873 ], "computed_to_division_id": [ - 5028 + 5055 ], "created_at": [ - 4527 + 4554 ], "e_movement_type": [ 779 @@ -35448,25 +35451,25 @@ export default { 1873 ], "final_to_division_id": [ - 5028 + 5055 ], "from_division": [ 1873 ], "from_division_id": [ - 5028 + 5055 ], "id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "league_team": [ 2205 ], "league_team_id": [ - 5028 + 5055 ], "season": [ 2050 @@ -35492,10 +35495,10 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4526 + 4553 ], "approved_by": [ - 3948 + 3975 ], "approved_by_steam_id": [ 257 @@ -35504,10 +35507,10 @@ export default { 1880 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "e_movement_type": [ 787 @@ -35519,25 +35522,25 @@ export default { 1880 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division": [ 1880 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2211 ], "league_team_id": [ - 5026 + 5053 ], "season": [ 2060 @@ -35551,34 +35554,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4526 + 4553 ], "approved_by_steam_id": [ 257 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -35586,34 +35589,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2979 + 3006 ], "approved_by_steam_id": [ - 2979 + 3006 ], "computed_to_division_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "final_to_division_id": [ - 2979 + 3006 ], "from_division_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35621,34 +35624,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4526 + 4553 ], "approved_by_steam_id": [ 257 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -35656,34 +35659,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2979 + 3006 ], "approved_by_steam_id": [ - 2979 + 3006 ], "computed_to_division_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "final_to_division_id": [ - 2979 + 3006 ], "from_division_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35716,58 +35719,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2979 + 3006 ], "approved_by": [ - 3950 + 3977 ], "approved_by_steam_id": [ - 2979 + 3006 ], "computed_to_division": [ 1882 ], "computed_to_division_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "e_movement_type": [ 789 ], "final_rank": [ - 2979 + 3006 ], "final_to_division": [ 1882 ], "final_to_division_id": [ - 2979 + 3006 ], "from_division": [ 1882 ], "from_division_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team": [ 2213 ], "league_team_id": [ - 2979 + 3006 ], "season": [ 2062 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35775,7 +35778,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -35784,34 +35787,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4526 + 4553 ], "approved_by_steam_id": [ 257 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "type": [ 781 @@ -35833,10 +35836,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35855,10 +35858,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35877,10 +35880,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35899,34 +35902,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4526 + 4553 ], "approved_by_steam_id": [ 257 ], "computed_to_division_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5026 + 5053 ], "from_division_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "type": [ 781 @@ -35948,10 +35951,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -35985,10 +35988,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36007,10 +36010,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36029,10 +36032,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2979 + 3006 ], "final_rank": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36040,19 +36043,19 @@ export default { }, "league_team_rosters": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36155,7 +36158,7 @@ export default { 2127 ], "count": [ - 2979 + 3006 ], "max": [ 2133 @@ -36209,7 +36212,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36226,19 +36229,19 @@ export default { 2128 ], "added_at": [ - 4527 + 4554 ], "league_team_season_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 ], "removed_at": [ - 4527 + 4554 ], "removed_reason": [ 82 @@ -36264,19 +36267,19 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36293,16 +36296,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36313,19 +36316,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "removed_at": [ - 2979 + 3006 ], "removed_reason": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36333,16 +36336,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36353,19 +36356,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "removed_at": [ - 2979 + 3006 ], "removed_reason": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36398,25 +36401,25 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "removed_at": [ - 2979 + 3006 ], "removed_reason": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "team_season": [ 2180 @@ -36427,7 +36430,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -36439,16 +36442,16 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36470,7 +36473,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36486,7 +36489,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36502,7 +36505,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36521,16 +36524,16 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4526 + 4553 ], "league_team_season_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 ], "removed_at": [ - 4526 + 4553 ], "removed_reason": [ 80 @@ -36552,7 +36555,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36583,7 +36586,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36599,7 +36602,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36615,7 +36618,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36626,16 +36629,16 @@ export default { 1869 ], "assigned_division_id": [ - 5026 + 5053 ], "captain": [ - 3937 + 3964 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 @@ -36644,19 +36647,19 @@ export default { 818 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2202 ], "league_team_id": [ - 5026 + 5053 ], "registered_by": [ - 3937 + 3964 ], "registered_by_steam_id": [ 257 @@ -36665,7 +36668,7 @@ export default { 1869 ], "requested_division_id": [ - 5026 + 5053 ], "roster": [ 2119, @@ -36721,10 +36724,10 @@ export default { 823 ], "tournament_team": [ - 4920 + 4947 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -36818,7 +36821,7 @@ export default { 2168 ], "count": [ - 2979 + 3006 ], "max": [ 2174 @@ -36878,13 +36881,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -36904,16 +36907,16 @@ export default { 1873 ], "assigned_division_id": [ - 5028 + 5055 ], "captain": [ - 3941 + 3968 ], "captain_steam_id": [ 259 ], "created_at": [ - 4527 + 4554 ], "decline_reason": [ 82 @@ -36922,19 +36925,19 @@ export default { 821 ], "id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "league_team": [ 2205 ], "league_team_id": [ - 5028 + 5055 ], "registered_by": [ - 3941 + 3968 ], "registered_by_steam_id": [ 259 @@ -36943,7 +36946,7 @@ export default { 1873 ], "requested_division_id": [ - 5028 + 5055 ], "roster": [ 2128 @@ -36961,10 +36964,10 @@ export default { 824 ], "tournament_team": [ - 4929 + 4956 ], "tournament_team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -36990,16 +36993,16 @@ export default { 1880 ], "assigned_division_id": [ - 5026 + 5053 ], "captain": [ - 3948 + 3975 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 @@ -37008,19 +37011,19 @@ export default { 829 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2211 ], "league_team_id": [ - 5026 + 5053 ], "registered_by": [ - 3948 + 3975 ], "registered_by_steam_id": [ 257 @@ -37029,7 +37032,7 @@ export default { 1880 ], "requested_division_id": [ - 5026 + 5053 ], "roster": [ 2125 @@ -37044,10 +37047,10 @@ export default { 823 ], "tournament_team": [ - 4938 + 4965 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37055,37 +37058,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5026 + 5053 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "registered_by_steam_id": [ 257 ], "requested_division_id": [ - 5026 + 5053 ], "seed": [ 40 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37093,37 +37096,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2979 + 3006 ], "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "decline_reason": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "requested_division_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37131,37 +37134,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5026 + 5053 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "registered_by_steam_id": [ 257 ], "requested_division_id": [ - 5026 + 5053 ], "seed": [ 40 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37169,37 +37172,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2979 + 3006 ], "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "decline_reason": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "requested_division_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37246,46 +37249,46 @@ export default { 1882 ], "assigned_division_id": [ - 2979 + 3006 ], "captain": [ - 3950 + 3977 ], "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "decline_reason": [ - 2979 + 3006 ], "e_registration_status": [ 831 ], "id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team": [ 2213 ], "league_team_id": [ - 2979 + 3006 ], "registered_by": [ - 3950 + 3977 ], "registered_by_steam_id": [ - 2979 + 3006 ], "requested_division": [ 1882 ], "requested_division_id": [ - 2979 + 3006 ], "roster_aggregate": [ 2124 @@ -37294,16 +37297,16 @@ export default { 2062 ], "seed": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "tournament_team": [ - 4940 + 4967 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37311,7 +37314,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37320,31 +37323,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5026 + 5053 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "registered_by_steam_id": [ 257 ], "requested_division_id": [ - 5026 + 5053 ], "seed": [ 40 @@ -37353,7 +37356,7 @@ export default { 823 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37375,13 +37378,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37403,13 +37406,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37431,13 +37434,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37456,31 +37459,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5026 + 5053 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "decline_reason": [ 80 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "registered_by_steam_id": [ 257 ], "requested_division_id": [ - 5026 + 5053 ], "seed": [ 40 @@ -37489,7 +37492,7 @@ export default { 823 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37511,13 +37514,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37554,13 +37557,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37582,13 +37585,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37610,13 +37613,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "registered_by_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -37624,10 +37627,10 @@ export default { }, "league_teams": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "movements": [ 2078, @@ -37674,10 +37677,10 @@ export default { } ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "team_seasons": [ 2160, @@ -37772,10 +37775,10 @@ export default { 2205 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "movements": [ 2087 @@ -37784,10 +37787,10 @@ export default { 2080 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "team_seasons": [ 2169 @@ -37802,19 +37805,19 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "movements": [ 2084 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "team_seasons": [ 2166 @@ -37825,13 +37828,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37839,13 +37842,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37889,19 +37892,19 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "movements_aggregate": [ 2083 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "team_seasons_aggregate": [ 2165 @@ -37912,7 +37915,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37921,13 +37924,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37946,13 +37949,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -37975,13 +37978,13 @@ export default { 865 ], "created_at": [ - 4526 + 4553 ], "e_lobby_access": [ 860 ], "id": [ - 5026 + 5053 ], "players": [ 2240, @@ -38079,13 +38082,13 @@ export default { 866 ], "created_at": [ - 4527 + 4554 ], "e_lobby_access": [ 863 ], "id": [ - 5028 + 5055 ], "players": [ 2251 @@ -38103,13 +38106,13 @@ export default { 865 ], "created_at": [ - 4526 + 4553 ], "e_lobby_access": [ 871 ], "id": [ - 5026 + 5053 ], "players": [ 2248 @@ -38120,10 +38123,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -38131,10 +38134,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -38178,16 +38181,16 @@ export default { }, "lobbies_order_by": { "access": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "e_lobby_access": [ 873 ], "id": [ - 2979 + 3006 ], "players_aggregate": [ 2247 @@ -38198,7 +38201,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -38210,10 +38213,10 @@ export default { 865 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -38235,10 +38238,10 @@ export default { 865 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -38267,10 +38270,10 @@ export default { 2221 ], "lobby_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "status": [ 886 @@ -38410,7 +38413,7 @@ export default { 2250 ], "count": [ - 2979 + 3006 ], "max": [ 2256 @@ -38467,10 +38470,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38496,10 +38499,10 @@ export default { 2224 ], "lobby_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "status": [ 887 @@ -38534,10 +38537,10 @@ export default { 2230 ], "lobby_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "status": [ 886 @@ -38554,7 +38557,7 @@ export default { 257 ], "lobby_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -38565,13 +38568,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "lobby_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38582,7 +38585,7 @@ export default { 257 ], "lobby_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -38593,13 +38596,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "lobby_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38632,25 +38635,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "lobby": [ 2232 ], "lobby_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "status": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38658,7 +38661,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -38678,7 +38681,7 @@ export default { 257 ], "lobby_id": [ - 5026 + 5053 ], "status": [ 886 @@ -38703,10 +38706,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38725,10 +38728,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38747,10 +38750,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38775,7 +38778,7 @@ export default { 257 ], "lobby_id": [ - 5026 + 5053 ], "status": [ 886 @@ -38800,10 +38803,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38837,10 +38840,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38859,10 +38862,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38881,10 +38884,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -38898,13 +38901,13 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "maps": [ - 5686, + 5713, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38914,19 +38917,19 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], "maps_aggregate": [ - 5687, + 5714, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38936,11 +38939,11 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], @@ -39005,13 +39008,13 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "maps": [ - 5695 + 5722 ], "maps_aggregate": [ - 5688 + 5715 ], "seed": [ 6 @@ -39032,10 +39035,10 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "maps": [ - 5694 + 5721 ], "seed": [ 5 @@ -39049,7 +39052,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -39057,7 +39060,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -39104,19 +39107,19 @@ export default { 914 ], "enabled": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "maps_aggregate": [ - 5693 + 5720 ], "seed": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -39124,7 +39127,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -39136,7 +39139,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "seed": [ 5 @@ -39164,7 +39167,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "seed": [ 5 @@ -39199,16 +39202,16 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "match_maps": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -39218,19 +39221,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -39240,19 +39243,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39262,19 +39265,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39284,11 +39287,11 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], @@ -39412,7 +39415,7 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ 2317 @@ -39455,22 +39458,22 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "label": [ 82 ], "match_maps": [ - 2637 + 2664 ], "match_maps_aggregate": [ - 2630 + 2657 ], "match_veto_picks": [ - 2609 + 2636 ], "match_veto_picks_aggregate": [ - 2602 + 2629 ], "name": [ 82 @@ -39503,16 +39506,16 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "match_maps": [ - 2634 + 2661 ], "match_veto_picks": [ - 2608 + 2635 ], "name": [ 80 @@ -39535,7 +39538,7 @@ export default { }, "maps_max_fields": { "id": [ - 5026 + 5053 ], "label": [ 80 @@ -39558,22 +39561,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -39581,7 +39584,7 @@ export default { }, "maps_min_fields": { "id": [ - 5026 + 5053 ], "label": [ 80 @@ -39604,22 +39607,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -39663,40 +39666,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2979 + 3006 ], "e_match_type": [ 1037 ], "enabled": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "match_maps_aggregate": [ - 2633 + 2660 ], "match_veto_picks_aggregate": [ - 2607 + 2634 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -39704,7 +39707,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -39721,7 +39724,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -39764,7 +39767,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -39800,9 +39803,381 @@ export default { 80 ] }, + "match_camera_tokens": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match": [ + 2821 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_aggregate": { + "aggregate": [ + 2335 + ], + "nodes": [ + 2333 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_aggregate_fields": { + "avg": [ + 2336 + ], + "count": [ + 40, + { + "columns": [ + 2347, + "[match_camera_tokens_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 2341 + ], + "min": [ + 2342 + ], + "stddev": [ + 2349 + ], + "stddev_pop": [ + 2350 + ], + "stddev_samp": [ + 2351 + ], + "sum": [ + 2354 + ], + "var_pop": [ + 2357 + ], + "var_samp": [ + 2358 + ], + "variance": [ + 2359 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_avg_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_bool_exp": { + "_and": [ + 2337 + ], + "_not": [ + 2337 + ], + "_or": [ + 2337 + ], + "created_at": [ + 4554 + ], + "id": [ + 5055 + ], + "match": [ + 2830 + ], + "match_id": [ + 5055 + ], + "steam_id": [ + 259 + ], + "token": [ + 5055 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_constraint": {}, + "match_camera_tokens_inc_input": { + "steam_id": [ + 257 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_insert_input": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match": [ + 2839 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_max_fields": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_min_fields": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 2333 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_on_conflict": { + "constraint": [ + 2338 + ], + "update_columns": [ + 2355 + ], + "where": [ + 2337 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_order_by": { + "created_at": [ + 3006 + ], + "id": [ + 3006 + ], + "match": [ + 2841 + ], + "match_id": [ + 3006 + ], + "steam_id": [ + 3006 + ], + "token": [ + 3006 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_pk_columns_input": { + "id": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_select_column": {}, + "match_camera_tokens_set_input": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_stddev_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_stddev_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_stddev_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_stream_cursor_input": { + "initial_value": [ + 2353 + ], + "ordering": [ + 313 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_stream_cursor_value_input": { + "created_at": [ + 4553 + ], + "id": [ + 5053 + ], + "match_id": [ + 5053 + ], + "steam_id": [ + 257 + ], + "token": [ + 5053 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_sum_fields": { + "steam_id": [ + 257 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_update_column": {}, + "match_camera_tokens_updates": { + "_inc": [ + 2339 + ], + "_set": [ + 2348 + ], + "where": [ + 2337 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_var_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_var_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "match_camera_tokens_variance_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, "match_clips": { "created_at": [ - 4526 + 4553 ], "download_url": [ 80 @@ -39814,22 +40189,22 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map": [ - 2628 + 2655 ], "match_map_demo": [ - 2508 + 2535 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "render_jobs": [ 262, @@ -39882,7 +40257,7 @@ export default { 257 ], "target": [ - 3937 + 3964 ], "target_steam_id": [ 257 @@ -39897,7 +40272,7 @@ export default { 80 ], "user": [ - 3937 + 3964 ], "user_steam_id": [ 257 @@ -39914,10 +40289,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2337 + 2364 ], "nodes": [ - 2333 + 2360 ], "__typename": [ 80 @@ -39925,7 +40300,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2336 + 2363 ], "__typename": [ 80 @@ -39933,13 +40308,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2355 + 2382 ], "distinct": [ 5 ], "filter": [ - 2342 + 2369 ], "predicate": [ 41 @@ -39950,13 +40325,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2340 + 2367 ], "count": [ 40, { "columns": [ - 2355, + 2382, "[match_clips_select_column!]" ], "distinct": [ @@ -39965,31 +40340,31 @@ export default { } ], "max": [ - 2346 + 2373 ], "min": [ - 2348 + 2375 ], "stddev": [ - 2357 + 2384 ], "stddev_pop": [ - 2359 + 2386 ], "stddev_samp": [ - 2361 + 2388 ], "sum": [ - 2365 + 2392 ], "var_pop": [ - 2369 + 2396 ], "var_samp": [ - 2371 + 2398 ], "variance": [ - 2373 + 2400 ], "__typename": [ 80 @@ -39997,37 +40372,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2341 + 2368 ], "count": [ - 2979 + 3006 ], "max": [ - 2347 + 2374 ], "min": [ - 2349 + 2376 ], "stddev": [ - 2358 + 2385 ], "stddev_pop": [ - 2360 + 2387 ], "stddev_samp": [ - 2362 + 2389 ], "sum": [ - 2366 + 2393 ], "var_pop": [ - 2370 + 2397 ], "var_samp": [ - 2372 + 2399 ], "variance": [ - 2374 + 2401 ], "__typename": [ 80 @@ -40035,10 +40410,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2345 + 2372 ], "on_conflict": [ - 2352 + 2379 ], "__typename": [ 80 @@ -40072,25 +40447,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40098,16 +40473,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2342 + 2369 ], "_not": [ - 2342 + 2369 ], "_or": [ - 2342 + 2369 ], "created_at": [ - 4527 + 4554 ], "download_url": [ 82 @@ -40119,22 +40494,22 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "kills_count": [ 41 ], "match_map": [ - 2637 + 2664 ], "match_map_demo": [ - 2520 + 2547 ], "match_map_demo_id": [ - 5028 + 5055 ], "match_map_id": [ - 5028 + 5055 ], "render_jobs": [ 274 @@ -40149,7 +40524,7 @@ export default { 259 ], "target": [ - 3941 + 3968 ], "target_steam_id": [ 259 @@ -40164,7 +40539,7 @@ export default { 82 ], "user": [ - 3941 + 3968 ], "user_steam_id": [ 259 @@ -40208,7 +40583,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4526 + 4553 ], "duration_ms": [ 40 @@ -40217,22 +40592,22 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map": [ - 2646 + 2673 ], "match_map_demo": [ - 2532 + 2559 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "render_jobs": [ 271 @@ -40244,7 +40619,7 @@ export default { 257 ], "target": [ - 3948 + 3975 ], "target_steam_id": [ 257 @@ -40256,7 +40631,7 @@ export default { 80 ], "user": [ - 3948 + 3975 ], "user_steam_id": [ 257 @@ -40273,7 +40648,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4526 + 4553 ], "download_url": [ 80 @@ -40285,16 +40660,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -40326,46 +40701,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2979 + 3006 ], "duration_ms": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "thumbnail_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40373,7 +40748,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4526 + 4553 ], "download_url": [ 80 @@ -40385,16 +40760,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -40426,46 +40801,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2979 + 3006 ], "duration_ms": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "thumbnail_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40476,7 +40851,7 @@ export default { 40 ], "returning": [ - 2333 + 2360 ], "__typename": [ 80 @@ -40484,10 +40859,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2345 + 2372 ], "on_conflict": [ - 2352 + 2379 ], "__typename": [ 80 @@ -40495,13 +40870,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2343 + 2370 ], "update_columns": [ - 2367 + 2394 ], "where": [ - 2342 + 2369 ], "__typename": [ 80 @@ -40509,70 +40884,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2979 + 3006 ], "download_url": [ - 2979 + 3006 ], "duration_ms": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_demo": [ - 2534 + 2561 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "render_jobs_aggregate": [ 269 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target": [ - 3950 + 3977 ], "target_steam_id": [ - 2979 + 3006 ], "thumbnail_download_url": [ - 2979 + 3006 ], "thumbnail_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "user": [ - 3950 + 3977 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "visibility": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40580,7 +40955,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -40589,7 +40964,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4526 + 4553 ], "duration_ms": [ 40 @@ -40598,16 +40973,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -40665,25 +41040,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40717,25 +41092,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40769,25 +41144,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40795,7 +41170,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2364 + 2391 ], "ordering": [ 313 @@ -40806,7 +41181,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "duration_ms": [ 40 @@ -40815,16 +41190,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -40882,25 +41257,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -40909,13 +41284,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2344 + 2371 ], "_set": [ - 2356 + 2383 ], "where": [ - 2342 + 2369 ], "__typename": [ 80 @@ -40949,25 +41324,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41001,25 +41376,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41053,25 +41428,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2979 + 3006 ], "kills_count": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "target_steam_id": [ - 2979 + 3006 ], "user_steam_id": [ - 2979 + 3006 ], "views_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41079,7 +41454,7 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41091,34 +41466,34 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_demo": [ - 2508 + 2535 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41135,7 +41510,7 @@ export default { 80 ], "watcher": [ - 3937 + 3964 ], "watcher_steam_id": [ 257 @@ -41146,10 +41521,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2379 + 2406 ], "nodes": [ - 2375 + 2402 ], "__typename": [ 80 @@ -41157,7 +41532,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2378 + 2405 ], "__typename": [ 80 @@ -41165,13 +41540,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2401 + 2428 ], "distinct": [ 5 ], "filter": [ - 2385 + 2412 ], "predicate": [ 41 @@ -41182,13 +41557,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2383 + 2410 ], "count": [ 40, { "columns": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -41197,31 +41572,31 @@ export default { } ], "max": [ - 2392 + 2419 ], "min": [ - 2394 + 2421 ], "stddev": [ - 2403 + 2430 ], "stddev_pop": [ - 2405 + 2432 ], "stddev_samp": [ - 2407 + 2434 ], "sum": [ - 2411 + 2438 ], "var_pop": [ - 2415 + 2442 ], "var_samp": [ - 2417 + 2444 ], "variance": [ - 2419 + 2446 ], "__typename": [ 80 @@ -41229,37 +41604,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2384 + 2411 ], "count": [ - 2979 + 3006 ], "max": [ - 2393 + 2420 ], "min": [ - 2395 + 2422 ], "stddev": [ - 2404 + 2431 ], "stddev_pop": [ - 2406 + 2433 ], "stddev_samp": [ - 2408 + 2435 ], "sum": [ - 2412 + 2439 ], "var_pop": [ - 2416 + 2443 ], "var_samp": [ - 2418 + 2445 ], "variance": [ - 2420 + 2447 ], "__typename": [ 80 @@ -41275,10 +41650,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2391 + 2418 ], "on_conflict": [ - 2397 + 2424 ], "__typename": [ 80 @@ -41294,7 +41669,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41302,16 +41677,16 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2385 + 2412 ], "_not": [ - 2385 + 2412 ], "_or": [ - 2385 + 2412 ], "created_at": [ - 4527 + 4554 ], "error_message": [ 82 @@ -41323,34 +41698,34 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4527 + 4554 ], "last_status_at": [ - 4527 + 4554 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_demo": [ - 2520 + 2547 ], "match_map_demo_id": [ - 5028 + 5055 ], "match_map_id": [ - 5028 + 5055 ], "status": [ 82 @@ -41362,7 +41737,7 @@ export default { 82 ], "watcher": [ - 3941 + 3968 ], "watcher_steam_id": [ 259 @@ -41406,7 +41781,7 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41418,34 +41793,34 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_demo": [ - 2532 + 2559 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41457,7 +41832,7 @@ export default { 80 ], "watcher": [ - 3948 + 3975 ], "watcher_steam_id": [ 257 @@ -41468,7 +41843,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41477,25 +41852,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41512,43 +41887,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_activity_at": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41556,7 +41931,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41565,25 +41940,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41600,43 +41975,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_activity_at": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41647,7 +42022,7 @@ export default { 40 ], "returning": [ - 2375 + 2402 ], "__typename": [ 80 @@ -41655,13 +42030,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2386 + 2413 ], "update_columns": [ - 2413 + 2440 ], "where": [ - 2385 + 2412 ], "__typename": [ 80 @@ -41669,61 +42044,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node": [ 1744 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "last_activity_at": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_demo": [ - 2534 + 2561 ], "match_map_demo_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "status_history": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "watcher": [ - 3950 + 3977 ], "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41731,7 +42106,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -41748,7 +42123,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41757,25 +42132,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41803,7 +42178,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41819,7 +42194,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41835,7 +42210,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41843,7 +42218,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2410 + 2437 ], "ordering": [ 313 @@ -41854,7 +42229,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "error_message": [ 80 @@ -41863,25 +42238,25 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4526 + 4553 ], "last_status_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "status": [ 80 @@ -41909,7 +42284,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41918,28 +42293,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2381 + 2408 ], "_delete_at_path": [ - 2387 + 2414 ], "_delete_elem": [ - 2388 + 2415 ], "_delete_key": [ - 2389 + 2416 ], "_inc": [ - 2390 + 2417 ], "_prepend": [ - 2400 + 2427 ], "_set": [ - 2402 + 2429 ], "where": [ - 2385 + 2412 ], "__typename": [ 80 @@ -41955,7 +42330,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41971,7 +42346,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -41987,7 +42362,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42004,19 +42379,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_connected": [ 5 ], "lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "party_source": [ 988 @@ -42025,7 +42400,7 @@ export default { 80 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -42036,10 +42411,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2427 + 2454 ], "nodes": [ - 2421 + 2448 ], "__typename": [ 80 @@ -42047,13 +42422,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2424 + 2451 ], "bool_or": [ - 2425 + 2452 ], "count": [ - 2426 + 2453 ], "__typename": [ 80 @@ -42061,13 +42436,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2445 + 2472 ], "distinct": [ 5 ], "filter": [ - 2432 + 2459 ], "predicate": [ 6 @@ -42078,13 +42453,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2446 + 2473 ], "distinct": [ 5 ], "filter": [ - 2432 + 2459 ], "predicate": [ 6 @@ -42095,13 +42470,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2444 + 2471 ], "distinct": [ 5 ], "filter": [ - 2432 + 2459 ], "predicate": [ 41 @@ -42112,13 +42487,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2430 + 2457 ], "count": [ 40, { "columns": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -42127,31 +42502,31 @@ export default { } ], "max": [ - 2436 + 2463 ], "min": [ - 2438 + 2465 ], "stddev": [ - 2448 + 2475 ], "stddev_pop": [ - 2450 + 2477 ], "stddev_samp": [ - 2452 + 2479 ], "sum": [ - 2456 + 2483 ], "var_pop": [ - 2460 + 2487 ], "var_samp": [ - 2462 + 2489 ], "variance": [ - 2464 + 2491 ], "__typename": [ 80 @@ -42159,37 +42534,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2431 + 2458 ], "count": [ - 2979 + 3006 ], "max": [ - 2437 + 2464 ], "min": [ - 2439 + 2466 ], "stddev": [ - 2449 + 2476 ], "stddev_pop": [ - 2451 + 2478 ], "stddev_samp": [ - 2453 + 2480 ], "sum": [ - 2457 + 2484 ], "var_pop": [ - 2461 + 2488 ], "var_samp": [ - 2463 + 2490 ], "variance": [ - 2465 + 2492 ], "__typename": [ 80 @@ -42197,10 +42572,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2435 + 2462 ], "on_conflict": [ - 2441 + 2468 ], "__typename": [ 80 @@ -42216,7 +42591,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42224,13 +42599,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2432 + 2459 ], "_not": [ - 2432 + 2459 ], "_or": [ - 2432 + 2459 ], "captain": [ 6 @@ -42242,19 +42617,19 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "is_connected": [ 6 ], "lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "party_id": [ - 5028 + 5055 ], "party_source": [ 989 @@ -42263,7 +42638,7 @@ export default { 82 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -42292,19 +42667,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_connected": [ 5 ], "lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "party_source": [ 988 @@ -42313,7 +42688,7 @@ export default { 80 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 @@ -42327,13 +42702,13 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -42347,22 +42722,22 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "party_id": [ - 2979 + 3006 ], "placeholder_name": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42373,13 +42748,13 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -42393,22 +42768,22 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "party_id": [ - 2979 + 3006 ], "placeholder_name": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42419,7 +42794,7 @@ export default { 40 ], "returning": [ - 2421 + 2448 ], "__typename": [ 80 @@ -42427,13 +42802,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2433 + 2460 ], "update_columns": [ - 2458 + 2485 ], "where": [ - 2432 + 2459 ], "__typename": [ 80 @@ -42441,40 +42816,40 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2979 + 3006 ], "checked_in": [ - 2979 + 3006 ], "discord_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_connected": [ - 2979 + 3006 ], "lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "party_id": [ - 2979 + 3006 ], "party_source": [ - 2979 + 3006 ], "placeholder_name": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42482,7 +42857,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -42502,16 +42877,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "party_source": [ 988 @@ -42536,7 +42911,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42552,7 +42927,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42568,7 +42943,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42576,7 +42951,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2455 + 2482 ], "ordering": [ 313 @@ -42596,16 +42971,16 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5026 + 5053 ], "party_id": [ - 5026 + 5053 ], "party_source": [ 988 @@ -42630,7 +43005,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42639,13 +43014,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2434 + 2461 ], "_set": [ - 2447 + 2474 ], "where": [ - 2432 + 2459 ], "__typename": [ 80 @@ -42661,7 +43036,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42677,7 +43052,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42693,7 +43068,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42710,16 +43085,16 @@ export default { 5 ], "captain": [ - 5182 + 5209 ], "coach": [ - 3937 + 3964 ], "coach_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "is_on_lineup": [ 5 @@ -42734,10 +43109,10 @@ export default { 5 ], "lineup_players": [ - 2421, + 2448, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -42747,19 +43122,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "lineup_players_aggregate": [ - 2422, + 2449, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -42769,25 +43144,25 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42797,19 +43172,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42819,11 +43194,11 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], @@ -42831,10 +43206,10 @@ export default { 80 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -42845,10 +43220,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2470 + 2497 ], "nodes": [ - 2466 + 2493 ], "__typename": [ 80 @@ -42856,7 +43231,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2469 + 2496 ], "__typename": [ 80 @@ -42864,13 +43239,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2488 + 2515 ], "distinct": [ 5 ], "filter": [ - 2475 + 2502 ], "predicate": [ 41 @@ -42881,13 +43256,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2473 + 2500 ], "count": [ 40, { "columns": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "distinct": [ @@ -42896,31 +43271,31 @@ export default { } ], "max": [ - 2479 + 2506 ], "min": [ - 2481 + 2508 ], "stddev": [ - 2490 + 2517 ], "stddev_pop": [ - 2492 + 2519 ], "stddev_samp": [ - 2494 + 2521 ], "sum": [ - 2498 + 2525 ], "var_pop": [ - 2502 + 2529 ], "var_samp": [ - 2504 + 2531 ], "variance": [ - 2506 + 2533 ], "__typename": [ 80 @@ -42928,37 +43303,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2474 + 2501 ], "count": [ - 2979 + 3006 ], "max": [ - 2480 + 2507 ], "min": [ - 2482 + 2509 ], "stddev": [ - 2491 + 2518 ], "stddev_pop": [ - 2493 + 2520 ], "stddev_samp": [ - 2495 + 2522 ], "sum": [ - 2499 + 2526 ], "var_pop": [ - 2503 + 2530 ], "var_samp": [ - 2505 + 2532 ], "variance": [ - 2507 + 2534 ], "__typename": [ 80 @@ -42966,10 +43341,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2478 + 2505 ], "on_conflict": [ - 2485 + 2512 ], "__typename": [ 80 @@ -42985,7 +43360,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -42993,13 +43368,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2475 + 2502 ], "_not": [ - 2475 + 2502 ], "_or": [ - 2475 + 2502 ], "can_pick_map_veto": [ 6 @@ -43011,16 +43386,16 @@ export default { 6 ], "captain": [ - 5186 + 5213 ], "coach": [ - 3941 + 3968 ], "coach_steam_id": [ 259 ], "id": [ - 5028 + 5055 ], "is_on_lineup": [ 6 @@ -43035,31 +43410,31 @@ export default { 6 ], "lineup_players": [ - 2432 + 2459 ], "lineup_players_aggregate": [ - 2423 + 2450 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_veto_picks": [ - 2609 + 2636 ], "match_veto_picks_aggregate": [ - 2602 + 2629 ], "name": [ 82 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "team_name": [ 82 @@ -43079,34 +43454,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5192 + 5219 ], "coach": [ - 3948 + 3975 ], "coach_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "lineup_players": [ - 2429 + 2456 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_veto_picks": [ - 2608 + 2635 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -43120,16 +43495,16 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "name": [ 80 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -43140,19 +43515,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "team_name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43163,16 +43538,16 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "name": [ 80 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -43183,19 +43558,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "team_name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43206,7 +43581,7 @@ export default { 40 ], "returning": [ - 2466 + 2493 ], "__typename": [ 80 @@ -43214,10 +43589,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2478 + 2505 ], "on_conflict": [ - 2485 + 2512 ], "__typename": [ 80 @@ -43225,13 +43600,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2476 + 2503 ], "update_columns": [ - 2500 + 2527 ], "where": [ - 2475 + 2502 ], "__typename": [ 80 @@ -43239,61 +43614,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2979 + 3006 ], "can_pick_region_veto": [ - 2979 + 3006 ], "can_update_lineup": [ - 2979 + 3006 ], "captain": [ - 5193 + 5220 ], "coach": [ - 3950 + 3977 ], "coach_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_on_lineup": [ - 2979 + 3006 ], "is_picking_map_veto": [ - 2979 + 3006 ], "is_picking_region_veto": [ - 2979 + 3006 ], "is_ready": [ - 2979 + 3006 ], "lineup_players_aggregate": [ - 2428 + 2455 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_veto_picks_aggregate": [ - 2607 + 2634 ], "name": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "team_name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43301,7 +43676,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -43313,13 +43688,13 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -43338,7 +43713,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43354,7 +43729,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43370,7 +43745,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43378,7 +43753,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2497 + 2524 ], "ordering": [ 313 @@ -43392,13 +43767,13 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "team_name": [ 80 @@ -43417,7 +43792,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43426,13 +43801,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2477 + 2504 ], "_set": [ - 2489 + 2516 ], "where": [ - 2475 + 2502 ], "__typename": [ 80 @@ -43448,7 +43823,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43464,7 +43839,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43480,7 +43855,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43540,16 +43915,16 @@ export default { } ], "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2375, + 2402, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43559,19 +43934,19 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], "demo_sessions_aggregate": [ - 2376, + 2403, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43581,11 +43956,11 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], @@ -43602,7 +43977,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "kills": [ 1842, @@ -43616,13 +43991,13 @@ export default { 80 ], "match": [ - 2794 + 2821 ], "match_clips": [ - 2333, + 2360, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -43632,19 +44007,19 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_aggregate": [ - 2334, + 2361, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -43654,25 +44029,25 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -43717,10 +44092,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2514 + 2541 ], "nodes": [ - 2508 + 2535 ], "__typename": [ 80 @@ -43728,13 +44103,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2511 + 2538 ], "bool_or": [ - 2512 + 2539 ], "count": [ - 2513 + 2540 ], "__typename": [ 80 @@ -43742,13 +44117,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2538 + 2565 ], "distinct": [ 5 ], "filter": [ - 2520 + 2547 ], "predicate": [ 6 @@ -43759,13 +44134,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2539 + 2566 ], "distinct": [ 5 ], "filter": [ - 2520 + 2547 ], "predicate": [ 6 @@ -43776,13 +44151,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2537 + 2564 ], "distinct": [ 5 ], "filter": [ - 2520 + 2547 ], "predicate": [ 41 @@ -43793,13 +44168,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2518 + 2545 ], "count": [ 40, { "columns": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "distinct": [ @@ -43808,31 +44183,31 @@ export default { } ], "max": [ - 2527 + 2554 ], "min": [ - 2529 + 2556 ], "stddev": [ - 2541 + 2568 ], "stddev_pop": [ - 2543 + 2570 ], "stddev_samp": [ - 2545 + 2572 ], "sum": [ - 2549 + 2576 ], "var_pop": [ - 2553 + 2580 ], "var_samp": [ - 2555 + 2582 ], "variance": [ - 2557 + 2584 ], "__typename": [ 80 @@ -43840,37 +44215,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2519 + 2546 ], "count": [ - 2979 + 3006 ], "max": [ - 2528 + 2555 ], "min": [ - 2530 + 2557 ], "stddev": [ - 2542 + 2569 ], "stddev_pop": [ - 2544 + 2571 ], "stddev_samp": [ - 2546 + 2573 ], "sum": [ - 2550 + 2577 ], "var_pop": [ - 2554 + 2581 ], "var_samp": [ - 2556 + 2583 ], "variance": [ - 2558 + 2585 ], "__typename": [ 80 @@ -43895,10 +44270,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2526 + 2553 ], "on_conflict": [ - 2533 + 2560 ], "__typename": [ 80 @@ -43926,19 +44301,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -43946,13 +44321,13 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2520 + 2547 ], "_not": [ - 2520 + 2547 ], "_or": [ - 2520 + 2547 ], "bombs": [ 1844 @@ -43964,16 +44339,16 @@ export default { 264 ], "created_at": [ - 4527 + 4554 ], "cs2_build": [ 82 ], "demo_sessions": [ - 2385 + 2412 ], "demo_sessions_aggregate": [ - 2377 + 2404 ], "download_url": [ 82 @@ -43988,7 +44363,7 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "kills": [ 1844 @@ -43997,25 +44372,25 @@ export default { 82 ], "match": [ - 2803 + 2830 ], "match_clips": [ - 2342 + 2369 ], "match_clips_aggregate": [ - 2335 + 2362 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "metadata_parsed_at": [ - 4527 + 4554 ], "playback_file": [ 82 @@ -44125,13 +44500,13 @@ export default { 271 ], "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2382 + 2409 ], "file": [ 80 @@ -44140,7 +44515,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "kills": [ 1842 @@ -44149,22 +44524,22 @@ export default { 80 ], "match": [ - 2812 + 2839 ], "match_clips": [ - 2339 + 2366 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -44196,7 +44571,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 @@ -44211,19 +44586,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "map_name": [ 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -44252,49 +44627,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2979 + 3006 ], "cs2_build": [ - 2979 + 3006 ], "duration_seconds": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map_name": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "metadata_parsed_at": [ - 2979 + 3006 ], "playback_file": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "workshop_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44302,7 +44677,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 @@ -44317,19 +44692,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "map_name": [ 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -44358,49 +44733,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2979 + 3006 ], "cs2_build": [ - 2979 + 3006 ], "duration_seconds": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map_name": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "metadata_parsed_at": [ - 2979 + 3006 ], "playback_file": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "workshop_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44411,7 +44786,7 @@ export default { 40 ], "returning": [ - 2508 + 2535 ], "__typename": [ 80 @@ -44419,10 +44794,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2526 + 2553 ], "on_conflict": [ - 2533 + 2560 ], "__typename": [ 80 @@ -44430,13 +44805,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2521 + 2548 ], "update_columns": [ - 2551 + 2578 ], "where": [ - 2520 + 2547 ], "__typename": [ 80 @@ -44444,85 +44819,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2979 + 3006 ], "clip_render_jobs_aggregate": [ 269 ], "created_at": [ - 2979 + 3006 ], "cs2_build": [ - 2979 + 3006 ], "demo_sessions_aggregate": [ - 2380 + 2407 ], "download_url": [ - 2979 + 3006 ], "duration_seconds": [ - 2979 + 3006 ], "file": [ - 2979 + 3006 ], "geometry_validated": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_name": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_clips_aggregate": [ - 2338 + 2365 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "metadata_parsed_at": [ - 2979 + 3006 ], "playback_file": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "playback_url": [ - 2979 + 3006 ], "players": [ - 2979 + 3006 ], "round_ticks": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "workshop_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44530,7 +44905,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -44561,7 +44936,7 @@ export default { 1842 ], "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 @@ -44573,7 +44948,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "kills": [ 1842 @@ -44582,13 +44957,13 @@ export default { 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -44640,19 +45015,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44680,19 +45055,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44720,19 +45095,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44740,7 +45115,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2548 + 2575 ], "ordering": [ 313 @@ -44754,7 +45129,7 @@ export default { 1842 ], "created_at": [ - 4526 + 4553 ], "cs2_build": [ 80 @@ -44769,7 +45144,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "kills": [ 1842 @@ -44778,13 +45153,13 @@ export default { 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "metadata_parsed_at": [ - 4526 + 4553 ], "playback_file": [ 80 @@ -44836,19 +45211,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44857,28 +45232,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2516 + 2543 ], "_delete_at_path": [ - 2522 + 2549 ], "_delete_elem": [ - 2523 + 2550 ], "_delete_key": [ - 2524 + 2551 ], "_inc": [ - 2525 + 2552 ], "_prepend": [ - 2536 + 2563 ], "_set": [ - 2540 + 2567 ], "where": [ - 2520 + 2547 ], "__typename": [ 80 @@ -44906,19 +45281,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44946,19 +45321,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -44986,19 +45361,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2979 + 3006 ], "playback_size": [ - 2979 + 3006 ], "size": [ - 2979 + 3006 ], "tick_rate": [ - 2979 + 3006 ], "total_ticks": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45006,10 +45381,10 @@ export default { }, "match_map_rounds": { "assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -45019,19 +45394,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -45041,11 +45416,11 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], @@ -45053,22 +45428,22 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "has_backup_file": [ 5 ], "id": [ - 5026 + 5053 ], "kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -45078,19 +45453,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -45100,11 +45475,11 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], @@ -45133,16 +45508,16 @@ export default { 40 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_reason": [ 1415 @@ -45156,10 +45531,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2563 + 2590 ], "nodes": [ - 2559 + 2586 ], "__typename": [ 80 @@ -45167,7 +45542,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2562 + 2589 ], "__typename": [ 80 @@ -45175,13 +45550,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2580 + 2607 ], "distinct": [ 5 ], "filter": [ - 2568 + 2595 ], "predicate": [ 41 @@ -45192,13 +45567,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2566 + 2593 ], "count": [ 40, { "columns": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -45207,31 +45582,31 @@ export default { } ], "max": [ - 2572 + 2599 ], "min": [ - 2574 + 2601 ], "stddev": [ - 2582 + 2609 ], "stddev_pop": [ - 2584 + 2611 ], "stddev_samp": [ - 2586 + 2613 ], "sum": [ - 2590 + 2617 ], "var_pop": [ - 2594 + 2621 ], "var_samp": [ - 2596 + 2623 ], "variance": [ - 2598 + 2625 ], "__typename": [ 80 @@ -45239,37 +45614,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2567 + 2594 ], "count": [ - 2979 + 3006 ], "max": [ - 2573 + 2600 ], "min": [ - 2575 + 2602 ], "stddev": [ - 2583 + 2610 ], "stddev_pop": [ - 2585 + 2612 ], "stddev_samp": [ - 2587 + 2614 ], "sum": [ - 2591 + 2618 ], "var_pop": [ - 2595 + 2622 ], "var_samp": [ - 2597 + 2624 ], "variance": [ - 2599 + 2626 ], "__typename": [ 80 @@ -45277,10 +45652,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2571 + 2598 ], "on_conflict": [ - 2577 + 2604 ], "__typename": [ 80 @@ -45314,25 +45689,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45340,40 +45715,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2568 + 2595 ], "_not": [ - 2568 + 2595 ], "_or": [ - 2568 + 2595 ], "assists": [ - 3128 + 3155 ], "assists_aggregate": [ - 3119 + 3146 ], "backup_file": [ 82 ], "created_at": [ - 4527 + 4554 ], "deleted_at": [ - 4527 + 4554 ], "has_backup_file": [ 6 ], "id": [ - 5028 + 5055 ], "kills": [ - 3345 + 3372 ], "kills_aggregate": [ - 3336 + 3363 ], "lineup_1_money": [ 41 @@ -45400,16 +45775,16 @@ export default { 41 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "round": [ 41 ], "time": [ - 4527 + 4554 ], "winning_reason": [ 1416 @@ -45450,22 +45825,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 3125 + 3152 ], "backup_file": [ 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "kills": [ - 3342 + 3369 ], "lineup_1_money": [ 40 @@ -45492,16 +45867,16 @@ export default { 40 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_reason": [ 1415 @@ -45518,13 +45893,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "lineup_1_money": [ 40 @@ -45545,13 +45920,13 @@ export default { 40 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_side": [ 80 @@ -45562,46 +45937,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "winning_side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45612,13 +45987,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "lineup_1_money": [ 40 @@ -45639,13 +46014,13 @@ export default { 40 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_side": [ 80 @@ -45656,46 +46031,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "winning_side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45706,7 +46081,7 @@ export default { 40 ], "returning": [ - 2559 + 2586 ], "__typename": [ 80 @@ -45714,13 +46089,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2569 + 2596 ], "update_columns": [ - 2592 + 2619 ], "where": [ - 2568 + 2595 ], "__typename": [ 80 @@ -45728,67 +46103,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3124 + 3151 ], "backup_file": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "has_backup_file": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "kills_aggregate": [ - 3341 + 3368 ], "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_side": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_side": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "winning_reason": [ - 2979 + 3006 ], "winning_side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45796,7 +46171,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -45808,13 +46183,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "lineup_1_money": [ 40 @@ -45841,13 +46216,13 @@ export default { 40 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_reason": [ 1415 @@ -45887,25 +46262,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45939,25 +46314,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -45991,25 +46366,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46017,7 +46392,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2589 + 2616 ], "ordering": [ 313 @@ -46031,13 +46406,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "lineup_1_money": [ 40 @@ -46064,13 +46439,13 @@ export default { 40 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "winning_reason": [ 1415 @@ -46110,25 +46485,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46137,13 +46512,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2570 + 2597 ], "_set": [ - 2581 + 2608 ], "where": [ - 2568 + 2595 ], "__typename": [ 80 @@ -46177,25 +46552,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46229,25 +46604,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46281,25 +46656,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_money": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46310,28 +46685,28 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map": [ 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46345,10 +46720,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2606 + 2633 ], "nodes": [ - 2600 + 2627 ], "__typename": [ 80 @@ -46356,13 +46731,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2603 + 2630 ], "bool_or": [ - 2604 + 2631 ], "count": [ - 2605 + 2632 ], "__typename": [ 80 @@ -46370,13 +46745,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2621 + 2648 ], "distinct": [ 5 ], "filter": [ - 2609 + 2636 ], "predicate": [ 6 @@ -46387,13 +46762,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2622 + 2649 ], "distinct": [ 5 ], "filter": [ - 2609 + 2636 ], "predicate": [ 6 @@ -46404,13 +46779,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2620 + 2647 ], "distinct": [ 5 ], "filter": [ - 2609 + 2636 ], "predicate": [ 41 @@ -46424,7 +46799,7 @@ export default { 40, { "columns": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -46433,10 +46808,10 @@ export default { } ], "max": [ - 2612 + 2639 ], "min": [ - 2614 + 2641 ], "__typename": [ 80 @@ -46444,13 +46819,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 2613 + 2640 ], "min": [ - 2615 + 2642 ], "__typename": [ 80 @@ -46458,10 +46833,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2611 + 2638 ], "on_conflict": [ - 2617 + 2644 ], "__typename": [ 80 @@ -46469,40 +46844,40 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2609 + 2636 ], "_not": [ - 2609 + 2636 ], "_or": [ - 2609 + 2636 ], "auto_picked": [ 6 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "map": [ 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "side": [ 82 @@ -46520,28 +46895,28 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map": [ 2321 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46555,19 +46930,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46578,22 +46953,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46601,19 +46976,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46624,22 +46999,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46650,7 +47025,7 @@ export default { 40 ], "returning": [ - 2600 + 2627 ], "__typename": [ 80 @@ -46658,13 +47033,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2610 + 2637 ], "update_columns": [ - 2626 + 2653 ], "where": [ - 2609 + 2636 ], "__typename": [ 80 @@ -46672,37 +47047,37 @@ export default { }, "match_map_veto_picks_order_by": { "auto_picked": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map": [ 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -46710,7 +47085,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -46724,19 +47099,19 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46750,7 +47125,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2625 + 2652 ], "ordering": [ 313 @@ -46764,19 +47139,19 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "side": [ 80 @@ -46791,10 +47166,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2623 + 2650 ], "where": [ - 2609 + 2636 ], "__typename": [ 80 @@ -46805,16 +47180,16 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "demos": [ - 2508, + 2535, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -46824,19 +47199,19 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "demos_aggregate": [ - 2509, + 2536, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -46846,11 +47221,11 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], @@ -46864,13 +47239,13 @@ export default { 942 ], "ended_at": [ - 4526 + 4553 ], "flashes": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -46880,19 +47255,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "flashes_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -46902,22 +47277,22 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "id": [ - 5026 + 5053 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_score": [ 40 @@ -46941,16 +47316,16 @@ export default { 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_clips": [ - 2333, + 2360, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -46960,19 +47335,19 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_aggregate": [ - 2334, + 2361, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -46982,22 +47357,22 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_id": [ - 5026 + 5053 ], "objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -47007,19 +47382,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -47029,11 +47404,11 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], @@ -47041,10 +47416,10 @@ export default { 40 ], "player_assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -47054,19 +47429,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -47076,19 +47451,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_damages": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -47098,19 +47473,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -47120,19 +47495,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -47142,19 +47517,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -47164,19 +47539,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_unused_utilities": [ - 3822, + 3849, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47186,19 +47561,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utilities_aggregate": [ - 3823, + 3850, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47208,11 +47583,11 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], @@ -47220,13 +47595,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "rounds": [ - 2559, + 2586, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47236,19 +47611,19 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "rounds_aggregate": [ - 2560, + 2587, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47258,25 +47633,25 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "started_at": [ - 4526 + 4553 ], "status": [ 947 ], "utility": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -47286,19 +47661,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "utility_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -47308,19 +47683,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "vetos": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47330,19 +47705,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "vetos_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47352,16 +47727,16 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -47369,10 +47744,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2632 + 2659 ], "nodes": [ - 2628 + 2655 ], "__typename": [ 80 @@ -47380,7 +47755,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2631 + 2658 ], "__typename": [ 80 @@ -47388,13 +47763,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2650 + 2677 ], "distinct": [ 5 ], "filter": [ - 2637 + 2664 ], "predicate": [ 41 @@ -47405,13 +47780,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2635 + 2662 ], "count": [ 40, { "columns": [ - 2650, + 2677, "[match_maps_select_column!]" ], "distinct": [ @@ -47420,31 +47795,31 @@ export default { } ], "max": [ - 2641 + 2668 ], "min": [ - 2643 + 2670 ], "stddev": [ - 2652 + 2679 ], "stddev_pop": [ - 2654 + 2681 ], "stddev_samp": [ - 2656 + 2683 ], "sum": [ - 2660 + 2687 ], "var_pop": [ - 2664 + 2691 ], "var_samp": [ - 2666 + 2693 ], "variance": [ - 2668 + 2695 ], "__typename": [ 80 @@ -47452,37 +47827,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2636 + 2663 ], "count": [ - 2979 + 3006 ], "max": [ - 2642 + 2669 ], "min": [ - 2644 + 2671 ], "stddev": [ - 2653 + 2680 ], "stddev_pop": [ - 2655 + 2682 ], "stddev_samp": [ - 2657 + 2684 ], "sum": [ - 2661 + 2688 ], "var_pop": [ - 2665 + 2692 ], "var_samp": [ - 2667 + 2694 ], "variance": [ - 2669 + 2696 ], "__typename": [ 80 @@ -47490,10 +47865,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2640 + 2667 ], "on_conflict": [ - 2647 + 2674 ], "__typename": [ 80 @@ -47530,19 +47905,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -47550,28 +47925,28 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2637 + 2664 ], "_not": [ - 2637 + 2664 ], "_or": [ - 2637 + 2664 ], "clips_count": [ 41 ], "created_at": [ - 4527 + 4554 ], "demo_processing_started_at": [ - 4527 + 4554 ], "demos": [ - 2520 + 2547 ], "demos_aggregate": [ - 2510 + 2537 ], "demos_download_url": [ 82 @@ -47583,22 +47958,22 @@ export default { 945 ], "ended_at": [ - 4527 + 4554 ], "flashes": [ - 3300 + 3327 ], "flashes_aggregate": [ - 3291 + 3318 ], "id": [ - 5028 + 5055 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4527 + 4554 ], "lineup_1_score": [ 41 @@ -47622,85 +47997,85 @@ export default { 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_clips": [ - 2342 + 2369 ], "match_clips_aggregate": [ - 2335 + 2362 ], "match_id": [ - 5028 + 5055 ], "objectives": [ - 3544 + 3571 ], "objectives_aggregate": [ - 3537 + 3564 ], "order": [ 41 ], "player_assists": [ - 3128 + 3155 ], "player_assists_aggregate": [ - 3119 + 3146 ], "player_damages": [ - 3189 + 3216 ], "player_damages_aggregate": [ - 3182 + 3209 ], "player_kills": [ - 3345 + 3372 ], "player_kills_aggregate": [ - 3336 + 3363 ], "player_unused_utilities": [ - 3831 + 3858 ], "player_unused_utilities_aggregate": [ - 3824 + 3851 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4527 + 4554 ], "rounds": [ - 2568 + 2595 ], "rounds_aggregate": [ - 2561 + 2588 ], "started_at": [ - 4527 + 4554 ], "status": [ 948 ], "utility": [ - 3872 + 3899 ], "utility_aggregate": [ - 3865 + 3892 ], "vetos": [ - 2609 + 2636 ], "vetos_aggregate": [ - 2602 + 2629 ], "winning_lineup_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -47732,28 +48107,28 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "demos": [ - 2517 + 2544 ], "e_match_map_status": [ 953 ], "ended_at": [ - 4526 + 4553 ], "flashes": [ - 3297 + 3324 ], "id": [ - 5026 + 5053 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_side": [ 1211 @@ -47771,58 +48146,58 @@ export default { 2321 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_clips": [ - 2339 + 2366 ], "match_id": [ - 5026 + 5053 ], "objectives": [ - 3541 + 3568 ], "order": [ 40 ], "player_assists": [ - 3125 + 3152 ], "player_damages": [ - 3186 + 3213 ], "player_kills": [ - 3342 + 3369 ], "player_unused_utilities": [ - 3828 + 3855 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "rounds": [ - 2565 + 2592 ], "started_at": [ - 4526 + 4553 ], "status": [ 947 ], "utility": [ - 3869 + 3896 ], "vetos": [ - 2608 + 2635 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -47833,10 +48208,10 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "demos_download_url": [ 80 @@ -47845,13 +48220,13 @@ export default { 40 ], "ended_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_score": [ 40 @@ -47866,10 +48241,10 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "order": [ 40 @@ -47878,13 +48253,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "started_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -47892,49 +48267,49 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "demo_processing_started_at": [ - 2979 + 3006 ], "ended_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "latest_clip_at": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "public_latest_clip_at": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -47945,10 +48320,10 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "demos_download_url": [ 80 @@ -47957,13 +48332,13 @@ export default { 40 ], "ended_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_score": [ 40 @@ -47978,10 +48353,10 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "order": [ 40 @@ -47990,13 +48365,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "started_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -48004,49 +48379,49 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "demo_processing_started_at": [ - 2979 + 3006 ], "ended_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "latest_clip_at": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "public_latest_clip_at": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48057,7 +48432,7 @@ export default { 40 ], "returning": [ - 2628 + 2655 ], "__typename": [ 80 @@ -48065,10 +48440,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2640 + 2667 ], "on_conflict": [ - 2647 + 2674 ], "__typename": [ 80 @@ -48076,13 +48451,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2638 + 2665 ], "update_columns": [ - 2662 + 2689 ], "where": [ - 2637 + 2664 ], "__typename": [ 80 @@ -48090,115 +48465,115 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "demo_processing_started_at": [ - 2979 + 3006 ], "demos_aggregate": [ - 2515 + 2542 ], "demos_download_url": [ - 2979 + 3006 ], "demos_total_size": [ - 2979 + 3006 ], "e_match_map_status": [ 955 ], "ended_at": [ - 2979 + 3006 ], "flashes_aggregate": [ - 3296 + 3323 ], "id": [ - 2979 + 3006 ], "is_current_map": [ - 2979 + 3006 ], "latest_clip_at": [ - 2979 + 3006 ], "lineup_1_score": [ - 2979 + 3006 ], "lineup_1_side": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_score": [ - 2979 + 3006 ], "lineup_2_side": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "map": [ 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_clips_aggregate": [ - 2338 + 2365 ], "match_id": [ - 2979 + 3006 ], "objectives_aggregate": [ - 3540 + 3567 ], "order": [ - 2979 + 3006 ], "player_assists_aggregate": [ - 3124 + 3151 ], "player_damages_aggregate": [ - 3185 + 3212 ], "player_kills_aggregate": [ - 3341 + 3368 ], "player_unused_utilities_aggregate": [ - 3827 + 3854 ], "public_clips_count": [ - 2979 + 3006 ], "public_latest_clip_at": [ - 2979 + 3006 ], "rounds_aggregate": [ - 2564 + 2591 ], "started_at": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "utility_aggregate": [ - 3868 + 3895 ], "vetos_aggregate": [ - 2607 + 2634 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48206,7 +48581,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -48218,19 +48593,19 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_side": [ 1211 @@ -48245,10 +48620,10 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "order": [ 40 @@ -48257,16 +48632,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "started_at": [ - 4526 + 4553 ], "status": [ 947 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -48303,19 +48678,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48352,19 +48727,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48401,19 +48776,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48421,7 +48796,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2659 + 2686 ], "ordering": [ 313 @@ -48435,19 +48810,19 @@ export default { 40 ], "created_at": [ - 4526 + 4553 ], "demo_processing_started_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "latest_clip_at": [ - 4526 + 4553 ], "lineup_1_side": [ 1211 @@ -48462,10 +48837,10 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "order": [ 40 @@ -48474,16 +48849,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4526 + 4553 ], "started_at": [ - 4526 + 4553 ], "status": [ 947 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -48520,19 +48895,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48541,13 +48916,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2639 + 2666 ], "_set": [ - 2651 + 2678 ], "where": [ - 2637 + 2664 ], "__typename": [ 80 @@ -48584,19 +48959,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48633,19 +49008,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48682,19 +49057,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2979 + 3006 ], "lineup_1_timeouts_available": [ - 2979 + 3006 ], "lineup_2_timeouts_available": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "public_clips_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -48710,6 +49085,12 @@ export default { "best_of": [ 40 ], + "camera_allow_teammates": [ + 5 + ], + "camera_required": [ + 5 + ], "check_in_setting": [ 554 ], @@ -48726,7 +49107,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -48741,7 +49122,7 @@ export default { 2285 ], "map_pool_id": [ - 5026 + 5053 ], "map_veto": [ 5 @@ -48750,10 +49131,10 @@ export default { 968 ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -48763,19 +49144,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_aggregate": [ - 2795, + 2822, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -48785,11 +49166,11 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], @@ -48824,13 +49205,13 @@ export default { 1292 ], "tournament": [ - 4962 + 4989 ], "tournament_bracket": [ - 4570 + 4597 ], "tournament_stage": [ - 4787 + 4814 ], "tv_delay": [ 40 @@ -48847,10 +49228,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2672 + 2699 ], "nodes": [ - 2670 + 2697 ], "__typename": [ 80 @@ -48858,13 +49239,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2673 + 2700 ], "count": [ 40, { "columns": [ - 2685, + 2712, "[match_options_select_column!]" ], "distinct": [ @@ -48873,31 +49254,31 @@ export default { } ], "max": [ - 2678 + 2705 ], "min": [ - 2679 + 2706 ], "stddev": [ - 2687 + 2714 ], "stddev_pop": [ - 2688 + 2715 ], "stddev_samp": [ - 2689 + 2716 ], "sum": [ - 2692 + 2719 ], "var_pop": [ - 2695 + 2722 ], "var_samp": [ - 2696 + 2723 ], "variance": [ - 2697 + 2724 ], "__typename": [ 80 @@ -48934,13 +49315,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2674 + 2701 ], "_not": [ - 2674 + 2701 ], "_or": [ - 2674 + 2701 ], "auto_cancel_duration": [ 41 @@ -48951,6 +49332,12 @@ export default { "best_of": [ 41 ], + "camera_allow_teammates": [ + 6 + ], + "camera_required": [ + 6 + ], "check_in_setting": [ 555 ], @@ -48967,7 +49354,7 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "invite_code": [ 82 @@ -48982,7 +49369,7 @@ export default { 2288 ], "map_pool_id": [ - 5028 + 5055 ], "map_veto": [ 6 @@ -48991,10 +49378,10 @@ export default { 969 ], "matches": [ - 2803 + 2830 ], "matches_aggregate": [ - 2796 + 2823 ], "mr": [ 41 @@ -49027,13 +49414,13 @@ export default { 1293 ], "tournament": [ - 4983 + 5010 ], "tournament_bracket": [ - 4581 + 4608 ], "tournament_stage": [ - 4799 + 4826 ], "tv_delay": [ 41 @@ -49088,6 +49475,12 @@ export default { "best_of": [ 40 ], + "camera_allow_teammates": [ + 5 + ], + "camera_required": [ + 5 + ], "check_in_setting": [ 554 ], @@ -49101,7 +49494,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -49116,7 +49509,7 @@ export default { 2294 ], "map_pool_id": [ - 5026 + 5053 ], "map_veto": [ 5 @@ -49125,7 +49518,7 @@ export default { 968 ], "matches": [ - 2800 + 2827 ], "mr": [ 40 @@ -49158,13 +49551,13 @@ export default { 1292 ], "tournament": [ - 4992 + 5019 ], "tournament_bracket": [ - 4590 + 4617 ], "tournament_stage": [ - 4811 + 4838 ], "tv_delay": [ 40 @@ -49187,7 +49580,7 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -49196,7 +49589,7 @@ export default { 40 ], "map_pool_id": [ - 5026 + 5053 ], "mr": [ 40 @@ -49228,7 +49621,7 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -49237,7 +49630,7 @@ export default { 40 ], "map_pool_id": [ - 5026 + 5053 ], "mr": [ 40 @@ -49266,7 +49659,7 @@ export default { 40 ], "returning": [ - 2670 + 2697 ], "__typename": [ 80 @@ -49274,10 +49667,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2677 + 2704 ], "on_conflict": [ - 2682 + 2709 ], "__typename": [ 80 @@ -49285,13 +49678,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2675 + 2702 ], "update_columns": [ - 2693 + 2720 ], "where": [ - 2674 + 2701 ], "__typename": [ 80 @@ -49299,103 +49692,109 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2979 + 3006 ], "auto_cancellation": [ - 2979 + 3006 ], "best_of": [ - 2979 + 3006 + ], + "camera_allow_teammates": [ + 3006 + ], + "camera_required": [ + 3006 ], "check_in_setting": [ - 2979 + 3006 ], "coaches": [ - 2979 + 3006 ], "default_models": [ - 2979 + 3006 ], "halftime_pausematch": [ - 2979 + 3006 ], "has_active_matches": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invite_code": [ - 2979 + 3006 ], "knife_round": [ - 2979 + 3006 ], "live_match_timeout": [ - 2979 + 3006 ], "map_pool": [ 2296 ], "map_pool_id": [ - 2979 + 3006 ], "map_veto": [ - 2979 + 3006 ], "match_mode": [ - 2979 + 3006 ], "matches_aggregate": [ - 2799 + 2826 ], "mr": [ - 2979 + 3006 ], "number_of_substitutes": [ - 2979 + 3006 ], "overtime": [ - 2979 + 3006 ], "prefer_dedicated_server": [ - 2979 + 3006 ], "ready_setting": [ - 2979 + 3006 ], "region_veto": [ - 2979 + 3006 ], "regions": [ - 2979 + 3006 ], "round_restart_delay": [ - 2979 + 3006 ], "tech_timeout_setting": [ - 2979 + 3006 ], "timeout_setting": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_bracket": [ - 4592 + 4619 ], "tournament_stage": [ - 4813 + 4840 ], "tv_delay": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "veto_pick_timeout": [ - 2979 + 3006 ], "__typename": [ 80 @@ -49403,7 +49802,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -49420,6 +49819,12 @@ export default { "best_of": [ 40 ], + "camera_allow_teammates": [ + 5 + ], + "camera_required": [ + 5 + ], "check_in_setting": [ 554 ], @@ -49433,7 +49838,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -49445,7 +49850,7 @@ export default { 40 ], "map_pool_id": [ - 5026 + 5053 ], "map_veto": [ 5 @@ -49585,7 +49990,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2691 + 2718 ], "ordering": [ 313 @@ -49604,6 +50009,12 @@ export default { "best_of": [ 40 ], + "camera_allow_teammates": [ + 5 + ], + "camera_required": [ + 5 + ], "check_in_setting": [ 554 ], @@ -49617,7 +50028,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -49629,7 +50040,7 @@ export default { 40 ], "map_pool_id": [ - 5026 + 5053 ], "map_veto": [ 5 @@ -49712,13 +50123,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2676 + 2703 ], "_set": [ - 2686 + 2713 ], "where": [ - 2674 + 2701 ], "__typename": [ 80 @@ -49816,22 +50227,22 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -49845,10 +50256,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2704 + 2731 ], "nodes": [ - 2698 + 2725 ], "__typename": [ 80 @@ -49856,13 +50267,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2701 + 2728 ], "bool_or": [ - 2702 + 2729 ], "count": [ - 2703 + 2730 ], "__typename": [ 80 @@ -49870,13 +50281,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2719 + 2746 ], "distinct": [ 5 ], "filter": [ - 2707 + 2734 ], "predicate": [ 6 @@ -49887,13 +50298,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2720 + 2747 ], "distinct": [ 5 ], "filter": [ - 2707 + 2734 ], "predicate": [ 6 @@ -49904,13 +50315,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2718 + 2745 ], "distinct": [ 5 ], "filter": [ - 2707 + 2734 ], "predicate": [ 41 @@ -49924,7 +50335,7 @@ export default { 40, { "columns": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -49933,10 +50344,10 @@ export default { } ], "max": [ - 2710 + 2737 ], "min": [ - 2712 + 2739 ], "__typename": [ 80 @@ -49944,13 +50355,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 2711 + 2738 ], "min": [ - 2713 + 2740 ], "__typename": [ 80 @@ -49958,10 +50369,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2709 + 2736 ], "on_conflict": [ - 2715 + 2742 ], "__typename": [ 80 @@ -49969,34 +50380,34 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2707 + 2734 ], "_not": [ - 2707 + 2734 ], "_or": [ - 2707 + 2734 ], "auto_picked": [ 6 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "region": [ 82 @@ -50014,22 +50425,22 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -50043,16 +50454,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -50063,19 +50474,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50083,16 +50494,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -50103,19 +50514,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50126,7 +50537,7 @@ export default { 40 ], "returning": [ - 2698 + 2725 ], "__typename": [ 80 @@ -50134,13 +50545,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2708 + 2735 ], "update_columns": [ - 2724 + 2751 ], "where": [ - 2707 + 2734 ], "__typename": [ 80 @@ -50148,31 +50559,31 @@ export default { }, "match_region_veto_picks_order_by": { "auto_picked": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50180,7 +50591,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -50194,16 +50605,16 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -50217,7 +50628,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2723 + 2750 ], "ordering": [ 313 @@ -50231,16 +50642,16 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "region": [ 80 @@ -50255,10 +50666,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2721 + 2748 ], "where": [ - 2707 + 2734 ], "__typename": [ 80 @@ -50278,7 +50689,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_game_streamer": [ 5 @@ -50290,16 +50701,16 @@ export default { 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -50330,10 +50741,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2732 + 2759 ], "nodes": [ - 2726 + 2753 ], "__typename": [ 80 @@ -50341,13 +50752,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2729 + 2756 ], "bool_or": [ - 2730 + 2757 ], "count": [ - 2731 + 2758 ], "__typename": [ 80 @@ -50355,13 +50766,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2755 + 2782 ], "distinct": [ 5 ], "filter": [ - 2738 + 2765 ], "predicate": [ 6 @@ -50372,13 +50783,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2756 + 2783 ], "distinct": [ 5 ], "filter": [ - 2738 + 2765 ], "predicate": [ 6 @@ -50389,13 +50800,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2754 + 2781 ], "distinct": [ 5 ], "filter": [ - 2738 + 2765 ], "predicate": [ 41 @@ -50406,13 +50817,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2736 + 2763 ], "count": [ 40, { "columns": [ - 2754, + 2781, "[match_streams_select_column!]" ], "distinct": [ @@ -50421,31 +50832,31 @@ export default { } ], "max": [ - 2745 + 2772 ], "min": [ - 2747 + 2774 ], "stddev": [ - 2758 + 2785 ], "stddev_pop": [ - 2760 + 2787 ], "stddev_samp": [ - 2762 + 2789 ], "sum": [ - 2766 + 2793 ], "var_pop": [ - 2770 + 2797 ], "var_samp": [ - 2772 + 2799 ], "variance": [ - 2774 + 2801 ], "__typename": [ 80 @@ -50453,37 +50864,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2737 + 2764 ], "count": [ - 2979 + 3006 ], "max": [ - 2746 + 2773 ], "min": [ - 2748 + 2775 ], "stddev": [ - 2759 + 2786 ], "stddev_pop": [ - 2761 + 2788 ], "stddev_samp": [ - 2763 + 2790 ], "sum": [ - 2767 + 2794 ], "var_pop": [ - 2771 + 2798 ], "var_samp": [ - 2773 + 2800 ], "variance": [ - 2775 + 2802 ], "__typename": [ 80 @@ -50499,10 +50910,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2744 + 2771 ], "on_conflict": [ - 2750 + 2777 ], "__typename": [ 80 @@ -50518,7 +50929,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50526,13 +50937,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2738 + 2765 ], "_not": [ - 2738 + 2765 ], "_or": [ - 2738 + 2765 ], "autodirector": [ 6 @@ -50547,7 +50958,7 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "is_game_streamer": [ 6 @@ -50559,16 +50970,16 @@ export default { 82 ], "last_status_at": [ - 4527 + 4554 ], "link": [ 82 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "mode": [ 82 @@ -50639,7 +51050,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_game_streamer": [ 5 @@ -50651,16 +51062,16 @@ export default { 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -50692,19 +51103,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -50727,40 +51138,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_service_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "link": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "mode": [ - 2979 + 3006 ], "priority": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50774,19 +51185,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -50809,40 +51220,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_service_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "link": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "mode": [ - 2979 + 3006 ], "priority": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50853,7 +51264,7 @@ export default { 40 ], "returning": [ - 2726 + 2753 ], "__typename": [ 80 @@ -50861,13 +51272,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2739 + 2766 ], "update_columns": [ - 2768 + 2795 ], "where": [ - 2738 + 2765 ], "__typename": [ 80 @@ -50875,58 +51286,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2979 + 3006 ], "error_message": [ - 2979 + 3006 ], "game_server_node": [ 1744 ], "game_server_node_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_game_streamer": [ - 2979 + 3006 ], "is_live": [ - 2979 + 3006 ], "k8s_service_name": [ - 2979 + 3006 ], "last_status_at": [ - 2979 + 3006 ], "link": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "mode": [ - 2979 + 3006 ], "priority": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "status_history": [ - 2979 + 3006 ], "stream_url": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "__typename": [ 80 @@ -50934,7 +51345,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -50962,7 +51373,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_game_streamer": [ 5 @@ -50974,13 +51385,13 @@ export default { 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -51014,7 +51425,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51030,7 +51441,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51046,7 +51457,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51054,7 +51465,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2765 + 2792 ], "ordering": [ 313 @@ -51074,7 +51485,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_game_streamer": [ 5 @@ -51086,13 +51497,13 @@ export default { 80 ], "last_status_at": [ - 4526 + 4553 ], "link": [ 80 ], "match_id": [ - 5026 + 5053 ], "mode": [ 80 @@ -51126,7 +51537,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51135,28 +51546,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2734 + 2761 ], "_delete_at_path": [ - 2740 + 2767 ], "_delete_elem": [ - 2741 + 2768 ], "_delete_key": [ - 2742 + 2769 ], "_inc": [ - 2743 + 2770 ], "_prepend": [ - 2753 + 2780 ], "_set": [ - 2757 + 2784 ], "where": [ - 2738 + 2765 ], "__typename": [ 80 @@ -51172,7 +51583,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51188,7 +51599,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51204,7 +51615,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51223,10 +51634,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2778 + 2805 ], "nodes": [ - 2776 + 2803 ], "__typename": [ 80 @@ -51237,7 +51648,7 @@ export default { 40, { "columns": [ - 2788, + 2815, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -51246,10 +51657,10 @@ export default { } ], "max": [ - 2782 + 2809 ], "min": [ - 2783 + 2810 ], "__typename": [ 80 @@ -51257,13 +51668,13 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2779 + 2806 ], "_not": [ - 2779 + 2806 ], "_or": [ - 2779 + 2806 ], "cfg": [ 82 @@ -51308,7 +51719,7 @@ export default { 40 ], "returning": [ - 2776 + 2803 ], "__typename": [ 80 @@ -51316,13 +51727,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2780 + 2807 ], "update_columns": [ - 2792 + 2819 ], "where": [ - 2779 + 2806 ], "__typename": [ 80 @@ -51330,10 +51741,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -51361,7 +51772,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2791 + 2818 ], "ordering": [ 313 @@ -51384,10 +51795,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2789 + 2816 ], "where": [ - 2779 + 2806 ], "__typename": [ 80 @@ -51419,13 +51830,13 @@ export default { 5 ], "cancels_at": [ - 4526 + 4553 ], "clutches": [ - 5206, + 5233, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51435,19 +51846,19 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], "clutches_aggregate": [ - 5207, + 5234, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51457,11 +51868,11 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], @@ -51472,16 +51883,16 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "current_match_map_id": [ - 5026 + 5053 ], "demos": [ - 2508, + 2535, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -51491,19 +51902,19 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "demos_aggregate": [ - 2509, + 2536, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -51513,11 +51924,11 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], @@ -51569,16 +51980,16 @@ export default { 1003 ], "e_region": [ - 4024 + 4051 ], "effective_at": [ - 4526 + 4553 ], "elo_changes": [ - 5403, + 5430, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -51588,19 +51999,19 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "elo_changes_aggregate": [ - 5404, + 5431, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -51610,22 +52021,22 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -51658,16 +52069,16 @@ export default { 80 ], "lineup_1": [ - 2466 + 2493 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2": [ - 2466 + 2493 ], "lineup_2_id": [ - 5026 + 5053 ], "lineup_counts": [ 1840, @@ -51678,13 +52089,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 5026 + 5053 ], "map_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51694,19 +52105,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "map_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51716,11 +52127,11 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], @@ -51728,10 +52139,10 @@ export default { 80 ], "match_maps": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -51741,19 +52152,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -51763,16 +52174,16 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -51781,10 +52192,10 @@ export default { 40 ], "opening_duels": [ - 5334, + 5361, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -51794,19 +52205,19 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "opening_duels_aggregate": [ - 5335, + 5362, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -51816,19 +52227,19 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "options": [ - 2670 + 2697 ], "organizer": [ - 3937 + 3964 ], "organizer_steam_id": [ 257 @@ -51837,10 +52248,10 @@ export default { 80 ], "player_assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -51850,19 +52261,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -51872,19 +52283,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_damages": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -51894,19 +52305,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -51916,19 +52327,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_flashes": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -51938,19 +52349,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_flashes_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -51960,19 +52371,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -51982,19 +52393,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -52004,19 +52415,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -52026,19 +52437,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -52048,19 +52459,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_unused_utilities": [ - 3822, + 3849, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52070,19 +52481,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utilities_aggregate": [ - 3823, + 3850, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52092,19 +52503,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_utility": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -52114,19 +52525,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utility_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -52136,11 +52547,11 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], @@ -52148,13 +52559,13 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5026 + 5053 ], "region_veto_picks": [ - 2698, + 2725, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52164,19 +52575,19 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], "region_veto_picks_aggregate": [ - 2699, + 2726, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52186,11 +52597,11 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], @@ -52198,16 +52609,16 @@ export default { 5 ], "scheduled_at": [ - 4526 + 4553 ], "server": [ - 4051 + 4078 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "server_plugin_runtime": [ 80 @@ -52225,16 +52636,16 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "status": [ 1008 ], "streams": [ - 2726, + 2753, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -52244,19 +52655,19 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "streams_aggregate": [ - 2727, + 2754, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -52266,19 +52677,19 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "teams": [ - 4479, + 4506, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -52288,19 +52699,19 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "tournament_brackets": [ - 4570, + 4597, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52310,19 +52721,19 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "tournament_brackets_aggregate": [ - 4571, + 4598, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52332,11 +52743,11 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], @@ -52344,13 +52755,13 @@ export default { 80 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winner": [ - 2466 + 2493 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -52358,10 +52769,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2798 + 2825 ], "nodes": [ - 2794 + 2821 ], "__typename": [ 80 @@ -52369,7 +52780,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2797 + 2824 ], "__typename": [ 80 @@ -52377,13 +52788,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2816 + 2843 ], "distinct": [ 5 ], "filter": [ - 2803 + 2830 ], "predicate": [ 41 @@ -52394,13 +52805,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2801 + 2828 ], "count": [ 40, { "columns": [ - 2816, + 2843, "[matches_select_column!]" ], "distinct": [ @@ -52409,31 +52820,31 @@ export default { } ], "max": [ - 2807 + 2834 ], "min": [ - 2809 + 2836 ], "stddev": [ - 2818 + 2845 ], "stddev_pop": [ - 2820 + 2847 ], "stddev_samp": [ - 2822 + 2849 ], "sum": [ - 2826 + 2853 ], "var_pop": [ - 2830 + 2857 ], "var_samp": [ - 2832 + 2859 ], "variance": [ - 2834 + 2861 ], "__typename": [ 80 @@ -52441,37 +52852,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2802 + 2829 ], "count": [ - 2979 + 3006 ], "max": [ - 2808 + 2835 ], "min": [ - 2810 + 2837 ], "stddev": [ - 2819 + 2846 ], "stddev_pop": [ - 2821 + 2848 ], "stddev_samp": [ - 2823 + 2850 ], "sum": [ - 2827 + 2854 ], "var_pop": [ - 2831 + 2858 ], "var_samp": [ - 2833 + 2860 ], "variance": [ - 2835 + 2862 ], "__typename": [ 80 @@ -52479,10 +52890,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2806 + 2833 ], "on_conflict": [ - 2813 + 2840 ], "__typename": [ 80 @@ -52504,7 +52915,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -52512,13 +52923,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2803 + 2830 ], "_not": [ - 2803 + 2830 ], "_or": [ - 2803 + 2830 ], "can_assign_server": [ 6 @@ -52545,13 +52956,13 @@ export default { 6 ], "cancels_at": [ - 4527 + 4554 ], "clutches": [ - 5215 + 5242 ], "clutches_aggregate": [ - 5208 + 5235 ], "connection_link": [ 82 @@ -52560,16 +52971,16 @@ export default { 82 ], "created_at": [ - 4527 + 4554 ], "current_match_map_id": [ - 5028 + 5055 ], "demos": [ - 2520 + 2547 ], "demos_aggregate": [ - 2510 + 2537 ], "draft_games": [ 474 @@ -52581,25 +52992,25 @@ export default { 1006 ], "e_region": [ - 4028 + 4055 ], "effective_at": [ - 4527 + 4554 ], "elo_changes": [ - 5422 + 5449 ], "elo_changes_aggregate": [ - 5405 + 5432 ], "ended_at": [ - 4527 + 4554 ], "external_id": [ 82 ], "id": [ - 5028 + 5055 ], "invite_code": [ 82 @@ -52632,40 +53043,40 @@ export default { 82 ], "lineup_1": [ - 2475 + 2502 ], "lineup_1_id": [ - 5028 + 5055 ], "lineup_2": [ - 2475 + 2502 ], "lineup_2_id": [ - 5028 + 5055 ], "lineup_counts": [ 1841 ], "map_veto_picking_lineup_id": [ - 5028 + 5055 ], "map_veto_picks": [ - 2609 + 2636 ], "map_veto_picks_aggregate": [ - 2602 + 2629 ], "map_veto_type": [ 82 ], "match_maps": [ - 2637 + 2664 ], "match_maps_aggregate": [ - 2630 + 2657 ], "match_options_id": [ - 5028 + 5055 ], "max_players_per_lineup": [ 41 @@ -52674,16 +53085,16 @@ export default { 41 ], "opening_duels": [ - 5343 + 5370 ], "opening_duels_aggregate": [ - 5336 + 5363 ], "options": [ - 2674 + 2701 ], "organizer": [ - 3941 + 3968 ], "organizer_steam_id": [ 259 @@ -52692,73 +53103,73 @@ export default { 82 ], "player_assists": [ - 3128 + 3155 ], "player_assists_aggregate": [ - 3119 + 3146 ], "player_damages": [ - 3189 + 3216 ], "player_damages_aggregate": [ - 3182 + 3209 ], "player_flashes": [ - 3300 + 3327 ], "player_flashes_aggregate": [ - 3291 + 3318 ], "player_kills": [ - 3345 + 3372 ], "player_kills_aggregate": [ - 3336 + 3363 ], "player_objectives": [ - 3544 + 3571 ], "player_objectives_aggregate": [ - 3537 + 3564 ], "player_unused_utilities": [ - 3831 + 3858 ], "player_unused_utilities_aggregate": [ - 3824 + 3851 ], "player_utility": [ - 3872 + 3899 ], "player_utility_aggregate": [ - 3865 + 3892 ], "region": [ 82 ], "region_veto_picking_lineup_id": [ - 5028 + 5055 ], "region_veto_picks": [ - 2707 + 2734 ], "region_veto_picks_aggregate": [ - 2700 + 2727 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4527 + 4554 ], "server": [ - 4062 + 4089 ], "server_error": [ 82 ], "server_id": [ - 5028 + 5055 ], "server_plugin_runtime": [ 82 @@ -52776,37 +53187,37 @@ export default { 82 ], "started_at": [ - 4527 + 4554 ], "status": [ 1009 ], "streams": [ - 2738 + 2765 ], "streams_aggregate": [ - 2728 + 2755 ], "teams": [ - 4490 + 4517 ], "tournament_brackets": [ - 4581 + 4608 ], "tournament_brackets_aggregate": [ - 4572 + 4599 ], "tv_connection_string": [ 82 ], "veto_pick_expires_at": [ - 4527 + 4554 ], "winner": [ - 2475 + 2502 ], "winning_lineup_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -52823,16 +53234,16 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4526 + 4553 ], "clutches": [ - 5212 + 5239 ], "created_at": [ - 4526 + 4553 ], "demos": [ - 2517 + 2544 ], "draft_games": [ 471 @@ -52841,52 +53252,52 @@ export default { 1014 ], "e_region": [ - 4034 + 4061 ], "elo_changes": [ - 5419 + 5446 ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "lineup_1": [ - 2484 + 2511 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2": [ - 2484 + 2511 ], "lineup_2_id": [ - 5026 + 5053 ], "map_veto_picks": [ - 2608 + 2635 ], "match_maps": [ - 2634 + 2661 ], "match_options_id": [ - 5026 + 5053 ], "opening_duels": [ - 5340 + 5367 ], "options": [ - 2681 + 2708 ], "organizer": [ - 3948 + 3975 ], "organizer_steam_id": [ 257 @@ -52895,43 +53306,43 @@ export default { 80 ], "player_assists": [ - 3125 + 3152 ], "player_damages": [ - 3186 + 3213 ], "player_flashes": [ - 3297 + 3324 ], "player_kills": [ - 3342 + 3369 ], "player_objectives": [ - 3541 + 3568 ], "player_unused_utilities": [ - 3828 + 3855 ], "player_utility": [ - 3869 + 3896 ], "region": [ 80 ], "region_veto_picks": [ - 2706 + 2733 ], "scheduled_at": [ - 4526 + 4553 ], "server": [ - 4071 + 4098 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "share_code": [ 80 @@ -52940,25 +53351,25 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "status": [ 1008 ], "streams": [ - 2735 + 2762 ], "tournament_brackets": [ - 4578 + 4605 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winner": [ - 2484 + 2511 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -52966,7 +53377,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4526 + 4553 ], "connection_link": [ 80 @@ -52975,22 +53386,22 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "current_match_map_id": [ - 5026 + 5053 ], "effective_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -52999,19 +53410,19 @@ export default { 80 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2_id": [ - 5026 + 5053 ], "map_veto_picking_lineup_id": [ - 5026 + 5053 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -53029,16 +53440,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5026 + 5053 ], "scheduled_at": [ - 4526 + 4553 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "server_plugin_runtime": [ 80 @@ -53056,16 +53467,16 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -53073,67 +53484,67 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "effective_at": [ - 2979 + 3006 ], "ended_at": [ - 2979 + 3006 ], "external_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "lineup_1_id": [ - 2979 + 3006 ], "lineup_2_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "password": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "server_error": [ - 2979 + 3006 ], "server_id": [ - 2979 + 3006 ], "share_code": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "veto_pick_expires_at": [ - 2979 + 3006 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53141,7 +53552,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4526 + 4553 ], "connection_link": [ 80 @@ -53150,22 +53561,22 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "current_match_map_id": [ - 5026 + 5053 ], "effective_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "invite_code": [ 80 @@ -53174,19 +53585,19 @@ export default { 80 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2_id": [ - 5026 + 5053 ], "map_veto_picking_lineup_id": [ - 5026 + 5053 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -53204,16 +53615,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5026 + 5053 ], "scheduled_at": [ - 4526 + 4553 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "server_plugin_runtime": [ 80 @@ -53231,16 +53642,16 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -53248,67 +53659,67 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "effective_at": [ - 2979 + 3006 ], "ended_at": [ - 2979 + 3006 ], "external_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "lineup_1_id": [ - 2979 + 3006 ], "lineup_2_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "password": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "server_error": [ - 2979 + 3006 ], "server_id": [ - 2979 + 3006 ], "share_code": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "veto_pick_expires_at": [ - 2979 + 3006 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53319,7 +53730,7 @@ export default { 40 ], "returning": [ - 2794 + 2821 ], "__typename": [ 80 @@ -53327,10 +53738,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2806 + 2833 ], "on_conflict": [ - 2813 + 2840 ], "__typename": [ 80 @@ -53338,13 +53749,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2804 + 2831 ], "update_columns": [ - 2828 + 2855 ], "where": [ - 2803 + 2830 ], "__typename": [ 80 @@ -53352,49 +53763,49 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2979 + 3006 ], "can_cancel": [ - 2979 + 3006 ], "can_check_in": [ - 2979 + 3006 ], "can_reassign_winner": [ - 2979 + 3006 ], "can_schedule": [ - 2979 + 3006 ], "can_start": [ - 2979 + 3006 ], "can_stream_live": [ - 2979 + 3006 ], "can_stream_tv": [ - 2979 + 3006 ], "cancels_at": [ - 2979 + 3006 ], "clutches_aggregate": [ - 5211 + 5238 ], "connection_link": [ - 2979 + 3006 ], "connection_string": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current_match_map_id": [ - 2979 + 3006 ], "demos_aggregate": [ - 2515 + 2542 ], "draft_games_aggregate": [ 470 @@ -53403,190 +53814,190 @@ export default { 1016 ], "e_region": [ - 4036 + 4063 ], "effective_at": [ - 2979 + 3006 ], "elo_changes_aggregate": [ - 5418 + 5445 ], "ended_at": [ - 2979 + 3006 ], "external_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invite_code": [ - 2979 + 3006 ], "is_captain": [ - 2979 + 3006 ], "is_coach": [ - 2979 + 3006 ], "is_friend_in_match_lineup": [ - 2979 + 3006 ], "is_in_lineup": [ - 2979 + 3006 ], "is_match_server_available": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "is_server_online": [ - 2979 + 3006 ], "is_tournament_match": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "lineup_1": [ - 2486 + 2513 ], "lineup_1_id": [ - 2979 + 3006 ], "lineup_2": [ - 2486 + 2513 ], "lineup_2_id": [ - 2979 + 3006 ], "lineup_counts": [ - 2979 + 3006 ], "map_veto_picking_lineup_id": [ - 2979 + 3006 ], "map_veto_picks_aggregate": [ - 2607 + 2634 ], "map_veto_type": [ - 2979 + 3006 ], "match_maps_aggregate": [ - 2633 + 2660 ], "match_options_id": [ - 2979 + 3006 ], "max_players_per_lineup": [ - 2979 + 3006 ], "min_players_per_lineup": [ - 2979 + 3006 ], "opening_duels_aggregate": [ - 5339 + 5366 ], "options": [ - 2683 + 2710 ], "organizer": [ - 3950 + 3977 ], "organizer_steam_id": [ - 2979 + 3006 ], "password": [ - 2979 + 3006 ], "player_assists_aggregate": [ - 3124 + 3151 ], "player_damages_aggregate": [ - 3185 + 3212 ], "player_flashes_aggregate": [ - 3296 + 3323 ], "player_kills_aggregate": [ - 3341 + 3368 ], "player_objectives_aggregate": [ - 3540 + 3567 ], "player_unused_utilities_aggregate": [ - 3827 + 3854 ], "player_utility_aggregate": [ - 3868 + 3895 ], "region": [ - 2979 + 3006 ], "region_veto_picking_lineup_id": [ - 2979 + 3006 ], "region_veto_picks_aggregate": [ - 2705 + 2732 ], "requested_organizer": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "server": [ - 4073 + 4100 ], "server_error": [ - 2979 + 3006 ], "server_id": [ - 2979 + 3006 ], "server_plugin_runtime": [ - 2979 + 3006 ], "server_region": [ - 2979 + 3006 ], "server_type": [ - 2979 + 3006 ], "share_code": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "streams_aggregate": [ - 2733 + 2760 ], "teams_aggregate": [ - 4486 + 4513 ], "tournament_brackets_aggregate": [ - 4577 + 4604 ], "tv_connection_string": [ - 2979 + 3006 ], "veto_pick_expires_at": [ - 2979 + 3006 ], "winner": [ - 2486 + 2513 ], "winning_lineup_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53594,7 +54005,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -53603,31 +54014,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "organizer_steam_id": [ 257 @@ -53639,13 +54050,13 @@ export default { 80 ], "scheduled_at": [ - 4526 + 4553 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "share_code": [ 80 @@ -53654,16 +54065,16 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "status": [ 1008 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -53685,7 +54096,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53707,7 +54118,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53729,7 +54140,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53737,7 +54148,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2825 + 2852 ], "ordering": [ 313 @@ -53748,34 +54159,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "effective_at": [ - 4526 + 4553 ], "ended_at": [ - 4526 + 4553 ], "external_id": [ 80 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "lineup_1_id": [ - 5026 + 5053 ], "lineup_2_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "organizer_steam_id": [ 257 @@ -53787,13 +54198,13 @@ export default { 80 ], "scheduled_at": [ - 4526 + 4553 ], "server_error": [ 80 ], "server_id": [ - 5026 + 5053 ], "share_code": [ 80 @@ -53802,16 +54213,16 @@ export default { 80 ], "started_at": [ - 4526 + 4553 ], "status": [ 1008 ], "veto_pick_expires_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -53833,7 +54244,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53842,13 +54253,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2805 + 2832 ], "_set": [ - 2817 + 2844 ], "where": [ - 2803 + 2830 ], "__typename": [ 80 @@ -53870,7 +54281,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53892,7 +54303,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53914,7 +54325,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -53933,10 +54344,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2838 + 2865 ], "nodes": [ - 2836 + 2863 ], "__typename": [ 80 @@ -53947,7 +54358,7 @@ export default { 40, { "columns": [ - 2848, + 2875, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -53956,10 +54367,10 @@ export default { } ], "max": [ - 2842 + 2869 ], "min": [ - 2843 + 2870 ], "__typename": [ 80 @@ -53967,13 +54378,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2839 + 2866 ], "_not": [ - 2839 + 2866 ], "_or": [ - 2839 + 2866 ], "hash": [ 82 @@ -54024,7 +54435,7 @@ export default { 40 ], "returning": [ - 2836 + 2863 ], "__typename": [ 80 @@ -54032,13 +54443,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2840 + 2867 ], "update_columns": [ - 2852 + 2879 ], "where": [ - 2839 + 2866 ], "__typename": [ 80 @@ -54046,10 +54457,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -54077,7 +54488,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2851 + 2878 ], "ordering": [ 313 @@ -54100,10 +54511,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2849 + 2876 ], "where": [ - 2839 + 2866 ], "__typename": [ 80 @@ -54117,7 +54528,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -54149,7 +54560,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -54175,10 +54586,10 @@ export default { } ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -54187,16 +54598,16 @@ export default { 5 ], "player": [ - 3937 + 3964 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -54214,7 +54625,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -54231,10 +54642,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2860 + 2887 ], "nodes": [ - 2854 + 2881 ], "__typename": [ 80 @@ -54242,13 +54653,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2857 + 2884 ], "bool_or": [ - 2858 + 2885 ], "count": [ - 2859 + 2886 ], "__typename": [ 80 @@ -54256,13 +54667,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2880 + 2907 ], "distinct": [ 5 ], "filter": [ - 2866 + 2893 ], "predicate": [ 6 @@ -54273,13 +54684,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2881 + 2908 ], "distinct": [ 5 ], "filter": [ - 2866 + 2893 ], "predicate": [ 6 @@ -54290,13 +54701,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2879 + 2906 ], "distinct": [ 5 ], "filter": [ - 2866 + 2893 ], "predicate": [ 41 @@ -54307,13 +54718,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2864 + 2891 ], "count": [ 40, { "columns": [ - 2879, + 2906, "[my_friends_select_column!]" ], "distinct": [ @@ -54322,31 +54733,31 @@ export default { } ], "max": [ - 2872 + 2899 ], "min": [ - 2874 + 2901 ], "stddev": [ - 2883 + 2910 ], "stddev_pop": [ - 2885 + 2912 ], "stddev_samp": [ - 2887 + 2914 ], "sum": [ - 2891 + 2918 ], "var_pop": [ - 2894 + 2921 ], "var_samp": [ - 2896 + 2923 ], "variance": [ - 2898 + 2925 ], "__typename": [ 80 @@ -54354,37 +54765,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2865 + 2892 ], "count": [ - 2979 + 3006 ], "max": [ - 2873 + 2900 ], "min": [ - 2875 + 2902 ], "stddev": [ - 2884 + 2911 ], "stddev_pop": [ - 2886 + 2913 ], "stddev_samp": [ - 2888 + 2915 ], "sum": [ - 2892 + 2919 ], "var_pop": [ - 2895 + 2922 ], "var_samp": [ - 2897 + 2924 ], "variance": [ - 2899 + 2926 ], "__typename": [ 80 @@ -54403,7 +54814,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2871 + 2898 ], "__typename": [ 80 @@ -54443,31 +54854,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -54475,13 +54886,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2866 + 2893 ], "_not": [ - 2866 + 2893 ], "_or": [ - 2866 + 2893 ], "avatar_url": [ 82 @@ -54490,7 +54901,7 @@ export default { 82 ], "created_at": [ - 4527 + 4554 ], "custom_avatar_url": [ 82 @@ -54517,7 +54928,7 @@ export default { 41 ], "faceit_updated_at": [ - 4527 + 4554 ], "faceit_url": [ 82 @@ -54538,10 +54949,10 @@ export default { 1844 ], "last_read_news_at": [ - 4527 + 4554 ], "last_sign_in_at": [ - 4527 + 4554 ], "name": [ 82 @@ -54550,16 +54961,16 @@ export default { 6 ], "player": [ - 3941 + 3968 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4527 + 4554 ], "presence_updated_at": [ - 4527 + 4554 ], "profile_url": [ 82 @@ -54577,7 +54988,7 @@ export default { 82 ], "steam_bans_checked_at": [ - 4527 + 4554 ], "steam_id": [ 259 @@ -54665,7 +55076,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -54692,7 +55103,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -54713,10 +55124,10 @@ export default { 1842 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -54725,16 +55136,16 @@ export default { 5 ], "player": [ - 3948 + 3975 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -54752,7 +55163,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -54775,7 +55186,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -54799,7 +55210,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -54817,10 +55228,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -54829,10 +55240,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -54847,7 +55258,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -54861,91 +55272,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2979 + 3006 ], "country": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_avatar_url": [ - 2979 + 3006 ], "days_since_last_ban": [ - 2979 + 3006 ], "discord_id": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_nickname": [ - 2979 + 3006 ], "faceit_player_id": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "faceit_updated_at": [ - 2979 + 3006 ], "faceit_url": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "language": [ - 2979 + 3006 ], "last_read_news_at": [ - 2979 + 3006 ], "last_sign_in_at": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "premier_rank_updated_at": [ - 2979 + 3006 ], "presence_updated_at": [ - 2979 + 3006 ], "profile_url": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "steam_bans_checked_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -54959,7 +55370,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -54983,7 +55394,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -55001,10 +55412,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -55013,10 +55424,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -55031,7 +55442,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -55045,91 +55456,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2979 + 3006 ], "country": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_avatar_url": [ - 2979 + 3006 ], "days_since_last_ban": [ - 2979 + 3006 ], "discord_id": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_nickname": [ - 2979 + 3006 ], "faceit_player_id": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "faceit_updated_at": [ - 2979 + 3006 ], "faceit_url": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "language": [ - 2979 + 3006 ], "last_read_news_at": [ - 2979 + 3006 ], "last_sign_in_at": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "premier_rank_updated_at": [ - 2979 + 3006 ], "presence_updated_at": [ - 2979 + 3006 ], "profile_url": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "steam_bans_checked_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55140,7 +55551,7 @@ export default { 40 ], "returning": [ - 2854 + 2881 ], "__typename": [ 80 @@ -55148,109 +55559,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2979 + 3006 ], "country": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_avatar_url": [ - 2979 + 3006 ], "days_since_last_ban": [ - 2979 + 3006 ], "discord_id": [ - 2979 + 3006 ], "elo": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_nickname": [ - 2979 + 3006 ], "faceit_player_id": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "faceit_updated_at": [ - 2979 + 3006 ], "faceit_url": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "language": [ - 2979 + 3006 ], "last_presence_state": [ - 2979 + 3006 ], "last_read_news_at": [ - 2979 + 3006 ], "last_sign_in_at": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "name_registered": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "premier_rank": [ - 2979 + 3006 ], "premier_rank_updated_at": [ - 2979 + 3006 ], "presence_updated_at": [ - 2979 + 3006 ], "profile_url": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "show_match_ready_modal": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "steam_bans_checked_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "vac_banned": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55278,7 +55689,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -55305,7 +55716,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -55326,10 +55737,10 @@ export default { 1842 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -55341,10 +55752,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -55362,7 +55773,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -55411,31 +55822,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55475,31 +55886,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55539,31 +55950,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55571,7 +55982,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2890 + 2917 ], "ordering": [ 313 @@ -55588,7 +55999,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -55615,7 +56026,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -55636,10 +56047,10 @@ export default { 1842 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -55651,10 +56062,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "presence_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -55672,7 +56083,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -55721,31 +56132,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55753,28 +56164,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2862 + 2889 ], "_delete_at_path": [ - 2867 + 2894 ], "_delete_elem": [ - 2868 + 2895 ], "_delete_key": [ - 2869 + 2896 ], "_inc": [ - 2870 + 2897 ], "_prepend": [ - 2878 + 2905 ], "_set": [ - 2882 + 2909 ], "where": [ - 2866 + 2893 ], "__typename": [ 80 @@ -55814,31 +56225,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55878,31 +56289,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55942,31 +56353,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2979 + 3006 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_skill_level": [ - 2979 + 3006 ], "friend_steam_id": [ - 2979 + 3006 ], "game_ban_count": [ - 2979 + 3006 ], "invited_by_steam_id": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "vac_ban_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -55974,7 +56385,7 @@ export default { }, "news_articles": { "author": [ - 3937 + 3964 ], "author_steam_id": [ 257 @@ -55986,13 +56397,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56007,7 +56418,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56018,10 +56429,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2902 + 2929 ], "nodes": [ - 2900 + 2927 ], "__typename": [ 80 @@ -56029,13 +56440,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2903 + 2930 ], "count": [ 40, { "columns": [ - 2914, + 2941, "[news_articles_select_column!]" ], "distinct": [ @@ -56044,31 +56455,31 @@ export default { } ], "max": [ - 2908 + 2935 ], "min": [ - 2909 + 2936 ], "stddev": [ - 2916 + 2943 ], "stddev_pop": [ - 2917 + 2944 ], "stddev_samp": [ - 2918 + 2945 ], "sum": [ - 2921 + 2948 ], "var_pop": [ - 2924 + 2951 ], "var_samp": [ - 2925 + 2952 ], "variance": [ - 2926 + 2953 ], "__typename": [ 80 @@ -56087,16 +56498,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2904 + 2931 ], "_not": [ - 2904 + 2931 ], "_or": [ - 2904 + 2931 ], "author": [ - 3941 + 3968 ], "author_steam_id": [ 259 @@ -56108,13 +56519,13 @@ export default { 82 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "published_at": [ - 4527 + 4554 ], "slug": [ 82 @@ -56129,7 +56540,7 @@ export default { 82 ], "updated_at": [ - 4527 + 4554 ], "view_count": [ 259 @@ -56152,7 +56563,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3948 + 3975 ], "author_steam_id": [ 257 @@ -56164,13 +56575,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56185,7 +56596,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56205,13 +56616,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56226,7 +56637,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56246,13 +56657,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56267,7 +56678,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56281,7 +56692,7 @@ export default { 40 ], "returning": [ - 2900 + 2927 ], "__typename": [ 80 @@ -56289,13 +56700,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2905 + 2932 ], "update_columns": [ - 2922 + 2949 ], "where": [ - 2904 + 2931 ], "__typename": [ 80 @@ -56303,43 +56714,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3950 + 3977 ], "author_steam_id": [ - 2979 + 3006 ], "content_markdown": [ - 2979 + 3006 ], "cover_image_url": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "published_at": [ - 2979 + 3006 ], "slug": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "teaser": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "view_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -56347,7 +56758,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -56365,13 +56776,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56386,7 +56797,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56430,7 +56841,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2920 + 2947 ], "ordering": [ 313 @@ -56450,13 +56861,13 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "published_at": [ - 4526 + 4553 ], "slug": [ 80 @@ -56471,7 +56882,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "view_count": [ 257 @@ -56494,13 +56905,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2906 + 2933 ], "_set": [ - 2915 + 2942 ], "where": [ - 2904 + 2931 ], "__typename": [ 80 @@ -56549,19 +56960,19 @@ export default { } ], "created_at": [ - 4526 + 4553 ], "deletable": [ 5 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "is_read": [ 5 @@ -56570,7 +56981,7 @@ export default { 80 ], "player": [ - 3937 + 3964 ], "role": [ 1090 @@ -56590,10 +57001,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2933 + 2960 ], "nodes": [ - 2927 + 2954 ], "__typename": [ 80 @@ -56601,13 +57012,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2930 + 2957 ], "bool_or": [ - 2931 + 2958 ], "count": [ - 2932 + 2959 ], "__typename": [ 80 @@ -56615,13 +57026,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2956 + 2983 ], "distinct": [ 5 ], "filter": [ - 2939 + 2966 ], "predicate": [ 6 @@ -56632,13 +57043,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2957 + 2984 ], "distinct": [ 5 ], "filter": [ - 2939 + 2966 ], "predicate": [ 6 @@ -56649,13 +57060,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2955 + 2982 ], "distinct": [ 5 ], "filter": [ - 2939 + 2966 ], "predicate": [ 41 @@ -56666,13 +57077,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2937 + 2964 ], "count": [ 40, { "columns": [ - 2955, + 2982, "[notifications_select_column!]" ], "distinct": [ @@ -56681,31 +57092,31 @@ export default { } ], "max": [ - 2946 + 2973 ], "min": [ - 2948 + 2975 ], "stddev": [ - 2959 + 2986 ], "stddev_pop": [ - 2961 + 2988 ], "stddev_samp": [ - 2963 + 2990 ], "sum": [ - 2967 + 2994 ], "var_pop": [ - 2971 + 2998 ], "var_samp": [ - 2973 + 3000 ], "variance": [ - 2975 + 3002 ], "__typename": [ 80 @@ -56713,37 +57124,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2938 + 2965 ], "count": [ - 2979 + 3006 ], "max": [ - 2947 + 2974 ], "min": [ - 2949 + 2976 ], "stddev": [ - 2960 + 2987 ], "stddev_pop": [ - 2962 + 2989 ], "stddev_samp": [ - 2964 + 2991 ], "sum": [ - 2968 + 2995 ], "var_pop": [ - 2972 + 2999 ], "var_samp": [ - 2974 + 3001 ], "variance": [ - 2976 + 3003 ], "__typename": [ 80 @@ -56759,10 +57170,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2945 + 2972 ], "on_conflict": [ - 2951 + 2978 ], "__typename": [ 80 @@ -56778,7 +57189,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -56786,31 +57197,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2939 + 2966 ], "_not": [ - 2939 + 2966 ], "_or": [ - 2939 + 2966 ], "actions": [ 1844 ], "created_at": [ - 4527 + 4554 ], "deletable": [ 6 ], "deleted_at": [ - 4527 + 4554 ], "entity_id": [ 82 ], "id": [ - 5028 + 5055 ], "is_read": [ 6 @@ -56819,7 +57230,7 @@ export default { 82 ], "player": [ - 3941 + 3968 ], "role": [ 1091 @@ -56875,19 +57286,19 @@ export default { 1842 ], "created_at": [ - 4526 + 4553 ], "deletable": [ 5 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "is_read": [ 5 @@ -56896,7 +57307,7 @@ export default { 80 ], "player": [ - 3948 + 3975 ], "role": [ 1090 @@ -56916,16 +57327,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "message": [ 80 @@ -56942,25 +57353,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "entity_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "__typename": [ 80 @@ -56968,16 +57379,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "message": [ 80 @@ -56994,25 +57405,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "entity_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57023,7 +57434,7 @@ export default { 40 ], "returning": [ - 2927 + 2954 ], "__typename": [ 80 @@ -57031,13 +57442,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2940 + 2967 ], "update_columns": [ - 2969 + 2996 ], "where": [ - 2939 + 2966 ], "__typename": [ 80 @@ -57045,43 +57456,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "deletable": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "entity_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_read": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "role": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57089,7 +57500,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -57111,19 +57522,19 @@ export default { 1842 ], "created_at": [ - 4526 + 4553 ], "deletable": [ 5 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "is_read": [ 5 @@ -57157,7 +57568,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57173,7 +57584,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57189,7 +57600,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57197,7 +57608,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2966 + 2993 ], "ordering": [ 313 @@ -57211,19 +57622,19 @@ export default { 1842 ], "created_at": [ - 4526 + 4553 ], "deletable": [ 5 ], "deleted_at": [ - 4526 + 4553 ], "entity_id": [ 80 ], "id": [ - 5026 + 5053 ], "is_read": [ 5 @@ -57257,7 +57668,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57266,28 +57677,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2935 + 2962 ], "_delete_at_path": [ - 2941 + 2968 ], "_delete_elem": [ - 2942 + 2969 ], "_delete_key": [ - 2943 + 2970 ], "_inc": [ - 2944 + 2971 ], "_prepend": [ - 2954 + 2981 ], "_set": [ - 2958 + 2985 ], "where": [ - 2939 + 2966 ], "__typename": [ 80 @@ -57303,7 +57714,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57319,7 +57730,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57335,7 +57746,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57344,31 +57755,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2977 + 3004 ], "_gt": [ - 2977 + 3004 ], "_gte": [ - 2977 + 3004 ], "_in": [ - 2977 + 3004 ], "_is_null": [ 5 ], "_lt": [ - 2977 + 3004 ], "_lte": [ - 2977 + 3004 ], "_neq": [ - 2977 + 3004 ], "_nin": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57377,19 +57788,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4526 + 4553 ], "pending_match_import": [ - 3021 + 3048 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57397,10 +57808,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2984 + 3011 ], "nodes": [ - 2980 + 3007 ], "__typename": [ 80 @@ -57408,7 +57819,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2983 + 3010 ], "__typename": [ 80 @@ -57416,13 +57827,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3001 + 3028 ], "distinct": [ 5 ], "filter": [ - 2989 + 3016 ], "predicate": [ 41 @@ -57433,13 +57844,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2987 + 3014 ], "count": [ 40, { "columns": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -57448,31 +57859,31 @@ export default { } ], "max": [ - 2993 + 3020 ], "min": [ - 2995 + 3022 ], "stddev": [ - 3003 + 3030 ], "stddev_pop": [ - 3005 + 3032 ], "stddev_samp": [ - 3007 + 3034 ], "sum": [ - 3011 + 3038 ], "var_pop": [ - 3015 + 3042 ], "var_samp": [ - 3017 + 3044 ], "variance": [ - 3019 + 3046 ], "__typename": [ 80 @@ -57480,37 +57891,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2988 + 3015 ], "count": [ - 2979 + 3006 ], "max": [ - 2994 + 3021 ], "min": [ - 2996 + 3023 ], "stddev": [ - 3004 + 3031 ], "stddev_pop": [ - 3006 + 3033 ], "stddev_samp": [ - 3008 + 3035 ], "sum": [ - 3012 + 3039 ], "var_pop": [ - 3016 + 3043 ], "var_samp": [ - 3018 + 3045 ], "variance": [ - 3020 + 3047 ], "__typename": [ 80 @@ -57518,10 +57929,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2992 + 3019 ], "on_conflict": [ - 2998 + 3025 ], "__typename": [ 80 @@ -57540,10 +57951,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57551,28 +57962,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2989 + 3016 ], "_not": [ - 2989 + 3016 ], "_or": [ - 2989 + 3016 ], "created_at": [ - 4527 + 4554 ], "pending_match_import": [ - 3025 + 3052 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 ], "valve_match_id": [ - 2978 + 3005 ], "__typename": [ 80 @@ -57584,7 +57995,7 @@ export default { 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57592,19 +58003,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4526 + 4553 ], "pending_match_import": [ - 3032 + 3059 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57612,13 +58023,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57626,13 +58037,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57640,13 +58051,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57654,13 +58065,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57671,7 +58082,7 @@ export default { 40 ], "returning": [ - 2980 + 3007 ], "__typename": [ 80 @@ -57679,13 +58090,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2990 + 3017 ], "update_columns": [ - 3013 + 3040 ], "where": [ - 2989 + 3016 ], "__typename": [ 80 @@ -57693,19 +58104,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2979 + 3006 ], "pending_match_import": [ - 3034 + 3061 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57716,7 +58127,7 @@ export default { 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57725,13 +58136,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57750,10 +58161,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57772,10 +58183,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57794,10 +58205,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57805,7 +58216,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3010 + 3037 ], "ordering": [ 313 @@ -57816,13 +58227,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57833,7 +58244,7 @@ export default { 257 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -57841,10 +58252,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57853,13 +58264,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2991 + 3018 ], "_set": [ - 3002 + 3029 ], "where": [ - 2989 + 3016 ], "__typename": [ 80 @@ -57878,10 +58289,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57900,10 +58311,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57922,10 +58333,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -57933,7 +58344,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -57945,13 +58356,13 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "players": [ - 2980, + 3007, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -57961,19 +58372,19 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "players_aggregate": [ - 2981, + 3008, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -57983,11 +58394,11 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], @@ -57998,10 +58409,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58009,10 +58420,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 3023 + 3050 ], "nodes": [ - 3021 + 3048 ], "__typename": [ 80 @@ -58020,13 +58431,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 3024 + 3051 ], "count": [ 40, { "columns": [ - 3036, + 3063, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -58035,31 +58446,31 @@ export default { } ], "max": [ - 3029 + 3056 ], "min": [ - 3030 + 3057 ], "stddev": [ - 3038 + 3065 ], "stddev_pop": [ - 3039 + 3066 ], "stddev_samp": [ - 3040 + 3067 ], "sum": [ - 3043 + 3070 ], "var_pop": [ - 3046 + 3073 ], "var_samp": [ - 3047 + 3074 ], "variance": [ - 3048 + 3075 ], "__typename": [ 80 @@ -58075,16 +58486,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 3025 + 3052 ], "_not": [ - 3025 + 3052 ], "_or": [ - 3025 + 3052 ], "created_at": [ - 4527 + 4554 ], "demo_url": [ 82 @@ -58096,13 +58507,13 @@ export default { 82 ], "match_start_time": [ - 4527 + 4554 ], "players": [ - 2989 + 3016 ], "players_aggregate": [ - 2982 + 3009 ], "share_code": [ 82 @@ -58111,10 +58522,10 @@ export default { 82 ], "updated_at": [ - 4527 + 4554 ], "valve_match_id": [ - 2978 + 3005 ], "__typename": [ 80 @@ -58123,7 +58534,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58131,7 +58542,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -58143,10 +58554,10 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "players": [ - 2986 + 3013 ], "share_code": [ 80 @@ -58155,10 +58566,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58166,7 +58577,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -58178,7 +58589,7 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "share_code": [ 80 @@ -58187,10 +58598,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58198,7 +58609,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -58210,7 +58621,7 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "share_code": [ 80 @@ -58219,10 +58630,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58233,7 +58644,7 @@ export default { 40 ], "returning": [ - 3021 + 3048 ], "__typename": [ 80 @@ -58241,10 +58652,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3028 + 3055 ], "on_conflict": [ - 3033 + 3060 ], "__typename": [ 80 @@ -58252,13 +58663,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 3026 + 3053 ], "update_columns": [ - 3044 + 3071 ], "where": [ - 3025 + 3052 ], "__typename": [ 80 @@ -58266,34 +58677,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2979 + 3006 ], "demo_url": [ - 2979 + 3006 ], "error": [ - 2979 + 3006 ], "map_name": [ - 2979 + 3006 ], "match_start_time": [ - 2979 + 3006 ], "players_aggregate": [ - 2985 + 3012 ], "share_code": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "valve_match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -58301,7 +58712,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58310,7 +58721,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -58322,7 +58733,7 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "share_code": [ 80 @@ -58331,10 +58742,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58366,7 +58777,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3042 + 3069 ], "ordering": [ 313 @@ -58377,7 +58788,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "demo_url": [ 80 @@ -58389,7 +58800,7 @@ export default { 80 ], "match_start_time": [ - 4526 + 4553 ], "share_code": [ 80 @@ -58398,10 +58809,10 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58409,7 +58820,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2977 + 3004 ], "__typename": [ 80 @@ -58418,13 +58829,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3027 + 3054 ], "_set": [ - 3037 + 3064 ], "where": [ - 3025 + 3052 ], "__typename": [ 80 @@ -58456,7 +58867,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3937 + 3964 ], "attacker_steam_id": [ 257 @@ -58471,7 +58882,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -58489,16 +58900,16 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -58519,7 +58930,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -58530,10 +58941,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3051 + 3078 ], "nodes": [ - 3049 + 3076 ], "__typename": [ 80 @@ -58541,13 +58952,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3052 + 3079 ], "count": [ 40, { "columns": [ - 3063, + 3090, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -58556,31 +58967,31 @@ export default { } ], "max": [ - 3057 + 3084 ], "min": [ - 3058 + 3085 ], "stddev": [ - 3065 + 3092 ], "stddev_pop": [ - 3066 + 3093 ], "stddev_samp": [ - 3067 + 3094 ], "sum": [ - 3070 + 3097 ], "var_pop": [ - 3073 + 3100 ], "var_samp": [ - 3074 + 3101 ], "variance": [ - 3075 + 3102 ], "__typename": [ 80 @@ -58647,16 +59058,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3053 + 3080 ], "_not": [ - 3053 + 3080 ], "_or": [ - 3053 + 3080 ], "attacker": [ - 3941 + 3968 ], "attacker_steam_id": [ 259 @@ -58671,7 +59082,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2978 + 3005 ], "first_bullet_hits": [ 41 @@ -58689,16 +59100,16 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "non_awp_hits": [ 41 @@ -58719,7 +59130,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2978 + 3005 ], "total_engagement_frames": [ 41 @@ -58743,7 +59154,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -58779,7 +59190,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -58790,7 +59201,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3948 + 3975 ], "attacker_steam_id": [ 257 @@ -58805,7 +59216,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -58823,16 +59234,16 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -58853,7 +59264,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -58876,7 +59287,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -58894,10 +59305,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -58918,7 +59329,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -58941,7 +59352,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -58959,10 +59370,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -58983,7 +59394,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -58997,7 +59408,7 @@ export default { 40 ], "returning": [ - 3049 + 3076 ], "__typename": [ 80 @@ -59005,13 +59416,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3054 + 3081 ], "update_columns": [ - 3071 + 3098 ], "where": [ - 3053 + 3080 ], "__typename": [ 80 @@ -59019,73 +59430,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3950 + 3977 ], "attacker_steam_id": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "__typename": [ 80 @@ -59096,7 +59507,7 @@ export default { 257 ], "match_map_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -59117,7 +59528,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -59135,10 +59546,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -59159,7 +59570,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -59347,7 +59758,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3069 + 3096 ], "ordering": [ 313 @@ -59370,7 +59781,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -59388,10 +59799,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "non_awp_hits": [ 40 @@ -59412,7 +59823,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -59435,7 +59846,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "first_bullet_hits": [ 40 @@ -59471,7 +59882,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -59483,13 +59894,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3055 + 3082 ], "_set": [ - 3064 + 3091 ], "where": [ - 3053 + 3080 ], "__typename": [ 80 @@ -59686,19 +60097,19 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "shots": [ 40 @@ -59718,10 +60129,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3080 + 3107 ], "nodes": [ - 3076 + 3103 ], "__typename": [ 80 @@ -59729,7 +60140,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3079 + 3106 ], "__typename": [ 80 @@ -59737,13 +60148,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3097 + 3124 ], "distinct": [ 5 ], "filter": [ - 3085 + 3112 ], "predicate": [ 41 @@ -59754,13 +60165,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3083 + 3110 ], "count": [ 40, { "columns": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -59769,31 +60180,31 @@ export default { } ], "max": [ - 3089 + 3116 ], "min": [ - 3091 + 3118 ], "stddev": [ - 3099 + 3126 ], "stddev_pop": [ - 3101 + 3128 ], "stddev_samp": [ - 3103 + 3130 ], "sum": [ - 3107 + 3134 ], "var_pop": [ - 3111 + 3138 ], "var_samp": [ - 3113 + 3140 ], "variance": [ - 3115 + 3142 ], "__typename": [ 80 @@ -59801,37 +60212,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3084 + 3111 ], "count": [ - 2979 + 3006 ], "max": [ - 3090 + 3117 ], "min": [ - 3092 + 3119 ], "stddev": [ - 3100 + 3127 ], "stddev_pop": [ - 3102 + 3129 ], "stddev_samp": [ - 3104 + 3131 ], "sum": [ - 3108 + 3135 ], "var_pop": [ - 3112 + 3139 ], "var_samp": [ - 3114 + 3141 ], "variance": [ - 3116 + 3143 ], "__typename": [ 80 @@ -59839,10 +60250,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3088 + 3115 ], "on_conflict": [ - 3094 + 3121 ], "__typename": [ 80 @@ -59876,25 +60287,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -59902,13 +60313,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3085 + 3112 ], "_not": [ - 3085 + 3112 ], "_or": [ - 3085 + 3112 ], "first_bullet_hits": [ 41 @@ -59923,19 +60334,19 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "shots": [ 41 @@ -59994,19 +60405,19 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "shots": [ 40 @@ -60038,10 +60449,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -60061,34 +60472,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60108,10 +60519,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -60131,34 +60542,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60169,7 +60580,7 @@ export default { 40 ], "returning": [ - 3076 + 3103 ], "__typename": [ 80 @@ -60177,13 +60588,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3086 + 3113 ], "update_columns": [ - 3109 + 3136 ], "where": [ - 3085 + 3112 ], "__typename": [ 80 @@ -60191,43 +60602,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60235,7 +60646,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -60262,10 +60673,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -60311,25 +60722,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60363,25 +60774,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60415,25 +60826,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60441,7 +60852,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3106 + 3133 ], "ordering": [ 313 @@ -60464,10 +60875,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -60513,25 +60924,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60540,13 +60951,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3087 + 3114 ], "_set": [ - 3098 + 3125 ], "where": [ - 3085 + 3112 ], "__typename": [ 80 @@ -60580,25 +60991,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60632,25 +61043,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60684,25 +61095,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60710,7 +61121,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3937 + 3964 ], "attacked_steam_id": [ 257 @@ -60725,7 +61136,7 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "flash": [ 5 @@ -60734,25 +61145,25 @@ export default { 5 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -60760,10 +61171,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 3123 + 3150 ], "nodes": [ - 3117 + 3144 ], "__typename": [ 80 @@ -60771,13 +61182,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3120 + 3147 ], "bool_or": [ - 3121 + 3148 ], "count": [ - 3122 + 3149 ], "__typename": [ 80 @@ -60785,13 +61196,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3141 + 3168 ], "distinct": [ 5 ], "filter": [ - 3128 + 3155 ], "predicate": [ 6 @@ -60802,13 +61213,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3142 + 3169 ], "distinct": [ 5 ], "filter": [ - 3128 + 3155 ], "predicate": [ 6 @@ -60819,13 +61230,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3140 + 3167 ], "distinct": [ 5 ], "filter": [ - 3128 + 3155 ], "predicate": [ 41 @@ -60836,13 +61247,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 3126 + 3153 ], "count": [ 40, { "columns": [ - 3140, + 3167, "[player_assists_select_column!]" ], "distinct": [ @@ -60851,31 +61262,31 @@ export default { } ], "max": [ - 3132 + 3159 ], "min": [ - 3134 + 3161 ], "stddev": [ - 3144 + 3171 ], "stddev_pop": [ - 3146 + 3173 ], "stddev_samp": [ - 3148 + 3175 ], "sum": [ - 3152 + 3179 ], "var_pop": [ - 3156 + 3183 ], "var_samp": [ - 3158 + 3185 ], "variance": [ - 3160 + 3187 ], "__typename": [ 80 @@ -60883,37 +61294,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 3127 + 3154 ], "count": [ - 2979 + 3006 ], "max": [ - 3133 + 3160 ], "min": [ - 3135 + 3162 ], "stddev": [ - 3145 + 3172 ], "stddev_pop": [ - 3147 + 3174 ], "stddev_samp": [ - 3149 + 3176 ], "sum": [ - 3153 + 3180 ], "var_pop": [ - 3157 + 3184 ], "var_samp": [ - 3159 + 3186 ], "variance": [ - 3161 + 3188 ], "__typename": [ 80 @@ -60921,10 +61332,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 3131 + 3158 ], "on_conflict": [ - 3137 + 3164 ], "__typename": [ 80 @@ -60946,13 +61357,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -60960,16 +61371,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 3128 + 3155 ], "_not": [ - 3128 + 3155 ], "_or": [ - 3128 + 3155 ], "attacked_player": [ - 3941 + 3968 ], "attacked_steam_id": [ 259 @@ -60984,7 +61395,7 @@ export default { 82 ], "deleted_at": [ - 4527 + 4554 ], "flash": [ 6 @@ -60993,25 +61404,25 @@ export default { 6 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "round": [ 41 ], "time": [ - 4527 + 4554 ], "__typename": [ 80 @@ -61034,7 +61445,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3948 + 3975 ], "attacked_steam_id": [ 257 @@ -61049,31 +61460,31 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "flash": [ 5 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61093,19 +61504,19 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61113,31 +61524,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61157,19 +61568,19 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61177,31 +61588,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61212,7 +61623,7 @@ export default { 40 ], "returning": [ - 3117 + 3144 ], "__typename": [ 80 @@ -61220,13 +61631,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 3129 + 3156 ], "update_columns": [ - 3154 + 3181 ], "where": [ - 3128 + 3155 ], "__typename": [ 80 @@ -61234,49 +61645,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3950 + 3977 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "flash": [ - 2979 + 3006 ], "is_team_assist": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61290,10 +61701,10 @@ export default { 257 ], "match_map_id": [ - 5026 + 5053 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61316,22 +61727,22 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "flash": [ 5 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61353,13 +61764,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61381,13 +61792,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61409,13 +61820,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61423,7 +61834,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 3151 + 3178 ], "ordering": [ 313 @@ -61446,22 +61857,22 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "flash": [ 5 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -61483,13 +61894,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61498,13 +61909,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3130 + 3157 ], "_set": [ - 3143 + 3170 ], "where": [ - 3128 + 3155 ], "__typename": [ 80 @@ -61526,13 +61937,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61554,13 +61965,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61582,13 +61993,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -61596,28 +62007,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "counter_strafe_pct": [ - 2977 + 3004 ], "crosshair_deg": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "maps": [ 40 @@ -61632,16 +62043,16 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "time_to_damage_s": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "__typename": [ 80 @@ -61649,10 +62060,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 3164 + 3191 ], "nodes": [ - 3162 + 3189 ], "__typename": [ 80 @@ -61660,13 +62071,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3165 + 3192 ], "count": [ 40, { "columns": [ - 3170, + 3197, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -61675,31 +62086,31 @@ export default { } ], "max": [ - 3167 + 3194 ], "min": [ - 3168 + 3195 ], "stddev": [ - 3171 + 3198 ], "stddev_pop": [ - 3172 + 3199 ], "stddev_samp": [ - 3173 + 3200 ], "sum": [ - 3176 + 3203 ], "var_pop": [ - 3177 + 3204 ], "var_samp": [ - 3178 + 3205 ], "variance": [ - 3179 + 3206 ], "__typename": [ 80 @@ -61760,37 +62171,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 3166 + 3193 ], "_not": [ - 3166 + 3193 ], "_or": [ - 3166 + 3193 ], "accuracy": [ - 2978 + 3005 ], "accuracy_spotted": [ - 2978 + 3005 ], "counter_strafe_pct": [ - 2978 + 3005 ], "crosshair_deg": [ - 2978 + 3005 ], "enemy_blind_pr": [ - 2978 + 3005 ], "flash_assists_pr": [ - 2978 + 3005 ], "hs_pct": [ - 2978 + 3005 ], "kast_pct": [ - 2978 + 3005 ], "maps": [ 41 @@ -61805,16 +62216,16 @@ export default { 259 ], "survival_pct": [ - 2978 + 3005 ], "time_to_damage_s": [ - 2978 + 3005 ], "traded_death_pct": [ - 2978 + 3005 ], "util_efficiency": [ - 2978 + 3005 ], "__typename": [ 80 @@ -61822,28 +62233,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "counter_strafe_pct": [ - 2977 + 3004 ], "crosshair_deg": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "maps": [ 40 @@ -61858,16 +62269,16 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "time_to_damage_s": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "__typename": [ 80 @@ -61875,28 +62286,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "counter_strafe_pct": [ - 2977 + 3004 ], "crosshair_deg": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "maps": [ 40 @@ -61911,16 +62322,16 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "time_to_damage_s": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "__typename": [ 80 @@ -61928,52 +62339,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2979 + 3006 ], "accuracy_spotted": [ - 2979 + 3006 ], "counter_strafe_pct": [ - 2979 + 3006 ], "crosshair_deg": [ - 2979 + 3006 ], "enemy_blind_pr": [ - 2979 + 3006 ], "flash_assists_pr": [ - 2979 + 3006 ], "hs_pct": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "maps": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "survival_pct": [ - 2979 + 3006 ], "time_to_damage_s": [ - 2979 + 3006 ], "traded_death_pct": [ - 2979 + 3006 ], "util_efficiency": [ - 2979 + 3006 ], "__typename": [ 80 @@ -62141,7 +62552,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3175 + 3202 ], "ordering": [ 313 @@ -62152,28 +62563,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "counter_strafe_pct": [ - 2977 + 3004 ], "crosshair_deg": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "maps": [ 40 @@ -62188,16 +62599,16 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "time_to_damage_s": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "__typename": [ 80 @@ -62205,28 +62616,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "counter_strafe_pct": [ - 2977 + 3004 ], "crosshair_deg": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "maps": [ 40 @@ -62241,16 +62652,16 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "time_to_damage_s": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "__typename": [ 80 @@ -62426,7 +62837,7 @@ export default { 80 ], "attacked_player": [ - 3937 + 3964 ], "attacked_steam_id": [ 257 @@ -62453,7 +62864,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -62462,31 +62873,31 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "round": [ - 2977 + 3004 ], "team_damage": [ 5 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -62497,10 +62908,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 3184 + 3211 ], "nodes": [ - 3180 + 3207 ], "__typename": [ 80 @@ -62508,7 +62919,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 3183 + 3210 ], "__typename": [ 80 @@ -62516,13 +62927,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3201 + 3228 ], "distinct": [ 5 ], "filter": [ - 3189 + 3216 ], "predicate": [ 41 @@ -62533,13 +62944,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 3187 + 3214 ], "count": [ 40, { "columns": [ - 3201, + 3228, "[player_damages_select_column!]" ], "distinct": [ @@ -62548,31 +62959,31 @@ export default { } ], "max": [ - 3193 + 3220 ], "min": [ - 3195 + 3222 ], "stddev": [ - 3203 + 3230 ], "stddev_pop": [ - 3205 + 3232 ], "stddev_samp": [ - 3207 + 3234 ], "sum": [ - 3211 + 3238 ], "var_pop": [ - 3215 + 3242 ], "var_samp": [ - 3217 + 3244 ], "variance": [ - 3219 + 3246 ], "__typename": [ 80 @@ -62580,37 +62991,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 3188 + 3215 ], "count": [ - 2979 + 3006 ], "max": [ - 3194 + 3221 ], "min": [ - 3196 + 3223 ], "stddev": [ - 3204 + 3231 ], "stddev_pop": [ - 3206 + 3233 ], "stddev_samp": [ - 3208 + 3235 ], "sum": [ - 3212 + 3239 ], "var_pop": [ - 3216 + 3243 ], "var_samp": [ - 3218 + 3245 ], "variance": [ - 3220 + 3247 ], "__typename": [ 80 @@ -62618,10 +63029,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 3192 + 3219 ], "on_conflict": [ - 3198 + 3225 ], "__typename": [ 80 @@ -62655,25 +63066,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -62681,13 +63092,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 3189 + 3216 ], "_not": [ - 3189 + 3216 ], "_or": [ - 3189 + 3216 ], "armor": [ 41 @@ -62699,7 +63110,7 @@ export default { 82 ], "attacked_player": [ - 3941 + 3968 ], "attacked_steam_id": [ 259 @@ -62726,7 +63137,7 @@ export default { 41 ], "deleted_at": [ - 4527 + 4554 ], "health": [ 41 @@ -62735,31 +63146,31 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "round": [ - 2978 + 3005 ], "team_damage": [ 6 ], "time": [ - 4527 + 4554 ], "with": [ 82 @@ -62789,7 +63200,7 @@ export default { 40 ], "round": [ - 2977 + 3004 ], "__typename": [ 80 @@ -62806,7 +63217,7 @@ export default { 80 ], "attacked_player": [ - 3948 + 3975 ], "attacked_steam_id": [ 257 @@ -62833,7 +63244,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -62842,28 +63253,28 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "round": [ - 2977 + 3004 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -62907,7 +63318,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -62916,19 +63327,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ - 2977 + 3004 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -62939,64 +63350,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2979 + 3006 ], "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63037,7 +63448,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -63046,19 +63457,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ - 2977 + 3004 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -63069,64 +63480,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2979 + 3006 ], "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63137,7 +63548,7 @@ export default { 40 ], "returning": [ - 3180 + 3207 ], "__typename": [ 80 @@ -63145,13 +63556,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 3190 + 3217 ], "update_columns": [ - 3213 + 3240 ], "where": [ - 3189 + 3216 ], "__typename": [ 80 @@ -63159,79 +63570,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2979 + 3006 ], "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_player": [ - 3950 + 3977 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "round": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63239,13 +63650,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -63287,7 +63698,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -63296,19 +63707,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ - 2977 + 3004 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -63345,25 +63756,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63397,25 +63808,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63449,25 +63860,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63475,7 +63886,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3210 + 3237 ], "ordering": [ 313 @@ -63519,7 +63930,7 @@ export default { 40 ], "deleted_at": [ - 4526 + 4553 ], "health": [ 40 @@ -63528,19 +63939,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ - 2977 + 3004 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -63569,7 +63980,7 @@ export default { 40 ], "round": [ - 2977 + 3004 ], "__typename": [ 80 @@ -63577,25 +63988,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63604,13 +64015,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3191 + 3218 ], "_set": [ - 3202 + 3229 ], "where": [ - 3189 + 3216 ], "__typename": [ 80 @@ -63644,25 +64055,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63696,25 +64107,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63748,25 +64159,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_armor": [ - 2979 + 3006 ], "health": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -63780,13 +64191,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -63801,7 +64212,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -63819,10 +64230,10 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -63831,7 +64242,7 @@ export default { 1689 ], "player": [ - 3937 + 3964 ], "player_team_elo_avg": [ 1689 @@ -63840,10 +64251,10 @@ export default { 1689 ], "season": [ - 3996 + 4023 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -63863,10 +64274,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3223 + 3250 ], "nodes": [ - 3221 + 3248 ], "__typename": [ 80 @@ -63874,13 +64285,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3224 + 3251 ], "count": [ 40, { "columns": [ - 3235, + 3262, "[player_elo_select_column!]" ], "distinct": [ @@ -63889,31 +64300,31 @@ export default { } ], "max": [ - 3229 + 3256 ], "min": [ - 3230 + 3257 ], "stddev": [ - 3237 + 3264 ], "stddev_pop": [ - 3238 + 3265 ], "stddev_samp": [ - 3239 + 3266 ], "sum": [ - 3242 + 3269 ], "var_pop": [ - 3245 + 3272 ], "var_samp": [ - 3246 + 3273 ], "variance": [ - 3247 + 3274 ], "__typename": [ 80 @@ -63989,13 +64400,13 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3225 + 3252 ], "_not": [ - 3225 + 3252 ], "_or": [ - 3225 + 3252 ], "actual_score": [ 1690 @@ -64004,13 +64415,13 @@ export default { 41 ], "change": [ - 2978 + 3005 ], "created_at": [ - 4527 + 4554 ], "current": [ - 2978 + 3005 ], "damage": [ 41 @@ -64025,7 +64436,7 @@ export default { 1690 ], "impact": [ - 2978 + 3005 ], "k_factor": [ 41 @@ -64043,10 +64454,10 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "opponent_team_elo_avg": [ 1690 @@ -64055,7 +64466,7 @@ export default { 1690 ], "player": [ - 3941 + 3968 ], "player_team_elo_avg": [ 1690 @@ -64064,10 +64475,10 @@ export default { 1690 ], "season": [ - 4000 + 4027 ], "season_id": [ - 5028 + 5055 ], "series_multiplier": [ 41 @@ -64094,10 +64505,10 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64112,7 +64523,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64162,13 +64573,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64183,7 +64594,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64201,10 +64612,10 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -64213,7 +64624,7 @@ export default { 1689 ], "player": [ - 3948 + 3975 ], "player_team_elo_avg": [ 1689 @@ -64222,10 +64633,10 @@ export default { 1689 ], "season": [ - 4007 + 4034 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -64251,13 +64662,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64272,7 +64683,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64290,7 +64701,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -64305,7 +64716,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -64328,13 +64739,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64349,7 +64760,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64367,7 +64778,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -64382,7 +64793,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -64402,7 +64813,7 @@ export default { 40 ], "returning": [ - 3221 + 3248 ], "__typename": [ 80 @@ -64410,13 +64821,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3226 + 3253 ], "update_columns": [ - 3243 + 3270 ], "where": [ - 3225 + 3252 ], "__typename": [ 80 @@ -64424,88 +64835,88 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "change": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "season": [ - 4009 + 4036 ], "season_id": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -64513,7 +64924,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -64534,13 +64945,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64555,7 +64966,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64573,7 +64984,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -64588,7 +64999,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -64812,7 +65223,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3241 + 3268 ], "ordering": [ 313 @@ -64829,13 +65240,13 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "created_at": [ - 4526 + 4553 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64850,7 +65261,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64868,7 +65279,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "opponent_team_elo_avg": [ 1689 @@ -64883,7 +65294,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -64909,10 +65320,10 @@ export default { 40 ], "change": [ - 2977 + 3004 ], "current": [ - 2977 + 3004 ], "damage": [ 40 @@ -64927,7 +65338,7 @@ export default { 1689 ], "impact": [ - 2977 + 3004 ], "k_factor": [ 40 @@ -64972,13 +65383,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3227 + 3254 ], "_set": [ - 3236 + 3263 ], "where": [ - 3225 + 3252 ], "__typename": [ 80 @@ -65193,19 +65604,19 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "player": [ - 3937 + 3964 ], "previous_rank": [ 40 @@ -65222,10 +65633,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3252 + 3279 ], "nodes": [ - 3248 + 3275 ], "__typename": [ 80 @@ -65233,7 +65644,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3251 + 3278 ], "__typename": [ 80 @@ -65241,13 +65652,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3269 + 3296 ], "distinct": [ 5 ], "filter": [ - 3257 + 3284 ], "predicate": [ 41 @@ -65258,13 +65669,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3255 + 3282 ], "count": [ 40, { "columns": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -65273,31 +65684,31 @@ export default { } ], "max": [ - 3261 + 3288 ], "min": [ - 3263 + 3290 ], "stddev": [ - 3271 + 3298 ], "stddev_pop": [ - 3273 + 3300 ], "stddev_samp": [ - 3275 + 3302 ], "sum": [ - 3279 + 3306 ], "var_pop": [ - 3283 + 3310 ], "var_samp": [ - 3285 + 3312 ], "variance": [ - 3287 + 3314 ], "__typename": [ 80 @@ -65305,37 +65716,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3256 + 3283 ], "count": [ - 2979 + 3006 ], "max": [ - 3262 + 3289 ], "min": [ - 3264 + 3291 ], "stddev": [ - 3272 + 3299 ], "stddev_pop": [ - 3274 + 3301 ], "stddev_samp": [ - 3276 + 3303 ], "sum": [ - 3280 + 3307 ], "var_pop": [ - 3284 + 3311 ], "var_samp": [ - 3286 + 3313 ], "variance": [ - 3288 + 3315 ], "__typename": [ 80 @@ -65343,10 +65754,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3260 + 3287 ], "on_conflict": [ - 3266 + 3293 ], "__typename": [ 80 @@ -65371,16 +65782,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65388,31 +65799,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3257 + 3284 ], "_not": [ - 3257 + 3284 ], "_or": [ - 3257 + 3284 ], "elo": [ 41 ], "id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "observed_at": [ - 4527 + 4554 ], "player": [ - 3941 + 3968 ], "previous_rank": [ 41 @@ -65450,19 +65861,19 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "player": [ - 3948 + 3975 ], "previous_rank": [ 40 @@ -65482,13 +65893,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -65505,25 +65916,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65534,13 +65945,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -65557,25 +65968,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65586,7 +65997,7 @@ export default { 40 ], "returning": [ - 3248 + 3275 ], "__typename": [ 80 @@ -65594,13 +66005,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3258 + 3285 ], "update_columns": [ - 3281 + 3308 ], "where": [ - 3257 + 3284 ], "__typename": [ 80 @@ -65608,31 +66019,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65640,7 +66051,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -65652,13 +66063,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -65692,16 +66103,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65726,16 +66137,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65760,16 +66171,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65777,7 +66188,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3278 + 3305 ], "ordering": [ 313 @@ -65791,13 +66202,13 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -65831,16 +66242,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65849,13 +66260,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3259 + 3286 ], "_set": [ - 3270 + 3297 ], "where": [ - 3257 + 3284 ], "__typename": [ 80 @@ -65880,16 +66291,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65914,16 +66325,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65948,16 +66359,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "skill_level": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -65971,25 +66382,25 @@ export default { 257 ], "blinded": [ - 3937 + 3964 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -65998,10 +66409,10 @@ export default { 5 ], "thrown_by": [ - 3937 + 3964 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66009,10 +66420,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3295 + 3322 ], "nodes": [ - 3289 + 3316 ], "__typename": [ 80 @@ -66020,13 +66431,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3292 + 3319 ], "bool_or": [ - 3293 + 3320 ], "count": [ - 3294 + 3321 ], "__typename": [ 80 @@ -66034,13 +66445,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3313 + 3340 ], "distinct": [ 5 ], "filter": [ - 3300 + 3327 ], "predicate": [ 6 @@ -66051,13 +66462,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3314 + 3341 ], "distinct": [ 5 ], "filter": [ - 3300 + 3327 ], "predicate": [ 6 @@ -66068,13 +66479,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3312 + 3339 ], "distinct": [ 5 ], "filter": [ - 3300 + 3327 ], "predicate": [ 41 @@ -66085,13 +66496,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3298 + 3325 ], "count": [ 40, { "columns": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "distinct": [ @@ -66100,31 +66511,31 @@ export default { } ], "max": [ - 3304 + 3331 ], "min": [ - 3306 + 3333 ], "stddev": [ - 3316 + 3343 ], "stddev_pop": [ - 3318 + 3345 ], "stddev_samp": [ - 3320 + 3347 ], "sum": [ - 3324 + 3351 ], "var_pop": [ - 3328 + 3355 ], "var_samp": [ - 3330 + 3357 ], "variance": [ - 3332 + 3359 ], "__typename": [ 80 @@ -66132,37 +66543,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3299 + 3326 ], "count": [ - 2979 + 3006 ], "max": [ - 3305 + 3332 ], "min": [ - 3307 + 3334 ], "stddev": [ - 3317 + 3344 ], "stddev_pop": [ - 3319 + 3346 ], "stddev_samp": [ - 3321 + 3348 ], "sum": [ - 3325 + 3352 ], "var_pop": [ - 3329 + 3356 ], "var_samp": [ - 3331 + 3358 ], "variance": [ - 3333 + 3360 ], "__typename": [ 80 @@ -66170,10 +66581,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3303 + 3330 ], "on_conflict": [ - 3309 + 3336 ], "__typename": [ 80 @@ -66198,16 +66609,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66215,13 +66626,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3300 + 3327 ], "_not": [ - 3300 + 3327 ], "_or": [ - 3300 + 3327 ], "attacked_steam_id": [ 259 @@ -66230,25 +66641,25 @@ export default { 259 ], "blinded": [ - 3941 + 3968 ], "deleted_at": [ - 4527 + 4554 ], "duration": [ - 2978 + 3005 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "round": [ 41 @@ -66257,10 +66668,10 @@ export default { 6 ], "thrown_by": [ - 3941 + 3968 ], "time": [ - 4527 + 4554 ], "__typename": [ 80 @@ -66275,7 +66686,7 @@ export default { 257 ], "duration": [ - 2977 + 3004 ], "round": [ 40 @@ -66292,25 +66703,25 @@ export default { 257 ], "blinded": [ - 3948 + 3975 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -66319,10 +66730,10 @@ export default { 5 ], "thrown_by": [ - 3948 + 3975 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66336,22 +66747,22 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66359,28 +66770,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66394,22 +66805,22 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66417,28 +66828,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66449,7 +66860,7 @@ export default { 40 ], "returning": [ - 3289 + 3316 ], "__typename": [ 80 @@ -66457,13 +66868,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3301 + 3328 ], "update_columns": [ - 3326 + 3353 ], "where": [ - 3300 + 3327 ], "__typename": [ 80 @@ -66471,43 +66882,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "blinded": [ - 3950 + 3977 ], "deleted_at": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_flash": [ - 2979 + 3006 ], "thrown_by": [ - 3950 + 3977 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66521,10 +66932,10 @@ export default { 257 ], "match_map_id": [ - 5026 + 5053 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66541,16 +66952,16 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -66559,7 +66970,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66584,16 +66995,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66618,16 +67029,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66652,16 +67063,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66669,7 +67080,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3323 + 3350 ], "ordering": [ 313 @@ -66686,16 +67097,16 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "duration": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -66704,7 +67115,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -66718,7 +67129,7 @@ export default { 257 ], "duration": [ - 2977 + 3004 ], "round": [ 40 @@ -66729,16 +67140,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66747,13 +67158,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3302 + 3329 ], "_set": [ - 3315 + 3342 ], "where": [ - 3300 + 3327 ], "__typename": [ 80 @@ -66778,16 +67189,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66812,16 +67223,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66846,16 +67257,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "duration": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -66872,7 +67283,7 @@ export default { 80 ], "attacked_player": [ - 3937 + 3964 ], "attacked_steam_id": [ 257 @@ -66896,7 +67307,7 @@ export default { 5 ], "deleted_at": [ - 4526 + 4553 ], "headshot": [ 5 @@ -66911,22 +67322,22 @@ export default { 5 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "no_scope": [ 5 ], "player": [ - 3937 + 3964 ], "round": [ 40 @@ -66941,7 +67352,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -66952,10 +67363,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3340 + 3367 ], "nodes": [ - 3334 + 3361 ], "__typename": [ 80 @@ -66963,13 +67374,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3337 + 3364 ], "bool_or": [ - 3338 + 3365 ], "count": [ - 3339 + 3366 ], "__typename": [ 80 @@ -66977,13 +67388,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3399 + 3426 ], "distinct": [ 5 ], "filter": [ - 3345 + 3372 ], "predicate": [ 6 @@ -66994,13 +67405,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3400 + 3427 ], "distinct": [ 5 ], "filter": [ - 3345 + 3372 ], "predicate": [ 6 @@ -67011,13 +67422,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3398 + 3425 ], "distinct": [ 5 ], "filter": [ - 3345 + 3372 ], "predicate": [ 41 @@ -67028,13 +67439,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3343 + 3370 ], "count": [ 40, { "columns": [ - 3398, + 3425, "[player_kills_select_column!]" ], "distinct": [ @@ -67043,31 +67454,31 @@ export default { } ], "max": [ - 3390 + 3417 ], "min": [ - 3392 + 3419 ], "stddev": [ - 3402 + 3429 ], "stddev_pop": [ - 3404 + 3431 ], "stddev_samp": [ - 3406 + 3433 ], "sum": [ - 3410 + 3437 ], "var_pop": [ - 3414 + 3441 ], "var_samp": [ - 3416 + 3443 ], "variance": [ - 3418 + 3445 ], "__typename": [ 80 @@ -67075,37 +67486,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3344 + 3371 ], "count": [ - 2979 + 3006 ], "max": [ - 3391 + 3418 ], "min": [ - 3393 + 3420 ], "stddev": [ - 3403 + 3430 ], "stddev_pop": [ - 3405 + 3432 ], "stddev_samp": [ - 3407 + 3434 ], "sum": [ - 3411 + 3438 ], "var_pop": [ - 3415 + 3442 ], "var_samp": [ - 3417 + 3444 ], "variance": [ - 3419 + 3446 ], "__typename": [ 80 @@ -67113,10 +67524,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3389 + 3416 ], "on_conflict": [ - 3395 + 3422 ], "__typename": [ 80 @@ -67138,13 +67549,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67152,13 +67563,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3345 + 3372 ], "_not": [ - 3345 + 3372 ], "_or": [ - 3345 + 3372 ], "assisted": [ 6 @@ -67170,7 +67581,7 @@ export default { 82 ], "attacked_player": [ - 3941 + 3968 ], "attacked_steam_id": [ 259 @@ -67194,7 +67605,7 @@ export default { 6 ], "deleted_at": [ - 4527 + 4554 ], "headshot": [ 6 @@ -67209,22 +67620,22 @@ export default { 6 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "no_scope": [ 6 ], "player": [ - 3941 + 3968 ], "round": [ 41 @@ -67239,7 +67650,7 @@ export default { 6 ], "time": [ - 4527 + 4554 ], "with": [ 82 @@ -67253,7 +67664,7 @@ export default { 257 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -67267,10 +67678,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3350 + 3377 ], "nodes": [ - 3346 + 3373 ], "__typename": [ 80 @@ -67278,7 +67689,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3349 + 3376 ], "__typename": [ 80 @@ -67286,13 +67697,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3367 + 3394 ], "distinct": [ 5 ], "filter": [ - 3355 + 3382 ], "predicate": [ 41 @@ -67303,13 +67714,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3353 + 3380 ], "count": [ 40, { "columns": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -67318,31 +67729,31 @@ export default { } ], "max": [ - 3359 + 3386 ], "min": [ - 3361 + 3388 ], "stddev": [ - 3369 + 3396 ], "stddev_pop": [ - 3371 + 3398 ], "stddev_samp": [ - 3373 + 3400 ], "sum": [ - 3377 + 3404 ], "var_pop": [ - 3381 + 3408 ], "var_samp": [ - 3383 + 3410 ], "variance": [ - 3385 + 3412 ], "__typename": [ 80 @@ -67350,37 +67761,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3354 + 3381 ], "count": [ - 2979 + 3006 ], "max": [ - 3360 + 3387 ], "min": [ - 3362 + 3389 ], "stddev": [ - 3370 + 3397 ], "stddev_pop": [ - 3372 + 3399 ], "stddev_samp": [ - 3374 + 3401 ], "sum": [ - 3378 + 3405 ], "var_pop": [ - 3382 + 3409 ], "var_samp": [ - 3384 + 3411 ], "variance": [ - 3386 + 3413 ], "__typename": [ 80 @@ -67388,10 +67799,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3358 + 3385 ], "on_conflict": [ - 3364 + 3391 ], "__typename": [ 80 @@ -67410,10 +67821,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67421,19 +67832,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3355 + 3382 ], "_not": [ - 3355 + 3382 ], "_or": [ - 3355 + 3382 ], "kill_count": [ 259 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -67462,7 +67873,7 @@ export default { 257 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -67490,13 +67901,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67518,13 +67929,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67535,7 +67946,7 @@ export default { 40 ], "returning": [ - 3346 + 3373 ], "__typename": [ 80 @@ -67543,13 +67954,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3356 + 3383 ], "update_columns": [ - 3379 + 3406 ], "where": [ - 3355 + 3382 ], "__typename": [ 80 @@ -67557,16 +67968,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67611,10 +68022,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67633,10 +68044,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67655,10 +68066,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67666,7 +68077,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3376 + 3403 ], "ordering": [ 313 @@ -67702,10 +68113,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67714,13 +68125,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3357 + 3384 ], "_set": [ - 3368 + 3395 ], "where": [ - 3355 + 3382 ], "__typename": [ 80 @@ -67739,10 +68150,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67761,10 +68172,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67783,10 +68194,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -67818,7 +68229,7 @@ export default { 80 ], "attacked_player": [ - 3948 + 3975 ], "attacked_steam_id": [ 257 @@ -67842,7 +68253,7 @@ export default { 5 ], "deleted_at": [ - 4526 + 4553 ], "headshot": [ 5 @@ -67854,22 +68265,22 @@ export default { 5 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "no_scope": [ 5 ], "player": [ - 3948 + 3975 ], "round": [ 40 @@ -67881,7 +68292,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -67916,22 +68327,22 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "hitgroup": [ 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -67942,49 +68353,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68016,22 +68427,22 @@ export default { 80 ], "deleted_at": [ - 4526 + 4553 ], "hitgroup": [ 80 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -68042,49 +68453,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68095,7 +68506,7 @@ export default { 40 ], "returning": [ - 3334 + 3361 ], "__typename": [ 80 @@ -68103,13 +68514,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3387 + 3414 ], "update_columns": [ - 3412 + 3439 ], "where": [ - 3345 + 3372 ], "__typename": [ 80 @@ -68117,88 +68528,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2979 + 3006 ], "attacked_location": [ - 2979 + 3006 ], "attacked_location_coordinates": [ - 2979 + 3006 ], "attacked_player": [ - 3950 + 3977 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacked_team": [ - 2979 + 3006 ], "attacker_location": [ - 2979 + 3006 ], "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "attacker_team": [ - 2979 + 3006 ], "blinded": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "headshot": [ - 2979 + 3006 ], "hitgroup": [ - 2979 + 3006 ], "in_air": [ - 2979 + 3006 ], "is_suicide": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "no_scope": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "round": [ - 2979 + 3006 ], "team_kill": [ - 2979 + 3006 ], "thru_smoke": [ - 2979 + 3006 ], "thru_wall": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68212,10 +68623,10 @@ export default { 257 ], "match_map_id": [ - 5026 + 5053 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -68256,7 +68667,7 @@ export default { 5 ], "deleted_at": [ - 4526 + 4553 ], "headshot": [ 5 @@ -68268,10 +68679,10 @@ export default { 5 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "no_scope": [ 5 @@ -68286,7 +68697,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -68311,13 +68722,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68339,13 +68750,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68367,13 +68778,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68381,7 +68792,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3409 + 3436 ], "ordering": [ 313 @@ -68422,7 +68833,7 @@ export default { 5 ], "deleted_at": [ - 4526 + 4553 ], "headshot": [ 5 @@ -68434,10 +68845,10 @@ export default { 5 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "no_scope": [ 5 @@ -68452,7 +68863,7 @@ export default { 5 ], "time": [ - 4526 + 4553 ], "with": [ 80 @@ -68477,13 +68888,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68492,13 +68903,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3388 + 3415 ], "_set": [ - 3401 + 3428 ], "where": [ - 3345 + 3372 ], "__typename": [ 80 @@ -68520,13 +68931,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68548,13 +68959,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68576,13 +68987,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68607,10 +69018,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3422 + 3449 ], "nodes": [ - 3420 + 3447 ], "__typename": [ 80 @@ -68618,13 +69029,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3423 + 3450 ], "count": [ 40, { "columns": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -68633,31 +69044,31 @@ export default { } ], "max": [ - 3427 + 3454 ], "min": [ - 3428 + 3455 ], "stddev": [ - 3433 + 3460 ], "stddev_pop": [ - 3434 + 3461 ], "stddev_samp": [ - 3435 + 3462 ], "sum": [ - 3438 + 3465 ], "var_pop": [ - 3440 + 3467 ], "var_samp": [ - 3441 + 3468 ], "variance": [ - 3442 + 3469 ], "__typename": [ 80 @@ -68679,13 +69090,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3424 + 3451 ], "_not": [ - 3424 + 3451 ], "_or": [ - 3424 + 3451 ], "player_steam_id": [ 82 @@ -68773,7 +69184,7 @@ export default { 40 ], "returning": [ - 3420 + 3447 ], "__typename": [ 80 @@ -68781,16 +69192,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "total": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -68858,7 +69269,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3437 + 3464 ], "ordering": [ 313 @@ -68900,13 +69311,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3425 + 3452 ], "_set": [ - 3432 + 3459 ], "where": [ - 3424 + 3451 ], "__typename": [ 80 @@ -68974,7 +69385,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -69016,7 +69427,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -69070,16 +69481,16 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -69094,7 +69505,7 @@ export default { 40 ], "player": [ - 3937 + 3964 ], "rounds_ct": [ 40 @@ -69142,7 +69553,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -69172,7 +69583,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -69192,10 +69603,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3447 + 3474 ], "nodes": [ - 3443 + 3470 ], "__typename": [ 80 @@ -69203,7 +69614,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3446 + 3473 ], "__typename": [ 80 @@ -69211,13 +69622,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3464 + 3491 ], "distinct": [ 5 ], "filter": [ - 3452 + 3479 ], "predicate": [ 41 @@ -69228,13 +69639,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3450 + 3477 ], "count": [ 40, { "columns": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -69243,31 +69654,31 @@ export default { } ], "max": [ - 3456 + 3483 ], "min": [ - 3458 + 3485 ], "stddev": [ - 3466 + 3493 ], "stddev_pop": [ - 3468 + 3495 ], "stddev_samp": [ - 3470 + 3497 ], "sum": [ - 3474 + 3501 ], "var_pop": [ - 3478 + 3505 ], "var_samp": [ - 3480 + 3507 ], "variance": [ - 3482 + 3509 ], "__typename": [ 80 @@ -69275,37 +69686,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3451 + 3478 ], "count": [ - 2979 + 3006 ], "max": [ - 3457 + 3484 ], "min": [ - 3459 + 3486 ], "stddev": [ - 3467 + 3494 ], "stddev_pop": [ - 3469 + 3496 ], "stddev_samp": [ - 3471 + 3498 ], "sum": [ - 3475 + 3502 ], "var_pop": [ - 3479 + 3506 ], "var_samp": [ - 3481 + 3508 ], "variance": [ - 3483 + 3510 ], "__typename": [ 80 @@ -69313,10 +69724,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3455 + 3482 ], "on_conflict": [ - 3461 + 3488 ], "__typename": [ 80 @@ -69542,217 +69953,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -69760,13 +70171,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3452 + 3479 ], "_not": [ - 3452 + 3479 ], "_or": [ - 3452 + 3479 ], "assists": [ 41 @@ -69787,7 +70198,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 2978 + 3005 ], "damage": [ 41 @@ -69829,7 +70240,7 @@ export default { 41 ], "flash_duration_sum": [ - 2978 + 3005 ], "flashes_thrown": [ 41 @@ -69883,16 +70294,16 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "molotov_damage": [ 41 @@ -69907,7 +70318,7 @@ export default { 41 ], "player": [ - 3941 + 3968 ], "rounds_ct": [ 41 @@ -69955,7 +70366,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 2978 + 3005 ], "total_engagement_frames": [ 41 @@ -69985,7 +70396,7 @@ export default { 41 ], "updated_at": [ - 4527 + 4554 ], "util_on_death_count": [ 41 @@ -70024,7 +70435,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -70066,7 +70477,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -70177,7 +70588,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -70242,7 +70653,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -70284,7 +70695,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -70338,16 +70749,16 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -70362,7 +70773,7 @@ export default { 40 ], "player": [ - 3948 + 3975 ], "rounds_ct": [ 40 @@ -70410,7 +70821,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -70440,7 +70851,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -70478,7 +70889,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -70520,7 +70931,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -70574,10 +70985,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -70637,7 +71048,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -70667,7 +71078,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -70687,226 +71098,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -70932,7 +71343,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -70974,7 +71385,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -71028,10 +71439,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -71091,7 +71502,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -71121,7 +71532,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -71141,226 +71552,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -71371,7 +71782,7 @@ export default { 40 ], "returning": [ - 3443 + 3470 ], "__typename": [ 80 @@ -71379,13 +71790,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3453 + 3480 ], "update_columns": [ - 3476 + 3503 ], "where": [ - 3452 + 3479 ], "__typename": [ 80 @@ -71393,235 +71804,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -71629,7 +72040,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5026 + 5053 ], "steam_id": [ 257 @@ -71659,7 +72070,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -71701,7 +72112,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -71755,10 +72166,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -71818,7 +72229,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -71848,7 +72259,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -72086,217 +72497,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -72522,217 +72933,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -72958,217 +73369,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -73176,7 +73587,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3473 + 3500 ], "ordering": [ 313 @@ -73205,7 +73616,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -73247,7 +73658,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -73301,10 +73712,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -73364,7 +73775,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -73394,7 +73805,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "util_on_death_count": [ 40 @@ -73432,7 +73843,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 2977 + 3004 ], "damage": [ 40 @@ -73474,7 +73885,7 @@ export default { 40 ], "flash_duration_sum": [ - 2977 + 3004 ], "flashes_thrown": [ 40 @@ -73585,7 +73996,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 2977 + 3004 ], "total_engagement_frames": [ 40 @@ -73632,217 +74043,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -73851,13 +74262,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3454 + 3481 ], "_set": [ - 3465 + 3492 ], "where": [ - 3452 + 3479 ], "__typename": [ 80 @@ -74083,217 +74494,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -74519,217 +74930,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -74955,217 +75366,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "crosshair_angle_count": [ - 2979 + 3006 ], "crosshair_angle_sum_deg": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flash_duration_count": [ - 2979 + 3006 ], "flash_duration_sum": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kast_rounds": [ - 2979 + 3006 ], "kast_total_rounds": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "time_to_damage_count": [ - 2979 + 3006 ], "time_to_damage_sum_s": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "util_on_death_count": [ - 2979 + 3006 ], "util_on_death_sum": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -75173,37 +75584,37 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "aim_rating": [ 1689 ], "counter_strafe_pct": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "overall_rating": [ 1689 ], "played_at": [ - 4526 + 4553 ], "positioning_rating": [ 1689 @@ -75218,13 +75629,13 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "utility_rating": [ 1689 @@ -75235,10 +75646,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3486 + 3513 ], "nodes": [ - 3484 + 3511 ], "__typename": [ 80 @@ -75246,13 +75657,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3487 + 3514 ], "count": [ 40, { "columns": [ - 3492, + 3519, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -75261,31 +75672,31 @@ export default { } ], "max": [ - 3489 + 3516 ], "min": [ - 3490 + 3517 ], "stddev": [ - 3493 + 3520 ], "stddev_pop": [ - 3494 + 3521 ], "stddev_samp": [ - 3495 + 3522 ], "sum": [ - 3498 + 3525 ], "var_pop": [ - 3499 + 3526 ], "var_samp": [ - 3500 + 3527 ], "variance": [ - 3501 + 3528 ], "__typename": [ 80 @@ -75346,46 +75757,46 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3488 + 3515 ], "_not": [ - 3488 + 3515 ], "_or": [ - 3488 + 3515 ], "accuracy": [ - 2978 + 3005 ], "accuracy_spotted": [ - 2978 + 3005 ], "aim_rating": [ 1690 ], "counter_strafe_pct": [ - 2978 + 3005 ], "enemy_blind_pr": [ - 2978 + 3005 ], "flash_assists_pr": [ - 2978 + 3005 ], "hs_pct": [ - 2978 + 3005 ], "kast_pct": [ - 2978 + 3005 ], "match_id": [ - 5028 + 5055 ], "overall_rating": [ 1690 ], "played_at": [ - 4527 + 4554 ], "positioning_rating": [ 1690 @@ -75400,13 +75811,13 @@ export default { 259 ], "survival_pct": [ - 2978 + 3005 ], "traded_death_pct": [ - 2978 + 3005 ], "util_efficiency": [ - 2978 + 3005 ], "utility_rating": [ 1690 @@ -75417,37 +75828,37 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "aim_rating": [ 1689 ], "counter_strafe_pct": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "overall_rating": [ 1689 ], "played_at": [ - 4526 + 4553 ], "positioning_rating": [ 1689 @@ -75462,13 +75873,13 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "utility_rating": [ 1689 @@ -75479,37 +75890,37 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "aim_rating": [ 1689 ], "counter_strafe_pct": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "overall_rating": [ 1689 ], "played_at": [ - 4526 + 4553 ], "positioning_rating": [ 1689 @@ -75524,13 +75935,13 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "utility_rating": [ 1689 @@ -75541,61 +75952,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2979 + 3006 ], "accuracy_spotted": [ - 2979 + 3006 ], "aim_rating": [ - 2979 + 3006 ], "counter_strafe_pct": [ - 2979 + 3006 ], "enemy_blind_pr": [ - 2979 + 3006 ], "flash_assists_pr": [ - 2979 + 3006 ], "hs_pct": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "overall_rating": [ - 2979 + 3006 ], "played_at": [ - 2979 + 3006 ], "positioning_rating": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "survival_pct": [ - 2979 + 3006 ], "traded_death_pct": [ - 2979 + 3006 ], "util_efficiency": [ - 2979 + 3006 ], "utility_rating": [ - 2979 + 3006 ], "__typename": [ 80 @@ -75763,7 +76174,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3497 + 3524 ], "ordering": [ 313 @@ -75774,37 +76185,37 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "aim_rating": [ 1689 ], "counter_strafe_pct": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "overall_rating": [ 1689 ], "played_at": [ - 4526 + 4553 ], "positioning_rating": [ 1689 @@ -75819,13 +76230,13 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "utility_rating": [ 1689 @@ -75836,28 +76247,28 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2977 + 3004 ], "accuracy_spotted": [ - 2977 + 3004 ], "aim_rating": [ 1689 ], "counter_strafe_pct": [ - 2977 + 3004 ], "enemy_blind_pr": [ - 2977 + 3004 ], "flash_assists_pr": [ - 2977 + 3004 ], "hs_pct": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "overall_rating": [ 1689 @@ -75872,13 +76283,13 @@ export default { 257 ], "survival_pct": [ - 2977 + 3004 ], "traded_death_pct": [ - 2977 + 3004 ], "util_efficiency": [ - 2977 + 3004 ], "utility_rating": [ 1689 @@ -76057,13 +76468,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -76153,7 +76564,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -76237,7 +76648,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -76251,10 +76662,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3506 + 3533 ], "nodes": [ - 3502 + 3529 ], "__typename": [ 80 @@ -76262,7 +76673,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3505 + 3532 ], "__typename": [ 80 @@ -76270,13 +76681,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3518 + 3545 ], "distinct": [ 5 ], "filter": [ - 3511 + 3538 ], "predicate": [ 41 @@ -76287,13 +76698,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3509 + 3536 ], "count": [ 40, { "columns": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -76302,31 +76713,31 @@ export default { } ], "max": [ - 3513 + 3540 ], "min": [ - 3515 + 3542 ], "stddev": [ - 3519 + 3546 ], "stddev_pop": [ - 3521 + 3548 ], "stddev_samp": [ - 3523 + 3550 ], "sum": [ - 3527 + 3554 ], "var_pop": [ - 3529 + 3556 ], "var_samp": [ - 3531 + 3558 ], "variance": [ - 3533 + 3560 ], "__typename": [ 80 @@ -76334,37 +76745,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3510 + 3537 ], "count": [ - 2979 + 3006 ], "max": [ - 3514 + 3541 ], "min": [ - 3516 + 3543 ], "stddev": [ - 3520 + 3547 ], "stddev_pop": [ - 3522 + 3549 ], "stddev_samp": [ - 3524 + 3551 ], "sum": [ - 3528 + 3555 ], "var_pop": [ - 3530 + 3557 ], "var_samp": [ - 3532 + 3559 ], "variance": [ - 3534 + 3561 ], "__typename": [ 80 @@ -76372,7 +76783,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3512 + 3539 ], "__typename": [ 80 @@ -76580,199 +76991,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -76780,13 +77191,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3511 + 3538 ], "_not": [ - 3511 + 3538 ], "_or": [ - 3511 + 3538 ], "assists": [ 41 @@ -76798,13 +77209,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 2978 + 3005 ], "avg_flash_duration": [ - 2978 + 3005 ], "avg_time_to_damage_s": [ - 2978 + 3005 ], "counter_strafe_eligible_shots": [ 41 @@ -76894,7 +77305,7 @@ export default { 41 ], "match_id": [ - 5028 + 5055 ], "molotov_damage": [ 41 @@ -76978,7 +77389,7 @@ export default { 41 ], "utility_on_death": [ - 2978 + 3005 ], "wasted_magazine_shots": [ 41 @@ -77001,13 +77412,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -77097,7 +77508,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -77181,7 +77592,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -77204,13 +77615,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -77300,7 +77711,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -77384,7 +77795,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -77398,202 +77809,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -77610,13 +78021,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -77706,7 +78117,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -77790,7 +78201,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -77804,202 +78215,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -78007,202 +78418,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -78411,199 +78822,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -78811,199 +79222,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -79211,199 +79622,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -79411,7 +79822,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3526 + 3553 ], "ordering": [ 313 @@ -79431,13 +79842,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -79527,7 +79938,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "molotov_damage": [ 40 @@ -79611,7 +80022,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -79634,13 +80045,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 2977 + 3004 ], "avg_flash_duration": [ - 2977 + 3004 ], "avg_time_to_damage_s": [ - 2977 + 3004 ], "counter_strafe_eligible_shots": [ 40 @@ -79811,7 +80222,7 @@ export default { 40 ], "utility_on_death": [ - 2977 + 3004 ], "wasted_magazine_shots": [ 40 @@ -79825,199 +80236,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -80225,199 +80636,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -80625,199 +81036,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81025,199 +81436,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2979 + 3006 ], "assists_ct": [ - 2979 + 3006 ], "assists_t": [ - 2979 + 3006 ], "avg_crosshair_angle_deg": [ - 2979 + 3006 ], "avg_flash_duration": [ - 2979 + 3006 ], "avg_time_to_damage_s": [ - 2979 + 3006 ], "counter_strafe_eligible_shots": [ - 2979 + 3006 ], "counter_strafed_shots": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_ct": [ - 2979 + 3006 ], "damage_t": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "deaths_ct": [ - 2979 + 3006 ], "deaths_t": [ - 2979 + 3006 ], "decoy_throws": [ - 2979 + 3006 ], "enemies_flashed": [ - 2979 + 3006 ], "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "five_kill_rounds": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "flashes_thrown": [ - 2979 + 3006 ], "four_kill_rounds": [ - 2979 + 3006 ], "he_damage": [ - 2979 + 3006 ], "he_team_damage": [ - 2979 + 3006 ], "he_throws": [ - 2979 + 3006 ], "headshot_hits": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_at_spotted": [ - 2979 + 3006 ], "hs_kills": [ - 2979 + 3006 ], "hs_kills_ct": [ - 2979 + 3006 ], "hs_kills_t": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kills_ct": [ - 2979 + 3006 ], "kills_t": [ - 2979 + 3006 ], "knife_kills": [ - 2979 + 3006 ], "molotov_damage": [ - 2979 + 3006 ], "molotov_throws": [ - 2979 + 3006 ], "non_awp_hits": [ - 2979 + 3006 ], "on_target_frames": [ - 2979 + 3006 ], "rounds_ct": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "rounds_t": [ - 2979 + 3006 ], "shots_at_spotted": [ - 2979 + 3006 ], "shots_fired": [ - 2979 + 3006 ], "smoke_throws": [ - 2979 + 3006 ], "spotted_count": [ - 2979 + 3006 ], "spotted_with_damage_count": [ - 2979 + 3006 ], "spray_hits": [ - 2979 + 3006 ], "spray_shots": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_damage": [ - 2979 + 3006 ], "team_flashed": [ - 2979 + 3006 ], "three_kill_rounds": [ - 2979 + 3006 ], "total_engagement_frames": [ - 2979 + 3006 ], "trade_kill_attempts": [ - 2979 + 3006 ], "trade_kill_opportunities": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_attempts": [ - 2979 + 3006 ], "traded_death_opportunities": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "two_kill_rounds": [ - 2979 + 3006 ], "unused_utility_value": [ - 2979 + 3006 ], "utility_on_death": [ - 2979 + 3006 ], "wasted_magazine_shots": [ - 2979 + 3006 ], "zeus_kills": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81225,22 +81636,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4526 + 4553 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -81249,7 +81660,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "type": [ 1070 @@ -81260,10 +81671,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3539 + 3566 ], "nodes": [ - 3535 + 3562 ], "__typename": [ 80 @@ -81271,7 +81682,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3538 + 3565 ], "__typename": [ 80 @@ -81279,13 +81690,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3556 + 3583 ], "distinct": [ 5 ], "filter": [ - 3544 + 3571 ], "predicate": [ 41 @@ -81296,13 +81707,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3542 + 3569 ], "count": [ 40, { "columns": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "distinct": [ @@ -81311,31 +81722,31 @@ export default { } ], "max": [ - 3548 + 3575 ], "min": [ - 3550 + 3577 ], "stddev": [ - 3558 + 3585 ], "stddev_pop": [ - 3560 + 3587 ], "stddev_samp": [ - 3562 + 3589 ], "sum": [ - 3566 + 3593 ], "var_pop": [ - 3570 + 3597 ], "var_samp": [ - 3572 + 3599 ], "variance": [ - 3574 + 3601 ], "__typename": [ 80 @@ -81343,37 +81754,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3543 + 3570 ], "count": [ - 2979 + 3006 ], "max": [ - 3549 + 3576 ], "min": [ - 3551 + 3578 ], "stddev": [ - 3559 + 3586 ], "stddev_pop": [ - 3561 + 3588 ], "stddev_samp": [ - 3563 + 3590 ], "sum": [ - 3567 + 3594 ], "var_pop": [ - 3571 + 3598 ], "var_samp": [ - 3573 + 3600 ], "variance": [ - 3575 + 3602 ], "__typename": [ 80 @@ -81381,10 +81792,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3547 + 3574 ], "on_conflict": [ - 3553 + 3580 ], "__typename": [ 80 @@ -81403,10 +81814,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81414,31 +81825,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3544 + 3571 ], "_not": [ - 3544 + 3571 ], "_or": [ - 3544 + 3571 ], "deleted_at": [ - 4527 + 4554 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -81447,7 +81858,7 @@ export default { 41 ], "time": [ - 4527 + 4554 ], "type": [ 1071 @@ -81470,22 +81881,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4526 + 4553 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -81494,7 +81905,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "type": [ 1070 @@ -81505,13 +81916,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -81520,7 +81931,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -81528,22 +81939,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81551,13 +81962,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -81566,7 +81977,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -81574,22 +81985,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81600,7 +82011,7 @@ export default { 40 ], "returning": [ - 3535 + 3562 ], "__typename": [ 80 @@ -81608,13 +82019,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3545 + 3572 ], "update_columns": [ - 3568 + 3595 ], "where": [ - 3544 + 3571 ], "__typename": [ 80 @@ -81622,34 +82033,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81657,13 +82068,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -81672,13 +82083,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -81687,7 +82098,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "type": [ 1070 @@ -81709,10 +82120,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81731,10 +82142,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81753,10 +82164,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81764,7 +82175,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3565 + 3592 ], "ordering": [ 313 @@ -81775,13 +82186,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -81790,7 +82201,7 @@ export default { 40 ], "time": [ - 4526 + 4553 ], "type": [ 1070 @@ -81812,10 +82223,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81824,13 +82235,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3546 + 3573 ], "_set": [ - 3557 + 3584 ], "where": [ - 3544 + 3571 ], "__typename": [ 80 @@ -81849,10 +82260,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81871,10 +82282,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81893,10 +82304,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -81981,10 +82392,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3578 + 3605 ], "nodes": [ - 3576 + 3603 ], "__typename": [ 80 @@ -81992,13 +82403,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3579 + 3606 ], "count": [ 40, { "columns": [ - 3584, + 3611, "[player_performance_v_select_column!]" ], "distinct": [ @@ -82007,31 +82418,31 @@ export default { } ], "max": [ - 3581 + 3608 ], "min": [ - 3582 + 3609 ], "stddev": [ - 3585 + 3612 ], "stddev_pop": [ - 3586 + 3613 ], "stddev_samp": [ - 3587 + 3614 ], "sum": [ - 3590 + 3617 ], "var_pop": [ - 3591 + 3618 ], "var_samp": [ - 3592 + 3619 ], "variance": [ - 3593 + 3620 ], "__typename": [ 80 @@ -82116,13 +82527,13 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3580 + 3607 ], "_not": [ - 3580 + 3607 ], "_or": [ - 3580 + 3607 ], "accuracy_score": [ 1690 @@ -82356,76 +82767,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2979 + 3006 ], "aim_goal": [ - 2979 + 3006 ], "aim_rating": [ - 2979 + 3006 ], "band": [ - 2979 + 3006 ], "band_sample": [ - 2979 + 3006 ], "blind_score": [ - 2979 + 3006 ], "counter_strafe_score": [ - 2979 + 3006 ], "crosshair_score": [ - 2979 + 3006 ], "flash_assists_score": [ - 2979 + 3006 ], "hs_score": [ - 2979 + 3006 ], "kast_score": [ - 2979 + 3006 ], "maps": [ - 2979 + 3006 ], "positioning_goal": [ - 2979 + 3006 ], "positioning_rating": [ - 2979 + 3006 ], "premier_rank": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "spotted_score": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "survival_score": [ - 2979 + 3006 ], "traded_score": [ - 2979 + 3006 ], "ttd_score": [ - 2979 + 3006 ], "util_eff_score": [ - 2979 + 3006 ], "utility_goal": [ - 2979 + 3006 ], "utility_rating": [ - 2979 + 3006 ], "__typename": [ 80 @@ -82665,7 +83076,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3589 + 3616 ], "ordering": [ 313 @@ -83061,25 +83472,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 5026 + 5053 ], "map": [ 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "player": [ - 3937 + 3964 ], "previous_rank": [ 40 @@ -83099,10 +83510,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3598 + 3625 ], "nodes": [ - 3594 + 3621 ], "__typename": [ 80 @@ -83110,7 +83521,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3597 + 3624 ], "__typename": [ 80 @@ -83118,13 +83529,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3615 + 3642 ], "distinct": [ 5 ], "filter": [ - 3603 + 3630 ], "predicate": [ 41 @@ -83135,13 +83546,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3601 + 3628 ], "count": [ 40, { "columns": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -83150,31 +83561,31 @@ export default { } ], "max": [ - 3607 + 3634 ], "min": [ - 3609 + 3636 ], "stddev": [ - 3617 + 3644 ], "stddev_pop": [ - 3619 + 3646 ], "stddev_samp": [ - 3621 + 3648 ], "sum": [ - 3625 + 3652 ], "var_pop": [ - 3629 + 3656 ], "var_samp": [ - 3631 + 3658 ], "variance": [ - 3633 + 3660 ], "__typename": [ 80 @@ -83182,37 +83593,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3602 + 3629 ], "count": [ - 2979 + 3006 ], "max": [ - 3608 + 3635 ], "min": [ - 3610 + 3637 ], "stddev": [ - 3618 + 3645 ], "stddev_pop": [ - 3620 + 3647 ], "stddev_samp": [ - 3622 + 3649 ], "sum": [ - 3626 + 3653 ], "var_pop": [ - 3630 + 3657 ], "var_samp": [ - 3632 + 3659 ], "variance": [ - 3634 + 3661 ], "__typename": [ 80 @@ -83220,10 +83631,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3606 + 3633 ], "on_conflict": [ - 3612 + 3639 ], "__typename": [ 80 @@ -83248,16 +83659,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83265,34 +83676,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3603 + 3630 ], "_not": [ - 3603 + 3630 ], "_or": [ - 3603 + 3630 ], "id": [ - 5028 + 5055 ], "map": [ 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "observed_at": [ - 4527 + 4554 ], "player": [ - 3941 + 3968 ], "previous_rank": [ 41 @@ -83330,25 +83741,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 5026 + 5053 ], "map": [ 2321 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "player": [ - 3948 + 3975 ], "previous_rank": [ 40 @@ -83368,16 +83779,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -83397,28 +83808,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83426,16 +83837,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -83455,28 +83866,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2979 + 3006 ], "map_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83487,7 +83898,7 @@ export default { 40 ], "returning": [ - 3594 + 3621 ], "__typename": [ 80 @@ -83495,13 +83906,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3604 + 3631 ], "update_columns": [ - 3627 + 3654 ], "where": [ - 3603 + 3630 ], "__typename": [ 80 @@ -83509,37 +83920,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2979 + 3006 ], "map": [ 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "observed_at": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83547,7 +83958,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -83556,16 +83967,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -83602,16 +84013,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83636,16 +84047,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83670,16 +84081,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83687,7 +84098,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3624 + 3651 ], "ordering": [ 313 @@ -83698,16 +84109,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5026 + 5053 ], "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "observed_at": [ - 4526 + 4553 ], "previous_rank": [ 40 @@ -83744,16 +84155,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83762,13 +84173,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3605 + 3632 ], "_set": [ - 3616 + 3643 ], "where": [ - 3603 + 3630 ], "__typename": [ 80 @@ -83793,16 +84204,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83827,16 +84238,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83861,16 +84272,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rank_type": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -83878,19 +84289,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "e_sanction_type": [ 1145 ], "id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -83899,10 +84310,10 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by": [ - 3937 + 3964 ], "sanctioned_by_steam_id": [ 257 @@ -83916,10 +84327,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3639 + 3666 ], "nodes": [ - 3635 + 3662 ], "__typename": [ 80 @@ -83927,7 +84338,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3638 + 3665 ], "__typename": [ 80 @@ -83935,13 +84346,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3656 + 3683 ], "distinct": [ 5 ], "filter": [ - 3644 + 3671 ], "predicate": [ 41 @@ -83952,13 +84363,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3642 + 3669 ], "count": [ 40, { "columns": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "distinct": [ @@ -83967,31 +84378,31 @@ export default { } ], "max": [ - 3648 + 3675 ], "min": [ - 3650 + 3677 ], "stddev": [ - 3658 + 3685 ], "stddev_pop": [ - 3660 + 3687 ], "stddev_samp": [ - 3662 + 3689 ], "sum": [ - 3666 + 3693 ], "var_pop": [ - 3670 + 3697 ], "var_samp": [ - 3672 + 3699 ], "variance": [ - 3674 + 3701 ], "__typename": [ 80 @@ -83999,37 +84410,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3643 + 3670 ], "count": [ - 2979 + 3006 ], "max": [ - 3649 + 3676 ], "min": [ - 3651 + 3678 ], "stddev": [ - 3659 + 3686 ], "stddev_pop": [ - 3661 + 3688 ], "stddev_samp": [ - 3663 + 3690 ], "sum": [ - 3667 + 3694 ], "var_pop": [ - 3671 + 3698 ], "var_samp": [ - 3673 + 3700 ], "variance": [ - 3675 + 3702 ], "__typename": [ 80 @@ -84037,10 +84448,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3647 + 3674 ], "on_conflict": [ - 3653 + 3680 ], "__typename": [ 80 @@ -84059,10 +84470,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84070,28 +84481,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3644 + 3671 ], "_not": [ - 3644 + 3671 ], "_or": [ - 3644 + 3671 ], "created_at": [ - 4527 + 4554 ], "deleted_at": [ - 4527 + 4554 ], "e_sanction_type": [ 1148 ], "id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -84100,10 +84511,10 @@ export default { 82 ], "remove_sanction_date": [ - 4527 + 4554 ], "sanctioned_by": [ - 3941 + 3968 ], "sanctioned_by_steam_id": [ 259 @@ -84129,19 +84540,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "e_sanction_type": [ 1156 ], "id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -84150,10 +84561,10 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by": [ - 3948 + 3975 ], "sanctioned_by_steam_id": [ 257 @@ -84167,13 +84578,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -84182,7 +84593,7 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by_steam_id": [ 257 @@ -84193,25 +84604,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "reason": [ - 2979 + 3006 ], "remove_sanction_date": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84219,13 +84630,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -84234,7 +84645,7 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by_steam_id": [ 257 @@ -84245,25 +84656,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "reason": [ - 2979 + 3006 ], "remove_sanction_date": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84274,7 +84685,7 @@ export default { 40 ], "returning": [ - 3635 + 3662 ], "__typename": [ 80 @@ -84282,13 +84693,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3645 + 3672 ], "update_columns": [ - 3668 + 3695 ], "where": [ - 3644 + 3671 ], "__typename": [ 80 @@ -84296,37 +84707,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "e_sanction_type": [ 1158 ], "id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "reason": [ - 2979 + 3006 ], "remove_sanction_date": [ - 2979 + 3006 ], "sanctioned_by": [ - 3950 + 3977 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84334,10 +84745,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -84346,13 +84757,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -84361,7 +84772,7 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by_steam_id": [ 257 @@ -84386,10 +84797,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84408,10 +84819,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84430,10 +84841,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84441,7 +84852,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3665 + 3692 ], "ordering": [ 313 @@ -84452,13 +84863,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "deleted_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -84467,7 +84878,7 @@ export default { 80 ], "remove_sanction_date": [ - 4526 + 4553 ], "sanctioned_by_steam_id": [ 257 @@ -84492,10 +84903,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84504,13 +84915,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3646 + 3673 ], "_set": [ - 3657 + 3684 ], "where": [ - 3644 + 3671 ], "__typename": [ 80 @@ -84529,10 +84940,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84551,10 +84962,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84573,10 +84984,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "sanctioned_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84599,16 +85010,16 @@ export default { 257 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 ], "season": [ - 3996 + 4023 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -84616,10 +85027,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3690 + 3717 ], "nodes": [ - 3676 + 3703 ], "__typename": [ 80 @@ -84627,31 +85038,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3679 + 3706 ], "corr": [ - 3680 + 3707 ], "count": [ - 3682 + 3709 ], "covar_samp": [ - 3683 + 3710 ], "max": [ - 3685 + 3712 ], "min": [ - 3686 + 3713 ], "stddev_samp": [ - 3687 + 3714 ], "sum": [ - 3688 + 3715 ], "var_samp": [ - 3689 + 3716 ], "__typename": [ 80 @@ -84659,13 +85070,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3708 + 3735 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84676,13 +85087,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3681 + 3708 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84693,10 +85104,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3709 + 3736 ], "Y": [ - 3709 + 3736 ], "__typename": [ 80 @@ -84704,13 +85115,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3707 + 3734 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 41 @@ -84721,13 +85132,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3684 + 3711 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84738,10 +85149,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3710 + 3737 ], "Y": [ - 3710 + 3737 ], "__typename": [ 80 @@ -84749,13 +85160,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3711 + 3738 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84766,13 +85177,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3712 + 3739 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84783,13 +85194,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3713 + 3740 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84800,13 +85211,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3714 + 3741 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84817,13 +85228,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3715 + 3742 ], "distinct": [ 5 ], "filter": [ - 3695 + 3722 ], "predicate": [ 1690 @@ -84834,13 +85245,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3693 + 3720 ], "count": [ 40, { "columns": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "distinct": [ @@ -84849,31 +85260,31 @@ export default { } ], "max": [ - 3699 + 3726 ], "min": [ - 3701 + 3728 ], "stddev": [ - 3717 + 3744 ], "stddev_pop": [ - 3719 + 3746 ], "stddev_samp": [ - 3721 + 3748 ], "sum": [ - 3725 + 3752 ], "var_pop": [ - 3729 + 3756 ], "var_samp": [ - 3731 + 3758 ], "variance": [ - 3733 + 3760 ], "__typename": [ 80 @@ -84881,37 +85292,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3694 + 3721 ], "count": [ - 2979 + 3006 ], "max": [ - 3700 + 3727 ], "min": [ - 3702 + 3729 ], "stddev": [ - 3718 + 3745 ], "stddev_pop": [ - 3720 + 3747 ], "stddev_samp": [ - 3722 + 3749 ], "sum": [ - 3726 + 3753 ], "var_pop": [ - 3730 + 3757 ], "var_samp": [ - 3732 + 3759 ], "variance": [ - 3734 + 3761 ], "__typename": [ 80 @@ -84919,10 +85330,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3698 + 3725 ], "on_conflict": [ - 3704 + 3731 ], "__typename": [ 80 @@ -84953,22 +85364,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -84976,13 +85387,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3695 + 3722 ], "_not": [ - 3695 + 3722 ], "_or": [ - 3695 + 3722 ], "assists": [ 259 @@ -85000,16 +85411,16 @@ export default { 259 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 ], "season": [ - 4000 + 4027 ], "season_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -85056,16 +85467,16 @@ export default { 257 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 ], "season": [ - 4007 + 4034 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85091,7 +85502,7 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85099,25 +85510,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85143,7 +85554,7 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85151,25 +85562,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85180,7 +85591,7 @@ export default { 40 ], "returning": [ - 3676 + 3703 ], "__typename": [ 80 @@ -85188,13 +85599,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3696 + 3723 ], "update_columns": [ - 3727 + 3754 ], "where": [ - 3695 + 3722 ], "__typename": [ 80 @@ -85202,31 +85613,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "season": [ - 4009 + 4036 ], "season_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85237,7 +85648,7 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85272,7 +85683,7 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85303,22 +85714,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85349,22 +85760,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85395,22 +85806,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85418,7 +85829,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3724 + 3751 ], "ordering": [ 313 @@ -85447,7 +85858,7 @@ export default { 257 ], "season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -85478,22 +85889,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85502,13 +85913,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3697 + 3724 ], "_set": [ - 3716 + 3743 ], "where": [ - 3695 + 3722 ], "__typename": [ 80 @@ -85539,22 +85950,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85585,22 +85996,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85631,22 +86042,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -85669,7 +86080,7 @@ export default { 257 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -85680,10 +86091,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3737 + 3764 ], "nodes": [ - 3735 + 3762 ], "__typename": [ 80 @@ -85691,13 +86102,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3738 + 3765 ], "count": [ 40, { "columns": [ - 3750, + 3777, "[player_stats_select_column!]" ], "distinct": [ @@ -85706,31 +86117,31 @@ export default { } ], "max": [ - 3743 + 3770 ], "min": [ - 3744 + 3771 ], "stddev": [ - 3752 + 3779 ], "stddev_pop": [ - 3753 + 3780 ], "stddev_samp": [ - 3754 + 3781 ], "sum": [ - 3757 + 3784 ], "var_pop": [ - 3760 + 3787 ], "var_samp": [ - 3761 + 3788 ], "variance": [ - 3762 + 3789 ], "__typename": [ 80 @@ -85761,13 +86172,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3739 + 3766 ], "_not": [ - 3739 + 3766 ], "_or": [ - 3739 + 3766 ], "assists": [ 259 @@ -85785,7 +86196,7 @@ export default { 259 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -85835,7 +86246,7 @@ export default { 257 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -85895,7 +86306,7 @@ export default { 40 ], "returning": [ - 3735 + 3762 ], "__typename": [ 80 @@ -85903,10 +86314,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3742 + 3769 ], "on_conflict": [ - 3747 + 3774 ], "__typename": [ 80 @@ -85914,13 +86325,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3740 + 3767 ], "update_columns": [ - 3758 + 3785 ], "where": [ - 3739 + 3766 ], "__typename": [ 80 @@ -85928,25 +86339,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -86055,7 +86466,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3756 + 3783 ], "ordering": [ 313 @@ -86113,13 +86524,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3741 + 3768 ], "_set": [ - 3751 + 3778 ], "where": [ - 3739 + 3766 ], "__typename": [ 80 @@ -86196,16 +86607,16 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "last_presence_state": [ 1842, @@ -86216,7 +86627,7 @@ export default { } ], "player": [ - 3937 + 3964 ], "status": [ 80 @@ -86225,7 +86636,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86233,10 +86644,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3765 + 3792 ], "nodes": [ - 3763 + 3790 ], "__typename": [ 80 @@ -86244,13 +86655,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3767 + 3794 ], "count": [ 40, { "columns": [ - 3782, + 3809, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -86259,31 +86670,31 @@ export default { } ], "max": [ - 3775 + 3802 ], "min": [ - 3776 + 3803 ], "stddev": [ - 3784 + 3811 ], "stddev_pop": [ - 3785 + 3812 ], "stddev_samp": [ - 3786 + 3813 ], "sum": [ - 3789 + 3816 ], "var_pop": [ - 3792 + 3819 ], "var_samp": [ - 3793 + 3820 ], "variance": [ - 3794 + 3821 ], "__typename": [ 80 @@ -86310,31 +86721,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3768 + 3795 ], "_not": [ - 3768 + 3795 ], "_or": [ - 3768 + 3795 ], "bot_steam_account_id": [ - 5028 + 5055 ], "bot_steamid64": [ 259 ], "created_at": [ - 4527 + 4554 ], "friended_at": [ - 4527 + 4554 ], "last_presence_state": [ 1844 ], "player": [ - 3941 + 3968 ], "status": [ 82 @@ -86343,7 +86754,7 @@ export default { 259 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -86387,22 +86798,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "last_presence_state": [ 1842 ], "player": [ - 3948 + 3975 ], "status": [ 80 @@ -86411,7 +86822,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86419,16 +86830,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "status": [ 80 @@ -86437,7 +86848,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86445,16 +86856,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "status": [ 80 @@ -86463,7 +86874,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86474,7 +86885,7 @@ export default { 40 ], "returning": [ - 3763 + 3790 ], "__typename": [ 80 @@ -86482,13 +86893,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3769 + 3796 ], "update_columns": [ - 3790 + 3817 ], "where": [ - 3768 + 3795 ], "__typename": [ 80 @@ -86496,31 +86907,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2979 + 3006 ], "bot_steamid64": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "friended_at": [ - 2979 + 3006 ], "last_presence_state": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "status": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -86545,16 +86956,16 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "last_presence_state": [ 1842 @@ -86566,7 +86977,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86607,7 +87018,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3788 + 3815 ], "ordering": [ 313 @@ -86618,16 +87029,16 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5026 + 5053 ], "bot_steamid64": [ 257 ], "created_at": [ - 4526 + 4553 ], "friended_at": [ - 4526 + 4553 ], "last_presence_state": [ 1842 @@ -86639,7 +87050,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86659,28 +87070,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3766 + 3793 ], "_delete_at_path": [ - 3770 + 3797 ], "_delete_elem": [ - 3771 + 3798 ], "_delete_key": [ - 3772 + 3799 ], "_inc": [ - 3773 + 3800 ], "_prepend": [ - 3781 + 3808 ], "_set": [ - 3783 + 3810 ], "where": [ - 3768 + 3795 ], "__typename": [ 80 @@ -86724,7 +87135,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -86733,16 +87144,16 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86750,10 +87161,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3797 + 3824 ], "nodes": [ - 3795 + 3822 ], "__typename": [ 80 @@ -86761,13 +87172,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3798 + 3825 ], "count": [ 40, { "columns": [ - 3809, + 3836, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -86776,31 +87187,31 @@ export default { } ], "max": [ - 3803 + 3830 ], "min": [ - 3804 + 3831 ], "stddev": [ - 3811 + 3838 ], "stddev_pop": [ - 3812 + 3839 ], "stddev_samp": [ - 3813 + 3840 ], "sum": [ - 3816 + 3843 ], "var_pop": [ - 3819 + 3846 ], "var_samp": [ - 3820 + 3847 ], "variance": [ - 3821 + 3848 ], "__typename": [ 80 @@ -86816,19 +87227,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3799 + 3826 ], "_not": [ - 3799 + 3826 ], "_or": [ - 3799 + 3826 ], "auth_code": [ 82 ], "created_at": [ - 4527 + 4554 ], "last_error": [ 82 @@ -86837,16 +87248,16 @@ export default { 82 ], "last_polled_at": [ - 4527 + 4554 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -86866,7 +87277,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -86875,16 +87286,16 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86895,7 +87306,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -86904,13 +87315,13 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86921,7 +87332,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -86930,13 +87341,13 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -86947,7 +87358,7 @@ export default { 40 ], "returning": [ - 3795 + 3822 ], "__typename": [ 80 @@ -86955,13 +87366,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3800 + 3827 ], "update_columns": [ - 3817 + 3844 ], "where": [ - 3799 + 3826 ], "__typename": [ 80 @@ -86969,28 +87380,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "last_error": [ - 2979 + 3006 ], "last_known_share_code": [ - 2979 + 3006 ], "last_polled_at": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87010,7 +87421,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -87019,13 +87430,13 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -87057,7 +87468,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3815 + 3842 ], "ordering": [ 313 @@ -87071,7 +87482,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "last_error": [ 80 @@ -87080,13 +87491,13 @@ export default { 80 ], "last_polled_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -87103,13 +87514,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3801 + 3828 ], "_set": [ - 3810 + 3837 ], "where": [ - 3799 + 3826 ], "__typename": [ 80 @@ -87141,22 +87552,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4526 + 4553 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -87173,10 +87584,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3826 + 3853 ], "nodes": [ - 3822 + 3849 ], "__typename": [ 80 @@ -87184,7 +87595,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3825 + 3852 ], "__typename": [ 80 @@ -87192,13 +87603,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3843 + 3870 ], "distinct": [ 5 ], "filter": [ - 3831 + 3858 ], "predicate": [ 41 @@ -87209,13 +87620,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3829 + 3856 ], "count": [ 40, { "columns": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -87224,31 +87635,31 @@ export default { } ], "max": [ - 3835 + 3862 ], "min": [ - 3837 + 3864 ], "stddev": [ - 3845 + 3872 ], "stddev_pop": [ - 3847 + 3874 ], "stddev_samp": [ - 3849 + 3876 ], "sum": [ - 3853 + 3880 ], "var_pop": [ - 3857 + 3884 ], "var_samp": [ - 3859 + 3886 ], "variance": [ - 3861 + 3888 ], "__typename": [ 80 @@ -87256,37 +87667,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3830 + 3857 ], "count": [ - 2979 + 3006 ], "max": [ - 3836 + 3863 ], "min": [ - 3838 + 3865 ], "stddev": [ - 3846 + 3873 ], "stddev_pop": [ - 3848 + 3875 ], "stddev_samp": [ - 3850 + 3877 ], "sum": [ - 3854 + 3881 ], "var_pop": [ - 3858 + 3885 ], "var_samp": [ - 3860 + 3887 ], "variance": [ - 3862 + 3889 ], "__typename": [ 80 @@ -87294,10 +87705,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3834 + 3861 ], "on_conflict": [ - 3840 + 3867 ], "__typename": [ 80 @@ -87319,13 +87730,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87333,31 +87744,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3831 + 3858 ], "_not": [ - 3831 + 3858 ], "_or": [ - 3831 + 3858 ], "deleted_at": [ - 4527 + 4554 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -87389,22 +87800,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4526 + 4553 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -87421,13 +87832,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -87444,22 +87855,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87467,13 +87878,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -87490,22 +87901,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87516,7 +87927,7 @@ export default { 40 ], "returning": [ - 3822 + 3849 ], "__typename": [ 80 @@ -87524,13 +87935,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3832 + 3859 ], "update_columns": [ - 3855 + 3882 ], "where": [ - 3831 + 3858 ], "__typename": [ 80 @@ -87538,31 +87949,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87570,7 +87981,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -87582,13 +87993,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -87619,13 +88030,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87647,13 +88058,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87675,13 +88086,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87689,7 +88100,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3852 + 3879 ], "ordering": [ 313 @@ -87700,13 +88111,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "player_steam_id": [ 257 @@ -87737,13 +88148,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87752,13 +88163,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3833 + 3860 ], "_set": [ - 3844 + 3871 ], "where": [ - 3831 + 3858 ], "__typename": [ 80 @@ -87780,13 +88191,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87808,13 +88219,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87836,13 +88247,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "unused": [ - 2979 + 3006 ], "__typename": [ 80 @@ -87856,28 +88267,28 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "type": [ 1375 @@ -87888,10 +88299,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3867 + 3894 ], "nodes": [ - 3863 + 3890 ], "__typename": [ 80 @@ -87899,7 +88310,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3866 + 3893 ], "__typename": [ 80 @@ -87907,13 +88318,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3884 + 3911 ], "distinct": [ 5 ], "filter": [ - 3872 + 3899 ], "predicate": [ 41 @@ -87924,13 +88335,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3870 + 3897 ], "count": [ 40, { "columns": [ - 3884, + 3911, "[player_utility_select_column!]" ], "distinct": [ @@ -87939,31 +88350,31 @@ export default { } ], "max": [ - 3876 + 3903 ], "min": [ - 3878 + 3905 ], "stddev": [ - 3886 + 3913 ], "stddev_pop": [ - 3888 + 3915 ], "stddev_samp": [ - 3890 + 3917 ], "sum": [ - 3894 + 3921 ], "var_pop": [ - 3898 + 3925 ], "var_samp": [ - 3900 + 3927 ], "variance": [ - 3902 + 3929 ], "__typename": [ 80 @@ -87971,37 +88382,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3871 + 3898 ], "count": [ - 2979 + 3006 ], "max": [ - 3877 + 3904 ], "min": [ - 3879 + 3906 ], "stddev": [ - 3887 + 3914 ], "stddev_pop": [ - 3889 + 3916 ], "stddev_samp": [ - 3891 + 3918 ], "sum": [ - 3895 + 3922 ], "var_pop": [ - 3899 + 3926 ], "var_samp": [ - 3901 + 3928 ], "variance": [ - 3903 + 3930 ], "__typename": [ 80 @@ -88009,10 +88420,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3875 + 3902 ], "on_conflict": [ - 3881 + 3908 ], "__typename": [ 80 @@ -88031,10 +88442,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88042,13 +88453,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3872 + 3899 ], "_not": [ - 3872 + 3899 ], "_or": [ - 3872 + 3899 ], "attacker_location_coordinates": [ 82 @@ -88057,28 +88468,28 @@ export default { 259 ], "deleted_at": [ - 4527 + 4554 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "round": [ 41 ], "time": [ - 4527 + 4554 ], "type": [ 1376 @@ -88107,28 +88518,28 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "type": [ 1375 @@ -88145,19 +88556,19 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -88165,25 +88576,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88197,19 +88608,19 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -88217,25 +88628,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88246,7 +88657,7 @@ export default { 40 ], "returning": [ - 3863 + 3890 ], "__typename": [ 80 @@ -88254,13 +88665,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3873 + 3900 ], "update_columns": [ - 3896 + 3923 ], "where": [ - 3872 + 3899 ], "__typename": [ 80 @@ -88268,37 +88679,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2979 + 3006 ], "attacker_steam_id": [ - 2979 + 3006 ], "deleted_at": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "round": [ - 2979 + 3006 ], "time": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88309,10 +88720,10 @@ export default { 257 ], "match_map_id": [ - 5026 + 5053 ], "time": [ - 4526 + 4553 ], "__typename": [ 80 @@ -88327,19 +88738,19 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "type": [ 1375 @@ -88361,10 +88772,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88383,10 +88794,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88405,10 +88816,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88416,7 +88827,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3893 + 3920 ], "ordering": [ 313 @@ -88433,19 +88844,19 @@ export default { 257 ], "deleted_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 ], "time": [ - 4526 + 4553 ], "type": [ 1375 @@ -88467,10 +88878,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88479,13 +88890,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3874 + 3901 ], "_set": [ - 3885 + 3912 ], "where": [ - 3872 + 3899 ], "__typename": [ 80 @@ -88504,10 +88915,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88526,10 +88937,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88548,10 +88959,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88571,7 +88982,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -88591,10 +89002,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3908 + 3935 ], "nodes": [ - 3904 + 3931 ], "__typename": [ 80 @@ -88602,7 +89013,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3907 + 3934 ], "__typename": [ 80 @@ -88610,13 +89021,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3920 + 3947 ], "distinct": [ 5 ], "filter": [ - 3913 + 3940 ], "predicate": [ 41 @@ -88627,13 +89038,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3911 + 3938 ], "count": [ 40, { "columns": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -88642,31 +89053,31 @@ export default { } ], "max": [ - 3915 + 3942 ], "min": [ - 3917 + 3944 ], "stddev": [ - 3921 + 3948 ], "stddev_pop": [ - 3923 + 3950 ], "stddev_samp": [ - 3925 + 3952 ], "sum": [ - 3929 + 3956 ], "var_pop": [ - 3931 + 3958 ], "var_samp": [ - 3933 + 3960 ], "variance": [ - 3935 + 3962 ], "__typename": [ 80 @@ -88674,37 +89085,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3912 + 3939 ], "count": [ - 2979 + 3006 ], "max": [ - 3916 + 3943 ], "min": [ - 3918 + 3945 ], "stddev": [ - 3922 + 3949 ], "stddev_pop": [ - 3924 + 3951 ], "stddev_samp": [ - 3926 + 3953 ], "sum": [ - 3930 + 3957 ], "var_pop": [ - 3932 + 3959 ], "var_samp": [ - 3934 + 3961 ], "variance": [ - 3936 + 3963 ], "__typename": [ 80 @@ -88712,7 +89123,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3914 + 3941 ], "__typename": [ 80 @@ -88746,25 +89157,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88772,13 +89183,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3913 + 3940 ], "_not": [ - 3913 + 3940 ], "_or": [ - 3913 + 3940 ], "first_bullet_hits": [ 41 @@ -88793,7 +89204,7 @@ export default { 41 ], "match_id": [ - 5028 + 5055 ], "shots": [ 41 @@ -88825,7 +89236,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -88857,7 +89268,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -88877,31 +89288,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88921,7 +89332,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -88941,31 +89352,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -88973,31 +89384,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "weapon_class": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89032,25 +89443,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89084,25 +89495,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89136,25 +89547,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89162,7 +89573,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3928 + 3955 ], "ordering": [ 313 @@ -89185,7 +89596,7 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "shots": [ 40 @@ -89231,25 +89642,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89283,25 +89694,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89335,25 +89746,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89387,25 +89798,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2979 + 3006 ], "first_bullet_shots": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "hits_spotted": [ - 2979 + 3006 ], "shots": [ - 2979 + 3006 ], "shots_spotted": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -89457,10 +89868,10 @@ export default { } ], "aim_weapon_stats": [ - 3076, + 3103, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -89470,19 +89881,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "aim_weapon_stats_aggregate": [ - 3077, + 3104, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -89492,19 +89903,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -89514,19 +89925,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -89536,19 +89947,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "assited_by_players": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -89558,19 +89969,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "assited_by_players_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -89580,11 +89991,11 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], @@ -89636,13 +90047,13 @@ export default { } ], "banned_until": [ - 4526 + 4553 ], "coach_lineups": [ - 2466, + 2493, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -89652,19 +90063,19 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "coach_lineups_aggregate": [ - 2467, + 2494, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -89674,11 +90085,11 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], @@ -89686,19 +90097,19 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "current_lobby_id": [ - 5026 + 5053 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -89708,19 +90119,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "damage_dealt_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -89730,19 +90141,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "damage_taken": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -89752,19 +90163,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "damage_taken_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -89774,11 +90185,11 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], @@ -89786,10 +90197,10 @@ export default { 40 ], "deaths": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -89799,19 +90210,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "deaths_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -89821,11 +90232,11 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], @@ -89885,10 +90296,10 @@ export default { } ], "elo_history": [ - 5403, + 5430, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -89898,19 +90309,19 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "elo_history_aggregate": [ - 5404, + 5431, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -89920,11 +90331,11 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], @@ -89938,10 +90349,10 @@ export default { 80 ], "faceit_rank_history": [ - 3248, + 3275, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -89951,19 +90362,19 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], "faceit_rank_history_aggregate": [ - 3249, + 3276, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -89973,11 +90384,11 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], @@ -89985,16 +90396,16 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -90004,19 +90415,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "flashed_by_players_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -90026,19 +90437,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "flashed_players": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -90048,19 +90459,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "flashed_players_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -90070,19 +90481,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "friends": [ - 2854, + 2881, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -90092,19 +90503,19 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], "friends_aggregate": [ - 2855, + 2882, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -90114,11 +90525,11 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], @@ -90126,10 +90537,10 @@ export default { 40 ], "invited_players": [ - 4196, + 4223, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -90139,19 +90550,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "invited_players_aggregate": [ - 4197, + 4224, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -90161,11 +90572,11 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], @@ -90194,10 +90605,10 @@ export default { 5 ], "kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -90207,19 +90618,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -90229,19 +90640,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "kills_by_weapons": [ - 3346, + 3373, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -90251,19 +90662,19 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], "kills_by_weapons_aggregate": [ - 3347, + 3374, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -90273,11 +90684,11 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], @@ -90285,10 +90696,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "lobby_players": [ 2240, @@ -90347,10 +90758,10 @@ export default { 40 ], "match_map_hltv": [ - 5508, + 5535, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -90360,19 +90771,19 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "match_map_hltv_aggregate": [ - 5509, + 5536, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -90382,19 +90793,19 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "match_map_stats": [ - 3443, + 3470, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -90404,19 +90815,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "match_map_stats_aggregate": [ - 3444, + 3471, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -90426,19 +90837,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "match_stats": [ - 3502, + 3529, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -90448,19 +90859,19 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "match_stats_aggregate": [ - 3503, + 3530, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -90470,19 +90881,19 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -90492,22 +90903,22 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matchmaking_cooldown": [ - 4526 + 4553 ], "multi_kills": [ - 5599, + 5626, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -90517,19 +90928,19 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], "multi_kills_aggregate": [ - 5600, + 5627, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -90539,11 +90950,11 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], @@ -90554,10 +90965,10 @@ export default { 5 ], "notifications": [ - 2927, + 2954, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -90567,19 +90978,19 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "notifications_aggregate": [ - 2928, + 2955, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -90589,19 +91000,19 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -90611,19 +91022,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -90633,19 +91044,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "owned_teams": [ - 4479, + 4506, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -90655,19 +91066,19 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "owned_teams_aggregate": [ - 4480, + 4507, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -90677,11 +91088,11 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], @@ -90694,10 +91105,10 @@ export default { } ], "pending_match_imports": [ - 2980, + 3007, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -90707,19 +91118,19 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "pending_match_imports_aggregate": [ - 2981, + 3008, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -90729,19 +91140,19 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "player_lineup": [ - 2421, + 2448, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -90751,19 +91162,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "player_lineup_aggregate": [ - 2422, + 2449, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -90773,19 +91184,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "player_unused_utilities": [ - 3822, + 3849, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -90795,19 +91206,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utilities_aggregate": [ - 3823, + 3850, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -90817,11 +91228,11 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], @@ -90829,10 +91240,10 @@ export default { 40 ], "premier_rank_history": [ - 3594, + 3621, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -90842,19 +91253,19 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "premier_rank_history_aggregate": [ - 3595, + 3622, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -90864,16 +91275,16 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -90885,10 +91296,10 @@ export default { 80 ], "sanctions": [ - 3635, + 3662, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -90898,19 +91309,19 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "sanctions_aggregate": [ - 3636, + 3663, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -90920,19 +91331,19 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "season_stats": [ - 3676, + 3703, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -90942,19 +91353,19 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "season_stats_aggregate": [ - 3677, + 3704, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -90964,11 +91375,11 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], @@ -90976,19 +91387,19 @@ export default { 5 ], "stats": [ - 3735 + 3762 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "team_invites": [ - 4196, + 4223, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -90998,19 +91409,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_invites_aggregate": [ - 4197, + 4224, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -91020,19 +91431,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_members": [ - 4237, + 4264, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -91042,19 +91453,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_members_aggregate": [ - 4238, + 4265, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -91064,19 +91475,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "teams": [ - 4479, + 4506, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -91086,11 +91497,11 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], @@ -91098,10 +91509,10 @@ export default { 40 ], "tournament_organizers": [ - 4664, + 4691, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91111,19 +91522,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_organizers_aggregate": [ - 4665, + 4692, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91133,19 +91544,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_rosters": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91155,19 +91566,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_rosters_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91177,19 +91588,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournaments": [ - 4962, + 4989, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -91199,19 +91610,19 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_aggregate": [ - 4963, + 4990, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -91221,19 +91632,19 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "utility_thrown": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -91243,19 +91654,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "utility_thrown_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -91265,11 +91676,11 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], @@ -91280,10 +91691,10 @@ export default { 5 ], "weapon_stats": [ - 3904, + 3931, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -91293,19 +91704,19 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], "weapon_stats_aggregate": [ - 3905, + 3932, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -91315,11 +91726,11 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], @@ -91341,10 +91752,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3939 + 3966 ], "nodes": [ - 3937 + 3964 ], "__typename": [ 80 @@ -91352,13 +91763,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3940 + 3967 ], "count": [ 40, { "columns": [ - 3952, + 3979, "[players_select_column!]" ], "distinct": [ @@ -91367,31 +91778,31 @@ export default { } ], "max": [ - 3945 + 3972 ], "min": [ - 3946 + 3973 ], "stddev": [ - 3954 + 3981 ], "stddev_pop": [ - 3955 + 3982 ], "stddev_samp": [ - 3956 + 3983 ], "sum": [ - 3959 + 3986 ], "var_pop": [ - 3962 + 3989 ], "var_samp": [ - 3963 + 3990 ], "variance": [ - 3964 + 3991 ], "__typename": [ 80 @@ -91452,13 +91863,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3941 + 3968 ], "_not": [ - 3941 + 3968 ], "_or": [ - 3941 + 3968 ], "abandoned_matches": [ 128 @@ -91467,22 +91878,22 @@ export default { 121 ], "aim_weapon_stats": [ - 3085 + 3112 ], "aim_weapon_stats_aggregate": [ - 3078 + 3105 ], "assists": [ - 3128 + 3155 ], "assists_aggregate": [ - 3119 + 3146 ], "assited_by_players": [ - 3128 + 3155 ], "assited_by_players_aggregate": [ - 3119 + 3146 ], "avatar_url": [ 82 @@ -91494,46 +91905,46 @@ export default { 190 ], "banned_until": [ - 4527 + 4554 ], "coach_lineups": [ - 2475 + 2502 ], "coach_lineups_aggregate": [ - 2468 + 2495 ], "country": [ 82 ], "created_at": [ - 4527 + 4554 ], "current_lobby_id": [ - 5028 + 5055 ], "custom_avatar_url": [ 82 ], "damage_dealt": [ - 3189 + 3216 ], "damage_dealt_aggregate": [ - 3182 + 3209 ], "damage_taken": [ - 3189 + 3216 ], "damage_taken_aggregate": [ - 3182 + 3209 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3345 + 3372 ], "deaths_aggregate": [ - 3336 + 3363 ], "discord_id": [ 82 @@ -91548,10 +91959,10 @@ export default { 1844 ], "elo_history": [ - 5422 + 5449 ], "elo_history_aggregate": [ - 5405 + 5432 ], "faceit_elo": [ 41 @@ -91563,46 +91974,46 @@ export default { 82 ], "faceit_rank_history": [ - 3257 + 3284 ], "faceit_rank_history_aggregate": [ - 3250 + 3277 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4527 + 4554 ], "faceit_url": [ 82 ], "flashed_by_players": [ - 3300 + 3327 ], "flashed_by_players_aggregate": [ - 3291 + 3318 ], "flashed_players": [ - 3300 + 3327 ], "flashed_players_aggregate": [ - 3291 + 3318 ], "friends": [ - 2866 + 2893 ], "friends_aggregate": [ - 2856 + 2883 ], "game_ban_count": [ 41 ], "invited_players": [ - 4205 + 4232 ], "invited_players_aggregate": [ - 4198 + 4225 ], "is_admin_sanctioned": [ 6 @@ -91629,25 +92040,25 @@ export default { 6 ], "kills": [ - 3345 + 3372 ], "kills_aggregate": [ - 3336 + 3363 ], "kills_by_weapons": [ - 3355 + 3382 ], "kills_by_weapons_aggregate": [ - 3348 + 3375 ], "language": [ 82 ], "last_read_news_at": [ - 4527 + 4554 ], "last_sign_in_at": [ - 4527 + 4554 ], "lobby_players": [ 2251 @@ -91668,34 +92079,34 @@ export default { 41 ], "match_map_hltv": [ - 5517 + 5544 ], "match_map_hltv_aggregate": [ - 5510 + 5537 ], "match_map_stats": [ - 3452 + 3479 ], "match_map_stats_aggregate": [ - 3445 + 3472 ], "match_stats": [ - 3511 + 3538 ], "match_stats_aggregate": [ - 3504 + 3531 ], "matches": [ - 2803 + 2830 ], "matchmaking_cooldown": [ - 4527 + 4554 ], "multi_kills": [ - 5608 + 5635 ], "multi_kills_aggregate": [ - 5601 + 5628 ], "name": [ 82 @@ -91704,55 +92115,55 @@ export default { 6 ], "notifications": [ - 2939 + 2966 ], "notifications_aggregate": [ - 2929 + 2956 ], "objectives": [ - 3544 + 3571 ], "objectives_aggregate": [ - 3537 + 3564 ], "owned_teams": [ - 4490 + 4517 ], "owned_teams_aggregate": [ - 4481 + 4508 ], "peak_elo": [ 1844 ], "pending_match_imports": [ - 2989 + 3016 ], "pending_match_imports_aggregate": [ - 2982 + 3009 ], "player_lineup": [ - 2432 + 2459 ], "player_lineup_aggregate": [ - 2423 + 2450 ], "player_unused_utilities": [ - 3831 + 3858 ], "player_unused_utilities_aggregate": [ - 3824 + 3851 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3603 + 3630 ], "premier_rank_history_aggregate": [ - 3596 + 3623 ], "premier_rank_updated_at": [ - 4527 + 4554 ], "profile_url": [ 82 @@ -91764,70 +92175,70 @@ export default { 82 ], "sanctions": [ - 3644 + 3671 ], "sanctions_aggregate": [ - 3637 + 3664 ], "season_stats": [ - 3695 + 3722 ], "season_stats_aggregate": [ - 3678 + 3705 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3739 + 3766 ], "steam_bans_checked_at": [ - 4527 + 4554 ], "steam_id": [ 259 ], "team_invites": [ - 4205 + 4232 ], "team_invites_aggregate": [ - 4198 + 4225 ], "team_members": [ - 4248 + 4275 ], "team_members_aggregate": [ - 4239 + 4266 ], "teams": [ - 4490 + 4517 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4673 + 4700 ], "tournament_organizers_aggregate": [ - 4666 + 4693 ], "tournament_rosters": [ - 4888 + 4915 ], "tournament_rosters_aggregate": [ - 4881 + 4908 ], "tournaments": [ - 4983 + 5010 ], "tournaments_aggregate": [ - 4964 + 4991 ], "utility_thrown": [ - 3872 + 3899 ], "utility_thrown_aggregate": [ - 3865 + 3892 ], "vac_ban_count": [ 41 @@ -91836,10 +92247,10 @@ export default { 6 ], "weapon_stats": [ - 3913 + 3940 ], "weapon_stats_aggregate": [ - 3906 + 3933 ], "wins": [ 41 @@ -91889,13 +92300,13 @@ export default { 125 ], "aim_weapon_stats": [ - 3082 + 3109 ], "assists": [ - 3125 + 3152 ], "assited_by_players": [ - 3125 + 3152 ], "avatar_url": [ 80 @@ -91904,28 +92315,28 @@ export default { 194 ], "coach_lineups": [ - 2472 + 2499 ], "country": [ 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3186 + 3213 ], "damage_taken": [ - 3186 + 3213 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3342 + 3369 ], "discord_id": [ 80 @@ -91934,7 +92345,7 @@ export default { 426 ], "elo_history": [ - 5419 + 5446 ], "faceit_elo": [ 40 @@ -91946,61 +92357,61 @@ export default { 80 ], "faceit_rank_history": [ - 3254 + 3281 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3297 + 3324 ], "flashed_players": [ - 3297 + 3324 ], "friends": [ - 2863 + 2890 ], "game_ban_count": [ 40 ], "invited_players": [ - 4202 + 4229 ], "kills": [ - 3342 + 3369 ], "kills_by_weapons": [ - 3352 + 3379 ], "language": [ 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "lobby_players": [ 2248 ], "match_map_hltv": [ - 5514 + 5541 ], "match_map_stats": [ - 3449 + 3476 ], "match_stats": [ - 3508 + 3535 ], "multi_kills": [ - 5605 + 5632 ], "name": [ 80 @@ -92009,31 +92420,31 @@ export default { 5 ], "notifications": [ - 2936 + 2963 ], "objectives": [ - 3541 + 3568 ], "owned_teams": [ - 4487 + 4514 ], "pending_match_imports": [ - 2986 + 3013 ], "player_lineup": [ - 2429 + 2456 ], "player_unused_utilities": [ - 3828 + 3855 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3600 + 3627 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -92045,40 +92456,40 @@ export default { 80 ], "sanctions": [ - 3641 + 3668 ], "season_stats": [ - 3692 + 3719 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3746 + 3773 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 ], "team_invites": [ - 4202 + 4229 ], "team_members": [ - 4245 + 4272 ], "tournament_organizers": [ - 4670 + 4697 ], "tournament_rosters": [ - 4885 + 4912 ], "tournaments": [ - 4980 + 5007 ], "utility_thrown": [ - 3869 + 3896 ], "vac_ban_count": [ 40 @@ -92087,7 +92498,7 @@ export default { 5 ], "weapon_stats": [ - 3910 + 3937 ], "__typename": [ 80 @@ -92098,16 +92509,16 @@ export default { 80 ], "banned_until": [ - 4526 + 4553 ], "country": [ 80 ], "created_at": [ - 4526 + 4553 ], "current_lobby_id": [ - 5026 + 5053 ], "custom_avatar_url": [ 80 @@ -92131,7 +92542,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -92143,10 +92554,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "losses": [ 40 @@ -92161,7 +92572,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4526 + 4553 ], "name": [ 80 @@ -92170,7 +92581,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -92179,7 +92590,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -92211,16 +92622,16 @@ export default { 80 ], "banned_until": [ - 4526 + 4553 ], "country": [ 80 ], "created_at": [ - 4526 + 4553 ], "current_lobby_id": [ - 5026 + 5053 ], "custom_avatar_url": [ 80 @@ -92244,7 +92655,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -92256,10 +92667,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "losses": [ 40 @@ -92274,7 +92685,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4526 + 4553 ], "name": [ 80 @@ -92283,7 +92694,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -92292,7 +92703,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -92324,7 +92735,7 @@ export default { 40 ], "returning": [ - 3937 + 3964 ], "__typename": [ 80 @@ -92332,10 +92743,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3944 + 3971 ], "on_conflict": [ - 3949 + 3976 ], "__typename": [ 80 @@ -92343,13 +92754,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3942 + 3969 ], "update_columns": [ - 3960 + 3987 ], "where": [ - 3941 + 3968 ], "__typename": [ 80 @@ -92360,277 +92771,277 @@ export default { 124 ], "aim_weapon_stats_aggregate": [ - 3081 + 3108 ], "assists_aggregate": [ - 3124 + 3151 ], "assited_by_players_aggregate": [ - 3124 + 3151 ], "avatar_url": [ - 2979 + 3006 ], "awards_aggregate": [ 193 ], "banned_until": [ - 2979 + 3006 ], "coach_lineups_aggregate": [ - 2471 + 2498 ], "country": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "current_lobby_id": [ - 2979 + 3006 ], "custom_avatar_url": [ - 2979 + 3006 ], "damage_dealt_aggregate": [ - 3185 + 3212 ], "damage_taken_aggregate": [ - 3185 + 3212 ], "days_since_last_ban": [ - 2979 + 3006 ], "deaths_aggregate": [ - 3341 + 3368 ], "discord_id": [ - 2979 + 3006 ], "draft_game_players_aggregate": [ 425 ], "elo": [ - 2979 + 3006 ], "elo_history_aggregate": [ - 5418 + 5445 ], "faceit_elo": [ - 2979 + 3006 ], "faceit_nickname": [ - 2979 + 3006 ], "faceit_player_id": [ - 2979 + 3006 ], "faceit_rank_history_aggregate": [ - 3253 + 3280 ], "faceit_skill_level": [ - 2979 + 3006 ], "faceit_updated_at": [ - 2979 + 3006 ], "faceit_url": [ - 2979 + 3006 ], "flashed_by_players_aggregate": [ - 3296 + 3323 ], "flashed_players_aggregate": [ - 3296 + 3323 ], "friends_aggregate": [ - 2861 + 2888 ], "game_ban_count": [ - 2979 + 3006 ], "invited_players_aggregate": [ - 4201 + 4228 ], "is_admin_sanctioned": [ - 2979 + 3006 ], "is_banned": [ - 2979 + 3006 ], "is_gagged": [ - 2979 + 3006 ], "is_in_another_match": [ - 2979 + 3006 ], "is_in_draft": [ - 2979 + 3006 ], "is_in_lobby": [ - 2979 + 3006 ], "is_muted": [ - 2979 + 3006 ], "is_registered": [ - 2979 + 3006 ], "kills_aggregate": [ - 3341 + 3368 ], "kills_by_weapons_aggregate": [ - 3351 + 3378 ], "language": [ - 2979 + 3006 ], "last_read_news_at": [ - 2979 + 3006 ], "last_sign_in_at": [ - 2979 + 3006 ], "lobby_players_aggregate": [ 2247 ], "losses": [ - 2979 + 3006 ], "losses_competitive": [ - 2979 + 3006 ], "losses_duel": [ - 2979 + 3006 ], "losses_wingman": [ - 2979 + 3006 ], "match_map_hltv_aggregate": [ - 5513 + 5540 ], "match_map_stats_aggregate": [ - 3448 + 3475 ], "match_stats_aggregate": [ - 3507 + 3534 ], "matches_aggregate": [ - 2799 + 2826 ], "matchmaking_cooldown": [ - 2979 + 3006 ], "multi_kills_aggregate": [ - 5604 + 5631 ], "name": [ - 2979 + 3006 ], "name_registered": [ - 2979 + 3006 ], "notifications_aggregate": [ - 2934 + 2961 ], "objectives_aggregate": [ - 3540 + 3567 ], "owned_teams_aggregate": [ - 4486 + 4513 ], "peak_elo": [ - 2979 + 3006 ], "pending_match_imports_aggregate": [ - 2985 + 3012 ], "player_lineup_aggregate": [ - 2428 + 2455 ], "player_unused_utilities_aggregate": [ - 3827 + 3854 ], "premier_rank": [ - 2979 + 3006 ], "premier_rank_history_aggregate": [ - 3599 + 3626 ], "premier_rank_updated_at": [ - 2979 + 3006 ], "profile_url": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "sanctions_aggregate": [ - 3640 + 3667 ], "season_stats_aggregate": [ - 3691 + 3718 ], "show_match_ready_modal": [ - 2979 + 3006 ], "stats": [ - 3748 + 3775 ], "steam_bans_checked_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_invites_aggregate": [ - 4201 + 4228 ], "team_members_aggregate": [ - 4244 + 4271 ], "teams_aggregate": [ - 4486 + 4513 ], "total_matches": [ - 2979 + 3006 ], "tournament_organizers_aggregate": [ - 4669 + 4696 ], "tournament_rosters_aggregate": [ - 4884 + 4911 ], "tournaments_aggregate": [ - 4979 + 5006 ], "utility_thrown_aggregate": [ - 3868 + 3895 ], "vac_ban_count": [ - 2979 + 3006 ], "vac_banned": [ - 2979 + 3006 ], "weapon_stats_aggregate": [ - 3909 + 3936 ], "wins": [ - 2979 + 3006 ], "wins_competitive": [ - 2979 + 3006 ], "wins_duel": [ - 2979 + 3006 ], "wins_wingman": [ - 2979 + 3006 ], "__typename": [ 80 @@ -92653,7 +93064,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -92677,7 +93088,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -92689,10 +93100,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -92704,7 +93115,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -92719,7 +93130,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -92895,7 +93306,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3958 + 3985 ], "ordering": [ 313 @@ -92912,7 +93323,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "custom_avatar_url": [ 80 @@ -92936,7 +93347,7 @@ export default { 40 ], "faceit_updated_at": [ - 4526 + 4553 ], "faceit_url": [ 80 @@ -92948,10 +93359,10 @@ export default { 80 ], "last_read_news_at": [ - 4526 + 4553 ], "last_sign_in_at": [ - 4526 + 4553 ], "name": [ 80 @@ -92963,7 +93374,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4526 + 4553 ], "profile_url": [ 80 @@ -92978,7 +93389,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -93049,13 +93460,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3943 + 3970 ], "_set": [ - 3953 + 3980 ], "where": [ - 3941 + 3968 ], "__typename": [ 80 @@ -93225,7 +93636,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "runtime": [ 1110 @@ -93239,10 +93650,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3967 + 3994 ], "nodes": [ - 3965 + 3992 ], "__typename": [ 80 @@ -93250,13 +93661,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3968 + 3995 ], "count": [ 40, { "columns": [ - 3979, + 4006, "[plugin_versions_select_column!]" ], "distinct": [ @@ -93265,31 +93676,31 @@ export default { } ], "max": [ - 3973 + 4000 ], "min": [ - 3974 + 4001 ], "stddev": [ - 3981 + 4008 ], "stddev_pop": [ - 3982 + 4009 ], "stddev_samp": [ - 3983 + 4010 ], "sum": [ - 3986 + 4013 ], "var_pop": [ - 3989 + 4016 ], "var_samp": [ - 3990 + 4017 ], "variance": [ - 3991 + 4018 ], "__typename": [ 80 @@ -93305,19 +93716,19 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3969 + 3996 ], "_not": [ - 3969 + 3996 ], "_or": [ - 3969 + 3996 ], "min_game_build_id": [ 41 ], "published_at": [ - 4527 + 4554 ], "runtime": [ 1111 @@ -93343,7 +93754,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "runtime": [ 1110 @@ -93360,7 +93771,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "version": [ 80 @@ -93374,7 +93785,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "version": [ 80 @@ -93388,7 +93799,7 @@ export default { 40 ], "returning": [ - 3965 + 3992 ], "__typename": [ 80 @@ -93396,13 +93807,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3970 + 3997 ], "update_columns": [ - 3987 + 4014 ], "where": [ - 3969 + 3996 ], "__typename": [ 80 @@ -93410,16 +93821,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2979 + 3006 ], "published_at": [ - 2979 + 3006 ], "runtime": [ - 2979 + 3006 ], "version": [ - 2979 + 3006 ], "__typename": [ 80 @@ -93442,7 +93853,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "runtime": [ 1110 @@ -93480,7 +93891,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3985 + 4012 ], "ordering": [ 313 @@ -93494,7 +93905,7 @@ export default { 40 ], "published_at": [ - 4526 + 4553 ], "runtime": [ 1110 @@ -93517,13 +93928,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3971 + 3998 ], "_set": [ - 3980 + 4007 ], "where": [ - 3969 + 3996 ], "__typename": [ 80 @@ -93555,7 +93966,7 @@ export default { }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -93563,7 +93974,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -93579,7 +93990,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -93631,16 +94042,16 @@ export default { } ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "needs_rebuild": [ 5 @@ -93649,10 +94060,10 @@ export default { 40 ], "player_season_stats": [ - 3676, + 3703, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -93662,19 +94073,19 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "player_season_stats_aggregate": [ - 3677, + 3704, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -93684,16 +94095,16 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -93701,10 +94112,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3998 + 4025 ], "nodes": [ - 3996 + 4023 ], "__typename": [ 80 @@ -93712,13 +94123,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3999 + 4026 ], "count": [ 40, { "columns": [ - 4011, + 4038, "[seasons_select_column!]" ], "distinct": [ @@ -93727,31 +94138,31 @@ export default { } ], "max": [ - 4004 + 4031 ], "min": [ - 4005 + 4032 ], "stddev": [ - 4013 + 4040 ], "stddev_pop": [ - 4014 + 4041 ], "stddev_samp": [ - 4015 + 4042 ], "sum": [ - 4018 + 4045 ], "var_pop": [ - 4021 + 4048 ], "var_samp": [ - 4022 + 4049 ], "variance": [ - 4023 + 4050 ], "__typename": [ 80 @@ -93767,13 +94178,13 @@ export default { }, "seasons_bool_exp": { "_and": [ - 4000 + 4027 ], "_not": [ - 4000 + 4027 ], "_or": [ - 4000 + 4027 ], "awards": [ 197 @@ -93782,16 +94193,16 @@ export default { 190 ], "created_at": [ - 4527 + 4554 ], "description": [ 82 ], "ends_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "needs_rebuild": [ 6 @@ -93800,13 +94211,13 @@ export default { 41 ], "player_season_stats": [ - 3695 + 3722 ], "player_season_stats_aggregate": [ - 3678 + 3705 ], "starts_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -93826,16 +94237,16 @@ export default { 194 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "needs_rebuild": [ 5 @@ -93844,10 +94255,10 @@ export default { 40 ], "player_season_stats": [ - 3692 + 3719 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -93855,22 +94266,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "number": [ 40 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -93878,22 +94289,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "number": [ 40 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -93904,7 +94315,7 @@ export default { 40 ], "returning": [ - 3996 + 4023 ], "__typename": [ 80 @@ -93912,10 +94323,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 4003 + 4030 ], "on_conflict": [ - 4008 + 4035 ], "__typename": [ 80 @@ -93923,13 +94334,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 4001 + 4028 ], "update_columns": [ - 4019 + 4046 ], "where": [ - 4000 + 4027 ], "__typename": [ 80 @@ -93940,28 +94351,28 @@ export default { 193 ], "created_at": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "ends_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "needs_rebuild": [ - 2979 + 3006 ], "number": [ - 2979 + 3006 ], "player_season_stats_aggregate": [ - 3691 + 3718 ], "starts_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -93969,7 +94380,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -93978,16 +94389,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "needs_rebuild": [ 5 @@ -93996,7 +94407,7 @@ export default { 40 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -94028,7 +94439,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 4017 + 4044 ], "ordering": [ 313 @@ -94039,16 +94450,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "description": [ 80 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "needs_rebuild": [ 5 @@ -94057,7 +94468,7 @@ export default { 40 ], "starts_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -94074,13 +94485,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4002 + 4029 ], "_set": [ - 4012 + 4039 ], "where": [ - 4000 + 4027 ], "__typename": [ 80 @@ -94185,10 +94596,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 4026 + 4053 ], "nodes": [ - 4024 + 4051 ], "__typename": [ 80 @@ -94196,13 +94607,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 4027 + 4054 ], "count": [ 40, { "columns": [ - 4038, + 4065, "[server_regions_select_column!]" ], "distinct": [ @@ -94211,31 +94622,31 @@ export default { } ], "max": [ - 4031 + 4058 ], "min": [ - 4032 + 4059 ], "stddev": [ - 4040 + 4067 ], "stddev_pop": [ - 4041 + 4068 ], "stddev_samp": [ - 4042 + 4069 ], "sum": [ - 4045 + 4072 ], "var_pop": [ - 4048 + 4075 ], "var_samp": [ - 4049 + 4076 ], "variance": [ - 4050 + 4077 ], "__typename": [ 80 @@ -94254,13 +94665,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 4028 + 4055 ], "_not": [ - 4028 + 4055 ], "_or": [ - 4028 + 4055 ], "available_server_count": [ 41 @@ -94362,7 +94773,7 @@ export default { 40 ], "returning": [ - 4024 + 4051 ], "__typename": [ 80 @@ -94370,10 +94781,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 4030 + 4057 ], "on_conflict": [ - 4035 + 4062 ], "__typename": [ 80 @@ -94381,13 +94792,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 4029 + 4056 ], "update_columns": [ - 4046 + 4073 ], "where": [ - 4028 + 4055 ], "__typename": [ 80 @@ -94395,31 +94806,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "game_server_nodes_aggregate": [ 1725 ], "has_node": [ - 2979 + 3006 ], "is_lan": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "steam_relay": [ - 2979 + 3006 ], "total_server_count": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -94486,7 +94897,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 4044 + 4071 ], "ordering": [ 313 @@ -94526,10 +94937,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4039 + 4066 ], "where": [ - 4028 + 4055 ], "__typename": [ 80 @@ -94570,7 +94981,7 @@ export default { }, "servers": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -94591,7 +95002,7 @@ export default { 80 ], "current_match": [ - 2794 + 2821 ], "enabled": [ 5 @@ -94609,7 +95020,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_dedicated": [ 5 @@ -94618,10 +95029,10 @@ export default { 80 ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -94631,19 +95042,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_aggregate": [ - 2795, + 2822, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -94653,11 +95064,11 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], @@ -94665,7 +95076,7 @@ export default { 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_runtime": [ 1110 @@ -94686,10 +95097,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "server_region": [ - 4024 + 4051 ], "steam_relay": [ 80 @@ -94701,7 +95112,7 @@ export default { 1191 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -94709,10 +95120,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 4057 + 4084 ], "nodes": [ - 4051 + 4078 ], "__typename": [ 80 @@ -94720,13 +95131,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 4054 + 4081 ], "bool_or": [ - 4055 + 4082 ], "count": [ - 4056 + 4083 ], "__typename": [ 80 @@ -94734,13 +95145,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4076 + 4103 ], "distinct": [ 5 ], "filter": [ - 4062 + 4089 ], "predicate": [ 6 @@ -94751,13 +95162,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4077 + 4104 ], "distinct": [ 5 ], "filter": [ - 4062 + 4089 ], "predicate": [ 6 @@ -94768,13 +95179,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4075 + 4102 ], "distinct": [ 5 ], "filter": [ - 4062 + 4089 ], "predicate": [ 41 @@ -94785,13 +95196,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 4060 + 4087 ], "count": [ 40, { "columns": [ - 4075, + 4102, "[servers_select_column!]" ], "distinct": [ @@ -94800,31 +95211,31 @@ export default { } ], "max": [ - 4066 + 4093 ], "min": [ - 4068 + 4095 ], "stddev": [ - 4079 + 4106 ], "stddev_pop": [ - 4081 + 4108 ], "stddev_samp": [ - 4083 + 4110 ], "sum": [ - 4087 + 4114 ], "var_pop": [ - 4091 + 4118 ], "var_samp": [ - 4093 + 4120 ], "variance": [ - 4095 + 4122 ], "__typename": [ 80 @@ -94832,37 +95243,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 4061 + 4088 ], "count": [ - 2979 + 3006 ], "max": [ - 4067 + 4094 ], "min": [ - 4069 + 4096 ], "stddev": [ - 4080 + 4107 ], "stddev_pop": [ - 4082 + 4109 ], "stddev_samp": [ - 4084 + 4111 ], "sum": [ - 4088 + 4115 ], "var_pop": [ - 4092 + 4119 ], "var_samp": [ - 4094 + 4121 ], "variance": [ - 4096 + 4123 ], "__typename": [ 80 @@ -94870,10 +95281,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 4065 + 4092 ], "on_conflict": [ - 4072 + 4099 ], "__typename": [ 80 @@ -94895,13 +95306,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -94909,16 +95320,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 4062 + 4089 ], "_not": [ - 4062 + 4089 ], "_or": [ - 4062 + 4089 ], "api_password": [ - 5028 + 5055 ], "boot_status": [ 82 @@ -94939,7 +95350,7 @@ export default { 82 ], "current_match": [ - 2803 + 2830 ], "enabled": [ 6 @@ -94957,7 +95368,7 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "is_dedicated": [ 6 @@ -94966,16 +95377,16 @@ export default { 82 ], "matches": [ - 2803 + 2830 ], "matches_aggregate": [ - 2796 + 2823 ], "max_players": [ 41 ], "offline_at": [ - 4527 + 4554 ], "plugin_runtime": [ 1111 @@ -94996,10 +95407,10 @@ export default { 82 ], "reserved_by_match_id": [ - 5028 + 5055 ], "server_region": [ - 4028 + 4055 ], "steam_relay": [ 82 @@ -95011,7 +95422,7 @@ export default { 1192 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -95034,7 +95445,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -95049,7 +95460,7 @@ export default { 5 ], "current_match": [ - 2812 + 2839 ], "enabled": [ 5 @@ -95067,7 +95478,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_dedicated": [ 5 @@ -95076,13 +95487,13 @@ export default { 80 ], "matches": [ - 2800 + 2827 ], "max_players": [ 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_runtime": [ 1110 @@ -95103,10 +95514,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "server_region": [ - 4034 + 4061 ], "steam_relay": [ 80 @@ -95118,7 +95529,7 @@ export default { 1191 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -95126,7 +95537,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -95153,7 +95564,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -95162,7 +95573,7 @@ export default { 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_version": [ 80 @@ -95174,7 +95585,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "steam_relay": [ 80 @@ -95183,7 +95594,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -95191,58 +95602,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2979 + 3006 ], "boot_status": [ - 2979 + 3006 ], "boot_status_detail": [ - 2979 + 3006 ], "connect_password": [ - 2979 + 3006 ], "game": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "host": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "max_players": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "plugin_version": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "reserved_by_match_id": [ - 2979 + 3006 ], "steam_relay": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95250,7 +95661,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -95277,7 +95688,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -95286,7 +95697,7 @@ export default { 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_version": [ 80 @@ -95298,7 +95709,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "steam_relay": [ 80 @@ -95307,7 +95718,7 @@ export default { 40 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -95315,58 +95726,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2979 + 3006 ], "boot_status": [ - 2979 + 3006 ], "boot_status_detail": [ - 2979 + 3006 ], "connect_password": [ - 2979 + 3006 ], "game": [ - 2979 + 3006 ], "game_server_node_id": [ - 2979 + 3006 ], "host": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "max_players": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "plugin_version": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "reserved_by_match_id": [ - 2979 + 3006 ], "steam_relay": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95377,7 +95788,7 @@ export default { 40 ], "returning": [ - 4051 + 4078 ], "__typename": [ 80 @@ -95385,10 +95796,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 4065 + 4092 ], "on_conflict": [ - 4072 + 4099 ], "__typename": [ 80 @@ -95396,13 +95807,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 4063 + 4090 ], "update_columns": [ - 4089 + 4116 ], "where": [ - 4062 + 4089 ], "__typename": [ 80 @@ -95410,97 +95821,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2979 + 3006 ], "boot_status": [ - 2979 + 3006 ], "boot_status_detail": [ - 2979 + 3006 ], "connect_password": [ - 2979 + 3006 ], "connected": [ - 2979 + 3006 ], "connection_link": [ - 2979 + 3006 ], "connection_string": [ - 2979 + 3006 ], "current_match": [ - 2814 + 2841 ], "enabled": [ - 2979 + 3006 ], "game": [ - 2979 + 3006 ], "game_server_node": [ 1744 ], "game_server_node_id": [ - 2979 + 3006 ], "host": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_dedicated": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "matches_aggregate": [ - 2799 + 2826 ], "max_players": [ - 2979 + 3006 ], "offline_at": [ - 2979 + 3006 ], "plugin_runtime": [ - 2979 + 3006 ], "plugin_version": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "rcon_password": [ - 2979 + 3006 ], "rcon_status": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "reserved_by_match_id": [ - 2979 + 3006 ], "server_region": [ - 4036 + 4063 ], "steam_relay": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95508,7 +95919,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -95519,7 +95930,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -95546,7 +95957,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_dedicated": [ 5 @@ -95558,7 +95969,7 @@ export default { 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_runtime": [ 1110 @@ -95579,7 +95990,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "steam_relay": [ 80 @@ -95591,7 +96002,7 @@ export default { 1191 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -95613,13 +96024,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95641,13 +96052,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95669,13 +96080,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95683,7 +96094,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 4086 + 4113 ], "ordering": [ 313 @@ -95694,7 +96105,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 5026 + 5053 ], "boot_status": [ 80 @@ -95721,7 +96132,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_dedicated": [ 5 @@ -95733,7 +96144,7 @@ export default { 40 ], "offline_at": [ - 4526 + 4553 ], "plugin_runtime": [ 1110 @@ -95754,7 +96165,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5026 + 5053 ], "steam_relay": [ 80 @@ -95766,7 +96177,7 @@ export default { 1191 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -95788,13 +96199,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95803,13 +96214,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 4064 + 4091 ], "_set": [ - 4078 + 4105 ], "where": [ - 4062 + 4089 ], "__typename": [ 80 @@ -95831,13 +96242,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95859,13 +96270,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95887,13 +96298,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2979 + 3006 ], "port": [ - 2979 + 3006 ], "tv_port": [ - 2979 + 3006 ], "__typename": [ 80 @@ -95912,10 +96323,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 4099 + 4126 ], "nodes": [ - 4097 + 4124 ], "__typename": [ 80 @@ -95926,7 +96337,7 @@ export default { 40, { "columns": [ - 4109, + 4136, "[settings_select_column!]" ], "distinct": [ @@ -95935,10 +96346,10 @@ export default { } ], "max": [ - 4103 + 4130 ], "min": [ - 4104 + 4131 ], "__typename": [ 80 @@ -95946,13 +96357,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 4100 + 4127 ], "_not": [ - 4100 + 4127 ], "_or": [ - 4100 + 4127 ], "name": [ 82 @@ -96003,7 +96414,7 @@ export default { 40 ], "returning": [ - 4097 + 4124 ], "__typename": [ 80 @@ -96011,13 +96422,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 4101 + 4128 ], "update_columns": [ - 4113 + 4140 ], "where": [ - 4100 + 4127 ], "__typename": [ 80 @@ -96025,10 +96436,10 @@ export default { }, "settings_order_by": { "name": [ - 2979 + 3006 ], "value": [ - 2979 + 3006 ], "__typename": [ 80 @@ -96056,7 +96467,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 4112 + 4139 ], "ordering": [ 313 @@ -96079,10 +96490,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 4110 + 4137 ], "where": [ - 4100 + 4127 ], "__typename": [ 80 @@ -96091,31 +96502,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4115 + 4142 ], "_gt": [ - 4115 + 4142 ], "_gte": [ - 4115 + 4142 ], "_in": [ - 4115 + 4142 ], "_is_null": [ 5 ], "_lt": [ - 4115 + 4142 ], "_lte": [ - 4115 + 4142 ], "_neq": [ - 4115 + 4142 ], "_nin": [ - 4115 + 4142 ], "__typename": [ 80 @@ -96123,10 +96534,10 @@ export default { }, "steam_account_claims": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96141,10 +96552,10 @@ export default { 80 ], "steam_account": [ - 4141 + 4168 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96152,10 +96563,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 4121 + 4148 ], "nodes": [ - 4117 + 4144 ], "__typename": [ 80 @@ -96163,7 +96574,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4120 + 4147 ], "__typename": [ 80 @@ -96171,13 +96582,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4135 + 4162 ], "distinct": [ 5 ], "filter": [ - 4124 + 4151 ], "predicate": [ 41 @@ -96191,7 +96602,7 @@ export default { 40, { "columns": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -96200,10 +96611,10 @@ export default { } ], "max": [ - 4127 + 4154 ], "min": [ - 4129 + 4156 ], "__typename": [ 80 @@ -96211,13 +96622,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 4128 + 4155 ], "min": [ - 4130 + 4157 ], "__typename": [ 80 @@ -96225,10 +96636,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4126 + 4153 ], "on_conflict": [ - 4132 + 4159 ], "__typename": [ 80 @@ -96236,19 +96647,19 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 4124 + 4151 ], "_not": [ - 4124 + 4151 ], "_or": [ - 4124 + 4151 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "k8s_job_name": [ 82 @@ -96263,10 +96674,10 @@ export default { 82 ], "steam_account": [ - 4145 + 4172 ], "steam_account_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -96275,10 +96686,10 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96293,10 +96704,10 @@ export default { 80 ], "steam_account": [ - 4152 + 4179 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96304,10 +96715,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96319,7 +96730,7 @@ export default { 80 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96327,22 +96738,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "node_id": [ - 2979 + 3006 ], "purpose": [ - 2979 + 3006 ], "steam_account_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -96350,10 +96761,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96365,7 +96776,7 @@ export default { 80 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96373,22 +96784,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "node_id": [ - 2979 + 3006 ], "purpose": [ - 2979 + 3006 ], "steam_account_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -96399,7 +96810,7 @@ export default { 40 ], "returning": [ - 4117 + 4144 ], "__typename": [ 80 @@ -96407,13 +96818,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 4125 + 4152 ], "update_columns": [ - 4139 + 4166 ], "where": [ - 4124 + 4151 ], "__typename": [ 80 @@ -96421,28 +96832,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "k8s_job_name": [ - 2979 + 3006 ], "node": [ 1744 ], "node_id": [ - 2979 + 3006 ], "purpose": [ - 2979 + 3006 ], "steam_account": [ - 4154 + 4181 ], "steam_account_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -96450,7 +96861,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96459,10 +96870,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96474,7 +96885,7 @@ export default { 80 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96482,7 +96893,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4138 + 4165 ], "ordering": [ 313 @@ -96493,10 +96904,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "k8s_job_name": [ 80 @@ -96508,7 +96919,7 @@ export default { 80 ], "steam_account_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96517,10 +96928,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4136 + 4163 ], "where": [ - 4124 + 4151 ], "__typename": [ 80 @@ -96528,10 +96939,10 @@ export default { }, "steam_accounts": { "claims": [ - 4117, + 4144, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -96541,19 +96952,19 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "claims_aggregate": [ - 4118, + 4145, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -96563,22 +96974,22 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node": [ 1718 @@ -96599,7 +97010,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -96610,10 +97021,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 4143 + 4170 ], "nodes": [ - 4141 + 4168 ], "__typename": [ 80 @@ -96621,13 +97032,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 4144 + 4171 ], "count": [ 40, { "columns": [ - 4156, + 4183, "[steam_accounts_select_column!]" ], "distinct": [ @@ -96636,31 +97047,31 @@ export default { } ], "max": [ - 4149 + 4176 ], "min": [ - 4150 + 4177 ], "stddev": [ - 4158 + 4185 ], "stddev_pop": [ - 4159 + 4186 ], "stddev_samp": [ - 4160 + 4187 ], "sum": [ - 4163 + 4190 ], "var_pop": [ - 4166 + 4193 ], "var_samp": [ - 4167 + 4194 ], "variance": [ - 4168 + 4195 ], "__typename": [ 80 @@ -96682,28 +97093,28 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 4145 + 4172 ], "_not": [ - 4145 + 4172 ], "_or": [ - 4145 + 4172 ], "claims": [ - 4124 + 4151 ], "claims_aggregate": [ - 4119 + 4146 ], "created_at": [ - 4527 + 4554 ], "friend_capacity": [ 41 ], "id": [ - 5028 + 5055 ], "last_node": [ 1730 @@ -96724,7 +97135,7 @@ export default { 259 ], "updated_at": [ - 4527 + 4554 ], "username": [ 82 @@ -96750,16 +97161,16 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 4123 + 4150 ], "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node": [ 1742 @@ -96780,7 +97191,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -96791,13 +97202,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node_id": [ 80 @@ -96815,7 +97226,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -96826,13 +97237,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node_id": [ 80 @@ -96850,7 +97261,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -96864,7 +97275,7 @@ export default { 40 ], "returning": [ - 4141 + 4168 ], "__typename": [ 80 @@ -96872,10 +97283,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4148 + 4175 ], "on_conflict": [ - 4153 + 4180 ], "__typename": [ 80 @@ -96883,13 +97294,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 4146 + 4173 ], "update_columns": [ - 4164 + 4191 ], "where": [ - 4145 + 4172 ], "__typename": [ 80 @@ -96897,40 +97308,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 4122 + 4149 ], "created_at": [ - 2979 + 3006 ], "friend_capacity": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "last_node": [ 1744 ], "last_node_id": [ - 2979 + 3006 ], "password": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "steam_level": [ - 2979 + 3006 ], "steamid64": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "username": [ - 2979 + 3006 ], "__typename": [ 80 @@ -96938,7 +97349,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -96947,13 +97358,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node_id": [ 80 @@ -96971,7 +97382,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -97024,7 +97435,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4162 + 4189 ], "ordering": [ 313 @@ -97035,13 +97446,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "friend_capacity": [ 40 ], "id": [ - 5026 + 5053 ], "last_node_id": [ 80 @@ -97059,7 +97470,7 @@ export default { 257 ], "updated_at": [ - 4526 + 4553 ], "username": [ 80 @@ -97085,13 +97496,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4147 + 4174 ], "_set": [ - 4157 + 4184 ], "where": [ - 4145 + 4172 ], "__typename": [ 80 @@ -97141,7 +97552,7 @@ export default { }, "system_alerts": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 @@ -97150,10 +97561,10 @@ export default { 5 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "is_active": [ 5 @@ -97168,7 +97579,7 @@ export default { 1231 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97176,10 +97587,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 4171 + 4198 ], "nodes": [ - 4169 + 4196 ], "__typename": [ 80 @@ -97187,13 +97598,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 4172 + 4199 ], "count": [ 40, { "columns": [ - 4183, + 4210, "[system_alerts_select_column!]" ], "distinct": [ @@ -97202,31 +97613,31 @@ export default { } ], "max": [ - 4177 + 4204 ], "min": [ - 4178 + 4205 ], "stddev": [ - 4185 + 4212 ], "stddev_pop": [ - 4186 + 4213 ], "stddev_samp": [ - 4187 + 4214 ], "sum": [ - 4190 + 4217 ], "var_pop": [ - 4193 + 4220 ], "var_samp": [ - 4194 + 4221 ], "variance": [ - 4195 + 4222 ], "__typename": [ 80 @@ -97242,16 +97653,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 4173 + 4200 ], "_not": [ - 4173 + 4200 ], "_or": [ - 4173 + 4200 ], "created_at": [ - 4527 + 4554 ], "created_by": [ 259 @@ -97260,10 +97671,10 @@ export default { 6 ], "expires_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "is_active": [ 6 @@ -97278,7 +97689,7 @@ export default { 1232 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -97295,7 +97706,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 @@ -97304,10 +97715,10 @@ export default { 5 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "is_active": [ 5 @@ -97322,7 +97733,7 @@ export default { 1231 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97330,16 +97741,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 @@ -97348,7 +97759,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97356,16 +97767,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "message": [ 80 @@ -97374,7 +97785,7 @@ export default { 80 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97385,7 +97796,7 @@ export default { 40 ], "returning": [ - 4169 + 4196 ], "__typename": [ 80 @@ -97393,13 +97804,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 4174 + 4201 ], "update_columns": [ - 4191 + 4218 ], "where": [ - 4173 + 4200 ], "__typename": [ 80 @@ -97407,34 +97818,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2979 + 3006 ], "created_by": [ - 2979 + 3006 ], "dismissible": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_active": [ - 2979 + 3006 ], "message": [ - 2979 + 3006 ], "title": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -97442,7 +97853,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -97451,7 +97862,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 @@ -97460,10 +97871,10 @@ export default { 5 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "is_active": [ 5 @@ -97478,7 +97889,7 @@ export default { 1231 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97510,7 +97921,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4189 + 4216 ], "ordering": [ 313 @@ -97521,7 +97932,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "created_by": [ 257 @@ -97530,10 +97941,10 @@ export default { 5 ], "expires_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "is_active": [ 5 @@ -97548,7 +97959,7 @@ export default { 1231 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -97565,13 +97976,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4175 + 4202 ], "_set": [ - 4184 + 4211 ], "where": [ - 4173 + 4200 ], "__typename": [ 80 @@ -97603,28 +98014,28 @@ export default { }, "team_invites": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by": [ - 3937 + 3964 ], "invited_by_player_steam_id": [ 257 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -97632,10 +98043,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4200 + 4227 ], "nodes": [ - 4196 + 4223 ], "__typename": [ 80 @@ -97643,7 +98054,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4199 + 4226 ], "__typename": [ 80 @@ -97651,13 +98062,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4217 + 4244 ], "distinct": [ 5 ], "filter": [ - 4205 + 4232 ], "predicate": [ 41 @@ -97668,13 +98079,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4203 + 4230 ], "count": [ 40, { "columns": [ - 4217, + 4244, "[team_invites_select_column!]" ], "distinct": [ @@ -97683,31 +98094,31 @@ export default { } ], "max": [ - 4209 + 4236 ], "min": [ - 4211 + 4238 ], "stddev": [ - 4219 + 4246 ], "stddev_pop": [ - 4221 + 4248 ], "stddev_samp": [ - 4223 + 4250 ], "sum": [ - 4227 + 4254 ], "var_pop": [ - 4231 + 4258 ], "var_samp": [ - 4233 + 4260 ], "variance": [ - 4235 + 4262 ], "__typename": [ 80 @@ -97715,37 +98126,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4204 + 4231 ], "count": [ - 2979 + 3006 ], "max": [ - 4210 + 4237 ], "min": [ - 4212 + 4239 ], "stddev": [ - 4220 + 4247 ], "stddev_pop": [ - 4222 + 4249 ], "stddev_samp": [ - 4224 + 4251 ], "sum": [ - 4228 + 4255 ], "var_pop": [ - 4232 + 4259 ], "var_samp": [ - 4234 + 4261 ], "variance": [ - 4236 + 4263 ], "__typename": [ 80 @@ -97753,10 +98164,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4208 + 4235 ], "on_conflict": [ - 4214 + 4241 ], "__typename": [ 80 @@ -97775,10 +98186,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -97786,37 +98197,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4205 + 4232 ], "_not": [ - 4205 + 4232 ], "_or": [ - 4205 + 4232 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "invited_by": [ - 3941 + 3968 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -97836,28 +98247,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by": [ - 3948 + 3975 ], "invited_by_player_steam_id": [ 257 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -97865,10 +98276,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -97877,7 +98288,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -97885,19 +98296,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -97905,10 +98316,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -97917,7 +98328,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -97925,19 +98336,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -97948,7 +98359,7 @@ export default { 40 ], "returning": [ - 4196 + 4223 ], "__typename": [ 80 @@ -97956,13 +98367,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4206 + 4233 ], "update_columns": [ - 4229 + 4256 ], "where": [ - 4205 + 4232 ], "__typename": [ 80 @@ -97970,28 +98381,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by": [ - 3950 + 3977 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -97999,7 +98410,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98008,10 +98419,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -98020,7 +98431,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98039,10 +98450,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98061,10 +98472,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98083,10 +98494,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98094,7 +98505,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4226 + 4253 ], "ordering": [ 313 @@ -98105,10 +98516,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -98117,7 +98528,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98136,10 +98547,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98148,13 +98559,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4207 + 4234 ], "_set": [ - 4218 + 4245 ], "where": [ - 4205 + 4232 ], "__typename": [ 80 @@ -98173,10 +98584,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98195,10 +98606,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98217,10 +98628,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98231,7 +98642,7 @@ export default { 5 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -98246,10 +98657,10 @@ export default { 1272 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98257,10 +98668,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4243 + 4270 ], "nodes": [ - 4237 + 4264 ], "__typename": [ 80 @@ -98268,13 +98679,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4240 + 4267 ], "bool_or": [ - 4241 + 4268 ], "count": [ - 4242 + 4269 ], "__typename": [ 80 @@ -98282,13 +98693,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4261 + 4288 ], "distinct": [ 5 ], "filter": [ - 4248 + 4275 ], "predicate": [ 6 @@ -98299,13 +98710,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4262 + 4289 ], "distinct": [ 5 ], "filter": [ - 4248 + 4275 ], "predicate": [ 6 @@ -98316,13 +98727,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4260 + 4287 ], "distinct": [ 5 ], "filter": [ - 4248 + 4275 ], "predicate": [ 41 @@ -98333,13 +98744,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4246 + 4273 ], "count": [ 40, { "columns": [ - 4260, + 4287, "[team_roster_select_column!]" ], "distinct": [ @@ -98348,31 +98759,31 @@ export default { } ], "max": [ - 4252 + 4279 ], "min": [ - 4254 + 4281 ], "stddev": [ - 4264 + 4291 ], "stddev_pop": [ - 4266 + 4293 ], "stddev_samp": [ - 4268 + 4295 ], "sum": [ - 4272 + 4299 ], "var_pop": [ - 4276 + 4303 ], "var_samp": [ - 4278 + 4305 ], "variance": [ - 4280 + 4307 ], "__typename": [ 80 @@ -98380,37 +98791,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4247 + 4274 ], "count": [ - 2979 + 3006 ], "max": [ - 4253 + 4280 ], "min": [ - 4255 + 4282 ], "stddev": [ - 4265 + 4292 ], "stddev_pop": [ - 4267 + 4294 ], "stddev_samp": [ - 4269 + 4296 ], "sum": [ - 4273 + 4300 ], "var_pop": [ - 4277 + 4304 ], "var_samp": [ - 4279 + 4306 ], "variance": [ - 4281 + 4308 ], "__typename": [ 80 @@ -98418,10 +98829,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4251 + 4278 ], "on_conflict": [ - 4257 + 4284 ], "__typename": [ 80 @@ -98437,7 +98848,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98445,19 +98856,19 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4248 + 4275 ], "_not": [ - 4248 + 4275 ], "_or": [ - 4248 + 4275 ], "coach": [ 6 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -98472,10 +98883,10 @@ export default { 1273 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -98495,7 +98906,7 @@ export default { 5 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -98510,10 +98921,10 @@ export default { 1272 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98527,7 +98938,7 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98535,13 +98946,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98555,7 +98966,7 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98563,13 +98974,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98580,7 +98991,7 @@ export default { 40 ], "returning": [ - 4237 + 4264 ], "__typename": [ 80 @@ -98588,13 +98999,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4249 + 4276 ], "update_columns": [ - 4274 + 4301 ], "where": [ - 4248 + 4275 ], "__typename": [ 80 @@ -98602,28 +99013,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "roster_image_url": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98634,7 +99045,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98660,7 +99071,7 @@ export default { 1272 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98676,7 +99087,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98692,7 +99103,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98708,7 +99119,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98716,7 +99127,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4271 + 4298 ], "ordering": [ 313 @@ -98742,7 +99153,7 @@ export default { 1272 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98758,7 +99169,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98767,13 +99178,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4250 + 4277 ], "_set": [ - 4263 + 4290 ], "where": [ - 4248 + 4275 ], "__typename": [ 80 @@ -98789,7 +99200,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98805,7 +99216,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98821,7 +99232,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -98829,7 +99240,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -98841,19 +99252,19 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -98861,10 +99272,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4284 + 4311 ], "nodes": [ - 4282 + 4309 ], "__typename": [ 80 @@ -98872,13 +99283,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4285 + 4312 ], "count": [ 40, { "columns": [ - 4296, + 4323, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -98887,31 +99298,31 @@ export default { } ], "max": [ - 4290 + 4317 ], "min": [ - 4291 + 4318 ], "stddev": [ - 4298 + 4325 ], "stddev_pop": [ - 4299 + 4326 ], "stddev_samp": [ - 4300 + 4327 ], "sum": [ - 4303 + 4330 ], "var_pop": [ - 4306 + 4333 ], "var_samp": [ - 4307 + 4334 ], "variance": [ - 4308 + 4335 ], "__typename": [ 80 @@ -98930,16 +99341,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4286 + 4313 ], "_not": [ - 4286 + 4313 ], "_or": [ - 4286 + 4313 ], "created_at": [ - 4527 + 4554 ], "elo_max": [ 41 @@ -98951,19 +99362,19 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "last_notified_at": [ - 4527 + 4554 ], "regions": [ 81 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -98983,7 +99394,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -98995,19 +99406,19 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99015,7 +99426,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -99024,16 +99435,16 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99041,7 +99452,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -99050,16 +99461,16 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99070,7 +99481,7 @@ export default { 40 ], "returning": [ - 4282 + 4309 ], "__typename": [ 80 @@ -99078,13 +99489,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4287 + 4314 ], "update_columns": [ - 4304 + 4331 ], "where": [ - 4286 + 4313 ], "__typename": [ 80 @@ -99092,31 +99503,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2979 + 3006 ], "elo_max": [ - 2979 + 3006 ], "elo_min": [ - 2979 + 3006 ], "enabled": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "last_notified_at": [ - 2979 + 3006 ], "regions": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -99124,7 +99535,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99133,7 +99544,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -99145,16 +99556,16 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99195,7 +99606,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4302 + 4329 ], "ordering": [ 313 @@ -99206,7 +99617,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -99218,16 +99629,16 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "regions": [ 80 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99247,13 +99658,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4288 + 4315 ], "_set": [ - 4297 + 4324 ], "where": [ - 4286 + 4313 ], "__typename": [ 80 @@ -99294,25 +99705,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4526 + 4553 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99320,10 +99731,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4315 + 4342 ], "nodes": [ - 4309 + 4336 ], "__typename": [ 80 @@ -99331,13 +99742,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4312 + 4339 ], "bool_or": [ - 4313 + 4340 ], "count": [ - 4314 + 4341 ], "__typename": [ 80 @@ -99345,13 +99756,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4330 + 4357 ], "distinct": [ 5 ], "filter": [ - 4318 + 4345 ], "predicate": [ 6 @@ -99362,13 +99773,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4331 + 4358 ], "distinct": [ 5 ], "filter": [ - 4318 + 4345 ], "predicate": [ 6 @@ -99379,13 +99790,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4329 + 4356 ], "distinct": [ 5 ], "filter": [ - 4318 + 4345 ], "predicate": [ 41 @@ -99399,7 +99810,7 @@ export default { 40, { "columns": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -99408,10 +99819,10 @@ export default { } ], "max": [ - 4321 + 4348 ], "min": [ - 4323 + 4350 ], "__typename": [ 80 @@ -99419,13 +99830,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 4322 + 4349 ], "min": [ - 4324 + 4351 ], "__typename": [ 80 @@ -99433,10 +99844,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4320 + 4347 ], "on_conflict": [ - 4326 + 4353 ], "__typename": [ 80 @@ -99444,34 +99855,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4318 + 4345 ], "_not": [ - 4318 + 4345 ], "_or": [ - 4318 + 4345 ], "created_at": [ - 4527 + 4554 ], "ends_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4527 + 4554 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -99480,25 +99891,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4526 + 4553 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99506,19 +99917,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "starts_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99526,19 +99937,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2979 + 3006 ], "ends_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "starts_at": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -99546,19 +99957,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "starts_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99566,19 +99977,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2979 + 3006 ], "ends_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "starts_at": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -99589,7 +100000,7 @@ export default { 40 ], "returning": [ - 4309 + 4336 ], "__typename": [ 80 @@ -99597,13 +100008,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4319 + 4346 ], "update_columns": [ - 4335 + 4362 ], "where": [ - 4318 + 4345 ], "__typename": [ 80 @@ -99611,25 +100022,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2979 + 3006 ], "ends_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "recurring_weekly": [ - 2979 + 3006 ], "starts_at": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -99637,7 +100048,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99648,22 +100059,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": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99671,7 +100082,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4334 + 4361 ], "ordering": [ 313 @@ -99682,22 +100093,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "ends_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99706,10 +100117,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4332 + 4359 ], "where": [ - 4318 + 4345 ], "__typename": [ 80 @@ -99717,31 +100128,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by": [ - 3937 + 3964 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team": [ - 4479 + 4506 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request": [ - 4378 + 4405 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99749,10 +100160,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4341 + 4368 ], "nodes": [ - 4337 + 4364 ], "__typename": [ 80 @@ -99760,7 +100171,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4340 + 4367 ], "__typename": [ 80 @@ -99768,13 +100179,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4358 + 4385 ], "distinct": [ 5 ], "filter": [ - 4346 + 4373 ], "predicate": [ 41 @@ -99785,13 +100196,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4344 + 4371 ], "count": [ 40, { "columns": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -99800,31 +100211,31 @@ export default { } ], "max": [ - 4350 + 4377 ], "min": [ - 4352 + 4379 ], "stddev": [ - 4360 + 4387 ], "stddev_pop": [ - 4362 + 4389 ], "stddev_samp": [ - 4364 + 4391 ], "sum": [ - 4368 + 4395 ], "var_pop": [ - 4372 + 4399 ], "var_samp": [ - 4374 + 4401 ], "variance": [ - 4376 + 4403 ], "__typename": [ 80 @@ -99832,37 +100243,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4345 + 4372 ], "count": [ - 2979 + 3006 ], "max": [ - 4351 + 4378 ], "min": [ - 4353 + 4380 ], "stddev": [ - 4361 + 4388 ], "stddev_pop": [ - 4363 + 4390 ], "stddev_samp": [ - 4365 + 4392 ], "sum": [ - 4369 + 4396 ], "var_pop": [ - 4373 + 4400 ], "var_samp": [ - 4375 + 4402 ], "variance": [ - 4377 + 4404 ], "__typename": [ 80 @@ -99870,10 +100281,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4349 + 4376 ], "on_conflict": [ - 4355 + 4382 ], "__typename": [ 80 @@ -99889,7 +100300,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -99897,40 +100308,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4346 + 4373 ], "_not": [ - 4346 + 4373 ], "_or": [ - 4346 + 4373 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "proposed_by": [ - 3941 + 3968 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team": [ - 4490 + 4517 ], "proposed_by_team_id": [ - 5028 + 5055 ], "proposed_scheduled_at": [ - 4527 + 4554 ], "request": [ - 4389 + 4416 ], "request_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -99947,31 +100358,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by": [ - 3948 + 3975 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team": [ - 4499 + 4526 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request": [ - 4398 + 4425 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -99979,22 +100390,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100002,22 +100413,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_by_team_id": [ - 2979 + 3006 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "request_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100025,22 +100436,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100048,22 +100459,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_by_team_id": [ - 2979 + 3006 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "request_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100074,7 +100485,7 @@ export default { 40 ], "returning": [ - 4337 + 4364 ], "__typename": [ 80 @@ -100082,13 +100493,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4347 + 4374 ], "update_columns": [ - 4370 + 4397 ], "where": [ - 4346 + 4373 ], "__typename": [ 80 @@ -100096,31 +100507,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "proposed_by": [ - 3950 + 3977 ], "proposed_by_steam_id": [ - 2979 + 3006 ], "proposed_by_team": [ - 4501 + 4528 ], "proposed_by_team_id": [ - 2979 + 3006 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "request": [ - 4400 + 4427 ], "request_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100128,7 +100539,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100137,22 +100548,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100168,7 +100579,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100184,7 +100595,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100200,7 +100611,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100208,7 +100619,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4367 + 4394 ], "ordering": [ 313 @@ -100219,22 +100630,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "proposed_by_steam_id": [ 257 ], "proposed_by_team_id": [ - 5026 + 5053 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "request_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100250,7 +100661,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100259,13 +100670,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4348 + 4375 ], "_set": [ - 4359 + 4386 ], "where": [ - 4346 + 4373 ], "__typename": [ 80 @@ -100281,7 +100692,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100297,7 +100708,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100313,7 +100724,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100324,55 +100735,55 @@ export default { 5 ], "awaiting_team": [ - 4479 + 4506 ], "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "canceled_late": [ 5 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team": [ - 4479 + 4506 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_options": [ - 2670 + 2697 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposals": [ - 4337, + 4364, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -100382,19 +100793,19 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "proposals_aggregate": [ - 4338, + 4365, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -100404,40 +100815,40 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 ], "requested_by": [ - 3937 + 3964 ], "requested_by_steam_id": [ 257 ], "responded_at": [ - 4526 + 4553 ], "status": [ 1171 ], "to_team": [ - 4479 + 4506 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100445,10 +100856,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4384 + 4411 ], "nodes": [ - 4378 + 4405 ], "__typename": [ 80 @@ -100456,13 +100867,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4381 + 4408 ], "bool_or": [ - 4382 + 4409 ], "count": [ - 4383 + 4410 ], "__typename": [ 80 @@ -100470,13 +100881,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4403 + 4430 ], "distinct": [ 5 ], "filter": [ - 4389 + 4416 ], "predicate": [ 6 @@ -100487,13 +100898,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4404 + 4431 ], "distinct": [ 5 ], "filter": [ - 4389 + 4416 ], "predicate": [ 6 @@ -100504,13 +100915,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4402 + 4429 ], "distinct": [ 5 ], "filter": [ - 4389 + 4416 ], "predicate": [ 41 @@ -100521,13 +100932,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4387 + 4414 ], "count": [ 40, { "columns": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -100536,31 +100947,31 @@ export default { } ], "max": [ - 4393 + 4420 ], "min": [ - 4395 + 4422 ], "stddev": [ - 4406 + 4433 ], "stddev_pop": [ - 4408 + 4435 ], "stddev_samp": [ - 4410 + 4437 ], "sum": [ - 4414 + 4441 ], "var_pop": [ - 4418 + 4445 ], "var_samp": [ - 4420 + 4447 ], "variance": [ - 4422 + 4449 ], "__typename": [ 80 @@ -100568,37 +100979,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4388 + 4415 ], "count": [ - 2979 + 3006 ], "max": [ - 4394 + 4421 ], "min": [ - 4396 + 4423 ], "stddev": [ - 4407 + 4434 ], "stddev_pop": [ - 4409 + 4436 ], "stddev_samp": [ - 4411 + 4438 ], "sum": [ - 4415 + 4442 ], "var_pop": [ - 4419 + 4446 ], "var_samp": [ - 4421 + 4448 ], "variance": [ - 4423 + 4450 ], "__typename": [ 80 @@ -100606,10 +101017,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4392 + 4419 ], "on_conflict": [ - 4399 + 4426 ], "__typename": [ 80 @@ -100625,7 +101036,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100633,94 +101044,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4389 + 4416 ], "_not": [ - 4389 + 4416 ], "_or": [ - 4389 + 4416 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4490 + 4517 ], "awaiting_team_id": [ - 5028 + 5055 ], "canceled_by_team_id": [ - 5028 + 5055 ], "canceled_late": [ 6 ], "created_at": [ - 4527 + 4554 ], "expires_at": [ - 4527 + 4554 ], "from_team": [ - 4490 + 4517 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 5028 + 5055 ], "id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_options": [ - 2674 + 2701 ], "match_options_id": [ - 5028 + 5055 ], "match_outcome": [ 82 ], "proposals": [ - 4346 + 4373 ], "proposals_aggregate": [ - 4339 + 4366 ], "proposed_scheduled_at": [ - 4527 + 4554 ], "region": [ 82 ], "requested_by": [ - 3941 + 3968 ], "requested_by_steam_id": [ 259 ], "responded_at": [ - 4527 + 4554 ], "status": [ 1172 ], "to_team": [ - 4490 + 4517 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -100740,79 +101151,79 @@ export default { 5 ], "awaiting_team": [ - 4499 + 4526 ], "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "canceled_late": [ 5 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team": [ - 4499 + 4526 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_options": [ - 2681 + 2708 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposals": [ - 4343 + 4370 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 ], "requested_by": [ - 3948 + 3975 ], "requested_by_steam_id": [ 257 ], "responded_at": [ - 4526 + 4553 ], "status": [ 1171 ], "to_team": [ - 4499 + 4526 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100820,34 +101231,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 @@ -100856,10 +101267,10 @@ export default { 257 ], "responded_at": [ - 4526 + 4553 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100867,46 +101278,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2979 + 3006 ], "canceled_by_team_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "from_team_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "match_outcome": [ - 2979 + 3006 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "requested_by_steam_id": [ - 2979 + 3006 ], "responded_at": [ - 2979 + 3006 ], "to_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -100914,34 +101325,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 @@ -100950,10 +101361,10 @@ export default { 257 ], "responded_at": [ - 4526 + 4553 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -100961,46 +101372,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2979 + 3006 ], "canceled_by_team_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "from_team_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "match_outcome": [ - 2979 + 3006 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "requested_by_steam_id": [ - 2979 + 3006 ], "responded_at": [ - 2979 + 3006 ], "to_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101011,7 +101422,7 @@ export default { 40 ], "returning": [ - 4378 + 4405 ], "__typename": [ 80 @@ -101019,10 +101430,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4392 + 4419 ], "on_conflict": [ - 4399 + 4426 ], "__typename": [ 80 @@ -101030,13 +101441,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4390 + 4417 ], "update_columns": [ - 4416 + 4443 ], "where": [ - 4389 + 4416 ], "__typename": [ 80 @@ -101044,82 +101455,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2979 + 3006 ], "awaiting_team": [ - 4501 + 4528 ], "awaiting_team_id": [ - 2979 + 3006 ], "canceled_by_team_id": [ - 2979 + 3006 ], "canceled_late": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "expires_at": [ - 2979 + 3006 ], "from_team": [ - 4501 + 4528 ], "from_team_checked_in": [ - 2979 + 3006 ], "from_team_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_options": [ - 2683 + 2710 ], "match_options_id": [ - 2979 + 3006 ], "match_outcome": [ - 2979 + 3006 ], "proposals_aggregate": [ - 4342 + 4369 ], "proposed_scheduled_at": [ - 2979 + 3006 ], "region": [ - 2979 + 3006 ], "requested_by": [ - 3950 + 3977 ], "requested_by_steam_id": [ - 2979 + 3006 ], "responded_at": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "to_team": [ - 4501 + 4528 ], "to_team_checked_in": [ - 2979 + 3006 ], "to_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101127,7 +101538,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -101141,40 +101552,40 @@ export default { 5 ], "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "canceled_late": [ 5 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 @@ -101183,7 +101594,7 @@ export default { 257 ], "responded_at": [ - 4526 + 4553 ], "status": [ 1171 @@ -101192,7 +101603,7 @@ export default { 5 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -101208,7 +101619,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101224,7 +101635,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101240,7 +101651,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101248,7 +101659,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4413 + 4440 ], "ordering": [ 313 @@ -101262,40 +101673,40 @@ export default { 5 ], "awaiting_team_id": [ - 5026 + 5053 ], "canceled_by_team_id": [ - 5026 + 5053 ], "canceled_late": [ 5 ], "created_at": [ - 4526 + 4553 ], "expires_at": [ - 4526 + 4553 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4526 + 4553 ], "region": [ 80 @@ -101304,7 +101715,7 @@ export default { 257 ], "responded_at": [ - 4526 + 4553 ], "status": [ 1171 @@ -101313,7 +101724,7 @@ export default { 5 ], "to_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -101329,7 +101740,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101338,13 +101749,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4391 + 4418 ], "_set": [ - 4405 + 4432 ], "where": [ - 4389 + 4416 ], "__typename": [ 80 @@ -101360,7 +101771,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101376,7 +101787,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101392,7 +101803,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101403,7 +101814,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101415,10 +101826,10 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101427,13 +101838,13 @@ export default { 80 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101441,10 +101852,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4426 + 4453 ], "nodes": [ - 4424 + 4451 ], "__typename": [ 80 @@ -101452,13 +101863,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4427 + 4454 ], "count": [ 40, { "columns": [ - 4439, + 4466, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -101467,31 +101878,31 @@ export default { } ], "max": [ - 4432 + 4459 ], "min": [ - 4433 + 4460 ], "stddev": [ - 4441 + 4468 ], "stddev_pop": [ - 4442 + 4469 ], "stddev_samp": [ - 4443 + 4470 ], "sum": [ - 4446 + 4473 ], "var_pop": [ - 4449 + 4476 ], "var_samp": [ - 4450 + 4477 ], "variance": [ - 4451 + 4478 ], "__typename": [ 80 @@ -101510,19 +101921,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4428 + 4455 ], "_not": [ - 4428 + 4455 ], "_or": [ - 4428 + 4455 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4527 + 4554 ], "elo_max": [ 41 @@ -101534,10 +101945,10 @@ export default { 6 ], "id": [ - 5028 + 5055 ], "map_ids": [ - 5027 + 5054 ], "notes": [ 82 @@ -101546,13 +101957,13 @@ export default { 81 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -101575,7 +101986,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101587,10 +101998,10 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101599,13 +102010,13 @@ export default { 80 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101613,7 +102024,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101622,10 +102033,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101634,10 +102045,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101645,7 +102056,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101654,10 +102065,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101666,10 +102077,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101680,7 +102091,7 @@ export default { 40 ], "returning": [ - 4424 + 4451 ], "__typename": [ 80 @@ -101688,10 +102099,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4431 + 4458 ], "on_conflict": [ - 4436 + 4463 ], "__typename": [ 80 @@ -101699,13 +102110,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4429 + 4456 ], "update_columns": [ - 4447 + 4474 ], "where": [ - 4428 + 4455 ], "__typename": [ 80 @@ -101713,40 +102124,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "elo_max": [ - 2979 + 3006 ], "elo_min": [ - 2979 + 3006 ], "enabled": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "map_ids": [ - 2979 + 3006 ], "notes": [ - 2979 + 3006 ], "regions": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -101754,7 +102165,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -101766,7 +102177,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101778,10 +102189,10 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101790,10 +102201,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101834,7 +102245,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4445 + 4472 ], "ordering": [ 313 @@ -101848,7 +102259,7 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "elo_max": [ 40 @@ -101860,10 +102271,10 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "map_ids": [ - 5026 + 5053 ], "notes": [ 80 @@ -101872,10 +102283,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -101895,13 +102306,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4430 + 4457 ], "_set": [ - 4440 + 4467 ], "where": [ - 4428 + 4455 ], "__typename": [ 80 @@ -101942,16 +102353,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -101968,10 +102379,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4454 + 4481 ], "nodes": [ - 4452 + 4479 ], "__typename": [ 80 @@ -101979,13 +102390,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4455 + 4482 ], "count": [ 40, { "columns": [ - 4466, + 4493, "[team_suggestions_select_column!]" ], "distinct": [ @@ -101994,31 +102405,31 @@ export default { } ], "max": [ - 4460 + 4487 ], "min": [ - 4461 + 4488 ], "stddev": [ - 4468 + 4495 ], "stddev_pop": [ - 4469 + 4496 ], "stddev_samp": [ - 4470 + 4497 ], "sum": [ - 4473 + 4500 ], "var_pop": [ - 4476 + 4503 ], "var_samp": [ - 4477 + 4504 ], "variance": [ - 4478 + 4505 ], "__typename": [ 80 @@ -102034,25 +102445,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4456 + 4483 ], "_not": [ - 4456 + 4483 ], "_or": [ - 4456 + 4483 ], "created_at": [ - 4527 + 4554 ], "group_hash": [ 82 ], "id": [ - 5028 + 5055 ], "last_notified_at": [ - 4527 + 4554 ], "member_steam_ids": [ 258 @@ -102078,16 +102489,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -102104,16 +102515,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -102130,16 +102541,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -102159,7 +102570,7 @@ export default { 40 ], "returning": [ - 4452 + 4479 ], "__typename": [ 80 @@ -102167,13 +102578,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4457 + 4484 ], "update_columns": [ - 4474 + 4501 ], "where": [ - 4456 + 4483 ], "__typename": [ 80 @@ -102181,25 +102592,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2979 + 3006 ], "group_hash": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "last_notified_at": [ - 2979 + 3006 ], "member_steam_ids": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "together_count": [ - 2979 + 3006 ], "__typename": [ 80 @@ -102207,7 +102618,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -102216,16 +102627,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -102266,7 +102677,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4472 + 4499 ], "ordering": [ 313 @@ -102277,16 +102688,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "group_hash": [ 80 ], "id": [ - 5026 + 5053 ], "last_notified_at": [ - 4526 + 4553 ], "member_steam_ids": [ 257 @@ -102312,13 +102723,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4458 + 4485 ], "_set": [ - 4467 + 4494 ], "where": [ - 4456 + 4483 ], "__typename": [ 80 @@ -102409,19 +102820,19 @@ export default { 5 ], "captain": [ - 3937 + 3964 ], "captain_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "invites": [ - 4196, + 4223, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -102431,19 +102842,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "invites_aggregate": [ - 4197, + 4224, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -102453,11 +102864,11 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], @@ -102465,10 +102876,10 @@ export default { 5 ], "match_lineups": [ - 2466, + 2493, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -102478,19 +102889,19 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "match_lineups_aggregate": [ - 2467, + 2494, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -102500,19 +102911,19 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -102522,11 +102933,11 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], @@ -102534,25 +102945,25 @@ export default { 80 ], "owner": [ - 3937 + 3964 ], "owner_steam_id": [ 257 ], "ranks": [ - 5728 + 5755 ], "reputation": [ - 5748 + 5775 ], "role": [ 80 ], "roster": [ - 4237, + 4264, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -102562,19 +102973,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "roster_aggregate": [ - 4238, + 4265, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -102584,19 +102995,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "scrim_availability": [ - 4309, + 4336, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -102606,19 +103017,19 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "scrim_availability_aggregate": [ - 4310, + 4337, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -102628,25 +103039,25 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "scrim_settings": [ - 4424 + 4451 ], "short_name": [ 80 ], "tournament_teams": [ - 4920, + 4947, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -102656,19 +103067,19 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "tournament_teams_aggregate": [ - 4921, + 4948, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -102678,11 +103089,11 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], @@ -102692,10 +103103,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4485 + 4512 ], "nodes": [ - 4479 + 4506 ], "__typename": [ 80 @@ -102703,13 +103114,13 @@ export default { }, "teams_aggregate_bool_exp": { "bool_and": [ - 4482 + 4509 ], "bool_or": [ - 4483 + 4510 ], "count": [ - 4484 + 4511 ], "__typename": [ 80 @@ -102717,13 +103128,13 @@ export default { }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4504 + 4531 ], "distinct": [ 5 ], "filter": [ - 4490 + 4517 ], "predicate": [ 6 @@ -102734,13 +103145,13 @@ export default { }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4505 + 4532 ], "distinct": [ 5 ], "filter": [ - 4490 + 4517 ], "predicate": [ 6 @@ -102751,13 +103162,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4503 + 4530 ], "distinct": [ 5 ], "filter": [ - 4490 + 4517 ], "predicate": [ 41 @@ -102768,13 +103179,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4488 + 4515 ], "count": [ 40, { "columns": [ - 4503, + 4530, "[teams_select_column!]" ], "distinct": [ @@ -102783,31 +103194,31 @@ export default { } ], "max": [ - 4494 + 4521 ], "min": [ - 4496 + 4523 ], "stddev": [ - 4507 + 4534 ], "stddev_pop": [ - 4509 + 4536 ], "stddev_samp": [ - 4511 + 4538 ], "sum": [ - 4515 + 4542 ], "var_pop": [ - 4519 + 4546 ], "var_samp": [ - 4521 + 4548 ], "variance": [ - 4523 + 4550 ], "__typename": [ 80 @@ -102815,37 +103226,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4489 + 4516 ], "count": [ - 2979 + 3006 ], "max": [ - 4495 + 4522 ], "min": [ - 4497 + 4524 ], "stddev": [ - 4508 + 4535 ], "stddev_pop": [ - 4510 + 4537 ], "stddev_samp": [ - 4512 + 4539 ], "sum": [ - 4516 + 4543 ], "var_pop": [ - 4520 + 4547 ], "var_samp": [ - 4522 + 4549 ], "variance": [ - 4524 + 4551 ], "__typename": [ 80 @@ -102853,10 +103264,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4493 + 4520 ], "on_conflict": [ - 4500 + 4527 ], "__typename": [ 80 @@ -102875,10 +103286,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -102886,13 +103297,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 4490 + 4517 ], "_not": [ - 4490 + 4517 ], "_or": [ - 4490 + 4517 ], "avatar_url": [ 82 @@ -102916,73 +103327,73 @@ export default { 6 ], "captain": [ - 3941 + 3968 ], "captain_steam_id": [ 259 ], "id": [ - 5028 + 5055 ], "invites": [ - 4205 + 4232 ], "invites_aggregate": [ - 4198 + 4225 ], "is_organization": [ 6 ], "match_lineups": [ - 2475 + 2502 ], "match_lineups_aggregate": [ - 2468 + 2495 ], "matches": [ - 2803 + 2830 ], "name": [ 82 ], "owner": [ - 3941 + 3968 ], "owner_steam_id": [ 259 ], "ranks": [ - 5732 + 5759 ], "reputation": [ - 5752 + 5779 ], "role": [ 82 ], "roster": [ - 4248 + 4275 ], "roster_aggregate": [ - 4239 + 4266 ], "scrim_availability": [ - 4318 + 4345 ], "scrim_availability_aggregate": [ - 4311 + 4338 ], "scrim_settings": [ - 4428 + 4455 ], "short_name": [ 82 ], "tournament_teams": [ - 4929 + 4956 ], "tournament_teams_aggregate": [ - 4922 + 4949 ], "__typename": [ 80 @@ -103008,52 +103419,52 @@ export default { 194 ], "captain": [ - 3948 + 3975 ], "captain_steam_id": [ 257 ], "id": [ - 5026 + 5053 ], "invites": [ - 4202 + 4229 ], "is_organization": [ 5 ], "match_lineups": [ - 2472 + 2499 ], "name": [ 80 ], "owner": [ - 3948 + 3975 ], "owner_steam_id": [ 257 ], "ranks": [ - 5736 + 5763 ], "reputation": [ - 5756 + 5783 ], "roster": [ - 4245 + 4272 ], "scrim_availability": [ - 4317 + 4344 ], "scrim_settings": [ - 4435 + 4462 ], "short_name": [ 80 ], "tournament_teams": [ - 4926 + 4953 ], "__typename": [ 80 @@ -103067,7 +103478,7 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -103087,22 +103498,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2979 + 3006 ], "captain_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "short_name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103116,7 +103527,7 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -103136,22 +103547,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2979 + 3006 ], "captain_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "short_name": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103162,7 +103573,7 @@ export default { 40 ], "returning": [ - 4479 + 4506 ], "__typename": [ 80 @@ -103170,10 +103581,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4493 + 4520 ], "on_conflict": [ - 4500 + 4527 ], "__typename": [ 80 @@ -103181,13 +103592,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4491 + 4518 ], "update_columns": [ - 4517 + 4544 ], "where": [ - 4490 + 4517 ], "__typename": [ 80 @@ -103195,76 +103606,76 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2979 + 3006 ], "awards_aggregate": [ 193 ], "can_change_role": [ - 2979 + 3006 ], "can_invite": [ - 2979 + 3006 ], "can_manage_scrims": [ - 2979 + 3006 ], "can_remove": [ - 2979 + 3006 ], "captain": [ - 3950 + 3977 ], "captain_steam_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invites_aggregate": [ - 4201 + 4228 ], "is_organization": [ - 2979 + 3006 ], "match_lineups_aggregate": [ - 2471 + 2498 ], "matches_aggregate": [ - 2799 + 2826 ], "name": [ - 2979 + 3006 ], "owner": [ - 3950 + 3977 ], "owner_steam_id": [ - 2979 + 3006 ], "ranks": [ - 5737 + 5764 ], "reputation": [ - 5757 + 5784 ], "role": [ - 2979 + 3006 ], "roster_aggregate": [ - 4244 + 4271 ], "scrim_availability_aggregate": [ - 4316 + 4343 ], "scrim_settings": [ - 4437 + 4464 ], "short_name": [ - 2979 + 3006 ], "tournament_teams_aggregate": [ - 4925 + 4952 ], "__typename": [ 80 @@ -103272,7 +103683,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -103289,7 +103700,7 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "is_organization": [ 5 @@ -103320,10 +103731,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103342,10 +103753,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103364,10 +103775,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103375,7 +103786,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4514 + 4541 ], "ordering": [ 313 @@ -103392,7 +103803,7 @@ export default { 257 ], "id": [ - 5026 + 5053 ], "is_organization": [ 5 @@ -103423,10 +103834,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103435,13 +103846,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4492 + 4519 ], "_set": [ - 4506 + 4533 ], "where": [ - 4490 + 4517 ], "__typename": [ 80 @@ -103460,10 +103871,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103482,10 +103893,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103504,10 +103915,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103517,31 +103928,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4526 + 4553 ], "_gt": [ - 4526 + 4553 ], "_gte": [ - 4526 + 4553 ], "_in": [ - 4526 + 4553 ], "_is_null": [ 5 ], "_lt": [ - 4526 + 4553 ], "_lte": [ - 4526 + 4553 ], "_neq": [ - 4526 + 4553 ], "_nin": [ - 4526 + 4553 ], "__typename": [ 80 @@ -103552,16 +103963,16 @@ export default { 229 ], "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -103573,13 +103984,13 @@ export default { 40 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -103587,10 +103998,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4532 + 4559 ], "nodes": [ - 4528 + 4555 ], "__typename": [ 80 @@ -103598,7 +104009,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4531 + 4558 ], "__typename": [ 80 @@ -103606,13 +104017,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4550 + 4577 ], "distinct": [ 5 ], "filter": [ - 4537 + 4564 ], "predicate": [ 41 @@ -103623,13 +104034,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4535 + 4562 ], "count": [ 40, { "columns": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "distinct": [ @@ -103638,31 +104049,31 @@ export default { } ], "max": [ - 4541 + 4568 ], "min": [ - 4543 + 4570 ], "stddev": [ - 4552 + 4579 ], "stddev_pop": [ - 4554 + 4581 ], "stddev_samp": [ - 4556 + 4583 ], "sum": [ - 4560 + 4587 ], "var_pop": [ - 4564 + 4591 ], "var_samp": [ - 4566 + 4593 ], "variance": [ - 4568 + 4595 ], "__typename": [ 80 @@ -103670,37 +104081,37 @@ export default { }, "tournament_awards_aggregate_order_by": { "avg": [ - 4536 + 4563 ], "count": [ - 2979 + 3006 ], "max": [ - 4542 + 4569 ], "min": [ - 4544 + 4571 ], "stddev": [ - 4553 + 4580 ], "stddev_pop": [ - 4555 + 4582 ], "stddev_samp": [ - 4557 + 4584 ], "sum": [ - 4561 + 4588 ], "var_pop": [ - 4565 + 4592 ], "var_samp": [ - 4567 + 4594 ], "variance": [ - 4569 + 4596 ], "__typename": [ 80 @@ -103708,10 +104119,10 @@ export default { }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4540 + 4567 ], "on_conflict": [ - 4547 + 4574 ], "__typename": [ 80 @@ -103730,10 +104141,10 @@ export default { }, "tournament_awards_avg_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103741,28 +104152,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4537 + 4564 ], "_not": [ - 4537 + 4564 ], "_or": [ - 4537 + 4564 ], "award": [ 233 ], "award_id": [ - 5028 + 5055 ], "created_at": [ - 4527 + 4554 ], "custom_name": [ 82 ], "id": [ - 5028 + 5055 ], "image_url": [ 82 @@ -103774,13 +104185,13 @@ export default { 41 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "updated_at": [ - 4527 + 4554 ], "__typename": [ 80 @@ -103803,16 +104214,16 @@ export default { 240 ], "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -103824,13 +104235,13 @@ export default { 40 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -103838,16 +104249,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -103859,10 +104270,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -103870,31 +104281,31 @@ export default { }, "tournament_awards_max_order_by": { "award_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_name": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "image_url": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103902,16 +104313,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -103923,10 +104334,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -103934,31 +104345,31 @@ export default { }, "tournament_awards_min_order_by": { "award_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_name": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "image_url": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -103969,7 +104380,7 @@ export default { 40 ], "returning": [ - 4528 + 4555 ], "__typename": [ 80 @@ -103977,10 +104388,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4540 + 4567 ], "on_conflict": [ - 4547 + 4574 ], "__typename": [ 80 @@ -103988,13 +104399,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4538 + 4565 ], "update_columns": [ - 4562 + 4589 ], "where": [ - 4537 + 4564 ], "__typename": [ 80 @@ -104005,34 +104416,34 @@ export default { 242 ], "award_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "custom_name": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "image_url": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "updated_at": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104040,7 +104451,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -104049,16 +104460,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -104070,10 +104481,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -104092,10 +104503,10 @@ export default { }, "tournament_awards_stddev_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104114,10 +104525,10 @@ export default { }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104136,10 +104547,10 @@ export default { }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104147,7 +104558,7 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4559 + 4586 ], "ordering": [ 313 @@ -104158,16 +104569,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5026 + 5053 ], "created_at": [ - 4526 + 4553 ], "custom_name": [ 80 ], "id": [ - 5026 + 5053 ], "image_url": [ 80 @@ -104179,10 +104590,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "updated_at": [ - 4526 + 4553 ], "__typename": [ 80 @@ -104201,10 +104612,10 @@ export default { }, "tournament_awards_sum_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104213,13 +104624,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4539 + 4566 ], "_set": [ - 4551 + 4578 ], "where": [ - 4537 + 4564 ], "__typename": [ 80 @@ -104238,10 +104649,10 @@ export default { }, "tournament_awards_var_pop_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104260,10 +104671,10 @@ export default { }, "tournament_awards_var_samp_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104282,10 +104693,10 @@ export default { }, "tournament_awards_variance_order_by": { "placement": [ - 2979 + 3006 ], "silhouette": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104296,13 +104707,13 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "feeding_brackets": [ - 4570, + 4597, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -104312,11 +104723,11 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], @@ -104324,37 +104735,37 @@ export default { 5 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_bracket": [ - 4570 + 4597 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "options": [ - 2670 + 2697 ], "parent_bracket": [ - 4570 + 4597 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -104363,10 +104774,10 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "scheduling_proposals": [ 1979, @@ -104413,28 +104824,28 @@ export default { } ], "stage": [ - 4787 + 4814 ], "team_1": [ - 4920 + 4947 ], "team_1_seed": [ 40 ], "team_2": [ - 4920 + 4947 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -104442,10 +104853,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4576 + 4603 ], "nodes": [ - 4570 + 4597 ], "__typename": [ 80 @@ -104453,13 +104864,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4573 + 4600 ], "bool_or": [ - 4574 + 4601 ], "count": [ - 4575 + 4602 ], "__typename": [ 80 @@ -104467,13 +104878,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4595 + 4622 ], "distinct": [ 5 ], "filter": [ - 4581 + 4608 ], "predicate": [ 6 @@ -104484,13 +104895,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4596 + 4623 ], "distinct": [ 5 ], "filter": [ - 4581 + 4608 ], "predicate": [ 6 @@ -104501,13 +104912,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4594 + 4621 ], "distinct": [ 5 ], "filter": [ - 4581 + 4608 ], "predicate": [ 41 @@ -104518,13 +104929,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4579 + 4606 ], "count": [ 40, { "columns": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -104533,31 +104944,31 @@ export default { } ], "max": [ - 4585 + 4612 ], "min": [ - 4587 + 4614 ], "stddev": [ - 4598 + 4625 ], "stddev_pop": [ - 4600 + 4627 ], "stddev_samp": [ - 4602 + 4629 ], "sum": [ - 4606 + 4633 ], "var_pop": [ - 4610 + 4637 ], "var_samp": [ - 4612 + 4639 ], "variance": [ - 4614 + 4641 ], "__typename": [ 80 @@ -104565,37 +104976,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4580 + 4607 ], "count": [ - 2979 + 3006 ], "max": [ - 4586 + 4613 ], "min": [ - 4588 + 4615 ], "stddev": [ - 4599 + 4626 ], "stddev_pop": [ - 4601 + 4628 ], "stddev_samp": [ - 4603 + 4630 ], "sum": [ - 4607 + 4634 ], "var_pop": [ - 4611 + 4638 ], "var_samp": [ - 4613 + 4640 ], "variance": [ - 4615 + 4642 ], "__typename": [ 80 @@ -104603,10 +105014,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4584 + 4611 ], "on_conflict": [ - 4591 + 4618 ], "__typename": [ 80 @@ -104634,19 +105045,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104654,58 +105065,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4581 + 4608 ], "_not": [ - 4581 + 4608 ], "_or": [ - 4581 + 4608 ], "bye": [ 6 ], "created_at": [ - 4527 + 4554 ], "feeding_brackets": [ - 4581 + 4608 ], "finished": [ 6 ], "group": [ - 2978 + 3005 ], "id": [ - 5028 + 5055 ], "loser_bracket": [ - 4581 + 4608 ], "loser_parent_bracket_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_number": [ 41 ], "match_options_id": [ - 5028 + 5055 ], "options": [ - 2674 + 2701 ], "parent_bracket": [ - 4581 + 4608 ], "parent_bracket_id": [ - 5028 + 5055 ], "path": [ 82 @@ -104714,10 +105125,10 @@ export default { 41 ], "scheduled_at": [ - 4527 + 4554 ], "scheduled_eta": [ - 4527 + 4554 ], "scheduling_proposals": [ 1988 @@ -104726,28 +105137,28 @@ export default { 1981 ], "stage": [ - 4799 + 4826 ], "team_1": [ - 4929 + 4956 ], "team_1_seed": [ 41 ], "team_2": [ - 4929 + 4956 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5028 + 5055 ], "tournament_team_id_1": [ - 5028 + 5055 ], "tournament_team_id_2": [ - 5028 + 5055 ], "__typename": [ 80 @@ -104756,7 +105167,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2977 + 3004 ], "match_number": [ 40 @@ -104779,43 +105190,43 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "finished": [ 5 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_bracket": [ - 4590 + 4617 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "options": [ - 2681 + 2708 ], "parent_bracket": [ - 4590 + 4617 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -104824,37 +105235,37 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "scheduling_proposals": [ 1985 ], "stage": [ - 4811 + 4838 ], "team_1": [ - 4938 + 4965 ], "team_1_seed": [ 40 ], "team_2": [ - 4938 + 4965 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -104862,28 +105273,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4526 + 4553 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -104892,10 +105303,10 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "team_1_seed": [ 40 @@ -104904,13 +105315,13 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -104918,55 +105329,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2979 + 3006 ], "group": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "loser_parent_bracket_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "parent_bracket_id": [ - 2979 + 3006 ], "path": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "scheduled_eta": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id_1": [ - 2979 + 3006 ], "tournament_team_id_2": [ - 2979 + 3006 ], "__typename": [ 80 @@ -104974,28 +105385,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4526 + 4553 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -105004,10 +105415,10 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "team_1_seed": [ 40 @@ -105016,13 +105427,13 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105030,55 +105441,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2979 + 3006 ], "group": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "loser_parent_bracket_id": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "parent_bracket_id": [ - 2979 + 3006 ], "path": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "scheduled_eta": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id_1": [ - 2979 + 3006 ], "tournament_team_id_2": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105089,7 +105500,7 @@ export default { 40 ], "returning": [ - 4570 + 4597 ], "__typename": [ 80 @@ -105097,10 +105508,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4584 + 4611 ], "on_conflict": [ - 4591 + 4618 ], "__typename": [ 80 @@ -105108,13 +105519,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4582 + 4609 ], "update_columns": [ - 4608 + 4635 ], "where": [ - 4581 + 4608 ], "__typename": [ 80 @@ -105122,88 +105533,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "feeding_brackets_aggregate": [ - 4577 + 4604 ], "finished": [ - 2979 + 3006 ], "group": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "loser_bracket": [ - 4592 + 4619 ], "loser_parent_bracket_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "options": [ - 2683 + 2710 ], "parent_bracket": [ - 4592 + 4619 ], "parent_bracket_id": [ - 2979 + 3006 ], "path": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "scheduled_at": [ - 2979 + 3006 ], "scheduled_eta": [ - 2979 + 3006 ], "scheduling_proposals_aggregate": [ 1984 ], "stage": [ - 4813 + 4840 ], "team_1": [ - 4940 + 4967 ], "team_1_seed": [ - 2979 + 3006 ], "team_2": [ - 4940 + 4967 ], "team_2_seed": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id_1": [ - 2979 + 3006 ], "tournament_team_id_2": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105211,7 +105622,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105225,31 +105636,31 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "finished": [ 5 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -105258,10 +105669,10 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "team_1_seed": [ 40 @@ -105270,13 +105681,13 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105304,19 +105715,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105344,19 +105755,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105384,19 +105795,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105404,7 +105815,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4605 + 4632 ], "ordering": [ 313 @@ -105418,31 +105829,31 @@ export default { 5 ], "created_at": [ - 4526 + 4553 ], "finished": [ 5 ], "group": [ - 2977 + 3004 ], "id": [ - 5026 + 5053 ], "loser_parent_bracket_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_number": [ 40 ], "match_options_id": [ - 5026 + 5053 ], "parent_bracket_id": [ - 5026 + 5053 ], "path": [ 80 @@ -105451,10 +105862,10 @@ export default { 40 ], "scheduled_at": [ - 4526 + 4553 ], "scheduled_eta": [ - 4526 + 4553 ], "team_1_seed": [ 40 @@ -105463,13 +105874,13 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id_1": [ - 5026 + 5053 ], "tournament_team_id_2": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105477,7 +105888,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2977 + 3004 ], "match_number": [ 40 @@ -105497,19 +105908,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105518,13 +105929,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4583 + 4610 ], "_set": [ - 4597 + 4624 ], "where": [ - 4581 + 4608 ], "__typename": [ 80 @@ -105552,19 +105963,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105592,19 +106003,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105632,19 +106043,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2979 + 3006 ], "match_number": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "team_1_seed": [ - 2979 + 3006 ], "team_2_seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105658,10 +106069,10 @@ export default { 1307 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105669,10 +106080,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4620 + 4647 ], "nodes": [ - 4616 + 4643 ], "__typename": [ 80 @@ -105680,7 +106091,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4619 + 4646 ], "__typename": [ 80 @@ -105688,13 +106099,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4634 + 4661 ], "distinct": [ 5 ], "filter": [ - 4623 + 4650 ], "predicate": [ 41 @@ -105708,7 +106119,7 @@ export default { 40, { "columns": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "distinct": [ @@ -105717,10 +106128,10 @@ export default { } ], "max": [ - 4626 + 4653 ], "min": [ - 4628 + 4655 ], "__typename": [ 80 @@ -105728,13 +106139,13 @@ export default { }, "tournament_categories_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 4627 + 4654 ], "min": [ - 4629 + 4656 ], "__typename": [ 80 @@ -105742,10 +106153,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4625 + 4652 ], "on_conflict": [ - 4631 + 4658 ], "__typename": [ 80 @@ -105753,13 +106164,13 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4623 + 4650 ], "_not": [ - 4623 + 4650 ], "_or": [ - 4623 + 4650 ], "category": [ 1313 @@ -105768,10 +106179,10 @@ export default { 1310 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -105786,10 +106197,10 @@ export default { 1318 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105797,7 +106208,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105805,7 +106216,7 @@ export default { }, "tournament_categories_max_order_by": { "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105813,7 +106224,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105821,7 +106232,7 @@ export default { }, "tournament_categories_min_order_by": { "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105832,7 +106243,7 @@ export default { 40 ], "returning": [ - 4616 + 4643 ], "__typename": [ 80 @@ -105840,13 +106251,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4624 + 4651 ], "update_columns": [ - 4638 + 4665 ], "where": [ - 4623 + 4650 ], "__typename": [ 80 @@ -105854,16 +106265,16 @@ export default { }, "tournament_categories_order_by": { "category": [ - 2979 + 3006 ], "e_tournament_category": [ 1320 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -105874,7 +106285,7 @@ export default { 1312 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105886,7 +106297,7 @@ export default { 1312 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105894,7 +106305,7 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4637 + 4664 ], "ordering": [ 313 @@ -105908,7 +106319,7 @@ export default { 1312 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105917,10 +106328,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4635 + 4662 ], "where": [ - 4623 + 4650 ], "__typename": [ 80 @@ -105928,19 +106339,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4526 + 4553 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -105948,10 +106359,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4644 + 4671 ], "nodes": [ - 4640 + 4667 ], "__typename": [ 80 @@ -105959,7 +106370,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4643 + 4670 ], "__typename": [ 80 @@ -105967,13 +106378,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4658 + 4685 ], "distinct": [ 5 ], "filter": [ - 4647 + 4674 ], "predicate": [ 41 @@ -105987,7 +106398,7 @@ export default { 40, { "columns": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -105996,10 +106407,10 @@ export default { } ], "max": [ - 4650 + 4677 ], "min": [ - 4652 + 4679 ], "__typename": [ 80 @@ -106007,13 +106418,13 @@ export default { }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 4651 + 4678 ], "min": [ - 4653 + 4680 ], "__typename": [ 80 @@ -106021,10 +106432,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4649 + 4676 ], "on_conflict": [ - 4655 + 4682 ], "__typename": [ 80 @@ -106032,28 +106443,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4647 + 4674 ], "_not": [ - 4647 + 4674 ], "_or": [ - 4647 + 4674 ], "created_at": [ - 4527 + 4554 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -106062,19 +106473,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4526 + 4553 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106082,13 +106493,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106096,13 +106507,13 @@ export default { }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106110,13 +106521,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106124,13 +106535,13 @@ export default { }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106141,7 +106552,7 @@ export default { 40 ], "returning": [ - 4640 + 4667 ], "__typename": [ 80 @@ -106149,13 +106560,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4648 + 4675 ], "update_columns": [ - 4662 + 4689 ], "where": [ - 4647 + 4674 ], "__typename": [ 80 @@ -106163,19 +106574,19 @@ export default { }, "tournament_organizer_teams_order_by": { "created_at": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106183,10 +106594,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106195,13 +106606,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106209,7 +106620,7 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4661 + 4688 ], "ordering": [ 313 @@ -106220,13 +106631,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106235,10 +106646,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4659 + 4686 ], "where": [ - 4647 + 4674 ], "__typename": [ 80 @@ -106246,22 +106657,22 @@ export default { }, "tournament_organizers": { "organization_team": [ - 4479 + 4506 ], "organization_team_id": [ - 5026 + 5053 ], "organizer": [ - 3937 + 3964 ], "steam_id": [ 257 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106269,10 +106680,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4668 + 4695 ], "nodes": [ - 4664 + 4691 ], "__typename": [ 80 @@ -106280,7 +106691,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4667 + 4694 ], "__typename": [ 80 @@ -106288,13 +106699,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4685 + 4712 ], "distinct": [ 5 ], "filter": [ - 4673 + 4700 ], "predicate": [ 41 @@ -106305,13 +106716,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4671 + 4698 ], "count": [ 40, { "columns": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -106320,31 +106731,31 @@ export default { } ], "max": [ - 4677 + 4704 ], "min": [ - 4679 + 4706 ], "stddev": [ - 4687 + 4714 ], "stddev_pop": [ - 4689 + 4716 ], "stddev_samp": [ - 4691 + 4718 ], "sum": [ - 4695 + 4722 ], "var_pop": [ - 4699 + 4726 ], "var_samp": [ - 4701 + 4728 ], "variance": [ - 4703 + 4730 ], "__typename": [ 80 @@ -106352,37 +106763,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4672 + 4699 ], "count": [ - 2979 + 3006 ], "max": [ - 4678 + 4705 ], "min": [ - 4680 + 4707 ], "stddev": [ - 4688 + 4715 ], "stddev_pop": [ - 4690 + 4717 ], "stddev_samp": [ - 4692 + 4719 ], "sum": [ - 4696 + 4723 ], "var_pop": [ - 4700 + 4727 ], "var_samp": [ - 4702 + 4729 ], "variance": [ - 4704 + 4731 ], "__typename": [ 80 @@ -106390,10 +106801,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4676 + 4703 ], "on_conflict": [ - 4682 + 4709 ], "__typename": [ 80 @@ -106409,7 +106820,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106417,31 +106828,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4673 + 4700 ], "_not": [ - 4673 + 4700 ], "_or": [ - 4673 + 4700 ], "organization_team": [ - 4490 + 4517 ], "organization_team_id": [ - 5028 + 5055 ], "organizer": [ - 3941 + 3968 ], "steam_id": [ 259 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -106458,22 +106869,22 @@ export default { }, "tournament_organizers_insert_input": { "organization_team": [ - 4499 + 4526 ], "organization_team_id": [ - 5026 + 5053 ], "organizer": [ - 3948 + 3975 ], "steam_id": [ 257 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106481,13 +106892,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5026 + 5053 ], "steam_id": [ 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106495,13 +106906,13 @@ export default { }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106509,13 +106920,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5026 + 5053 ], "steam_id": [ 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106523,13 +106934,13 @@ export default { }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106540,7 +106951,7 @@ export default { 40 ], "returning": [ - 4664 + 4691 ], "__typename": [ 80 @@ -106548,13 +106959,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4674 + 4701 ], "update_columns": [ - 4697 + 4724 ], "where": [ - 4673 + 4700 ], "__typename": [ 80 @@ -106562,22 +106973,22 @@ export default { }, "tournament_organizers_order_by": { "organization_team": [ - 4501 + 4528 ], "organization_team_id": [ - 2979 + 3006 ], "organizer": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106588,7 +106999,7 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106597,13 +107008,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5026 + 5053 ], "steam_id": [ 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106619,7 +107030,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106635,7 +107046,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106651,7 +107062,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106659,7 +107070,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4694 + 4721 ], "ordering": [ 313 @@ -106670,13 +107081,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5026 + 5053 ], "steam_id": [ 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106692,7 +107103,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106701,13 +107112,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4675 + 4702 ], "_set": [ - 4686 + 4713 ], "where": [ - 4673 + 4700 ], "__typename": [ 80 @@ -106723,7 +107134,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106739,7 +107150,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106755,7 +107166,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106763,10 +107174,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -106778,10 +107189,10 @@ export default { 80 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -106789,10 +107200,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4709 + 4736 ], "nodes": [ - 4705 + 4732 ], "__typename": [ 80 @@ -106800,7 +107211,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4708 + 4735 ], "__typename": [ 80 @@ -106808,13 +107219,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4726 + 4753 ], "distinct": [ 5 ], "filter": [ - 4714 + 4741 ], "predicate": [ 41 @@ -106825,13 +107236,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4712 + 4739 ], "count": [ 40, { "columns": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -106840,31 +107251,31 @@ export default { } ], "max": [ - 4718 + 4745 ], "min": [ - 4720 + 4747 ], "stddev": [ - 4728 + 4755 ], "stddev_pop": [ - 4730 + 4757 ], "stddev_samp": [ - 4732 + 4759 ], "sum": [ - 4736 + 4763 ], "var_pop": [ - 4740 + 4767 ], "var_samp": [ - 4742 + 4769 ], "variance": [ - 4744 + 4771 ], "__typename": [ 80 @@ -106872,37 +107283,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4713 + 4740 ], "count": [ - 2979 + 3006 ], "max": [ - 4719 + 4746 ], "min": [ - 4721 + 4748 ], "stddev": [ - 4729 + 4756 ], "stddev_pop": [ - 4731 + 4758 ], "stddev_samp": [ - 4733 + 4760 ], "sum": [ - 4737 + 4764 ], "var_pop": [ - 4741 + 4768 ], "var_samp": [ - 4743 + 4770 ], "variance": [ - 4745 + 4772 ], "__typename": [ 80 @@ -106910,10 +107321,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4717 + 4744 ], "on_conflict": [ - 4723 + 4750 ], "__typename": [ 80 @@ -106929,7 +107340,7 @@ export default { }, "tournament_prizes_avg_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -106937,19 +107348,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4714 + 4741 ], "_not": [ - 4714 + 4741 ], "_or": [ - 4714 + 4741 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "order": [ 41 @@ -106961,10 +107372,10 @@ export default { 82 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -106981,10 +107392,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -106996,10 +107407,10 @@ export default { 80 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107007,10 +107418,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -107022,7 +107433,7 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107030,22 +107441,22 @@ export default { }, "tournament_prizes_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "place": [ - 2979 + 3006 ], "prize": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107053,10 +107464,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -107068,7 +107479,7 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107076,22 +107487,22 @@ export default { }, "tournament_prizes_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "place": [ - 2979 + 3006 ], "prize": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107102,7 +107513,7 @@ export default { 40 ], "returning": [ - 4705 + 4732 ], "__typename": [ 80 @@ -107110,13 +107521,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4715 + 4742 ], "update_columns": [ - 4738 + 4765 ], "where": [ - 4714 + 4741 ], "__typename": [ 80 @@ -107124,25 +107535,25 @@ export default { }, "tournament_prizes_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "place": [ - 2979 + 3006 ], "prize": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107150,7 +107561,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107159,10 +107570,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -107174,7 +107585,7 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107190,7 +107601,7 @@ export default { }, "tournament_prizes_stddev_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107206,7 +107617,7 @@ export default { }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107222,7 +107633,7 @@ export default { }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107230,7 +107641,7 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4735 + 4762 ], "ordering": [ 313 @@ -107241,10 +107652,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "order": [ 40 @@ -107256,7 +107667,7 @@ export default { 80 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107272,7 +107683,7 @@ export default { }, "tournament_prizes_sum_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107281,13 +107692,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4716 + 4743 ], "_set": [ - 4727 + 4754 ], "where": [ - 4714 + 4741 ], "__typename": [ 80 @@ -107303,7 +107714,7 @@ export default { }, "tournament_prizes_var_pop_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107319,7 +107730,7 @@ export default { }, "tournament_prizes_var_samp_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107335,7 +107746,7 @@ export default { }, "tournament_prizes_variance_order_by": { "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107343,28 +107754,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "stage": [ - 4787 + 4814 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107372,10 +107783,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4750 + 4777 ], "nodes": [ - 4746 + 4773 ], "__typename": [ 80 @@ -107383,7 +107794,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4749 + 4776 ], "__typename": [ 80 @@ -107391,13 +107802,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4767 + 4794 ], "distinct": [ 5 ], "filter": [ - 4755 + 4782 ], "predicate": [ 41 @@ -107408,13 +107819,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4753 + 4780 ], "count": [ 40, { "columns": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -107423,31 +107834,31 @@ export default { } ], "max": [ - 4759 + 4786 ], "min": [ - 4761 + 4788 ], "stddev": [ - 4769 + 4796 ], "stddev_pop": [ - 4771 + 4798 ], "stddev_samp": [ - 4773 + 4800 ], "sum": [ - 4777 + 4804 ], "var_pop": [ - 4781 + 4808 ], "var_samp": [ - 4783 + 4810 ], "variance": [ - 4785 + 4812 ], "__typename": [ 80 @@ -107455,37 +107866,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4754 + 4781 ], "count": [ - 2979 + 3006 ], "max": [ - 4760 + 4787 ], "min": [ - 4762 + 4789 ], "stddev": [ - 4770 + 4797 ], "stddev_pop": [ - 4772 + 4799 ], "stddev_samp": [ - 4774 + 4801 ], "sum": [ - 4778 + 4805 ], "var_pop": [ - 4782 + 4809 ], "var_samp": [ - 4784 + 4811 ], "variance": [ - 4786 + 4813 ], "__typename": [ 80 @@ -107493,10 +107904,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4758 + 4785 ], "on_conflict": [ - 4764 + 4791 ], "__typename": [ 80 @@ -107512,7 +107923,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107520,37 +107931,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4755 + 4782 ], "_not": [ - 4755 + 4782 ], "_or": [ - 4755 + 4782 ], "closes_at": [ - 4527 + 4554 ], "created_at": [ - 4527 + 4554 ], "default_match_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "opens_at": [ - 4527 + 4554 ], "round": [ 41 ], "stage": [ - 4799 + 4826 ], "tournament_stage_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -107567,28 +107978,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "stage": [ - 4811 + 4838 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107596,25 +108007,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107622,25 +108033,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107648,25 +108059,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107674,25 +108085,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107703,7 +108114,7 @@ export default { 40 ], "returning": [ - 4746 + 4773 ], "__typename": [ 80 @@ -107711,13 +108122,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4756 + 4783 ], "update_columns": [ - 4779 + 4806 ], "where": [ - 4755 + 4782 ], "__typename": [ 80 @@ -107725,28 +108136,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "default_match_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "opens_at": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "stage": [ - 4813 + 4840 ], "tournament_stage_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107754,7 +108165,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107763,25 +108174,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107797,7 +108208,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107813,7 +108224,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107829,7 +108240,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107837,7 +108248,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4776 + 4803 ], "ordering": [ 313 @@ -107848,25 +108259,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4526 + 4553 ], "created_at": [ - 4526 + 4553 ], "default_match_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "opens_at": [ - 4526 + 4553 ], "round": [ 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -107882,7 +108293,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107891,13 +108302,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4757 + 4784 ], "_set": [ - 4768 + 4795 ], "where": [ - 4755 + 4782 ], "__typename": [ 80 @@ -107913,7 +108324,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107929,7 +108340,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107945,7 +108356,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -107953,10 +108364,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4570, + 4597, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -107966,19 +108377,19 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "brackets_aggregate": [ - 4571, + 4598, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -107988,11 +108399,11 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], @@ -108012,10 +108423,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -108027,16 +108438,16 @@ export default { 40 ], "options": [ - 2670 + 2697 ], "order": [ 40 ], "results": [ - 5768, + 5795, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -108046,19 +108457,19 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], "results_aggregate": [ - 5769, + 5796, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -108068,11 +108479,11 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], @@ -108091,19 +108502,19 @@ export default { 5 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "type": [ 1333 ], "windows": [ - 4746, + 4773, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -108113,19 +108524,19 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], "windows_aggregate": [ - 4747, + 4774, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -108135,11 +108546,11 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], @@ -108149,10 +108560,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4793 + 4820 ], "nodes": [ - 4787 + 4814 ], "__typename": [ 80 @@ -108160,13 +108571,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4790 + 4817 ], "bool_or": [ - 4791 + 4818 ], "count": [ - 4792 + 4819 ], "__typename": [ 80 @@ -108174,13 +108585,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4817 + 4844 ], "distinct": [ 5 ], "filter": [ - 4799 + 4826 ], "predicate": [ 6 @@ -108191,13 +108602,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4818 + 4845 ], "distinct": [ 5 ], "filter": [ - 4799 + 4826 ], "predicate": [ 6 @@ -108208,13 +108619,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4816 + 4843 ], "distinct": [ 5 ], "filter": [ - 4799 + 4826 ], "predicate": [ 41 @@ -108225,13 +108636,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4797 + 4824 ], "count": [ 40, { "columns": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "distinct": [ @@ -108240,31 +108651,31 @@ export default { } ], "max": [ - 4806 + 4833 ], "min": [ - 4808 + 4835 ], "stddev": [ - 4820 + 4847 ], "stddev_pop": [ - 4822 + 4849 ], "stddev_samp": [ - 4824 + 4851 ], "sum": [ - 4828 + 4855 ], "var_pop": [ - 4832 + 4859 ], "var_samp": [ - 4834 + 4861 ], "variance": [ - 4836 + 4863 ], "__typename": [ 80 @@ -108272,37 +108683,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4798 + 4825 ], "count": [ - 2979 + 3006 ], "max": [ - 4807 + 4834 ], "min": [ - 4809 + 4836 ], "stddev": [ - 4821 + 4848 ], "stddev_pop": [ - 4823 + 4850 ], "stddev_samp": [ - 4825 + 4852 ], "sum": [ - 4829 + 4856 ], "var_pop": [ - 4833 + 4860 ], "var_samp": [ - 4835 + 4862 ], "variance": [ - 4837 + 4864 ], "__typename": [ 80 @@ -108318,10 +108729,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4805 + 4832 ], "on_conflict": [ - 4812 + 4839 ], "__typename": [ 80 @@ -108358,28 +108769,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -108387,19 +108798,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4799 + 4826 ], "_not": [ - 4799 + 4826 ], "_or": [ - 4799 + 4826 ], "brackets": [ - 4581 + 4608 ], "brackets_aggregate": [ - 4572 + 4599 ], "decider_best_of": [ 41 @@ -108417,10 +108828,10 @@ export default { 41 ], "id": [ - 5028 + 5055 ], "match_options_id": [ - 5028 + 5055 ], "max_rounds": [ 41 @@ -108432,16 +108843,16 @@ export default { 41 ], "options": [ - 2674 + 2701 ], "order": [ 41 ], "results": [ - 5787 + 5814 ], "results_aggregate": [ - 5770 + 5797 ], "settings": [ 1844 @@ -108453,19 +108864,19 @@ export default { 6 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "type": [ 1334 ], "windows": [ - 4755 + 4782 ], "windows_aggregate": [ - 4748 + 4775 ], "__typename": [ 80 @@ -108527,7 +108938,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4578 + 4605 ], "decider_best_of": [ 40 @@ -108545,10 +108956,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -108560,13 +108971,13 @@ export default { 40 ], "options": [ - 2681 + 2708 ], "order": [ 40 ], "results": [ - 5784 + 5811 ], "settings": [ 1842 @@ -108578,16 +108989,16 @@ export default { 5 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "type": [ 1333 ], "windows": [ - 4752 + 4779 ], "__typename": [ 80 @@ -108607,10 +109018,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -108625,7 +109036,7 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -108633,37 +109044,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -108683,10 +109094,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -108701,7 +109112,7 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -108709,37 +109120,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -108750,7 +109161,7 @@ export default { 40 ], "returning": [ - 4787 + 4814 ], "__typename": [ 80 @@ -108758,10 +109169,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4805 + 4832 ], "on_conflict": [ - 4812 + 4839 ], "__typename": [ 80 @@ -108769,13 +109180,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4800 + 4827 ], "update_columns": [ - 4830 + 4857 ], "where": [ - 4799 + 4826 ], "__typename": [ 80 @@ -108783,67 +109194,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4577 + 4604 ], "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "e_tournament_stage_type": [ 1341 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "options": [ - 2683 + 2710 ], "order": [ - 2979 + 3006 ], "results_aggregate": [ - 5783 + 5810 ], "settings": [ - 2979 + 3006 ], "swiss_no_elimination": [ - 2979 + 3006 ], "third_place_match": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "windows_aggregate": [ - 4751 + 4778 ], "__typename": [ 80 @@ -108851,7 +109262,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -108882,10 +109293,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -108909,7 +109320,7 @@ export default { 5 ], "tournament_id": [ - 5026 + 5053 ], "type": [ 1333 @@ -108949,28 +109360,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109007,28 +109418,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109065,28 +109476,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109094,7 +109505,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4827 + 4854 ], "ordering": [ 313 @@ -109117,10 +109528,10 @@ export default { 40 ], "id": [ - 5026 + 5053 ], "match_options_id": [ - 5026 + 5053 ], "max_rounds": [ 40 @@ -109144,7 +109555,7 @@ export default { 5 ], "tournament_id": [ - 5026 + 5053 ], "type": [ 1333 @@ -109184,28 +109595,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109214,28 +109625,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4795 + 4822 ], "_delete_at_path": [ - 4801 + 4828 ], "_delete_elem": [ - 4802 + 4829 ], "_delete_key": [ - 4803 + 4830 ], "_inc": [ - 4804 + 4831 ], "_prepend": [ - 4815 + 4842 ], "_set": [ - 4819 + 4846 ], "where": [ - 4799 + 4826 ], "__typename": [ 80 @@ -109272,28 +109683,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109330,28 +109741,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109388,28 +109799,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2979 + 3006 ], "default_best_of": [ - 2979 + 3006 ], "final_map_advantage": [ - 2979 + 3006 ], "groups": [ - 2979 + 3006 ], "max_rounds": [ - 2979 + 3006 ], "max_teams": [ - 2979 + 3006 ], "min_teams": [ - 2979 + 3006 ], "order": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109417,28 +109828,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by": [ - 3937 + 3964 ], "invited_by_player_steam_id": [ 257 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 ], "team": [ - 4920 + 4947 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109446,10 +109857,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4842 + 4869 ], "nodes": [ - 4838 + 4865 ], "__typename": [ 80 @@ -109457,7 +109868,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4841 + 4868 ], "__typename": [ 80 @@ -109465,13 +109876,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4859 + 4886 ], "distinct": [ 5 ], "filter": [ - 4847 + 4874 ], "predicate": [ 41 @@ -109482,13 +109893,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4845 + 4872 ], "count": [ 40, { "columns": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -109497,31 +109908,31 @@ export default { } ], "max": [ - 4851 + 4878 ], "min": [ - 4853 + 4880 ], "stddev": [ - 4861 + 4888 ], "stddev_pop": [ - 4863 + 4890 ], "stddev_samp": [ - 4865 + 4892 ], "sum": [ - 4869 + 4896 ], "var_pop": [ - 4873 + 4900 ], "var_samp": [ - 4875 + 4902 ], "variance": [ - 4877 + 4904 ], "__typename": [ 80 @@ -109529,37 +109940,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4846 + 4873 ], "count": [ - 2979 + 3006 ], "max": [ - 4852 + 4879 ], "min": [ - 4854 + 4881 ], "stddev": [ - 4862 + 4889 ], "stddev_pop": [ - 4864 + 4891 ], "stddev_samp": [ - 4866 + 4893 ], "sum": [ - 4870 + 4897 ], "var_pop": [ - 4874 + 4901 ], "var_samp": [ - 4876 + 4903 ], "variance": [ - 4878 + 4905 ], "__typename": [ 80 @@ -109567,10 +109978,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4850 + 4877 ], "on_conflict": [ - 4856 + 4883 ], "__typename": [ 80 @@ -109589,10 +110000,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109600,37 +110011,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4847 + 4874 ], "_not": [ - 4847 + 4874 ], "_or": [ - 4847 + 4874 ], "created_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "invited_by": [ - 3941 + 3968 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 ], "team": [ - 4929 + 4956 ], "tournament_team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -109650,28 +110061,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by": [ - 3948 + 3975 ], "invited_by_player_steam_id": [ 257 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 ], "team": [ - 4938 + 4965 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109679,10 +110090,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -109691,7 +110102,7 @@ export default { 257 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109699,19 +110110,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109719,10 +110130,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -109731,7 +110142,7 @@ export default { 257 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109739,19 +110150,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109762,7 +110173,7 @@ export default { 40 ], "returning": [ - 4838 + 4865 ], "__typename": [ 80 @@ -109770,13 +110181,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4848 + 4875 ], "update_columns": [ - 4871 + 4898 ], "where": [ - 4847 + 4874 ], "__typename": [ 80 @@ -109784,28 +110195,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invited_by": [ - 3950 + 3977 ], "invited_by_player_steam_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "team": [ - 4940 + 4967 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109813,7 +110224,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109822,10 +110233,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -109834,7 +110245,7 @@ export default { 257 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109853,10 +110264,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109875,10 +110286,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109897,10 +110308,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109908,7 +110319,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4868 + 4895 ], "ordering": [ 313 @@ -109919,10 +110330,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invited_by_player_steam_id": [ 257 @@ -109931,7 +110342,7 @@ export default { 257 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -109950,10 +110361,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -109962,13 +110373,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4849 + 4876 ], "_set": [ - 4860 + 4887 ], "where": [ - 4847 + 4874 ], "__typename": [ 80 @@ -109987,10 +110398,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110009,10 +110420,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110031,10 +110442,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110045,7 +110456,7 @@ export default { 1246 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -110054,16 +110465,16 @@ export default { 1251 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team": [ - 4920 + 4947 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110071,10 +110482,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4883 + 4910 ], "nodes": [ - 4879 + 4906 ], "__typename": [ 80 @@ -110082,7 +110493,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4882 + 4909 ], "__typename": [ 80 @@ -110090,13 +110501,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4900 + 4927 ], "distinct": [ 5 ], "filter": [ - 4888 + 4915 ], "predicate": [ 41 @@ -110107,13 +110518,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4886 + 4913 ], "count": [ 40, { "columns": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -110122,31 +110533,31 @@ export default { } ], "max": [ - 4892 + 4919 ], "min": [ - 4894 + 4921 ], "stddev": [ - 4902 + 4929 ], "stddev_pop": [ - 4904 + 4931 ], "stddev_samp": [ - 4906 + 4933 ], "sum": [ - 4910 + 4937 ], "var_pop": [ - 4914 + 4941 ], "var_samp": [ - 4916 + 4943 ], "variance": [ - 4918 + 4945 ], "__typename": [ 80 @@ -110154,37 +110565,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4887 + 4914 ], "count": [ - 2979 + 3006 ], "max": [ - 4893 + 4920 ], "min": [ - 4895 + 4922 ], "stddev": [ - 4903 + 4930 ], "stddev_pop": [ - 4905 + 4932 ], "stddev_samp": [ - 4907 + 4934 ], "sum": [ - 4911 + 4938 ], "var_pop": [ - 4915 + 4942 ], "var_samp": [ - 4917 + 4944 ], "variance": [ - 4919 + 4946 ], "__typename": [ 80 @@ -110192,10 +110603,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4891 + 4918 ], "on_conflict": [ - 4897 + 4924 ], "__typename": [ 80 @@ -110211,7 +110622,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110219,19 +110630,19 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4888 + 4915 ], "_not": [ - 4888 + 4915 ], "_or": [ - 4888 + 4915 ], "e_team_role": [ 1249 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -110240,16 +110651,16 @@ export default { 1252 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "tournament_team": [ - 4929 + 4956 ], "tournament_team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -110269,7 +110680,7 @@ export default { 1257 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -110278,16 +110689,16 @@ export default { 1251 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team": [ - 4938 + 4965 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110298,10 +110709,10 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110309,13 +110720,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110326,10 +110737,10 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110337,13 +110748,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110354,7 +110765,7 @@ export default { 40 ], "returning": [ - 4879 + 4906 ], "__typename": [ 80 @@ -110362,13 +110773,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4889 + 4916 ], "update_columns": [ - 4912 + 4939 ], "where": [ - 4888 + 4915 ], "__typename": [ 80 @@ -110379,25 +110790,25 @@ export default { 1259 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "role": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team": [ - 4940 + 4967 ], "tournament_team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110408,7 +110819,7 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110423,10 +110834,10 @@ export default { 1251 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110442,7 +110853,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110458,7 +110869,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110474,7 +110885,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110482,7 +110893,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4909 + 4936 ], "ordering": [ 313 @@ -110499,10 +110910,10 @@ export default { 1251 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110518,7 +110929,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110527,13 +110938,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4890 + 4917 ], "_set": [ - 4901 + 4928 ], "where": [ - 4888 + 4915 ], "__typename": [ 80 @@ -110549,7 +110960,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110565,7 +110976,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110581,7 +110992,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110592,28 +111003,28 @@ export default { 5 ], "captain": [ - 3937 + 3964 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "creator": [ - 3937 + 3964 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invites": [ - 4838, + 4865, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -110623,19 +111034,19 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], "invites_aggregate": [ - 4839, + 4866, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -110645,11 +111056,11 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], @@ -110660,13 +111071,13 @@ export default { 257 ], "results": [ - 5768 + 5795 ], "roster": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -110676,19 +111087,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "roster_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -110698,11 +111109,11 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], @@ -110713,16 +111124,16 @@ export default { 80 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -110730,10 +111141,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4924 + 4951 ], "nodes": [ - 4920 + 4947 ], "__typename": [ 80 @@ -110741,7 +111152,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4923 + 4950 ], "__typename": [ 80 @@ -110749,13 +111160,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4942 + 4969 ], "distinct": [ 5 ], "filter": [ - 4929 + 4956 ], "predicate": [ 41 @@ -110766,13 +111177,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4927 + 4954 ], "count": [ 40, { "columns": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "distinct": [ @@ -110781,31 +111192,31 @@ export default { } ], "max": [ - 4933 + 4960 ], "min": [ - 4935 + 4962 ], "stddev": [ - 4944 + 4971 ], "stddev_pop": [ - 4946 + 4973 ], "stddev_samp": [ - 4948 + 4975 ], "sum": [ - 4952 + 4979 ], "var_pop": [ - 4956 + 4983 ], "var_samp": [ - 4958 + 4985 ], "variance": [ - 4960 + 4987 ], "__typename": [ 80 @@ -110813,37 +111224,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4928 + 4955 ], "count": [ - 2979 + 3006 ], "max": [ - 4934 + 4961 ], "min": [ - 4936 + 4963 ], "stddev": [ - 4945 + 4972 ], "stddev_pop": [ - 4947 + 4974 ], "stddev_samp": [ - 4949 + 4976 ], "sum": [ - 4953 + 4980 ], "var_pop": [ - 4957 + 4984 ], "var_samp": [ - 4959 + 4986 ], "variance": [ - 4961 + 4988 ], "__typename": [ 80 @@ -110851,10 +111262,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4932 + 4959 ], "on_conflict": [ - 4939 + 4966 ], "__typename": [ 80 @@ -110876,13 +111287,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -110890,40 +111301,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4929 + 4956 ], "_not": [ - 4929 + 4956 ], "_or": [ - 4929 + 4956 ], "can_manage": [ 6 ], "captain": [ - 3941 + 3968 ], "captain_steam_id": [ 259 ], "created_at": [ - 4527 + 4554 ], "creator": [ - 3941 + 3968 ], "eligible_at": [ - 4527 + 4554 ], "id": [ - 5028 + 5055 ], "invites": [ - 4847 + 4874 ], "invites_aggregate": [ - 4840 + 4867 ], "name": [ 82 @@ -110932,13 +111343,13 @@ export default { 259 ], "results": [ - 5787 + 5814 ], "roster": [ - 4888 + 4915 ], "roster_aggregate": [ - 4881 + 4908 ], "seed": [ 41 @@ -110947,16 +111358,16 @@ export default { 82 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -110979,25 +111390,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3948 + 3975 ], "captain_steam_id": [ 257 ], "created_at": [ - 4526 + 4553 ], "creator": [ - 3948 + 3975 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "invites": [ - 4844 + 4871 ], "name": [ 80 @@ -111006,10 +111417,10 @@ export default { 257 ], "results": [ - 5796 + 5823 ], "roster": [ - 4885 + 4912 ], "seed": [ 40 @@ -111018,16 +111429,16 @@ export default { 80 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111038,13 +111449,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -111059,10 +111470,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111070,34 +111481,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "eligible_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "short_name": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111108,13 +111519,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -111129,10 +111540,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111140,34 +111551,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "eligible_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "short_name": [ - 2979 + 3006 ], "team_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111178,7 +111589,7 @@ export default { 40 ], "returning": [ - 4920 + 4947 ], "__typename": [ 80 @@ -111186,10 +111597,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4932 + 4959 ], "on_conflict": [ - 4939 + 4966 ], "__typename": [ 80 @@ -111197,13 +111608,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4930 + 4957 ], "update_columns": [ - 4954 + 4981 ], "where": [ - 4929 + 4956 ], "__typename": [ 80 @@ -111211,58 +111622,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2979 + 3006 ], "captain": [ - 3950 + 3977 ], "captain_steam_id": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "creator": [ - 3950 + 3977 ], "eligible_at": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "invites_aggregate": [ - 4843 + 4870 ], "name": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "results": [ - 5798 + 5825 ], "roster_aggregate": [ - 4884 + 4911 ], "seed": [ - 2979 + 3006 ], "short_name": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111270,7 +111681,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111282,13 +111693,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -111303,10 +111714,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111328,13 +111739,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111356,13 +111767,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111384,13 +111795,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111398,7 +111809,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4951 + 4978 ], "ordering": [ 313 @@ -111412,13 +111823,13 @@ export default { 257 ], "created_at": [ - 4526 + 4553 ], "eligible_at": [ - 4526 + 4553 ], "id": [ - 5026 + 5053 ], "name": [ 80 @@ -111433,10 +111844,10 @@ export default { 80 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -111458,13 +111869,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111473,13 +111884,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4931 + 4958 ], "_set": [ - 4943 + 4970 ], "where": [ - 4929 + 4956 ], "__typename": [ 80 @@ -111501,13 +111912,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111529,13 +111940,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111557,13 +111968,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2979 + 3006 ], "owner_steam_id": [ - 2979 + 3006 ], "seed": [ - 2979 + 3006 ], "__typename": [ 80 @@ -111571,16 +111982,16 @@ export default { }, "tournaments": { "admin": [ - 3937 + 3964 ], "auto_start": [ 5 ], "award_configs": [ - 4528, + 4555, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -111590,19 +112001,19 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "award_configs_aggregate": [ - 4529, + 4556, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -111612,11 +112023,11 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], @@ -111695,10 +112106,10 @@ export default { 5 ], "categories": [ - 4616, + 4643, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -111708,19 +112119,19 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "categories_aggregate": [ - 4617, + 4644, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -111730,16 +112141,16 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -111805,7 +112216,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_league": [ 5 @@ -111832,7 +112243,7 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -111844,16 +112255,16 @@ export default { 80 ], "options": [ - 2670 + 2697 ], "organizer_steam_id": [ 257 ], "organizer_teams": [ - 4640, + 4667, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -111863,19 +112274,19 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "organizer_teams_aggregate": [ - 4641, + 4668, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -111885,19 +112296,19 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "organizers": [ - 4664, + 4691, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -111907,19 +112318,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "organizers_aggregate": [ - 4665, + 4692, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -111929,19 +112340,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "player_stats": [ - 5879, + 5906, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -111951,19 +112362,19 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], "player_stats_aggregate": [ - 5880, + 5907, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -111973,19 +112384,19 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], "prizes": [ - 4705, + 4732, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -111995,19 +112406,19 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "prizes_aggregate": [ - 4706, + 4733, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -112017,19 +112428,19 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "results": [ - 5828, + 5855, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -112039,19 +112450,19 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "results_aggregate": [ - 5829, + 5856, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -112061,19 +112472,19 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "rosters": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112083,19 +112494,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "rosters_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112105,11 +112516,11 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], @@ -112117,10 +112528,10 @@ export default { 80 ], "stages": [ - 4787, + 4814, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -112130,19 +112541,19 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "stages_aggregate": [ - 4788, + 4815, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -112152,25 +112563,25 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "start": [ - 4526 + 4553 ], "status": [ 1354 ], "teams": [ - 4920, + 4947, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -112180,19 +112591,19 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "teams_aggregate": [ - 4921, + 4948, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -112202,11 +112613,11 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], @@ -112216,10 +112627,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4978 + 5005 ], "nodes": [ - 4962 + 4989 ], "__typename": [ 80 @@ -112227,37 +112638,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 4965 + 4992 ], "bool_and": [ - 4966 + 4993 ], "bool_or": [ - 4967 + 4994 ], "corr": [ - 4968 + 4995 ], "count": [ - 4970 + 4997 ], "covar_samp": [ - 4971 + 4998 ], "max": [ - 4973 + 5000 ], "min": [ - 4974 + 5001 ], "stddev_samp": [ - 4975 + 5002 ], "sum": [ - 4976 + 5003 ], "var_samp": [ - 4977 + 5004 ], "__typename": [ 80 @@ -112265,13 +112676,13 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 4997 + 5024 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112282,13 +112693,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4998 + 5025 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 6 @@ -112299,13 +112710,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4999 + 5026 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 6 @@ -112316,13 +112727,13 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 4969 + 4996 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112333,10 +112744,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5000 + 5027 ], "Y": [ - 5000 + 5027 ], "__typename": [ 80 @@ -112344,13 +112755,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4996 + 5023 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 41 @@ -112361,13 +112772,13 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 4972 + 4999 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112378,10 +112789,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5001 + 5028 ], "Y": [ - 5001 + 5028 ], "__typename": [ 80 @@ -112389,13 +112800,13 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5002 + 5029 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112406,13 +112817,13 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5003 + 5030 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112423,13 +112834,13 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5004 + 5031 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112440,13 +112851,13 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5005 + 5032 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112457,13 +112868,13 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5006 + 5033 ], "distinct": [ 5 ], "filter": [ - 4983 + 5010 ], "predicate": [ 1690 @@ -112474,13 +112885,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4981 + 5008 ], "count": [ 40, { "columns": [ - 4996, + 5023, "[tournaments_select_column!]" ], "distinct": [ @@ -112489,31 +112900,31 @@ export default { } ], "max": [ - 4987 + 5014 ], "min": [ - 4989 + 5016 ], "stddev": [ - 5008 + 5035 ], "stddev_pop": [ - 5010 + 5037 ], "stddev_samp": [ - 5012 + 5039 ], "sum": [ - 5016 + 5043 ], "var_pop": [ - 5020 + 5047 ], "var_samp": [ - 5022 + 5049 ], "variance": [ - 5024 + 5051 ], "__typename": [ 80 @@ -112521,37 +112932,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4982 + 5009 ], "count": [ - 2979 + 3006 ], "max": [ - 4988 + 5015 ], "min": [ - 4990 + 5017 ], "stddev": [ - 5009 + 5036 ], "stddev_pop": [ - 5011 + 5038 ], "stddev_samp": [ - 5013 + 5040 ], "sum": [ - 5017 + 5044 ], "var_pop": [ - 5021 + 5048 ], "var_samp": [ - 5023 + 5050 ], "variance": [ - 5025 + 5052 ], "__typename": [ 80 @@ -112559,10 +112970,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4986 + 5013 ], "on_conflict": [ - 4993 + 5020 ], "__typename": [ 80 @@ -112590,13 +113001,13 @@ export default { }, "tournaments_avg_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -112604,25 +113015,25 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4983 + 5010 ], "_not": [ - 4983 + 5010 ], "_or": [ - 4983 + 5010 ], "admin": [ - 3941 + 3968 ], "auto_start": [ 6 ], "award_configs": [ - 4537 + 4564 ], "award_configs_aggregate": [ - 4530 + 4557 ], "awards": [ 197 @@ -112661,13 +113072,13 @@ export default { 6 ], "categories": [ - 4623 + 4650 ], "categories_aggregate": [ - 4618 + 4645 ], "created_at": [ - 4527 + 4554 ], "description": [ 82 @@ -112733,7 +113144,7 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "is_league": [ 6 @@ -112760,7 +113171,7 @@ export default { 1690 ], "match_options_id": [ - 5028 + 5055 ], "max_players_per_lineup": [ 41 @@ -112772,67 +113183,67 @@ export default { 82 ], "options": [ - 2674 + 2701 ], "organizer_steam_id": [ 259 ], "organizer_teams": [ - 4647 + 4674 ], "organizer_teams_aggregate": [ - 4642 + 4669 ], "organizers": [ - 4673 + 4700 ], "organizers_aggregate": [ - 4666 + 4693 ], "player_stats": [ - 5898 + 5925 ], "player_stats_aggregate": [ - 5881 + 5908 ], "prizes": [ - 4714 + 4741 ], "prizes_aggregate": [ - 4707 + 4734 ], "results": [ - 5847 + 5874 ], "results_aggregate": [ - 5830 + 5857 ], "rosters": [ - 4888 + 4915 ], "rosters_aggregate": [ - 4881 + 4908 ], "scheduling_mode": [ 82 ], "stages": [ - 4799 + 4826 ], "stages_aggregate": [ - 4789 + 4816 ], "start": [ - 4527 + 4554 ], "status": [ 1355 ], "teams": [ - 4929 + 4956 ], "teams_aggregate": [ - 4922 + 4949 ], "__typename": [ 80 @@ -112855,13 +113266,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3948 + 3975 ], "auto_start": [ 5 ], "award_configs": [ - 4534 + 4561 ], "awards": [ 194 @@ -112873,10 +113284,10 @@ export default { 80 ], "categories": [ - 4622 + 4649 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -112939,7 +113350,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_league": [ 5 @@ -112960,49 +113371,49 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "name": [ 80 ], "options": [ - 2681 + 2708 ], "organizer_steam_id": [ 257 ], "organizer_teams": [ - 4646 + 4673 ], "organizers": [ - 4670 + 4697 ], "player_stats": [ - 5895 + 5922 ], "prizes": [ - 4711 + 4738 ], "results": [ - 5844 + 5871 ], "rosters": [ - 4885 + 4912 ], "scheduling_mode": [ 80 ], "stages": [ - 4796 + 4823 ], "start": [ - 4526 + 4553 ], "status": [ 1354 ], "teams": [ - 4926 + 4953 ], "__typename": [ 80 @@ -113013,7 +113424,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -113031,7 +113442,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "latitude": [ 1689 @@ -113046,7 +113457,7 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -113064,7 +113475,7 @@ export default { 80 ], "start": [ - 4526 + 4553 ], "__typename": [ 80 @@ -113072,55 +113483,55 @@ export default { }, "tournaments_max_order_by": { "banner": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "discord_guild_id": [ - 2979 + 3006 ], "discord_role_id": [ - 2979 + 3006 ], "discord_webhook": [ - 2979 + 3006 ], "homepage": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "latitude": [ - 2979 + 3006 ], "location": [ - 2979 + 3006 ], "logo": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "scheduling_mode": [ - 2979 + 3006 ], "start": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113131,7 +113542,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -113149,7 +113560,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "latitude": [ 1689 @@ -113164,7 +113575,7 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "max_players_per_lineup": [ 40 @@ -113182,7 +113593,7 @@ export default { 80 ], "start": [ - 4526 + 4553 ], "__typename": [ 80 @@ -113190,55 +113601,55 @@ export default { }, "tournaments_min_order_by": { "banner": [ - 2979 + 3006 ], "created_at": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "discord_guild_id": [ - 2979 + 3006 ], "discord_role_id": [ - 2979 + 3006 ], "discord_webhook": [ - 2979 + 3006 ], "homepage": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "latitude": [ - 2979 + 3006 ], "location": [ - 2979 + 3006 ], "logo": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "scheduling_mode": [ - 2979 + 3006 ], "start": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113249,7 +113660,7 @@ export default { 40 ], "returning": [ - 4962 + 4989 ], "__typename": [ 80 @@ -113257,10 +113668,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4986 + 5013 ], "on_conflict": [ - 4993 + 5020 ], "__typename": [ 80 @@ -113268,13 +113679,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4984 + 5011 ], "update_columns": [ - 5018 + 5045 ], "where": [ - 4983 + 5010 ], "__typename": [ 80 @@ -113282,193 +113693,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 3950 + 3977 ], "auto_start": [ - 2979 + 3006 ], "award_configs_aggregate": [ - 4533 + 4560 ], "awards_aggregate": [ 193 ], "awards_enabled": [ - 2979 + 3006 ], "banner": [ - 2979 + 3006 ], "can_cancel": [ - 2979 + 3006 ], "can_close_registration": [ - 2979 + 3006 ], "can_join": [ - 2979 + 3006 ], "can_open_registration": [ - 2979 + 3006 ], "can_pause": [ - 2979 + 3006 ], "can_resume": [ - 2979 + 3006 ], "can_setup": [ - 2979 + 3006 ], "can_start": [ - 2979 + 3006 ], "categories_aggregate": [ - 4621 + 4648 ], "created_at": [ - 2979 + 3006 ], "description": [ - 2979 + 3006 ], "discord_guild_id": [ - 2979 + 3006 ], "discord_notifications_enabled": [ - 2979 + 3006 ], "discord_notify_Canceled": [ - 2979 + 3006 ], "discord_notify_Finished": [ - 2979 + 3006 ], "discord_notify_Forfeit": [ - 2979 + 3006 ], "discord_notify_Live": [ - 2979 + 3006 ], "discord_notify_MapPaused": [ - 2979 + 3006 ], "discord_notify_PickingPlayers": [ - 2979 + 3006 ], "discord_notify_Scheduled": [ - 2979 + 3006 ], "discord_notify_Surrendered": [ - 2979 + 3006 ], "discord_notify_Tie": [ - 2979 + 3006 ], "discord_notify_Veto": [ - 2979 + 3006 ], "discord_notify_WaitingForCheckIn": [ - 2979 + 3006 ], "discord_notify_WaitingForServer": [ - 2979 + 3006 ], "discord_role_id": [ - 2979 + 3006 ], "discord_voice_enabled": [ - 2979 + 3006 ], "discord_webhook": [ - 2979 + 3006 ], "e_tournament_status": [ 1362 ], "has_min_teams": [ - 2979 + 3006 ], "homepage": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "is_league": [ - 2979 + 3006 ], "is_organizer": [ - 2979 + 3006 ], "joined_tournament": [ - 2979 + 3006 ], "latitude": [ - 2979 + 3006 ], "league_season_division": [ 2037 ], "location": [ - 2979 + 3006 ], "logo": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "match_options_id": [ - 2979 + 3006 ], "max_players_per_lineup": [ - 2979 + 3006 ], "min_players_per_lineup": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "options": [ - 2683 + 2710 ], "organizer_steam_id": [ - 2979 + 3006 ], "organizer_teams_aggregate": [ - 4645 + 4672 ], "organizers_aggregate": [ - 4669 + 4696 ], "player_stats_aggregate": [ - 5894 + 5921 ], "prizes_aggregate": [ - 4710 + 4737 ], "results_aggregate": [ - 5843 + 5870 ], "rosters_aggregate": [ - 4884 + 4911 ], "scheduling_mode": [ - 2979 + 3006 ], "stages_aggregate": [ - 4794 + 4821 ], "start": [ - 2979 + 3006 ], "status": [ - 2979 + 3006 ], "teams_aggregate": [ - 4925 + 4952 ], "__typename": [ 80 @@ -113476,7 +113887,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -113504,7 +113915,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -113564,7 +113975,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_league": [ 5 @@ -113582,7 +113993,7 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "name": [ 80 @@ -113594,7 +114005,7 @@ export default { 80 ], "start": [ - 4526 + 4553 ], "status": [ 1354 @@ -113625,13 +114036,13 @@ export default { }, "tournaments_stddev_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113659,13 +114070,13 @@ export default { }, "tournaments_stddev_pop_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113693,13 +114104,13 @@ export default { }, "tournaments_stddev_samp_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113707,7 +114118,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 5015 + 5042 ], "ordering": [ 313 @@ -113727,7 +114138,7 @@ export default { 80 ], "created_at": [ - 4526 + 4553 ], "description": [ 80 @@ -113787,7 +114198,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "is_league": [ 5 @@ -113805,7 +114216,7 @@ export default { 1689 ], "match_options_id": [ - 5026 + 5053 ], "name": [ 80 @@ -113817,7 +114228,7 @@ export default { 80 ], "start": [ - 4526 + 4553 ], "status": [ 1354 @@ -113848,13 +114259,13 @@ export default { }, "tournaments_sum_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113863,13 +114274,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4985 + 5012 ], "_set": [ - 5007 + 5034 ], "where": [ - 4983 + 5010 ], "__typename": [ 80 @@ -113897,13 +114308,13 @@ export default { }, "tournaments_var_pop_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113931,13 +114342,13 @@ export default { }, "tournaments_var_samp_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113965,13 +114376,13 @@ export default { }, "tournaments_variance_order_by": { "latitude": [ - 2979 + 3006 ], "longitude": [ - 2979 + 3006 ], "organizer_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -113980,37 +114391,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5026 + 5053 ], "_contains": [ - 5026 + 5053 ], "_eq": [ - 5026 + 5053 ], "_gt": [ - 5026 + 5053 ], "_gte": [ - 5026 + 5053 ], "_in": [ - 5026 + 5053 ], "_is_null": [ 5 ], "_lt": [ - 5026 + 5053 ], "_lte": [ - 5026 + 5053 ], "_neq": [ - 5026 + 5053 ], "_nin": [ - 5026 + 5053 ], "__typename": [ 80 @@ -114018,31 +114429,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 5026 + 5053 ], "_gt": [ - 5026 + 5053 ], "_gte": [ - 5026 + 5053 ], "_in": [ - 5026 + 5053 ], "_is_null": [ 5 ], "_lt": [ - 5026 + 5053 ], "_lte": [ - 5026 + 5053 ], "_neq": [ - 5026 + 5053 ], "_nin": [ - 5026 + 5053 ], "__typename": [ 80 @@ -114059,7 +114470,7 @@ export default { 1661 ], "event_id": [ - 5026 + 5053 ], "headshot_percentage": [ 1689 @@ -114077,7 +114488,7 @@ export default { 40 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -114088,10 +114499,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5043 + 5070 ], "nodes": [ - 5029 + 5056 ], "__typename": [ 80 @@ -114099,31 +114510,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5032 + 5059 ], "corr": [ - 5033 + 5060 ], "count": [ - 5035 + 5062 ], "covar_samp": [ - 5036 + 5063 ], "max": [ - 5038 + 5065 ], "min": [ - 5039 + 5066 ], "stddev_samp": [ - 5040 + 5067 ], "sum": [ - 5041 + 5068 ], "var_samp": [ - 5042 + 5069 ], "__typename": [ 80 @@ -114131,13 +114542,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5056 + 5083 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114148,13 +114559,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5034 + 5061 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114165,10 +114576,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5057 + 5084 ], "Y": [ - 5057 + 5084 ], "__typename": [ 80 @@ -114176,13 +114587,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5055 + 5082 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 41 @@ -114193,13 +114604,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5037 + 5064 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114210,10 +114621,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5058 + 5085 ], "Y": [ - 5058 + 5085 ], "__typename": [ 80 @@ -114221,13 +114632,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5059 + 5086 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114238,13 +114649,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5060 + 5087 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114255,13 +114666,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5061 + 5088 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114272,13 +114683,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5062 + 5089 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114289,13 +114700,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5063 + 5090 ], "distinct": [ 5 ], "filter": [ - 5048 + 5075 ], "predicate": [ 1690 @@ -114306,13 +114717,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5046 + 5073 ], "count": [ 40, { "columns": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -114321,31 +114732,31 @@ export default { } ], "max": [ - 5050 + 5077 ], "min": [ - 5052 + 5079 ], "stddev": [ - 5064 + 5091 ], "stddev_pop": [ - 5066 + 5093 ], "stddev_samp": [ - 5068 + 5095 ], "sum": [ - 5072 + 5099 ], "var_pop": [ - 5074 + 5101 ], "var_samp": [ - 5076 + 5103 ], "variance": [ - 5078 + 5105 ], "__typename": [ 80 @@ -114353,37 +114764,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5047 + 5074 ], "count": [ - 2979 + 3006 ], "max": [ - 5051 + 5078 ], "min": [ - 5053 + 5080 ], "stddev": [ - 5065 + 5092 ], "stddev_pop": [ - 5067 + 5094 ], "stddev_samp": [ - 5069 + 5096 ], "sum": [ - 5073 + 5100 ], "var_pop": [ - 5075 + 5102 ], "var_samp": [ - 5077 + 5104 ], "variance": [ - 5079 + 5106 ], "__typename": [ 80 @@ -114391,7 +114802,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5049 + 5076 ], "__typename": [ 80 @@ -114428,28 +114839,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114457,13 +114868,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5048 + 5075 ], "_not": [ - 5048 + 5075 ], "_or": [ - 5048 + 5075 ], "assists": [ 41 @@ -114475,7 +114886,7 @@ export default { 1665 ], "event_id": [ - 5028 + 5055 ], "headshot_percentage": [ 1690 @@ -114493,7 +114904,7 @@ export default { 41 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -114513,7 +114924,7 @@ export default { 1672 ], "event_id": [ - 5026 + 5053 ], "headshot_percentage": [ 1689 @@ -114531,7 +114942,7 @@ export default { 40 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -114548,7 +114959,7 @@ export default { 40 ], "event_id": [ - 5026 + 5053 ], "headshot_percentage": [ 1689 @@ -114574,31 +114985,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114612,7 +115023,7 @@ export default { 40 ], "event_id": [ - 5026 + 5053 ], "headshot_percentage": [ 1689 @@ -114638,31 +115049,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "event_id": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114670,37 +115081,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "event": [ 1674 ], "event_id": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114746,28 +115157,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114804,28 +115215,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114862,28 +115273,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -114891,7 +115302,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5071 + 5098 ], "ordering": [ 313 @@ -114908,7 +115319,7 @@ export default { 40 ], "event_id": [ - 5026 + 5053 ], "headshot_percentage": [ 1689 @@ -114963,28 +115374,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -115021,28 +115432,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -115079,28 +115490,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -115137,28 +115548,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -115213,10 +115624,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5082 + 5109 ], "nodes": [ - 5080 + 5107 ], "__typename": [ 80 @@ -115224,13 +115635,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5083 + 5110 ], "count": [ 40, { "columns": [ - 5088, + 5115, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -115239,31 +115650,31 @@ export default { } ], "max": [ - 5085 + 5112 ], "min": [ - 5086 + 5113 ], "stddev": [ - 5089 + 5116 ], "stddev_pop": [ - 5090 + 5117 ], "stddev_samp": [ - 5091 + 5118 ], "sum": [ - 5094 + 5121 ], "var_pop": [ - 5095 + 5122 ], "var_samp": [ - 5096 + 5123 ], "variance": [ - 5097 + 5124 ], "__typename": [ 80 @@ -115306,13 +115717,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5084 + 5111 ], "_not": [ - 5084 + 5111 ], "_or": [ - 5084 + 5111 ], "demo_free_gpu_nodes": [ 41 @@ -115432,46 +115843,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2979 + 3006 ], "demo_in_progress": [ - 2979 + 3006 ], "demo_total_gpu_nodes": [ - 2979 + 3006 ], "free_gpu_nodes": [ - 2979 + 3006 ], "free_gpu_nodes_for_batch": [ - 2979 + 3006 ], "highlights_in_progress": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "live_in_progress": [ - 2979 + 3006 ], "registered_gpu_nodes": [ - 2979 + 3006 ], "rendering_total_gpu_nodes": [ - 2979 + 3006 ], "renders_paused_for_active_match": [ - 2979 + 3006 ], "streaming_free_gpu_nodes": [ - 2979 + 3006 ], "streaming_total_gpu_nodes": [ - 2979 + 3006 ], "total_gpu_nodes": [ - 2979 + 3006 ], "__typename": [ 80 @@ -115585,7 +115996,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5093 + 5120 ], "ordering": [ 313 @@ -115789,22 +116200,22 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2202 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "losses": [ 40 @@ -115840,7 +116251,7 @@ export default { 2160 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -115851,10 +116262,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5102 + 5129 ], "nodes": [ - 5098 + 5125 ], "__typename": [ 80 @@ -115862,7 +116273,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5101 + 5128 ], "__typename": [ 80 @@ -115870,13 +116281,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5114 + 5141 ], "distinct": [ 5 ], "filter": [ - 5107 + 5134 ], "predicate": [ 41 @@ -115887,13 +116298,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5105 + 5132 ], "count": [ 40, { "columns": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -115902,31 +116313,31 @@ export default { } ], "max": [ - 5109 + 5136 ], "min": [ - 5111 + 5138 ], "stddev": [ - 5115 + 5142 ], "stddev_pop": [ - 5117 + 5144 ], "stddev_samp": [ - 5119 + 5146 ], "sum": [ - 5123 + 5150 ], "var_pop": [ - 5125 + 5152 ], "var_samp": [ - 5127 + 5154 ], "variance": [ - 5129 + 5156 ], "__typename": [ 80 @@ -115934,37 +116345,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5106 + 5133 ], "count": [ - 2979 + 3006 ], "max": [ - 5110 + 5137 ], "min": [ - 5112 + 5139 ], "stddev": [ - 5116 + 5143 ], "stddev_pop": [ - 5118 + 5145 ], "stddev_samp": [ - 5120 + 5147 ], "sum": [ - 5124 + 5151 ], "var_pop": [ - 5126 + 5153 ], "var_samp": [ - 5128 + 5155 ], "variance": [ - 5130 + 5157 ], "__typename": [ 80 @@ -115972,7 +116383,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5108 + 5135 ], "__typename": [ 80 @@ -116021,40 +116432,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116062,13 +116473,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5107 + 5134 ], "_not": [ - 5107 + 5134 ], "_or": [ - 5107 + 5134 ], "head_to_head_match_wins": [ 41 @@ -116077,22 +116488,22 @@ export default { 41 ], "league_division_id": [ - 5028 + 5055 ], "league_season_division_id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "league_team": [ 2205 ], "league_team_id": [ - 5028 + 5055 ], "league_team_season_id": [ - 5028 + 5055 ], "losses": [ 41 @@ -116128,7 +116539,7 @@ export default { 2169 ], "tournament_team_id": [ - 5028 + 5055 ], "wins": [ 41 @@ -116145,22 +116556,22 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2211 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "losses": [ 40 @@ -116196,7 +116607,7 @@ export default { 2178 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -116213,19 +116624,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "losses": [ 40 @@ -116255,7 +116666,7 @@ export default { 40 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -116266,58 +116677,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116331,19 +116742,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "losses": [ 40 @@ -116373,7 +116784,7 @@ export default { 40 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -116384,58 +116795,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116443,55 +116854,55 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team": [ 2213 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "season_division": [ 2037 @@ -116500,10 +116911,10 @@ export default { 2180 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116553,40 +116964,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116635,40 +117046,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116717,40 +117128,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116758,7 +117169,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5122 + 5149 ], "ordering": [ 313 @@ -116775,19 +117186,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "losses": [ 40 @@ -116817,7 +117228,7 @@ export default { 40 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -116869,40 +117280,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -116951,40 +117362,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117033,40 +117444,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117115,40 +117526,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "round_diff": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117174,28 +117585,28 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2202 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "matches_played": [ 40 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -117206,10 +117617,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5145 + 5172 ], "nodes": [ - 5131 + 5158 ], "__typename": [ 80 @@ -117217,31 +117628,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5134 + 5161 ], "corr": [ - 5135 + 5162 ], "count": [ - 5137 + 5164 ], "covar_samp": [ - 5138 + 5165 ], "max": [ - 5140 + 5167 ], "min": [ - 5141 + 5168 ], "stddev_samp": [ - 5142 + 5169 ], "sum": [ - 5143 + 5170 ], "var_samp": [ - 5144 + 5171 ], "__typename": [ 80 @@ -117249,13 +117660,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5158 + 5185 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117266,13 +117677,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5136 + 5163 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117283,10 +117694,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5159 + 5186 ], "Y": [ - 5159 + 5186 ], "__typename": [ 80 @@ -117294,13 +117705,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5157 + 5184 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 41 @@ -117311,13 +117722,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5139 + 5166 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117328,10 +117739,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5160 + 5187 ], "Y": [ - 5160 + 5187 ], "__typename": [ 80 @@ -117339,13 +117750,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5161 + 5188 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117356,13 +117767,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5162 + 5189 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117373,13 +117784,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5163 + 5190 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117390,13 +117801,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5164 + 5191 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117407,13 +117818,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5165 + 5192 ], "distinct": [ 5 ], "filter": [ - 5150 + 5177 ], "predicate": [ 1690 @@ -117424,13 +117835,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5148 + 5175 ], "count": [ 40, { "columns": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -117439,31 +117850,31 @@ export default { } ], "max": [ - 5152 + 5179 ], "min": [ - 5154 + 5181 ], "stddev": [ - 5166 + 5193 ], "stddev_pop": [ - 5168 + 5195 ], "stddev_samp": [ - 5170 + 5197 ], "sum": [ - 5174 + 5201 ], "var_pop": [ - 5176 + 5203 ], "var_samp": [ - 5178 + 5205 ], "variance": [ - 5180 + 5207 ], "__typename": [ 80 @@ -117471,37 +117882,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5149 + 5176 ], "count": [ - 2979 + 3006 ], "max": [ - 5153 + 5180 ], "min": [ - 5155 + 5182 ], "stddev": [ - 5167 + 5194 ], "stddev_pop": [ - 5169 + 5196 ], "stddev_samp": [ - 5171 + 5198 ], "sum": [ - 5175 + 5202 ], "var_pop": [ - 5177 + 5204 ], "var_samp": [ - 5179 + 5206 ], "variance": [ - 5181 + 5208 ], "__typename": [ 80 @@ -117509,7 +117920,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5151 + 5178 ], "__typename": [ 80 @@ -117546,28 +117957,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117575,13 +117986,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5150 + 5177 ], "_not": [ - 5150 + 5177 ], "_or": [ - 5150 + 5177 ], "assists": [ 41 @@ -117602,28 +118013,28 @@ export default { 41 ], "league_division_id": [ - 5028 + 5055 ], "league_season_division_id": [ - 5028 + 5055 ], "league_season_id": [ - 5028 + 5055 ], "league_team": [ 2205 ], "league_team_id": [ - 5028 + 5055 ], "league_team_season_id": [ - 5028 + 5055 ], "matches_played": [ 41 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -117652,28 +118063,28 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team": [ 2211 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "matches_played": [ 40 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 @@ -117702,19 +118113,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "matches_played": [ 40 @@ -117728,43 +118139,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117790,19 +118201,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "matches_played": [ 40 @@ -117816,43 +118227,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117860,49 +118271,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "league_division_id": [ - 2979 + 3006 ], "league_season_division_id": [ - 2979 + 3006 ], "league_season_id": [ - 2979 + 3006 ], "league_team": [ 2213 ], "league_team_id": [ - 2979 + 3006 ], "league_team_season_id": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -117948,28 +118359,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118006,28 +118417,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118064,28 +118475,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118093,7 +118504,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5173 + 5200 ], "ordering": [ 313 @@ -118122,19 +118533,19 @@ export default { 40 ], "league_division_id": [ - 5026 + 5053 ], "league_season_division_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "league_team_id": [ - 5026 + 5053 ], "league_team_season_id": [ - 5026 + 5053 ], "matches_played": [ 40 @@ -118177,28 +118588,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118235,28 +118646,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118293,28 +118704,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118351,28 +118762,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118386,19 +118797,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -118409,10 +118820,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5184 + 5211 ], "nodes": [ - 5182 + 5209 ], "__typename": [ 80 @@ -118420,13 +118831,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5185 + 5212 ], "count": [ 40, { "columns": [ - 5194, + 5221, "[v_match_captains_select_column!]" ], "distinct": [ @@ -118435,31 +118846,31 @@ export default { } ], "max": [ - 5189 + 5216 ], "min": [ - 5190 + 5217 ], "stddev": [ - 5196 + 5223 ], "stddev_pop": [ - 5197 + 5224 ], "stddev_samp": [ - 5198 + 5225 ], "sum": [ - 5201 + 5228 ], "var_pop": [ - 5203 + 5230 ], "var_samp": [ - 5204 + 5231 ], "variance": [ - 5205 + 5232 ], "__typename": [ 80 @@ -118475,13 +118886,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5186 + 5213 ], "_not": [ - 5186 + 5213 ], "_or": [ - 5186 + 5213 ], "captain": [ 6 @@ -118490,19 +118901,19 @@ export default { 82 ], "id": [ - 5028 + 5055 ], "lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "placeholder_name": [ 82 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -118527,19 +118938,19 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 ], "player": [ - 3948 + 3975 ], "steam_id": [ 257 @@ -118553,10 +118964,10 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -118573,10 +118984,10 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -118593,7 +119004,7 @@ export default { 40 ], "returning": [ - 5182 + 5209 ], "__typename": [ 80 @@ -118601,7 +119012,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5188 + 5215 ], "__typename": [ 80 @@ -118609,28 +119020,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2979 + 3006 ], "discord_id": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "placeholder_name": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118645,10 +119056,10 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -118686,7 +119097,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5200 + 5227 ], "ordering": [ 313 @@ -118703,10 +119114,10 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "placeholder_name": [ 80 @@ -118728,13 +119139,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5187 + 5214 ], "_set": [ - 5195 + 5222 ], "where": [ - 5186 + 5213 ], "__typename": [ 80 @@ -118769,7 +119180,7 @@ export default { 40 ], "clutcher": [ - 3937 + 3964 ], "clutcher_steam_id": [ 257 @@ -118778,22 +119189,22 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "outcome": [ 80 @@ -118810,10 +119221,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5210 + 5237 ], "nodes": [ - 5206 + 5233 ], "__typename": [ 80 @@ -118821,7 +119232,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5209 + 5236 ], "__typename": [ 80 @@ -118829,13 +119240,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5222 + 5249 ], "distinct": [ 5 ], "filter": [ - 5215 + 5242 ], "predicate": [ 41 @@ -118846,13 +119257,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5213 + 5240 ], "count": [ 40, { "columns": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -118861,31 +119272,31 @@ export default { } ], "max": [ - 5217 + 5244 ], "min": [ - 5219 + 5246 ], "stddev": [ - 5223 + 5250 ], "stddev_pop": [ - 5225 + 5252 ], "stddev_samp": [ - 5227 + 5254 ], "sum": [ - 5231 + 5258 ], "var_pop": [ - 5233 + 5260 ], "var_samp": [ - 5235 + 5262 ], "variance": [ - 5237 + 5264 ], "__typename": [ 80 @@ -118893,37 +119304,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5214 + 5241 ], "count": [ - 2979 + 3006 ], "max": [ - 5218 + 5245 ], "min": [ - 5220 + 5247 ], "stddev": [ - 5224 + 5251 ], "stddev_pop": [ - 5226 + 5253 ], "stddev_samp": [ - 5228 + 5255 ], "sum": [ - 5232 + 5259 ], "var_pop": [ - 5234 + 5261 ], "var_samp": [ - 5236 + 5263 ], "variance": [ - 5238 + 5265 ], "__typename": [ 80 @@ -118931,7 +119342,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5216 + 5243 ], "__typename": [ 80 @@ -118956,16 +119367,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -118973,19 +119384,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5215 + 5242 ], "_not": [ - 5215 + 5242 ], "_or": [ - 5215 + 5242 ], "against_count": [ 41 ], "clutcher": [ - 3941 + 3968 ], "clutcher_steam_id": [ 259 @@ -118994,22 +119405,22 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "outcome": [ 82 @@ -119029,7 +119440,7 @@ export default { 40 ], "clutcher": [ - 3948 + 3975 ], "clutcher_steam_id": [ 257 @@ -119038,22 +119449,22 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "outcome": [ 80 @@ -119079,13 +119490,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "outcome": [ 80 @@ -119102,31 +119513,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "outcome": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119143,13 +119554,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "outcome": [ 80 @@ -119166,31 +119577,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "outcome": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119198,43 +119609,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher": [ - 3950 + 3977 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "outcome": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119260,16 +119671,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119294,16 +119705,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119328,16 +119739,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119345,7 +119756,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5230 + 5257 ], "ordering": [ 313 @@ -119365,13 +119776,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "outcome": [ 80 @@ -119405,16 +119816,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119439,16 +119850,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119473,16 +119884,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119507,16 +119918,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2979 + 3006 ], "clutcher_steam_id": [ - 2979 + 3006 ], "kills_in_clutch": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119533,16 +119944,16 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "victim_side": [ 80 @@ -119559,10 +119970,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5241 + 5268 ], "nodes": [ - 5239 + 5266 ], "__typename": [ 80 @@ -119570,13 +119981,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5242 + 5269 ], "count": [ 40, { "columns": [ - 5247, + 5274, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -119585,31 +119996,31 @@ export default { } ], "max": [ - 5244 + 5271 ], "min": [ - 5245 + 5272 ], "stddev": [ - 5248 + 5275 ], "stddev_pop": [ - 5249 + 5276 ], "stddev_samp": [ - 5250 + 5277 ], "sum": [ - 5253 + 5280 ], "var_pop": [ - 5254 + 5281 ], "var_samp": [ - 5255 + 5282 ], "variance": [ - 5256 + 5283 ], "__typename": [ 80 @@ -119631,13 +120042,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5243 + 5270 ], "_not": [ - 5243 + 5270 ], "_or": [ - 5243 + 5270 ], "killer_side": [ 82 @@ -119649,16 +120060,16 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "victim_side": [ 82 @@ -119684,10 +120095,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "victim_side": [ 80 @@ -119713,10 +120124,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "victim_side": [ 80 @@ -119733,34 +120144,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2979 + 3006 ], "killer_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "victim_side": [ - 2979 + 3006 ], "victim_steam_id": [ - 2979 + 3006 ], "weapon": [ - 2979 + 3006 ], "__typename": [ 80 @@ -119811,7 +120222,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5252 + 5279 ], "ordering": [ 313 @@ -119831,10 +120242,10 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "victim_side": [ 80 @@ -119907,22 +120318,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -119942,10 +120353,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5259 + 5286 ], "nodes": [ - 5257 + 5284 ], "__typename": [ 80 @@ -119953,13 +120364,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5260 + 5287 ], "count": [ 40, { "columns": [ - 5265, + 5292, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -119968,31 +120379,31 @@ export default { } ], "max": [ - 5262 + 5289 ], "min": [ - 5263 + 5290 ], "stddev": [ - 5266 + 5293 ], "stddev_pop": [ - 5267 + 5294 ], "stddev_samp": [ - 5268 + 5295 ], "sum": [ - 5271 + 5298 ], "var_pop": [ - 5272 + 5299 ], "var_samp": [ - 5273 + 5300 ], "variance": [ - 5274 + 5301 ], "__typename": [ 80 @@ -120011,31 +120422,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5261 + 5288 ], "_not": [ - 5261 + 5288 ], "_or": [ - 5261 + 5288 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "matchup": [ 82 @@ -120055,13 +120466,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -120081,13 +120492,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -120107,34 +120518,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "matchup": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -120176,7 +120587,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5270 + 5297 ], "ordering": [ 313 @@ -120187,13 +120598,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -120269,22 +120680,22 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "opening_attempts": [ 40 @@ -120325,10 +120736,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5277 + 5304 ], "nodes": [ - 5275 + 5302 ], "__typename": [ 80 @@ -120336,13 +120747,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5278 + 5305 ], "count": [ 40, { "columns": [ - 5283, + 5310, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -120351,31 +120762,31 @@ export default { } ], "max": [ - 5280 + 5307 ], "min": [ - 5281 + 5308 ], "stddev": [ - 5284 + 5311 ], "stddev_pop": [ - 5285 + 5312 ], "stddev_samp": [ - 5286 + 5313 ], "sum": [ - 5289 + 5316 ], "var_pop": [ - 5290 + 5317 ], "var_samp": [ - 5291 + 5318 ], "variance": [ - 5292 + 5319 ], "__typename": [ 80 @@ -120430,13 +120841,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5279 + 5306 ], "_not": [ - 5279 + 5306 ], "_or": [ - 5279 + 5306 ], "man_adv_rounds": [ 41 @@ -120451,22 +120862,22 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "opening_attempts": [ 41 @@ -120519,13 +120930,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "opening_attempts": [ 40 @@ -120578,13 +120989,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "opening_attempts": [ 40 @@ -120625,67 +121036,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2979 + 3006 ], "man_adv_wins": [ - 2979 + 3006 ], "man_dis_rounds": [ - 2979 + 3006 ], "man_dis_wins": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "opening_attempts": [ - 2979 + 3006 ], "opening_wins": [ - 2979 + 3006 ], "pistol_rounds": [ - 2979 + 3006 ], "pistol_wins": [ - 2979 + 3006 ], "round_wins": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "won_buy_eco": [ - 2979 + 3006 ], "won_buy_force": [ - 2979 + 3006 ], "won_buy_full": [ - 2979 + 3006 ], "won_buy_pistol": [ - 2979 + 3006 ], "__typename": [ 80 @@ -120835,7 +121246,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5288 + 5315 ], "ordering": [ 313 @@ -120858,13 +121269,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "opening_attempts": [ 40 @@ -121096,7 +121507,7 @@ export default { 5 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121107,10 +121518,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5295 + 5322 ], "nodes": [ - 5293 + 5320 ], "__typename": [ 80 @@ -121118,13 +121529,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5296 + 5323 ], "count": [ 40, { "columns": [ - 5304, + 5331, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -121133,31 +121544,31 @@ export default { } ], "max": [ - 5300 + 5327 ], "min": [ - 5301 + 5328 ], "stddev": [ - 5306 + 5333 ], "stddev_pop": [ - 5307 + 5334 ], "stddev_samp": [ - 5308 + 5335 ], "sum": [ - 5311 + 5338 ], "var_pop": [ - 5313 + 5340 ], "var_samp": [ - 5314 + 5341 ], "variance": [ - 5315 + 5342 ], "__typename": [ 80 @@ -121173,19 +121584,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5297 + 5324 ], "_not": [ - 5297 + 5324 ], "_or": [ - 5297 + 5324 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5028 + 5055 ], "round": [ 41 @@ -121207,7 +121618,7 @@ export default { 5 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121218,7 +121629,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121229,7 +121640,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121243,7 +121654,7 @@ export default { 40 ], "returning": [ - 5293 + 5320 ], "__typename": [ 80 @@ -121251,13 +121662,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -121269,7 +121680,7 @@ export default { 5 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121304,7 +121715,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5310 + 5337 ], "ordering": [ 313 @@ -121318,7 +121729,7 @@ export default { 5 ], "match_map_id": [ - 5026 + 5053 ], "round": [ 40 @@ -121337,13 +121748,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5298 + 5325 ], "_set": [ - 5305 + 5332 ], "where": [ - 5297 + 5324 ], "__typename": [ 80 @@ -121381,28 +121792,28 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 ], "player": [ - 3937 + 3964 ], "rounds": [ 40 @@ -121419,10 +121830,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5318 + 5345 ], "nodes": [ - 5316 + 5343 ], "__typename": [ 80 @@ -121430,13 +121841,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5319 + 5346 ], "count": [ 40, { "columns": [ - 5324, + 5351, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -121445,31 +121856,31 @@ export default { } ], "max": [ - 5321 + 5348 ], "min": [ - 5322 + 5349 ], "stddev": [ - 5325 + 5352 ], "stddev_pop": [ - 5326 + 5353 ], "stddev_samp": [ - 5327 + 5354 ], "sum": [ - 5330 + 5357 ], "var_pop": [ - 5331 + 5358 ], "var_samp": [ - 5332 + 5359 ], "variance": [ - 5333 + 5360 ], "__typename": [ 80 @@ -121494,13 +121905,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5320 + 5347 ], "_not": [ - 5320 + 5347 ], "_or": [ - 5320 + 5347 ], "deaths": [ 41 @@ -121509,28 +121920,28 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "matchup": [ 82 ], "player": [ - 3941 + 3968 ], "rounds": [ 41 @@ -121553,13 +121964,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -121585,13 +121996,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -121611,43 +122022,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "matchup": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "rounds": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -121707,7 +122118,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5329 + 5356 ], "ordering": [ 313 @@ -121724,13 +122135,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "matchup": [ 80 @@ -121824,25 +122235,25 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2466 + 2493 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "side": [ 80 @@ -121862,10 +122273,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5338 + 5365 ], "nodes": [ - 5334 + 5361 ], "__typename": [ 80 @@ -121873,7 +122284,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5337 + 5364 ], "__typename": [ 80 @@ -121881,13 +122292,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5350 + 5377 ], "distinct": [ 5 ], "filter": [ - 5343 + 5370 ], "predicate": [ 41 @@ -121898,13 +122309,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5341 + 5368 ], "count": [ 40, { "columns": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -121913,31 +122324,31 @@ export default { } ], "max": [ - 5345 + 5372 ], "min": [ - 5347 + 5374 ], "stddev": [ - 5351 + 5378 ], "stddev_pop": [ - 5353 + 5380 ], "stddev_samp": [ - 5355 + 5382 ], "sum": [ - 5359 + 5386 ], "var_pop": [ - 5361 + 5388 ], "var_samp": [ - 5363 + 5390 ], "variance": [ - 5365 + 5392 ], "__typename": [ 80 @@ -121945,37 +122356,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5342 + 5369 ], "count": [ - 2979 + 3006 ], "max": [ - 5346 + 5373 ], "min": [ - 5348 + 5375 ], "stddev": [ - 5352 + 5379 ], "stddev_pop": [ - 5354 + 5381 ], "stddev_samp": [ - 5356 + 5383 ], "sum": [ - 5360 + 5387 ], "var_pop": [ - 5362 + 5389 ], "var_samp": [ - 5364 + 5391 ], "variance": [ - 5366 + 5393 ], "__typename": [ 80 @@ -121983,7 +122394,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5344 + 5371 ], "__typename": [ 80 @@ -122011,19 +122422,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122031,13 +122442,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5343 + 5370 ], "_not": [ - 5343 + 5370 ], "_or": [ - 5343 + 5370 ], "attempts": [ 41 @@ -122046,25 +122457,25 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_lineup": [ - 2475 + 2502 ], "match_lineup_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "side": [ 82 @@ -122090,25 +122501,25 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_lineup": [ - 2484 + 2511 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "side": [ 80 @@ -122134,13 +122545,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "side": [ 80 @@ -122160,31 +122571,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122198,13 +122609,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "side": [ 80 @@ -122224,31 +122635,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "side": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122256,43 +122667,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_lineup": [ - 2486 + 2513 ], "match_lineup_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "side": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122321,19 +122732,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122361,19 +122772,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122401,19 +122812,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122421,7 +122832,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5358 + 5385 ], "ordering": [ 313 @@ -122438,13 +122849,13 @@ export default { 40 ], "match_id": [ - 5026 + 5053 ], "match_lineup_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "side": [ 80 @@ -122484,19 +122895,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122524,19 +122935,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122564,19 +122975,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122604,19 +123015,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "traded_deaths": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122630,10 +123041,10 @@ export default { 257 ], "nemsis": [ - 3937 + 3964 ], "player": [ - 3937 + 3964 ], "victim_id": [ 257 @@ -122644,10 +123055,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5369 + 5396 ], "nodes": [ - 5367 + 5394 ], "__typename": [ 80 @@ -122655,13 +123066,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5370 + 5397 ], "count": [ 40, { "columns": [ - 5375, + 5402, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -122670,31 +123081,31 @@ export default { } ], "max": [ - 5372 + 5399 ], "min": [ - 5373 + 5400 ], "stddev": [ - 5376 + 5403 ], "stddev_pop": [ - 5377 + 5404 ], "stddev_samp": [ - 5378 + 5405 ], "sum": [ - 5381 + 5408 ], "var_pop": [ - 5382 + 5409 ], "var_samp": [ - 5383 + 5410 ], "variance": [ - 5384 + 5411 ], "__typename": [ 80 @@ -122716,13 +123127,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5371 + 5398 ], "_not": [ - 5371 + 5398 ], "_or": [ - 5371 + 5398 ], "attacker_id": [ 259 @@ -122731,10 +123142,10 @@ export default { 259 ], "nemsis": [ - 3941 + 3968 ], "player": [ - 3941 + 3968 ], "victim_id": [ 259 @@ -122773,19 +123184,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2979 + 3006 ], "kill_count": [ - 2979 + 3006 ], "nemsis": [ - 3950 + 3977 ], "player": [ - 3950 + 3977 ], "victim_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -122836,7 +123247,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5380 + 5407 ], "ordering": [ 313 @@ -122920,7 +123331,7 @@ export default { 257 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 @@ -122937,10 +123348,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5387 + 5414 ], "nodes": [ - 5385 + 5412 ], "__typename": [ 80 @@ -122948,13 +123359,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5388 + 5415 ], "count": [ 40, { "columns": [ - 5393, + 5420, "[v_player_damage_select_column!]" ], "distinct": [ @@ -122963,31 +123374,31 @@ export default { } ], "max": [ - 5390 + 5417 ], "min": [ - 5391 + 5418 ], "stddev": [ - 5394 + 5421 ], "stddev_pop": [ - 5395 + 5422 ], "stddev_samp": [ - 5396 + 5423 ], "sum": [ - 5399 + 5426 ], "var_pop": [ - 5400 + 5427 ], "var_samp": [ - 5401 + 5428 ], "variance": [ - 5402 + 5429 ], "__typename": [ 80 @@ -123012,19 +123423,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5389 + 5416 ], "_not": [ - 5389 + 5416 ], "_or": [ - 5389 + 5416 ], "avg_damage_per_round": [ 259 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 @@ -123075,19 +123486,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "total_damage": [ - 2979 + 3006 ], "total_rounds": [ - 2979 + 3006 ], "__typename": [ 80 @@ -123147,7 +123558,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5398 + 5425 ], "ordering": [ 313 @@ -123285,13 +123696,13 @@ export default { 40 ], "match": [ - 2794 + 2821 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -123315,7 +123726,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -123335,10 +123746,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5417 + 5444 ], "nodes": [ - 5403 + 5430 ], "__typename": [ 80 @@ -123346,31 +123757,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5406 + 5433 ], "corr": [ - 5407 + 5434 ], "count": [ - 5409 + 5436 ], "covar_samp": [ - 5410 + 5437 ], "max": [ - 5412 + 5439 ], "min": [ - 5413 + 5440 ], "stddev_samp": [ - 5414 + 5441 ], "sum": [ - 5415 + 5442 ], "var_samp": [ - 5416 + 5443 ], "__typename": [ 80 @@ -123378,13 +123789,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5430 + 5457 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123395,13 +123806,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5408 + 5435 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123412,10 +123823,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5431 + 5458 ], "Y": [ - 5431 + 5458 ], "__typename": [ 80 @@ -123423,13 +123834,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5429 + 5456 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 41 @@ -123440,13 +123851,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5411 + 5438 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123457,10 +123868,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5432 + 5459 ], "Y": [ - 5432 + 5459 ], "__typename": [ 80 @@ -123468,13 +123879,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5433 + 5460 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123485,13 +123896,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5434 + 5461 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123502,13 +123913,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5435 + 5462 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123519,13 +123930,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5436 + 5463 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123536,13 +123947,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5437 + 5464 ], "distinct": [ 5 ], "filter": [ - 5422 + 5449 ], "predicate": [ 1690 @@ -123553,13 +123964,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5420 + 5447 ], "count": [ 40, { "columns": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "distinct": [ @@ -123568,31 +123979,31 @@ export default { } ], "max": [ - 5424 + 5451 ], "min": [ - 5426 + 5453 ], "stddev": [ - 5438 + 5465 ], "stddev_pop": [ - 5440 + 5467 ], "stddev_samp": [ - 5442 + 5469 ], "sum": [ - 5446 + 5473 ], "var_pop": [ - 5448 + 5475 ], "var_samp": [ - 5450 + 5477 ], "variance": [ - 5452 + 5479 ], "__typename": [ 80 @@ -123600,37 +124011,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5421 + 5448 ], "count": [ - 2979 + 3006 ], "max": [ - 5425 + 5452 ], "min": [ - 5427 + 5454 ], "stddev": [ - 5439 + 5466 ], "stddev_pop": [ - 5441 + 5468 ], "stddev_samp": [ - 5443 + 5470 ], "sum": [ - 5447 + 5474 ], "var_pop": [ - 5449 + 5476 ], "var_samp": [ - 5451 + 5478 ], "variance": [ - 5453 + 5480 ], "__typename": [ 80 @@ -123638,7 +124049,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5423 + 5450 ], "__typename": [ 80 @@ -123717,70 +124128,70 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -123788,13 +124199,13 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5422 + 5449 ], "_not": [ - 5422 + 5449 ], "_or": [ - 5422 + 5449 ], "actual_score": [ 1690 @@ -123839,13 +124250,13 @@ export default { 41 ], "match": [ - 2803 + 2830 ], "match_created_at": [ - 4527 + 4554 ], "match_id": [ - 5028 + 5055 ], "match_result": [ 82 @@ -123869,7 +124280,7 @@ export default { 1690 ], "season_id": [ - 5028 + 5055 ], "series_multiplier": [ 41 @@ -123931,13 +124342,13 @@ export default { 40 ], "match": [ - 2812 + 2839 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -123961,7 +124372,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -124023,10 +124434,10 @@ export default { 40 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -124050,7 +124461,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -124070,88 +124481,88 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "match_created_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_result": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_name": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124201,10 +124612,10 @@ export default { 40 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -124228,7 +124639,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -124248,88 +124659,88 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "match_created_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_result": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_name": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124337,91 +124748,91 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_created_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_result": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_name": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "season_id": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124509,70 +124920,70 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124651,70 +125062,70 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124793,70 +125204,70 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -124864,7 +125275,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5445 + 5472 ], "ordering": [ 313 @@ -124917,10 +125328,10 @@ export default { 40 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -124944,7 +125355,7 @@ export default { 1689 ], "season_id": [ - 5026 + 5053 ], "series_multiplier": [ 40 @@ -125035,70 +125446,70 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125177,70 +125588,70 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125319,70 +125730,70 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125461,70 +125872,70 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2979 + 3006 ], "assists": [ - 2979 + 3006 ], "current_elo": [ - 2979 + 3006 ], "damage": [ - 2979 + 3006 ], "damage_percent": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "elo_change": [ - 2979 + 3006 ], "expected_score": [ - 2979 + 3006 ], "impact": [ - 2979 + 3006 ], "k_factor": [ - 2979 + 3006 ], "kda": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map_losses": [ - 2979 + 3006 ], "map_wins": [ - 2979 + 3006 ], "opponent_team_elo_avg": [ - 2979 + 3006 ], "performance_multiplier": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "player_team_elo_avg": [ - 2979 + 3006 ], "rating_for_expected": [ - 2979 + 3006 ], "series_multiplier": [ - 2979 + 3006 ], "team_avg_kda": [ - 2979 + 3006 ], "updated_elo": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125535,16 +125946,16 @@ export default { 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125555,10 +125966,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5456 + 5483 ], "nodes": [ - 5454 + 5481 ], "__typename": [ 80 @@ -125566,13 +125977,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5457 + 5484 ], "count": [ 40, { "columns": [ - 5462, + 5489, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -125581,31 +125992,31 @@ export default { } ], "max": [ - 5459 + 5486 ], "min": [ - 5460 + 5487 ], "stddev": [ - 5463 + 5490 ], "stddev_pop": [ - 5464 + 5491 ], "stddev_samp": [ - 5465 + 5492 ], "sum": [ - 5468 + 5495 ], "var_pop": [ - 5469 + 5496 ], "var_samp": [ - 5470 + 5497 ], "variance": [ - 5471 + 5498 ], "__typename": [ 80 @@ -125621,28 +126032,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5458 + 5485 ], "_not": [ - 5458 + 5485 ], "_or": [ - 5458 + 5485 ], "map": [ 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "started_at": [ - 4527 + 4554 ], "steam_id": [ 259 @@ -125653,13 +126064,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125670,13 +126081,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125690,19 +126101,19 @@ export default { 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125735,7 +126146,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5467 + 5494 ], "ordering": [ 313 @@ -125746,13 +126157,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125798,16 +126209,16 @@ export default { 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125818,10 +126229,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5474 + 5501 ], "nodes": [ - 5472 + 5499 ], "__typename": [ 80 @@ -125829,13 +126240,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5475 + 5502 ], "count": [ 40, { "columns": [ - 5480, + 5507, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -125844,31 +126255,31 @@ export default { } ], "max": [ - 5477 + 5504 ], "min": [ - 5478 + 5505 ], "stddev": [ - 5481 + 5508 ], "stddev_pop": [ - 5482 + 5509 ], "stddev_samp": [ - 5483 + 5510 ], "sum": [ - 5486 + 5513 ], "var_pop": [ - 5487 + 5514 ], "var_samp": [ - 5488 + 5515 ], "variance": [ - 5489 + 5516 ], "__typename": [ 80 @@ -125884,28 +126295,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5476 + 5503 ], "_not": [ - 5476 + 5503 ], "_or": [ - 5476 + 5503 ], "map": [ 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "started_at": [ - 4527 + 4554 ], "steam_id": [ 259 @@ -125916,13 +126327,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125933,13 +126344,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -125953,19 +126364,19 @@ export default { 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "started_at": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -125998,7 +126409,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5485 + 5512 ], "ordering": [ 313 @@ -126009,13 +126420,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "started_at": [ - 4526 + 4553 ], "steam_id": [ 257 @@ -126058,13 +126469,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3937 + 3964 ], "attacked_steam_id": [ 257 ], "attacker": [ - 3937 + 3964 ], "attacker_steam_id": [ 257 @@ -126085,10 +126496,10 @@ export default { 257 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -126096,10 +126507,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5492 + 5519 ], "nodes": [ - 5490 + 5517 ], "__typename": [ 80 @@ -126107,13 +126518,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5493 + 5520 ], "count": [ 40, { "columns": [ - 5498, + 5525, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -126122,31 +126533,31 @@ export default { } ], "max": [ - 5495 + 5522 ], "min": [ - 5496 + 5523 ], "stddev": [ - 5499 + 5526 ], "stddev_pop": [ - 5500 + 5527 ], "stddev_samp": [ - 5501 + 5528 ], "sum": [ - 5504 + 5531 ], "var_pop": [ - 5505 + 5532 ], "var_samp": [ - 5506 + 5533 ], "variance": [ - 5507 + 5534 ], "__typename": [ 80 @@ -126180,22 +126591,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5494 + 5521 ], "_not": [ - 5494 + 5521 ], "_or": [ - 5494 + 5521 ], "attacked": [ - 3941 + 3968 ], "attacked_steam_id": [ 259 ], "attacker": [ - 3941 + 3968 ], "attacker_steam_id": [ 259 @@ -126216,10 +126627,10 @@ export default { 259 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -126248,7 +126659,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -126277,7 +126688,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -126285,37 +126696,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3950 + 3977 ], "attacked_steam_id": [ - 2979 + 3006 ], "attacker": [ - 3950 + 3977 ], "attacker_steam_id": [ - 2979 + 3006 ], "damage_dealt": [ - 2979 + 3006 ], "flash_count": [ - 2979 + 3006 ], "headshot_kills": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -126402,7 +126813,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5503 + 5530 ], "ordering": [ 313 @@ -126434,7 +126845,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -126546,37 +126957,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "rounds_played": [ 40 @@ -126590,10 +127001,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5512 + 5539 ], "nodes": [ - 5508 + 5535 ], "__typename": [ 80 @@ -126601,7 +127012,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5511 + 5538 ], "__typename": [ 80 @@ -126609,13 +127020,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5526 + 5553 ], "distinct": [ 5 ], "filter": [ - 5517 + 5544 ], "predicate": [ 41 @@ -126626,13 +127037,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5515 + 5542 ], "count": [ 40, { "columns": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -126641,31 +127052,31 @@ export default { } ], "max": [ - 5520 + 5547 ], "min": [ - 5522 + 5549 ], "stddev": [ - 5528 + 5555 ], "stddev_pop": [ - 5530 + 5557 ], "stddev_samp": [ - 5532 + 5559 ], "sum": [ - 5536 + 5563 ], "var_pop": [ - 5539 + 5566 ], "var_samp": [ - 5541 + 5568 ], "variance": [ - 5543 + 5570 ], "__typename": [ 80 @@ -126673,37 +127084,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5516 + 5543 ], "count": [ - 2979 + 3006 ], "max": [ - 5521 + 5548 ], "min": [ - 5523 + 5550 ], "stddev": [ - 5529 + 5556 ], "stddev_pop": [ - 5531 + 5558 ], "stddev_samp": [ - 5533 + 5560 ], "sum": [ - 5537 + 5564 ], "var_pop": [ - 5540 + 5567 ], "var_samp": [ - 5542 + 5569 ], "variance": [ - 5544 + 5571 ], "__typename": [ 80 @@ -126711,7 +127122,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5519 + 5546 ], "__typename": [ 80 @@ -126748,28 +127159,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -126777,46 +127188,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5517 + 5544 ], "_not": [ - 5517 + 5544 ], "_or": [ - 5517 + 5544 ], "adr": [ - 2978 + 3005 ], "apr": [ - 2978 + 3005 ], "dpr": [ - 2978 + 3005 ], "hltv_rating": [ - 2978 + 3005 ], "kast_pct": [ - 2978 + 3005 ], "kpr": [ - 2978 + 3005 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "rounds_played": [ 41 @@ -126830,22 +127241,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "rounds_played": [ 40 @@ -126859,37 +127270,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match": [ - 2812 + 2839 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2646 + 2673 ], "match_map_id": [ - 5026 + 5053 ], "player": [ - 3948 + 3975 ], "rounds_played": [ 40 @@ -126903,28 +127314,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -126938,34 +127349,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -126973,28 +127384,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -127008,34 +127419,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_map_id": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127046,7 +127457,7 @@ export default { 40 ], "returning": [ - 5508 + 5535 ], "__typename": [ 80 @@ -127054,43 +127465,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127099,28 +127510,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -127163,28 +127574,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127221,28 +127632,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127279,28 +127690,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127308,7 +127719,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5535 + 5562 ], "ordering": [ 313 @@ -127319,28 +127730,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -127354,22 +127765,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2977 + 3004 ], "apr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "rounds_played": [ 40 @@ -127383,28 +127794,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127412,13 +127823,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5518 + 5545 ], "_set": [ - 5527 + 5554 ], "where": [ - 5517 + 5544 ], "__typename": [ 80 @@ -127455,28 +127866,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127513,28 +127924,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127571,28 +127982,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2979 + 3006 ], "apr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -127600,52 +128011,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2977 + 3004 ], "awp_kills": [ 40 ], "awp_share": [ - 2977 + 3004 ], "deaths": [ 40 ], "dpr": [ - 2977 + 3004 ], "entry_rate": [ - 2977 + 3004 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kills": [ 40 ], "kpr": [ - 2977 + 3004 ], "lineup_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "match_map": [ - 2628 + 2655 ], "match_map_id": [ - 5026 + 5053 ], "open_deaths": [ 40 @@ -127657,7 +128068,7 @@ export default { 40 ], "player": [ - 3937 + 3964 ], "role": [ 80 @@ -127669,7 +128080,7 @@ export default { 257 ], "support_idx": [ - 2977 + 3004 ], "total_kills": [ 40 @@ -127689,10 +128100,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5547 + 5574 ], "nodes": [ - 5545 + 5572 ], "__typename": [ 80 @@ -127700,13 +128111,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5548 + 5575 ], "count": [ 40, { "columns": [ - 5553, + 5580, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -127715,31 +128126,31 @@ export default { } ], "max": [ - 5550 + 5577 ], "min": [ - 5551 + 5578 ], "stddev": [ - 5554 + 5581 ], "stddev_pop": [ - 5555 + 5582 ], "stddev_samp": [ - 5556 + 5583 ], "sum": [ - 5559 + 5586 ], "var_pop": [ - 5560 + 5587 ], "var_samp": [ - 5561 + 5588 ], "variance": [ - 5562 + 5589 ], "__typename": [ 80 @@ -127815,61 +128226,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5549 + 5576 ], "_not": [ - 5549 + 5576 ], "_or": [ - 5549 + 5576 ], "adr": [ - 2978 + 3005 ], "awp_kills": [ 41 ], "awp_share": [ - 2978 + 3005 ], "deaths": [ 41 ], "dpr": [ - 2978 + 3005 ], "entry_rate": [ - 2978 + 3005 ], "flash_assists": [ 41 ], "hltv_rating": [ - 2978 + 3005 ], "kast_pct": [ - 2978 + 3005 ], "kills": [ 41 ], "kpr": [ - 2978 + 3005 ], "lineup_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "match_map": [ - 2637 + 2664 ], "match_map_id": [ - 5028 + 5055 ], "open_deaths": [ 41 @@ -127881,7 +128292,7 @@ export default { 41 ], "player": [ - 3941 + 3968 ], "role": [ 82 @@ -127893,7 +128304,7 @@ export default { 259 ], "support_idx": [ - 2978 + 3005 ], "total_kills": [ 41 @@ -127913,46 +128324,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2977 + 3004 ], "awp_kills": [ 40 ], "awp_share": [ - 2977 + 3004 ], "deaths": [ 40 ], "dpr": [ - 2977 + 3004 ], "entry_rate": [ - 2977 + 3004 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kills": [ 40 ], "kpr": [ - 2977 + 3004 ], "lineup_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "open_deaths": [ 40 @@ -127973,7 +128384,7 @@ export default { 257 ], "support_idx": [ - 2977 + 3004 ], "total_kills": [ 40 @@ -127993,46 +128404,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2977 + 3004 ], "awp_kills": [ 40 ], "awp_share": [ - 2977 + 3004 ], "deaths": [ 40 ], "dpr": [ - 2977 + 3004 ], "entry_rate": [ - 2977 + 3004 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kills": [ 40 ], "kpr": [ - 2977 + 3004 ], "lineup_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "open_deaths": [ 40 @@ -128053,7 +128464,7 @@ export default { 257 ], "support_idx": [ - 2977 + 3004 ], "total_kills": [ 40 @@ -128073,88 +128484,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2979 + 3006 ], "awp_kills": [ - 2979 + 3006 ], "awp_share": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "entry_rate": [ - 2979 + 3006 ], "flash_assists": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "lineup_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "match_map": [ - 2648 + 2675 ], "match_map_id": [ - 2979 + 3006 ], "open_deaths": [ - 2979 + 3006 ], "open_kills": [ - 2979 + 3006 ], "opening_attempts": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "role": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "support_idx": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "trade_kill_successes": [ - 2979 + 3006 ], "traded_death_successes": [ - 2979 + 3006 ], "util_damage": [ - 2979 + 3006 ], "__typename": [ 80 @@ -128367,7 +128778,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5558 + 5585 ], "ordering": [ 313 @@ -128378,46 +128789,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2977 + 3004 ], "awp_kills": [ 40 ], "awp_share": [ - 2977 + 3004 ], "deaths": [ 40 ], "dpr": [ - 2977 + 3004 ], "entry_rate": [ - 2977 + 3004 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kills": [ 40 ], "kpr": [ - 2977 + 3004 ], "lineup_id": [ - 5026 + 5053 ], "match_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026 + 5053 ], "open_deaths": [ 40 @@ -128438,7 +128849,7 @@ export default { 257 ], "support_idx": [ - 2977 + 3004 ], "total_kills": [ 40 @@ -128458,37 +128869,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2977 + 3004 ], "awp_kills": [ 40 ], "awp_share": [ - 2977 + 3004 ], "deaths": [ 40 ], "dpr": [ - 2977 + 3004 ], "entry_rate": [ - 2977 + 3004 ], "flash_assists": [ 40 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kills": [ 40 ], "kpr": [ - 2977 + 3004 ], "open_deaths": [ 40 @@ -128506,7 +128917,7 @@ export default { 257 ], "support_idx": [ - 2977 + 3004 ], "total_kills": [ 40 @@ -128742,16 +129153,16 @@ export default { 2304 ], "map_id": [ - 5026 + 5053 ], "match": [ - 2794 + 2821 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -128771,10 +129182,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5565 + 5592 ], "nodes": [ - 5563 + 5590 ], "__typename": [ 80 @@ -128782,13 +129193,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5566 + 5593 ], "count": [ 40, { "columns": [ - 5571, + 5598, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -128797,31 +129208,31 @@ export default { } ], "max": [ - 5568 + 5595 ], "min": [ - 5569 + 5596 ], "stddev": [ - 5572 + 5599 ], "stddev_pop": [ - 5573 + 5600 ], "stddev_samp": [ - 5574 + 5601 ], "sum": [ - 5577 + 5604 ], "var_pop": [ - 5578 + 5605 ], "var_samp": [ - 5579 + 5606 ], "variance": [ - 5580 + 5607 ], "__typename": [ 80 @@ -128846,13 +129257,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5567 + 5594 ], "_not": [ - 5567 + 5594 ], "_or": [ - 5567 + 5594 ], "assists": [ 41 @@ -128867,16 +129278,16 @@ export default { 2313 ], "map_id": [ - 5028 + 5055 ], "match": [ - 2803 + 2830 ], "match_created_at": [ - 4527 + 4554 ], "match_id": [ - 5028 + 5055 ], "match_result": [ 82 @@ -128905,13 +129316,13 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -128940,13 +129351,13 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -128966,40 +129377,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "map": [ 2323 ], "map_id": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_created_at": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "match_result": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129059,7 +129470,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5576 + 5603 ], "ordering": [ 313 @@ -129079,13 +129490,13 @@ export default { 40 ], "map_id": [ - 5026 + 5053 ], "match_created_at": [ - 4526 + 4553 ], "match_id": [ - 5026 + 5053 ], "match_result": [ 80 @@ -129173,28 +129584,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match": [ - 2794 + 2821 ], "match_id": [ - 5026 + 5053 ], "player": [ - 3937 + 3964 ], "rounds_played": [ 40 @@ -129208,10 +129619,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5583 + 5610 ], "nodes": [ - 5581 + 5608 ], "__typename": [ 80 @@ -129219,13 +129630,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5584 + 5611 ], "count": [ 40, { "columns": [ - 5589, + 5616, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -129234,31 +129645,31 @@ export default { } ], "max": [ - 5586 + 5613 ], "min": [ - 5587 + 5614 ], "stddev": [ - 5590 + 5617 ], "stddev_pop": [ - 5591 + 5618 ], "stddev_samp": [ - 5592 + 5619 ], "sum": [ - 5595 + 5622 ], "var_pop": [ - 5596 + 5623 ], "var_samp": [ - 5597 + 5624 ], "variance": [ - 5598 + 5625 ], "__typename": [ 80 @@ -129292,37 +129703,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5585 + 5612 ], "_not": [ - 5585 + 5612 ], "_or": [ - 5585 + 5612 ], "adr": [ - 2978 + 3005 ], "dpr": [ - 2978 + 3005 ], "hltv_rating": [ - 2978 + 3005 ], "kast_pct": [ - 2978 + 3005 ], "kpr": [ - 2978 + 3005 ], "match": [ - 2803 + 2830 ], "match_id": [ - 5028 + 5055 ], "player": [ - 3941 + 3968 ], "rounds_played": [ 41 @@ -129336,22 +129747,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -129365,22 +129776,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -129394,34 +129805,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2979 + 3006 ], "dpr": [ - 2979 + 3006 ], "hltv_rating": [ - 2979 + 3006 ], "kast_pct": [ - 2979 + 3006 ], "kpr": [ - 2979 + 3006 ], "match": [ - 2814 + 2841 ], "match_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "rounds_played": [ - 2979 + 3006 ], "steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129508,7 +129919,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5594 + 5621 ], "ordering": [ 313 @@ -129519,22 +129930,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "match_id": [ - 5026 + 5053 ], "rounds_played": [ 40 @@ -129548,19 +129959,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2977 + 3004 ], "dpr": [ - 2977 + 3004 ], "hltv_rating": [ - 2977 + 3004 ], "kast_pct": [ - 2977 + 3004 ], "kpr": [ - 2977 + 3004 ], "rounds_played": [ 40 @@ -129658,7 +130069,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "round": [ 40 @@ -129669,10 +130080,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5603 + 5630 ], "nodes": [ - 5599 + 5626 ], "__typename": [ 80 @@ -129680,7 +130091,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5602 + 5629 ], "__typename": [ 80 @@ -129688,13 +130099,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5615 + 5642 ], "distinct": [ 5 ], "filter": [ - 5608 + 5635 ], "predicate": [ 41 @@ -129705,13 +130116,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5606 + 5633 ], "count": [ 40, { "columns": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -129720,31 +130131,31 @@ export default { } ], "max": [ - 5610 + 5637 ], "min": [ - 5612 + 5639 ], "stddev": [ - 5616 + 5643 ], "stddev_pop": [ - 5618 + 5645 ], "stddev_samp": [ - 5620 + 5647 ], "sum": [ - 5624 + 5651 ], "var_pop": [ - 5626 + 5653 ], "var_samp": [ - 5628 + 5655 ], "variance": [ - 5630 + 5657 ], "__typename": [ 80 @@ -129752,37 +130163,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5607 + 5634 ], "count": [ - 2979 + 3006 ], "max": [ - 5611 + 5638 ], "min": [ - 5613 + 5640 ], "stddev": [ - 5617 + 5644 ], "stddev_pop": [ - 5619 + 5646 ], "stddev_samp": [ - 5621 + 5648 ], "sum": [ - 5625 + 5652 ], "var_pop": [ - 5627 + 5654 ], "var_samp": [ - 5629 + 5656 ], "variance": [ - 5631 + 5658 ], "__typename": [ 80 @@ -129790,7 +130201,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5609 + 5636 ], "__typename": [ 80 @@ -129812,13 +130223,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129826,13 +130237,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5608 + 5635 ], "_not": [ - 5608 + 5635 ], "_or": [ - 5608 + 5635 ], "attacker_steam_id": [ 259 @@ -129841,7 +130252,7 @@ export default { 259 ], "match_id": [ - 5028 + 5055 ], "round": [ 41 @@ -129858,7 +130269,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "round": [ 40 @@ -129875,7 +130286,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "round": [ 40 @@ -129886,16 +130297,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129909,7 +130320,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "round": [ 40 @@ -129920,16 +130331,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129937,16 +130348,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "match_id": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129969,13 +130380,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -129997,13 +130408,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130025,13 +130436,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130039,7 +130450,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5623 + 5650 ], "ordering": [ 313 @@ -130056,7 +130467,7 @@ export default { 257 ], "match_id": [ - 5026 + 5053 ], "round": [ 40 @@ -130081,13 +130492,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130109,13 +130520,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130137,13 +130548,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130165,13 +130576,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "round": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130179,22 +130590,22 @@ export default { }, "v_player_queue_partners": { "first_played_at": [ - 4526 + 4553 ], "last_played_at": [ - 4526 + 4553 ], "matches_together": [ 40 ], "partner": [ - 3937 + 3964 ], "partner_steam_id": [ 257 ], "player": [ - 3937 + 3964 ], "steam_id": [ 257 @@ -130208,10 +130619,10 @@ export default { }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5634 + 5661 ], "nodes": [ - 5632 + 5659 ], "__typename": [ 80 @@ -130219,13 +130630,13 @@ export default { }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5635 + 5662 ], "count": [ 40, { "columns": [ - 5640, + 5667, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -130234,31 +130645,31 @@ export default { } ], "max": [ - 5637 + 5664 ], "min": [ - 5638 + 5665 ], "stddev": [ - 5641 + 5668 ], "stddev_pop": [ - 5642 + 5669 ], "stddev_samp": [ - 5643 + 5670 ], "sum": [ - 5646 + 5673 ], "var_pop": [ - 5647 + 5674 ], "var_samp": [ - 5648 + 5675 ], "variance": [ - 5649 + 5676 ], "__typename": [ 80 @@ -130283,31 +130694,31 @@ export default { }, "v_player_queue_partners_bool_exp": { "_and": [ - 5636 + 5663 ], "_not": [ - 5636 + 5663 ], "_or": [ - 5636 + 5663 ], "first_played_at": [ - 4527 + 4554 ], "last_played_at": [ - 4527 + 4554 ], "matches_together": [ 41 ], "partner": [ - 3941 + 3968 ], "partner_steam_id": [ 259 ], "player": [ - 3941 + 3968 ], "steam_id": [ 259 @@ -130321,10 +130732,10 @@ export default { }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4526 + 4553 ], "last_played_at": [ - 4526 + 4553 ], "matches_together": [ 40 @@ -130344,10 +130755,10 @@ export default { }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4526 + 4553 ], "last_played_at": [ - 4526 + 4553 ], "matches_together": [ 40 @@ -130367,28 +130778,28 @@ export default { }, "v_player_queue_partners_order_by": { "first_played_at": [ - 2979 + 3006 ], "last_played_at": [ - 2979 + 3006 ], "matches_together": [ - 2979 + 3006 ], "partner": [ - 3950 + 3977 ], "partner_steam_id": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "steam_id": [ - 2979 + 3006 ], "wins_together": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130448,7 +130859,7 @@ export default { }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5645 + 5672 ], "ordering": [ 313 @@ -130459,10 +130870,10 @@ export default { }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4526 + 4553 ], "last_played_at": [ - 4526 + 4553 ], "matches_together": [ 40 @@ -130573,10 +130984,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5652 + 5679 ], "nodes": [ - 5650 + 5677 ], "__typename": [ 80 @@ -130584,13 +130995,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5653 + 5680 ], "count": [ 40, { "columns": [ - 5658, + 5685, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -130599,31 +131010,31 @@ export default { } ], "max": [ - 5655 + 5682 ], "min": [ - 5656 + 5683 ], "stddev": [ - 5659 + 5686 ], "stddev_pop": [ - 5660 + 5687 ], "stddev_samp": [ - 5661 + 5688 ], "sum": [ - 5664 + 5691 ], "var_pop": [ - 5665 + 5692 ], "var_samp": [ - 5666 + 5693 ], "variance": [ - 5667 + 5694 ], "__typename": [ 80 @@ -130645,13 +131056,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5654 + 5681 ], "_not": [ - 5654 + 5681 ], "_or": [ - 5654 + 5681 ], "damage": [ 259 @@ -130723,22 +131134,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2979 + 3006 ], "hits": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -130789,7 +131200,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5663 + 5690 ], "ordering": [ 313 @@ -130902,10 +131313,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5670 + 5697 ], "nodes": [ - 5668 + 5695 ], "__typename": [ 80 @@ -130913,13 +131324,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5671 + 5698 ], "count": [ 40, { "columns": [ - 5676, + 5703, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -130928,31 +131339,31 @@ export default { } ], "max": [ - 5673 + 5700 ], "min": [ - 5674 + 5701 ], "stddev": [ - 5677 + 5704 ], "stddev_pop": [ - 5678 + 5705 ], "stddev_samp": [ - 5679 + 5706 ], "sum": [ - 5682 + 5709 ], "var_pop": [ - 5683 + 5710 ], "var_samp": [ - 5684 + 5711 ], "variance": [ - 5685 + 5712 ], "__typename": [ 80 @@ -130974,13 +131385,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5672 + 5699 ], "_not": [ - 5672 + 5699 ], "_or": [ - 5672 + 5699 ], "kill_count": [ 259 @@ -131052,22 +131463,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "rounds": [ - 2979 + 3006 ], "source": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "with": [ - 2979 + 3006 ], "__typename": [ 80 @@ -131118,7 +131529,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5681 + 5708 ], "ordering": [ 313 @@ -131211,7 +131622,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -131220,7 +131631,7 @@ export default { 2285 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131243,10 +131654,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5692 + 5719 ], "nodes": [ - 5686 + 5713 ], "__typename": [ 80 @@ -131254,13 +131665,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5689 + 5716 ], "bool_or": [ - 5690 + 5717 ], "count": [ - 5691 + 5718 ], "__typename": [ 80 @@ -131268,13 +131679,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5704 + 5731 ], "distinct": [ 5 ], "filter": [ - 5695 + 5722 ], "predicate": [ 6 @@ -131285,13 +131696,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5705 + 5732 ], "distinct": [ 5 ], "filter": [ - 5695 + 5722 ], "predicate": [ 6 @@ -131302,13 +131713,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5703 + 5730 ], "distinct": [ 5 ], "filter": [ - 5695 + 5722 ], "predicate": [ 41 @@ -131322,7 +131733,7 @@ export default { 40, { "columns": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -131331,10 +131742,10 @@ export default { } ], "max": [ - 5697 + 5724 ], "min": [ - 5699 + 5726 ], "__typename": [ 80 @@ -131342,13 +131753,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2979 + 3006 ], "max": [ - 5698 + 5725 ], "min": [ - 5700 + 5727 ], "__typename": [ 80 @@ -131356,7 +131767,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5696 + 5723 ], "__typename": [ 80 @@ -131364,19 +131775,19 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5695 + 5722 ], "_not": [ - 5695 + 5722 ], "_or": [ - 5695 + 5722 ], "active_pool": [ 6 ], "id": [ - 5028 + 5055 ], "label": [ 82 @@ -131385,7 +131796,7 @@ export default { 2288 ], "map_pool_id": [ - 5028 + 5055 ], "name": [ 82 @@ -131411,7 +131822,7 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 @@ -131420,7 +131831,7 @@ export default { 2294 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131443,13 +131854,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 5026 + 5053 ], "label": [ 80 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131472,28 +131883,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "map_pool_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -131501,13 +131912,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 5026 + 5053 ], "label": [ 80 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131530,28 +131941,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "map_pool_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -131562,7 +131973,7 @@ export default { 40 ], "returning": [ - 5686 + 5713 ], "__typename": [ 80 @@ -131570,34 +131981,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "label": [ - 2979 + 3006 ], "map_pool": [ 2296 ], "map_pool_id": [ - 2979 + 3006 ], "name": [ - 2979 + 3006 ], "patch": [ - 2979 + 3006 ], "poster": [ - 2979 + 3006 ], "type": [ - 2979 + 3006 ], "workshop_map_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -131611,13 +132022,13 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131640,7 +132051,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5708 + 5735 ], "ordering": [ 313 @@ -131654,13 +132065,13 @@ export default { 5 ], "id": [ - 5026 + 5053 ], "label": [ 80 ], "map_pool_id": [ - 5026 + 5053 ], "name": [ 80 @@ -131683,10 +132094,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5706 + 5733 ], "where": [ - 5695 + 5722 ], "__typename": [ 80 @@ -131711,10 +132122,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5712 + 5739 ], "nodes": [ - 5710 + 5737 ], "__typename": [ 80 @@ -131722,13 +132133,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5713 + 5740 ], "count": [ 40, { "columns": [ - 5718, + 5745, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -131737,31 +132148,31 @@ export default { } ], "max": [ - 5715 + 5742 ], "min": [ - 5716 + 5743 ], "stddev": [ - 5719 + 5746 ], "stddev_pop": [ - 5720 + 5747 ], "stddev_samp": [ - 5721 + 5748 ], "sum": [ - 5724 + 5751 ], "var_pop": [ - 5725 + 5752 ], "var_samp": [ - 5726 + 5753 ], "variance": [ - 5727 + 5754 ], "__typename": [ 80 @@ -131786,13 +132197,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5714 + 5741 ], "_not": [ - 5714 + 5741 ], "_or": [ - 5714 + 5741 ], "busy_accounts": [ 41 @@ -131846,16 +132257,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2979 + 3006 ], "free_accounts": [ - 2979 + 3006 ], "id": [ - 2979 + 3006 ], "total_accounts": [ - 2979 + 3006 ], "__typename": [ 80 @@ -131915,7 +132326,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5723 + 5750 ], "ordering": [ 313 @@ -132038,10 +132449,10 @@ export default { 257 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132049,10 +132460,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5730 + 5757 ], "nodes": [ - 5728 + 5755 ], "__typename": [ 80 @@ -132060,13 +132471,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5731 + 5758 ], "count": [ 40, { "columns": [ - 5738, + 5765, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -132075,31 +132486,31 @@ export default { } ], "max": [ - 5734 + 5761 ], "min": [ - 5735 + 5762 ], "stddev": [ - 5739 + 5766 ], "stddev_pop": [ - 5740 + 5767 ], "stddev_samp": [ - 5741 + 5768 ], "sum": [ - 5744 + 5771 ], "var_pop": [ - 5745 + 5772 ], "var_samp": [ - 5746 + 5773 ], "variance": [ - 5747 + 5774 ], "__typename": [ 80 @@ -132139,13 +132550,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5732 + 5759 ], "_not": [ - 5732 + 5759 ], "_or": [ - 5732 + 5759 ], "avg_duel_elo": [ 41 @@ -132175,10 +132586,10 @@ export default { 259 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -132213,10 +132624,10 @@ export default { 257 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132251,7 +132662,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132286,7 +132697,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132294,7 +132705,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5733 + 5760 ], "__typename": [ 80 @@ -132302,37 +132713,37 @@ export default { }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 2979 + 3006 ], "avg_elo": [ - 2979 + 3006 ], "avg_faceit_elo": [ - 2979 + 3006 ], "avg_faceit_level": [ - 2979 + 3006 ], "avg_premier": [ - 2979 + 3006 ], "avg_wingman_elo": [ - 2979 + 3006 ], "max_elo": [ - 2979 + 3006 ], "min_elo": [ - 2979 + 3006 ], "roster_size": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -132437,7 +132848,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5743 + 5770 ], "ordering": [ 313 @@ -132475,7 +132886,7 @@ export default { 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132617,16 +133028,16 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 ], "team": [ - 4479 + 4506 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132634,10 +133045,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5750 + 5777 ], "nodes": [ - 5748 + 5775 ], "__typename": [ 80 @@ -132645,13 +133056,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5751 + 5778 ], "count": [ 40, { "columns": [ - 5758, + 5785, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -132660,31 +133071,31 @@ export default { } ], "max": [ - 5754 + 5781 ], "min": [ - 5755 + 5782 ], "stddev": [ - 5759 + 5786 ], "stddev_pop": [ - 5760 + 5787 ], "stddev_samp": [ - 5761 + 5788 ], "sum": [ - 5764 + 5791 ], "var_pop": [ - 5765 + 5792 ], "var_samp": [ - 5766 + 5793 ], "variance": [ - 5767 + 5794 ], "__typename": [ 80 @@ -132709,13 +133120,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5752 + 5779 ], "_not": [ - 5752 + 5779 ], "_or": [ - 5752 + 5779 ], "late_cancels": [ 259 @@ -132724,16 +133135,16 @@ export default { 259 ], "reliability_pct": [ - 2978 + 3005 ], "scrims_completed": [ 259 ], "team": [ - 4490 + 4517 ], "team_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -132747,16 +133158,16 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 ], "team": [ - 4499 + 4526 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132770,13 +133181,13 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132790,13 +133201,13 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132804,7 +133215,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5753 + 5780 ], "__typename": [ 80 @@ -132812,22 +133223,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2979 + 3006 ], "no_shows": [ - 2979 + 3006 ], "reliability_pct": [ - 2979 + 3006 ], "scrims_completed": [ - 2979 + 3006 ], "team": [ - 4501 + 4528 ], "team_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -132887,7 +133298,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5763 + 5790 ], "ordering": [ 313 @@ -132904,13 +133315,13 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 ], "team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -132924,7 +133335,7 @@ export default { 257 ], "reliability_pct": [ - 2977 + 3004 ], "scrims_completed": [ 257 @@ -133022,10 +133433,10 @@ export default { 40 ], "stage": [ - 4787 + 4814 ], "team": [ - 4920 + 4947 ], "team_kdr": [ 1689 @@ -133037,10 +133448,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -133051,10 +133462,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5782 + 5809 ], "nodes": [ - 5768 + 5795 ], "__typename": [ 80 @@ -133062,31 +133473,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5771 + 5798 ], "corr": [ - 5772 + 5799 ], "count": [ - 5774 + 5801 ], "covar_samp": [ - 5775 + 5802 ], "max": [ - 5777 + 5804 ], "min": [ - 5778 + 5805 ], "stddev_samp": [ - 5779 + 5806 ], "sum": [ - 5780 + 5807 ], "var_samp": [ - 5781 + 5808 ], "__typename": [ 80 @@ -133094,13 +133505,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5801 + 5828 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133111,13 +133522,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5773 + 5800 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133128,10 +133539,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5802 + 5829 ], "Y": [ - 5802 + 5829 ], "__typename": [ 80 @@ -133139,13 +133550,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5800 + 5827 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 41 @@ -133156,13 +133567,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5776 + 5803 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133173,10 +133584,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5803 + 5830 ], "Y": [ - 5803 + 5830 ], "__typename": [ 80 @@ -133184,13 +133595,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5804 + 5831 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133201,13 +133612,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5805 + 5832 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133218,13 +133629,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5806 + 5833 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133235,13 +133646,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5807 + 5834 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133252,13 +133663,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5808 + 5835 ], "distinct": [ 5 ], "filter": [ - 5787 + 5814 ], "predicate": [ 1690 @@ -133269,13 +133680,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5785 + 5812 ], "count": [ 40, { "columns": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -133284,31 +133695,31 @@ export default { } ], "max": [ - 5791 + 5818 ], "min": [ - 5793 + 5820 ], "stddev": [ - 5810 + 5837 ], "stddev_pop": [ - 5812 + 5839 ], "stddev_samp": [ - 5814 + 5841 ], "sum": [ - 5818 + 5845 ], "var_pop": [ - 5822 + 5849 ], "var_samp": [ - 5824 + 5851 ], "variance": [ - 5826 + 5853 ], "__typename": [ 80 @@ -133316,37 +133727,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5786 + 5813 ], "count": [ - 2979 + 3006 ], "max": [ - 5792 + 5819 ], "min": [ - 5794 + 5821 ], "stddev": [ - 5811 + 5838 ], "stddev_pop": [ - 5813 + 5840 ], "stddev_samp": [ - 5815 + 5842 ], "sum": [ - 5819 + 5846 ], "var_pop": [ - 5823 + 5850 ], "var_samp": [ - 5825 + 5852 ], "variance": [ - 5827 + 5854 ], "__typename": [ 80 @@ -133354,10 +133765,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5790 + 5817 ], "on_conflict": [ - 5797 + 5824 ], "__typename": [ 80 @@ -133418,52 +133829,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -133471,13 +133882,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5787 + 5814 ], "_not": [ - 5787 + 5814 ], "_or": [ - 5787 + 5814 ], "group_number": [ 41 @@ -133516,10 +133927,10 @@ export default { 41 ], "stage": [ - 4799 + 4826 ], "team": [ - 4929 + 4956 ], "team_kdr": [ 1690 @@ -133531,10 +133942,10 @@ export default { 41 ], "tournament_stage_id": [ - 5028 + 5055 ], "tournament_team_id": [ - 5028 + 5055 ], "wins": [ 41 @@ -133635,10 +134046,10 @@ export default { 40 ], "stage": [ - 4811 + 4838 ], "team": [ - 4938 + 4965 ], "team_kdr": [ 1689 @@ -133650,10 +134061,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -133709,10 +134120,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -133723,58 +134134,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -133827,10 +134238,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -133841,58 +134252,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -133903,7 +134314,7 @@ export default { 40 ], "returning": [ - 5768 + 5795 ], "__typename": [ 80 @@ -133911,10 +134322,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5790 + 5817 ], "on_conflict": [ - 5797 + 5824 ], "__typename": [ 80 @@ -133922,13 +134333,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5788 + 5815 ], "update_columns": [ - 5820 + 5847 ], "where": [ - 5787 + 5814 ], "__typename": [ 80 @@ -133936,64 +134347,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "stage": [ - 4813 + 4840 ], "team": [ - 4940 + 4967 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament_stage_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134001,10 +134412,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -134066,10 +134477,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -134133,52 +134544,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134239,52 +134650,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134345,52 +134756,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134398,7 +134809,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5817 + 5844 ], "ordering": [ 313 @@ -134454,10 +134865,10 @@ export default { 40 ], "tournament_stage_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -134521,52 +134932,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134575,13 +134986,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5789 + 5816 ], "_set": [ - 5809 + 5836 ], "where": [ - 5787 + 5814 ], "__typename": [ 80 @@ -134642,52 +135053,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134748,52 +135159,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134854,52 +135265,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2979 + 3006 ], "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "placement": [ - 2979 + 3006 ], "rank": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -134934,7 +135345,7 @@ export default { 40 ], "team": [ - 4920 + 4947 ], "team_kdr": [ 1689 @@ -134946,13 +135357,13 @@ export default { 40 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -134963,10 +135374,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5842 + 5869 ], "nodes": [ - 5828 + 5855 ], "__typename": [ 80 @@ -134974,31 +135385,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5831 + 5858 ], "corr": [ - 5832 + 5859 ], "count": [ - 5834 + 5861 ], "covar_samp": [ - 5835 + 5862 ], "max": [ - 5837 + 5864 ], "min": [ - 5838 + 5865 ], "stddev_samp": [ - 5839 + 5866 ], "sum": [ - 5840 + 5867 ], "var_samp": [ - 5841 + 5868 ], "__typename": [ 80 @@ -135006,13 +135417,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5855 + 5882 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135023,13 +135434,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5833 + 5860 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135040,10 +135451,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5856 + 5883 ], "Y": [ - 5856 + 5883 ], "__typename": [ 80 @@ -135051,13 +135462,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5854 + 5881 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 41 @@ -135068,13 +135479,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5836 + 5863 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135085,10 +135496,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5857 + 5884 ], "Y": [ - 5857 + 5884 ], "__typename": [ 80 @@ -135096,13 +135507,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5858 + 5885 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135113,13 +135524,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5859 + 5886 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135130,13 +135541,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5860 + 5887 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135147,13 +135558,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5861 + 5888 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135164,13 +135575,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5862 + 5889 ], "distinct": [ 5 ], "filter": [ - 5847 + 5874 ], "predicate": [ 1690 @@ -135181,13 +135592,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5845 + 5872 ], "count": [ 40, { "columns": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -135196,31 +135607,31 @@ export default { } ], "max": [ - 5849 + 5876 ], "min": [ - 5851 + 5878 ], "stddev": [ - 5863 + 5890 ], "stddev_pop": [ - 5865 + 5892 ], "stddev_samp": [ - 5867 + 5894 ], "sum": [ - 5871 + 5898 ], "var_pop": [ - 5873 + 5900 ], "var_samp": [ - 5875 + 5902 ], "variance": [ - 5877 + 5904 ], "__typename": [ 80 @@ -135228,37 +135639,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5846 + 5873 ], "count": [ - 2979 + 3006 ], "max": [ - 5850 + 5877 ], "min": [ - 5852 + 5879 ], "stddev": [ - 5864 + 5891 ], "stddev_pop": [ - 5866 + 5893 ], "stddev_samp": [ - 5868 + 5895 ], "sum": [ - 5872 + 5899 ], "var_pop": [ - 5874 + 5901 ], "var_samp": [ - 5876 + 5903 ], "variance": [ - 5878 + 5905 ], "__typename": [ 80 @@ -135266,7 +135677,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5848 + 5875 ], "__typename": [ 80 @@ -135318,43 +135729,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135362,13 +135773,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5847 + 5874 ], "_not": [ - 5847 + 5874 ], "_or": [ - 5847 + 5874 ], "head_to_head_match_wins": [ 41 @@ -135398,7 +135809,7 @@ export default { 41 ], "team": [ - 4929 + 4956 ], "team_kdr": [ 1690 @@ -135410,13 +135821,13 @@ export default { 41 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "tournament_team_id": [ - 5028 + 5055 ], "wins": [ 41 @@ -135454,7 +135865,7 @@ export default { 40 ], "team": [ - 4938 + 4965 ], "team_kdr": [ 1689 @@ -135466,13 +135877,13 @@ export default { 40 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -135519,10 +135930,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -135533,49 +135944,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135619,10 +136030,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -135633,49 +136044,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135683,55 +136094,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team": [ - 4940 + 4967 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "tournament_team_id": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135792,43 +136203,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135880,43 +136291,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -135968,43 +136379,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136012,7 +136423,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5870 + 5897 ], "ordering": [ 313 @@ -136059,10 +136470,10 @@ export default { 40 ], "tournament_id": [ - 5026 + 5053 ], "tournament_team_id": [ - 5026 + 5053 ], "wins": [ 40 @@ -136117,43 +136528,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136205,43 +136616,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136293,43 +136704,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136381,43 +136792,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2979 + 3006 ], "head_to_head_rounds_won": [ - 2979 + 3006 ], "losses": [ - 2979 + 3006 ], "maps_lost": [ - 2979 + 3006 ], "maps_won": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "matches_remaining": [ - 2979 + 3006 ], "rounds_lost": [ - 2979 + 3006 ], "rounds_won": [ - 2979 + 3006 ], "team_kdr": [ - 2979 + 3006 ], "total_deaths": [ - 2979 + 3006 ], "total_kills": [ - 2979 + 3006 ], "wins": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136446,16 +136857,16 @@ export default { 40 ], "player": [ - 3937 + 3964 ], "player_steam_id": [ 257 ], "tournament": [ - 4962 + 4989 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -136463,10 +136874,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5893 + 5920 ], "nodes": [ - 5879 + 5906 ], "__typename": [ 80 @@ -136474,31 +136885,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5882 + 5909 ], "corr": [ - 5883 + 5910 ], "count": [ - 5885 + 5912 ], "covar_samp": [ - 5886 + 5913 ], "max": [ - 5888 + 5915 ], "min": [ - 5889 + 5916 ], "stddev_samp": [ - 5890 + 5917 ], "sum": [ - 5891 + 5918 ], "var_samp": [ - 5892 + 5919 ], "__typename": [ 80 @@ -136506,13 +136917,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5906 + 5933 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136523,13 +136934,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5884 + 5911 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136540,10 +136951,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5907 + 5934 ], "Y": [ - 5907 + 5934 ], "__typename": [ 80 @@ -136551,13 +136962,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5905 + 5932 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 41 @@ -136568,13 +136979,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5887 + 5914 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136585,10 +136996,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5908 + 5935 ], "Y": [ - 5908 + 5935 ], "__typename": [ 80 @@ -136596,13 +137007,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5909 + 5936 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136613,13 +137024,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5910 + 5937 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136630,13 +137041,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5911 + 5938 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136647,13 +137058,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5912 + 5939 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136664,13 +137075,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5913 + 5940 ], "distinct": [ 5 ], "filter": [ - 5898 + 5925 ], "predicate": [ 1690 @@ -136681,13 +137092,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5896 + 5923 ], "count": [ 40, { "columns": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -136696,31 +137107,31 @@ export default { } ], "max": [ - 5900 + 5927 ], "min": [ - 5902 + 5929 ], "stddev": [ - 5914 + 5941 ], "stddev_pop": [ - 5916 + 5943 ], "stddev_samp": [ - 5918 + 5945 ], "sum": [ - 5922 + 5949 ], "var_pop": [ - 5924 + 5951 ], "var_samp": [ - 5926 + 5953 ], "variance": [ - 5928 + 5955 ], "__typename": [ 80 @@ -136728,37 +137139,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5897 + 5924 ], "count": [ - 2979 + 3006 ], "max": [ - 5901 + 5928 ], "min": [ - 5903 + 5930 ], "stddev": [ - 5915 + 5942 ], "stddev_pop": [ - 5917 + 5944 ], "stddev_samp": [ - 5919 + 5946 ], "sum": [ - 5923 + 5950 ], "var_pop": [ - 5925 + 5952 ], "var_samp": [ - 5927 + 5954 ], "variance": [ - 5929 + 5956 ], "__typename": [ 80 @@ -136766,7 +137177,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5899 + 5926 ], "__typename": [ 80 @@ -136803,28 +137214,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -136832,13 +137243,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5898 + 5925 ], "_not": [ - 5898 + 5925 ], "_or": [ - 5898 + 5925 ], "assists": [ 41 @@ -136862,16 +137273,16 @@ export default { 41 ], "player": [ - 3941 + 3968 ], "player_steam_id": [ 259 ], "tournament": [ - 4983 + 5010 ], "tournament_id": [ - 5028 + 5055 ], "__typename": [ 80 @@ -136900,16 +137311,16 @@ export default { 40 ], "player": [ - 3948 + 3975 ], "player_steam_id": [ 257 ], "tournament": [ - 4992 + 5019 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -136941,7 +137352,7 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -136949,31 +137360,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137005,7 +137416,7 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -137013,31 +137424,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137045,37 +137456,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player": [ - 3950 + 3977 ], "player_steam_id": [ - 2979 + 3006 ], "tournament": [ - 4994 + 5021 ], "tournament_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137121,28 +137532,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137179,28 +137590,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137237,28 +137648,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137266,7 +137677,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5921 + 5948 ], "ordering": [ 313 @@ -137301,7 +137712,7 @@ export default { 257 ], "tournament_id": [ - 5026 + 5053 ], "__typename": [ 80 @@ -137338,28 +137749,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137396,28 +137807,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137454,28 +137865,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137512,28 +137923,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2979 + 3006 ], "deaths": [ - 2979 + 3006 ], "headshot_percentage": [ - 2979 + 3006 ], "headshots": [ - 2979 + 3006 ], "kdr": [ - 2979 + 3006 ], "kills": [ - 2979 + 3006 ], "matches_played": [ - 2979 + 3006 ], "player_steam_id": [ - 2979 + 3006 ], "__typename": [ 80 @@ -137588,11 +137999,11 @@ export default { 100, { "map_id": [ - 5026, + 5053, "uuid!" ], "map_pool_id": [ - 5026, + 5053, "uuid!" ] } @@ -137645,7 +138056,7 @@ export default { 119, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137698,7 +138109,7 @@ export default { 160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137751,7 +138162,7 @@ export default { 188, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137804,7 +138215,7 @@ export default { 229, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137857,7 +138268,7 @@ export default { 262, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137910,7 +138321,7 @@ export default { 314, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -137966,7 +138377,7 @@ export default { 346, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -138019,7 +138430,7 @@ export default { 373, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -138072,7 +138483,7 @@ export default { 418, { "draft_game_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -138129,7 +138540,7 @@ export default { 463, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -140567,11 +140978,11 @@ export default { 1430, { "event_id": [ - 5026, + 5053, "uuid!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -140624,7 +141035,7 @@ export default { 1448, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -140677,7 +141088,7 @@ export default { 1470, { "media_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -140734,7 +141145,7 @@ export default { 1531, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -140791,7 +141202,7 @@ export default { 1572, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -140848,11 +141259,11 @@ export default { 1613, { "event_id": [ - 5026, + 5053, "uuid!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } @@ -140905,11 +141316,11 @@ export default { 1637, { "event_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } @@ -140962,7 +141373,7 @@ export default { 1661, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141178,7 +141589,7 @@ export default { 1802, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141214,7 +141625,7 @@ export default { 36, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "target_steam_id": [ @@ -141455,14 +141866,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 3420, + 3447, { "args": [ 1837, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -141472,23 +141883,23 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3421, + 3448, { "args": [ 1837, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -141498,11 +141909,11 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], @@ -141598,7 +142009,7 @@ export default { 1869, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141651,7 +142062,7 @@ export default { 1897, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141704,7 +142115,7 @@ export default { 1938, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141757,7 +142168,7 @@ export default { 1979, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141810,7 +142221,7 @@ export default { 2020, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141863,7 +142274,7 @@ export default { 2045, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141916,7 +142327,7 @@ export default { 2078, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -141969,7 +142380,7 @@ export default { 2119, { "league_team_season_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -142026,7 +142437,7 @@ export default { 2160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -142079,7 +142490,7 @@ export default { 2202, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -142147,7 +142558,7 @@ export default { 2221, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -142200,7 +142611,7 @@ export default { 2240, { "lobby_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -142257,7 +142668,7 @@ export default { 2285, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -142310,16 +142721,69 @@ export default { 2304, { "id": [ - 5026, + 5053, "uuid!" ] } ], - "match_clips": [ + "match_camera_tokens": [ 2333, { "distinct_on": [ - 2355, + 2347, + "[match_camera_tokens_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2345, + "[match_camera_tokens_order_by!]" + ], + "where": [ + 2337 + ] + } + ], + "match_camera_tokens_aggregate": [ + 2334, + { + "distinct_on": [ + 2347, + "[match_camera_tokens_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2345, + "[match_camera_tokens_order_by!]" + ], + "where": [ + 2337 + ] + } + ], + "match_camera_tokens_by_pk": [ + 2333, + { + "id": [ + 5053, + "uuid!" + ] + } + ], + "match_clips": [ + 2360, + { + "distinct_on": [ + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -142329,19 +142793,19 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_aggregate": [ - 2334, + 2361, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -142351,28 +142815,28 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_by_pk": [ - 2333, + 2360, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_demo_sessions": [ - 2375, + 2402, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -142382,19 +142846,19 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], "match_demo_sessions_aggregate": [ - 2376, + 2403, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -142404,28 +142868,28 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], "match_demo_sessions_by_pk": [ - 2375, + 2402, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_lineup_players": [ - 2421, + 2448, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -142435,19 +142899,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match_lineup_players_aggregate": [ - 2422, + 2449, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -142457,28 +142921,28 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match_lineup_players_by_pk": [ - 2421, + 2448, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_lineups": [ - 2466, + 2493, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -142488,19 +142952,19 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "match_lineups_aggregate": [ - 2467, + 2494, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -142510,28 +142974,28 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "match_lineups_by_pk": [ - 2466, + 2493, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_demos": [ - 2508, + 2535, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -142541,19 +143005,19 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "match_map_demos_aggregate": [ - 2509, + 2536, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -142563,28 +143027,28 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "match_map_demos_by_pk": [ - 2508, + 2535, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_rounds": [ - 2559, + 2586, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -142594,19 +143058,19 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "match_map_rounds_aggregate": [ - 2560, + 2587, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -142616,28 +143080,28 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "match_map_rounds_by_pk": [ - 2559, + 2586, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -142647,19 +143111,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_map_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -142669,28 +143133,28 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_map_veto_picks_by_pk": [ - 2600, + 2627, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_maps": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -142700,19 +143164,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -142722,28 +143186,28 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_by_pk": [ - 2628, + 2655, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_options": [ - 2670, + 2697, { "distinct_on": [ - 2685, + 2712, "[match_options_select_column!]" ], "limit": [ @@ -142753,19 +143217,19 @@ export default { 40 ], "order_by": [ - 2683, + 2710, "[match_options_order_by!]" ], "where": [ - 2674 + 2701 ] } ], "match_options_aggregate": [ - 2671, + 2698, { "distinct_on": [ - 2685, + 2712, "[match_options_select_column!]" ], "limit": [ @@ -142775,28 +143239,28 @@ export default { 40 ], "order_by": [ - 2683, + 2710, "[match_options_order_by!]" ], "where": [ - 2674 + 2701 ] } ], "match_options_by_pk": [ - 2670, + 2697, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_region_veto_picks": [ - 2698, + 2725, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -142806,19 +143270,19 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], "match_region_veto_picks_aggregate": [ - 2699, + 2726, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -142828,28 +143292,28 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], "match_region_veto_picks_by_pk": [ - 2698, + 2725, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_streams": [ - 2726, + 2753, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -142859,19 +143323,19 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "match_streams_aggregate": [ - 2727, + 2754, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -142881,28 +143345,28 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "match_streams_by_pk": [ - 2726, + 2753, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_type_cfgs": [ - 2776, + 2803, { "distinct_on": [ - 2788, + 2815, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -142912,19 +143376,19 @@ export default { 40 ], "order_by": [ - 2786, + 2813, "[match_type_cfgs_order_by!]" ], "where": [ - 2779 + 2806 ] } ], "match_type_cfgs_aggregate": [ - 2777, + 2804, { "distinct_on": [ - 2788, + 2815, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -142934,16 +143398,16 @@ export default { 40 ], "order_by": [ - 2786, + 2813, "[match_type_cfgs_order_by!]" ], "where": [ - 2779 + 2806 ] } ], "match_type_cfgs_by_pk": [ - 2776, + 2803, { "type": [ 740, @@ -142952,10 +143416,10 @@ export default { } ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -142965,19 +143429,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_aggregate": [ - 2795, + 2822, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -142987,19 +143451,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_by_pk": [ - 2794, + 2821, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -143008,10 +143472,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2836, + 2863, { "distinct_on": [ - 2848, + 2875, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -143021,19 +143485,19 @@ export default { 40 ], "order_by": [ - 2846, + 2873, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2839 + 2866 ] } ], "migration_hashes_hashes_aggregate": [ - 2837, + 2864, { "distinct_on": [ - 2848, + 2875, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -143043,16 +143507,16 @@ export default { 40 ], "order_by": [ - 2846, + 2873, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2839 + 2866 ] } ], "migration_hashes_hashes_by_pk": [ - 2836, + 2863, { "name": [ 80, @@ -143061,10 +143525,10 @@ export default { } ], "my_friends": [ - 2854, + 2881, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -143074,19 +143538,19 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], "my_friends_aggregate": [ - 2855, + 2882, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -143096,11 +143560,11 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], @@ -143108,7 +143572,7 @@ export default { 50, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -143117,10 +143581,10 @@ export default { 50 ], "news_articles": [ - 2900, + 2927, { "distinct_on": [ - 2914, + 2941, "[news_articles_select_column!]" ], "limit": [ @@ -143130,19 +143594,19 @@ export default { 40 ], "order_by": [ - 2912, + 2939, "[news_articles_order_by!]" ], "where": [ - 2904 + 2931 ] } ], "news_articles_aggregate": [ - 2901, + 2928, { "distinct_on": [ - 2914, + 2941, "[news_articles_select_column!]" ], "limit": [ @@ -143152,28 +143616,28 @@ export default { 40 ], "order_by": [ - 2912, + 2939, "[news_articles_order_by!]" ], "where": [ - 2904 + 2931 ] } ], "news_articles_by_pk": [ - 2900, + 2927, { "id": [ - 5026, + 5053, "uuid!" ] } ], "notifications": [ - 2927, + 2954, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -143183,19 +143647,19 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "notifications_aggregate": [ - 2928, + 2955, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -143205,28 +143669,28 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "notifications_by_pk": [ - 2927, + 2954, { "id": [ - 5026, + 5053, "uuid!" ] } ], "pending_match_import_players": [ - 2980, + 3007, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -143236,19 +143700,19 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "pending_match_import_players_aggregate": [ - 2981, + 3008, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -143258,32 +143722,32 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "pending_match_import_players_by_pk": [ - 2980, + 3007, { "steam_id": [ 257, "bigint!" ], "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "pending_match_imports": [ - 3021, + 3048, { "distinct_on": [ - 3036, + 3063, "[pending_match_imports_select_column!]" ], "limit": [ @@ -143293,19 +143757,19 @@ export default { 40 ], "order_by": [ - 3034, + 3061, "[pending_match_imports_order_by!]" ], "where": [ - 3025 + 3052 ] } ], "pending_match_imports_aggregate": [ - 3022, + 3049, { "distinct_on": [ - 3036, + 3063, "[pending_match_imports_select_column!]" ], "limit": [ @@ -143315,28 +143779,28 @@ export default { 40 ], "order_by": [ - 3034, + 3061, "[pending_match_imports_order_by!]" ], "where": [ - 3025 + 3052 ] } ], "pending_match_imports_by_pk": [ - 3021, + 3048, { "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "player_aim_stats_demo": [ - 3049, + 3076, { "distinct_on": [ - 3063, + 3090, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -143346,19 +143810,19 @@ export default { 40 ], "order_by": [ - 3061, + 3088, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3053 + 3080 ] } ], "player_aim_stats_demo_aggregate": [ - 3050, + 3077, { "distinct_on": [ - 3063, + 3090, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -143368,32 +143832,32 @@ export default { 40 ], "order_by": [ - 3061, + 3088, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3053 + 3080 ] } ], "player_aim_stats_demo_by_pk": [ - 3049, + 3076, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3076, + 3103, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -143403,19 +143867,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "player_aim_weapon_stats_aggregate": [ - 3077, + 3104, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -143425,19 +143889,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "player_aim_weapon_stats_by_pk": [ - 3076, + 3103, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -143451,10 +143915,10 @@ export default { } ], "player_assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -143464,19 +143928,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -143486,16 +143950,16 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_by_pk": [ - 3117, + 3144, { "attacked_steam_id": [ 257, @@ -143506,20 +143970,20 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_career_stats_v": [ - 3162, + 3189, { "distinct_on": [ - 3170, + 3197, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -143529,19 +143993,19 @@ export default { 40 ], "order_by": [ - 3169, + 3196, "[player_career_stats_v_order_by!]" ], "where": [ - 3166 + 3193 ] } ], "player_career_stats_v_aggregate": [ - 3163, + 3190, { "distinct_on": [ - 3170, + 3197, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -143551,19 +144015,19 @@ export default { 40 ], "order_by": [ - 3169, + 3196, "[player_career_stats_v_order_by!]" ], "where": [ - 3166 + 3193 ] } ], "player_damages": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -143573,19 +144037,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -143595,36 +144059,36 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_by_pk": [ - 3180, + 3207, { "id": [ - 5026, + 5053, "uuid!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_elo": [ - 3221, + 3248, { "distinct_on": [ - 3235, + 3262, "[player_elo_select_column!]" ], "limit": [ @@ -143634,19 +144098,19 @@ export default { 40 ], "order_by": [ - 3233, + 3260, "[player_elo_order_by!]" ], "where": [ - 3225 + 3252 ] } ], "player_elo_aggregate": [ - 3222, + 3249, { "distinct_on": [ - 3235, + 3262, "[player_elo_select_column!]" ], "limit": [ @@ -143656,19 +144120,19 @@ export default { 40 ], "order_by": [ - 3233, + 3260, "[player_elo_order_by!]" ], "where": [ - 3225 + 3252 ] } ], "player_elo_by_pk": [ - 3221, + 3248, { "match_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -143682,10 +144146,10 @@ export default { } ], "player_faceit_rank_history": [ - 3248, + 3275, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -143695,19 +144159,19 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], "player_faceit_rank_history_aggregate": [ - 3249, + 3276, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -143717,28 +144181,28 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], "player_faceit_rank_history_by_pk": [ - 3248, + 3275, { "id": [ - 5026, + 5053, "uuid!" ] } ], "player_flashes": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -143748,19 +144212,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_flashes_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -143770,16 +144234,16 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_flashes_by_pk": [ - 3289, + 3316, { "attacked_steam_id": [ 257, @@ -143790,20 +144254,20 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -143813,19 +144277,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -143835,16 +144299,16 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_by_pk": [ - 3334, + 3361, { "attacked_steam_id": [ 257, @@ -143855,20 +144319,20 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3346, + 3373, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -143878,19 +144342,19 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], "player_kills_by_weapon_aggregate": [ - 3347, + 3374, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -143900,16 +144364,16 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], "player_kills_by_weapon_by_pk": [ - 3346, + 3373, { "player_steam_id": [ 257, @@ -143922,10 +144386,10 @@ export default { } ], "player_leaderboard_rank": [ - 3420, + 3447, { "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -143935,19 +144399,19 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "player_leaderboard_rank_aggregate": [ - 3421, + 3448, { "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -143957,19 +144421,19 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "player_match_map_stats": [ - 3443, + 3470, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -143979,19 +144443,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "player_match_map_stats_aggregate": [ - 3444, + 3471, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -144001,19 +144465,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "player_match_map_stats_by_pk": [ - 3443, + 3470, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -144023,10 +144487,10 @@ export default { } ], "player_match_performance_v": [ - 3484, + 3511, { "distinct_on": [ - 3492, + 3519, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -144036,19 +144500,19 @@ export default { 40 ], "order_by": [ - 3491, + 3518, "[player_match_performance_v_order_by!]" ], "where": [ - 3488 + 3515 ] } ], "player_match_performance_v_aggregate": [ - 3485, + 3512, { "distinct_on": [ - 3492, + 3519, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -144058,19 +144522,19 @@ export default { 40 ], "order_by": [ - 3491, + 3518, "[player_match_performance_v_order_by!]" ], "where": [ - 3488 + 3515 ] } ], "player_match_stats_v": [ - 3502, + 3529, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -144080,19 +144544,19 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "player_match_stats_v_aggregate": [ - 3503, + 3530, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -144102,19 +144566,19 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "player_objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -144124,19 +144588,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -144146,19 +144610,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_by_pk": [ - 3535, + 3562, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -144166,16 +144630,16 @@ export default { "bigint!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_performance_v": [ - 3576, + 3603, { "distinct_on": [ - 3584, + 3611, "[player_performance_v_select_column!]" ], "limit": [ @@ -144185,19 +144649,19 @@ export default { 40 ], "order_by": [ - 3583, + 3610, "[player_performance_v_order_by!]" ], "where": [ - 3580 + 3607 ] } ], "player_performance_v_aggregate": [ - 3577, + 3604, { "distinct_on": [ - 3584, + 3611, "[player_performance_v_select_column!]" ], "limit": [ @@ -144207,19 +144671,19 @@ export default { 40 ], "order_by": [ - 3583, + 3610, "[player_performance_v_order_by!]" ], "where": [ - 3580 + 3607 ] } ], "player_premier_rank_history": [ - 3594, + 3621, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -144229,19 +144693,19 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "player_premier_rank_history_aggregate": [ - 3595, + 3622, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -144251,28 +144715,28 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "player_premier_rank_history_by_pk": [ - 3594, + 3621, { "id": [ - 5026, + 5053, "uuid!" ] } ], "player_sanctions": [ - 3635, + 3662, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -144282,19 +144746,19 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "player_sanctions_aggregate": [ - 3636, + 3663, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -144304,32 +144768,32 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "player_sanctions_by_pk": [ - 3635, + 3662, { "created_at": [ - 4526, + 4553, "timestamptz!" ], "id": [ - 5026, + 5053, "uuid!" ] } ], "player_season_stats": [ - 3676, + 3703, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -144339,19 +144803,19 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "player_season_stats_aggregate": [ - 3677, + 3704, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -144361,32 +144825,32 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "player_season_stats_by_pk": [ - 3676, + 3703, { "player_steam_id": [ 257, "bigint!" ], "season_id": [ - 5026, + 5053, "uuid!" ] } ], "player_stats": [ - 3735, + 3762, { "distinct_on": [ - 3750, + 3777, "[player_stats_select_column!]" ], "limit": [ @@ -144396,19 +144860,19 @@ export default { 40 ], "order_by": [ - 3748, + 3775, "[player_stats_order_by!]" ], "where": [ - 3739 + 3766 ] } ], "player_stats_aggregate": [ - 3736, + 3763, { "distinct_on": [ - 3750, + 3777, "[player_stats_select_column!]" ], "limit": [ @@ -144418,16 +144882,16 @@ export default { 40 ], "order_by": [ - 3748, + 3775, "[player_stats_order_by!]" ], "where": [ - 3739 + 3766 ] } ], "player_stats_by_pk": [ - 3735, + 3762, { "player_steam_id": [ 257, @@ -144436,10 +144900,10 @@ export default { } ], "player_steam_bot_friend": [ - 3763, + 3790, { "distinct_on": [ - 3782, + 3809, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -144449,19 +144913,19 @@ export default { 40 ], "order_by": [ - 3779, + 3806, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3768 + 3795 ] } ], "player_steam_bot_friend_aggregate": [ - 3764, + 3791, { "distinct_on": [ - 3782, + 3809, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -144471,16 +144935,16 @@ export default { 40 ], "order_by": [ - 3779, + 3806, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3768 + 3795 ] } ], "player_steam_bot_friend_by_pk": [ - 3763, + 3790, { "steam_id": [ 257, @@ -144489,10 +144953,10 @@ export default { } ], "player_steam_match_auth": [ - 3795, + 3822, { "distinct_on": [ - 3809, + 3836, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -144502,19 +144966,19 @@ export default { 40 ], "order_by": [ - 3807, + 3834, "[player_steam_match_auth_order_by!]" ], "where": [ - 3799 + 3826 ] } ], "player_steam_match_auth_aggregate": [ - 3796, + 3823, { "distinct_on": [ - 3809, + 3836, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -144524,16 +144988,16 @@ export default { 40 ], "order_by": [ - 3807, + 3834, "[player_steam_match_auth_order_by!]" ], "where": [ - 3799 + 3826 ] } ], "player_steam_match_auth_by_pk": [ - 3795, + 3822, { "steam_id": [ 257, @@ -144542,10 +145006,10 @@ export default { } ], "player_unused_utility": [ - 3822, + 3849, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -144555,19 +145019,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utility_aggregate": [ - 3823, + 3850, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -144577,19 +145041,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utility_by_pk": [ - 3822, + 3849, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -144599,10 +145063,10 @@ export default { } ], "player_utility": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -144612,19 +145076,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utility_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -144634,36 +145098,36 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utility_by_pk": [ - 3863, + 3890, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3904, + 3931, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -144673,19 +145137,19 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], "player_weapon_stats_v_aggregate": [ - 3905, + 3932, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -144695,19 +145159,19 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], "players": [ - 3937, + 3964, { "distinct_on": [ - 3952, + 3979, "[players_select_column!]" ], "limit": [ @@ -144717,19 +145181,19 @@ export default { 40 ], "order_by": [ - 3950, + 3977, "[players_order_by!]" ], "where": [ - 3941 + 3968 ] } ], "players_aggregate": [ - 3938, + 3965, { "distinct_on": [ - 3952, + 3979, "[players_select_column!]" ], "limit": [ @@ -144739,16 +145203,16 @@ export default { 40 ], "order_by": [ - 3950, + 3977, "[players_order_by!]" ], "where": [ - 3941 + 3968 ] } ], "players_by_pk": [ - 3937, + 3964, { "steam_id": [ 257, @@ -144757,10 +145221,10 @@ export default { } ], "plugin_versions": [ - 3965, + 3992, { "distinct_on": [ - 3979, + 4006, "[plugin_versions_select_column!]" ], "limit": [ @@ -144770,19 +145234,19 @@ export default { 40 ], "order_by": [ - 3977, + 4004, "[plugin_versions_order_by!]" ], "where": [ - 3969 + 3996 ] } ], "plugin_versions_aggregate": [ - 3966, + 3993, { "distinct_on": [ - 3979, + 4006, "[plugin_versions_select_column!]" ], "limit": [ @@ -144792,16 +145256,16 @@ export default { 40 ], "order_by": [ - 3977, + 4004, "[plugin_versions_order_by!]" ], "where": [ - 3969 + 3996 ] } ], "plugin_versions_by_pk": [ - 3965, + 3992, { "runtime": [ 1110, @@ -144830,10 +145294,10 @@ export default { } ], "seasons": [ - 3996, + 4023, { "distinct_on": [ - 4011, + 4038, "[seasons_select_column!]" ], "limit": [ @@ -144843,19 +145307,19 @@ export default { 40 ], "order_by": [ - 4009, + 4036, "[seasons_order_by!]" ], "where": [ - 4000 + 4027 ] } ], "seasons_aggregate": [ - 3997, + 4024, { "distinct_on": [ - 4011, + 4038, "[seasons_select_column!]" ], "limit": [ @@ -144865,28 +145329,28 @@ export default { 40 ], "order_by": [ - 4009, + 4036, "[seasons_order_by!]" ], "where": [ - 4000 + 4027 ] } ], "seasons_by_pk": [ - 3996, + 4023, { "id": [ - 5026, + 5053, "uuid!" ] } ], "server_regions": [ - 4024, + 4051, { "distinct_on": [ - 4038, + 4065, "[server_regions_select_column!]" ], "limit": [ @@ -144896,19 +145360,19 @@ export default { 40 ], "order_by": [ - 4036, + 4063, "[server_regions_order_by!]" ], "where": [ - 4028 + 4055 ] } ], "server_regions_aggregate": [ - 4025, + 4052, { "distinct_on": [ - 4038, + 4065, "[server_regions_select_column!]" ], "limit": [ @@ -144918,16 +145382,16 @@ export default { 40 ], "order_by": [ - 4036, + 4063, "[server_regions_order_by!]" ], "where": [ - 4028 + 4055 ] } ], "server_regions_by_pk": [ - 4024, + 4051, { "value": [ 80, @@ -144936,10 +145400,10 @@ export default { } ], "servers": [ - 4051, + 4078, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -144949,19 +145413,19 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_aggregate": [ - 4052, + 4079, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -144971,28 +145435,28 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_by_pk": [ - 4051, + 4078, { "id": [ - 5026, + 5053, "uuid!" ] } ], "settings": [ - 4097, + 4124, { "distinct_on": [ - 4109, + 4136, "[settings_select_column!]" ], "limit": [ @@ -145002,19 +145466,19 @@ export default { 40 ], "order_by": [ - 4107, + 4134, "[settings_order_by!]" ], "where": [ - 4100 + 4127 ] } ], "settings_aggregate": [ - 4098, + 4125, { "distinct_on": [ - 4109, + 4136, "[settings_select_column!]" ], "limit": [ @@ -145024,16 +145488,16 @@ export default { 40 ], "order_by": [ - 4107, + 4134, "[settings_order_by!]" ], "where": [ - 4100 + 4127 ] } ], "settings_by_pk": [ - 4097, + 4124, { "name": [ 80, @@ -145045,10 +145509,10 @@ export default { 74 ], "steam_account_claims": [ - 4117, + 4144, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -145058,19 +145522,19 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "steam_account_claims_aggregate": [ - 4118, + 4145, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -145080,28 +145544,28 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "steam_account_claims_by_pk": [ - 4117, + 4144, { "id": [ - 5026, + 5053, "uuid!" ] } ], "steam_accounts": [ - 4141, + 4168, { "distinct_on": [ - 4156, + 4183, "[steam_accounts_select_column!]" ], "limit": [ @@ -145111,19 +145575,19 @@ export default { 40 ], "order_by": [ - 4154, + 4181, "[steam_accounts_order_by!]" ], "where": [ - 4145 + 4172 ] } ], "steam_accounts_aggregate": [ - 4142, + 4169, { "distinct_on": [ - 4156, + 4183, "[steam_accounts_select_column!]" ], "limit": [ @@ -145133,28 +145597,28 @@ export default { 40 ], "order_by": [ - 4154, + 4181, "[steam_accounts_order_by!]" ], "where": [ - 4145 + 4172 ] } ], "steam_accounts_by_pk": [ - 4141, + 4168, { "id": [ - 5026, + 5053, "uuid!" ] } ], "system_alerts": [ - 4169, + 4196, { "distinct_on": [ - 4183, + 4210, "[system_alerts_select_column!]" ], "limit": [ @@ -145164,19 +145628,19 @@ export default { 40 ], "order_by": [ - 4181, + 4208, "[system_alerts_order_by!]" ], "where": [ - 4173 + 4200 ] } ], "system_alerts_aggregate": [ - 4170, + 4197, { "distinct_on": [ - 4183, + 4210, "[system_alerts_select_column!]" ], "limit": [ @@ -145186,19 +145650,19 @@ export default { 40 ], "order_by": [ - 4181, + 4208, "[system_alerts_order_by!]" ], "where": [ - 4173 + 4200 ] } ], "system_alerts_by_pk": [ - 4169, + 4196, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -145207,16 +145671,16 @@ export default { 87, { "team_id": [ - 5026, + 5053, "uuid!" ] } ], "team_invites": [ - 4196, + 4223, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -145226,19 +145690,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_invites_aggregate": [ - 4197, + 4224, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -145248,28 +145712,28 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_invites_by_pk": [ - 4196, + 4223, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_roster": [ - 4237, + 4264, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -145279,19 +145743,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_roster_aggregate": [ - 4238, + 4265, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -145301,32 +145765,32 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_roster_by_pk": [ - 4237, + 4264, { "player_steam_id": [ 257, "bigint!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_alerts": [ - 4282, + 4309, { "distinct_on": [ - 4296, + 4323, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -145336,19 +145800,19 @@ export default { 40 ], "order_by": [ - 4294, + 4321, "[team_scrim_alerts_order_by!]" ], "where": [ - 4286 + 4313 ] } ], "team_scrim_alerts_aggregate": [ - 4283, + 4310, { "distinct_on": [ - 4296, + 4323, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -145358,28 +145822,28 @@ export default { 40 ], "order_by": [ - 4294, + 4321, "[team_scrim_alerts_order_by!]" ], "where": [ - 4286 + 4313 ] } ], "team_scrim_alerts_by_pk": [ - 4282, + 4309, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_availability": [ - 4309, + 4336, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -145389,19 +145853,19 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "team_scrim_availability_aggregate": [ - 4310, + 4337, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -145411,28 +145875,28 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "team_scrim_availability_by_pk": [ - 4309, + 4336, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4337, + 4364, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -145442,19 +145906,19 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "team_scrim_request_proposals_aggregate": [ - 4338, + 4365, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -145464,28 +145928,28 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "team_scrim_request_proposals_by_pk": [ - 4337, + 4364, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_requests": [ - 4378, + 4405, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -145495,19 +145959,19 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], "team_scrim_requests_aggregate": [ - 4379, + 4406, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -145517,28 +145981,28 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], "team_scrim_requests_by_pk": [ - 4378, + 4405, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_settings": [ - 4424, + 4451, { "distinct_on": [ - 4439, + 4466, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -145548,19 +146012,19 @@ export default { 40 ], "order_by": [ - 4437, + 4464, "[team_scrim_settings_order_by!]" ], "where": [ - 4428 + 4455 ] } ], "team_scrim_settings_aggregate": [ - 4425, + 4452, { "distinct_on": [ - 4439, + 4466, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -145570,28 +146034,28 @@ export default { 40 ], "order_by": [ - 4437, + 4464, "[team_scrim_settings_order_by!]" ], "where": [ - 4428 + 4455 ] } ], "team_scrim_settings_by_pk": [ - 4424, + 4451, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_suggestions": [ - 4452, + 4479, { "distinct_on": [ - 4466, + 4493, "[team_suggestions_select_column!]" ], "limit": [ @@ -145601,19 +146065,19 @@ export default { 40 ], "order_by": [ - 4464, + 4491, "[team_suggestions_order_by!]" ], "where": [ - 4456 + 4483 ] } ], "team_suggestions_aggregate": [ - 4453, + 4480, { "distinct_on": [ - 4466, + 4493, "[team_suggestions_select_column!]" ], "limit": [ @@ -145623,28 +146087,28 @@ export default { 40 ], "order_by": [ - 4464, + 4491, "[team_suggestions_order_by!]" ], "where": [ - 4456 + 4483 ] } ], "team_suggestions_by_pk": [ - 4452, + 4479, { "id": [ - 5026, + 5053, "uuid!" ] } ], "teams": [ - 4479, + 4506, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -145654,19 +146118,19 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "teams_aggregate": [ - 4480, + 4507, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -145676,19 +146140,19 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "teams_by_pk": [ - 4479, + 4506, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -145697,10 +146161,10 @@ export default { 93 ], "tournament_awards": [ - 4528, + 4555, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -145710,19 +146174,19 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_awards_aggregate": [ - 4529, + 4556, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -145732,28 +146196,28 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_awards_by_pk": [ - 4528, + 4555, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_brackets": [ - 4570, + 4597, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -145763,19 +146227,19 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "tournament_brackets_aggregate": [ - 4571, + 4598, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -145785,28 +146249,28 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "tournament_brackets_by_pk": [ - 4570, + 4597, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_categories": [ - 4616, + 4643, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -145816,19 +146280,19 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "tournament_categories_aggregate": [ - 4617, + 4644, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -145838,32 +146302,32 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "tournament_categories_by_pk": [ - 4616, + 4643, { "category": [ 1312, "e_tournament_categories_enum!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_organizer_teams": [ - 4640, + 4667, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -145873,19 +146337,19 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "tournament_organizer_teams_aggregate": [ - 4641, + 4668, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -145895,32 +146359,32 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "tournament_organizer_teams_by_pk": [ - 4640, + 4667, { "team_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_organizers": [ - 4664, + 4691, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -145930,19 +146394,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_organizers_aggregate": [ - 4665, + 4692, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -145952,32 +146416,32 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_organizers_by_pk": [ - 4664, + 4691, { "steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_prizes": [ - 4705, + 4732, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -145987,19 +146451,19 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "tournament_prizes_aggregate": [ - 4706, + 4733, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -146009,28 +146473,28 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "tournament_prizes_by_pk": [ - 4705, + 4732, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_stage_windows": [ - 4746, + 4773, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -146040,19 +146504,19 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], "tournament_stage_windows_aggregate": [ - 4747, + 4774, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -146062,28 +146526,28 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], "tournament_stage_windows_by_pk": [ - 4746, + 4773, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_stages": [ - 4787, + 4814, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -146093,19 +146557,19 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "tournament_stages_aggregate": [ - 4788, + 4815, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -146115,28 +146579,28 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "tournament_stages_by_pk": [ - 4787, + 4814, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_team_invites": [ - 4838, + 4865, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -146146,19 +146610,19 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], "tournament_team_invites_aggregate": [ - 4839, + 4866, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -146168,28 +146632,28 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], "tournament_team_invites_by_pk": [ - 4838, + 4865, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_team_roster": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -146199,19 +146663,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_team_roster_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -146221,32 +146685,32 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_team_roster_by_pk": [ - 4879, + 4906, { "player_steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_teams": [ - 4920, + 4947, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -146256,19 +146720,19 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "tournament_teams_aggregate": [ - 4921, + 4948, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -146278,28 +146742,28 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "tournament_teams_by_pk": [ - 4920, + 4947, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournaments": [ - 4962, + 4989, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -146309,19 +146773,19 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_aggregate": [ - 4963, + 4990, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -146331,28 +146795,28 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_by_pk": [ - 4962, + 4989, { "id": [ - 5026, + 5053, "uuid!" ] } ], "v_event_player_stats": [ - 5029, + 5056, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -146362,19 +146826,19 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], "v_event_player_stats_aggregate": [ - 5030, + 5057, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -146384,19 +146848,19 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], "v_gpu_pool_status": [ - 5080, + 5107, { "distinct_on": [ - 5088, + 5115, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -146406,19 +146870,19 @@ export default { 40 ], "order_by": [ - 5087, + 5114, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5084 + 5111 ] } ], "v_gpu_pool_status_aggregate": [ - 5081, + 5108, { "distinct_on": [ - 5088, + 5115, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -146428,19 +146892,19 @@ export default { 40 ], "order_by": [ - 5087, + 5114, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5084 + 5111 ] } ], "v_league_division_standings": [ - 5098, + 5125, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -146450,19 +146914,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "v_league_division_standings_aggregate": [ - 5099, + 5126, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -146472,19 +146936,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "v_league_season_player_stats": [ - 5131, + 5158, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -146494,19 +146958,19 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], "v_league_season_player_stats_aggregate": [ - 5132, + 5159, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -146516,19 +146980,19 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], "v_match_captains": [ - 5182, + 5209, { "distinct_on": [ - 5194, + 5221, "[v_match_captains_select_column!]" ], "limit": [ @@ -146538,19 +147002,19 @@ export default { 40 ], "order_by": [ - 5193, + 5220, "[v_match_captains_order_by!]" ], "where": [ - 5186 + 5213 ] } ], "v_match_captains_aggregate": [ - 5183, + 5210, { "distinct_on": [ - 5194, + 5221, "[v_match_captains_select_column!]" ], "limit": [ @@ -146560,19 +147024,19 @@ export default { 40 ], "order_by": [ - 5193, + 5220, "[v_match_captains_order_by!]" ], "where": [ - 5186 + 5213 ] } ], "v_match_clutches": [ - 5206, + 5233, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -146582,19 +147046,19 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], "v_match_clutches_aggregate": [ - 5207, + 5234, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -146604,19 +147068,19 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], "v_match_kill_pairs": [ - 5239, + 5266, { "distinct_on": [ - 5247, + 5274, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -146626,19 +147090,19 @@ export default { 40 ], "order_by": [ - 5246, + 5273, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5243 + 5270 ] } ], "v_match_kill_pairs_aggregate": [ - 5240, + 5267, { "distinct_on": [ - 5247, + 5274, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -146648,19 +147112,19 @@ export default { 40 ], "order_by": [ - 5246, + 5273, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5243 + 5270 ] } ], "v_match_lineup_buy_types": [ - 5257, + 5284, { "distinct_on": [ - 5265, + 5292, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -146670,19 +147134,19 @@ export default { 40 ], "order_by": [ - 5264, + 5291, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5261 + 5288 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5258, + 5285, { "distinct_on": [ - 5265, + 5292, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -146692,19 +147156,19 @@ export default { 40 ], "order_by": [ - 5264, + 5291, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5261 + 5288 ] } ], "v_match_lineup_map_stats": [ - 5275, + 5302, { "distinct_on": [ - 5283, + 5310, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -146714,19 +147178,19 @@ export default { 40 ], "order_by": [ - 5282, + 5309, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5279 + 5306 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5276, + 5303, { "distinct_on": [ - 5283, + 5310, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -146736,19 +147200,19 @@ export default { 40 ], "order_by": [ - 5282, + 5309, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5279 + 5306 ] } ], "v_match_map_backup_rounds": [ - 5293, + 5320, { "distinct_on": [ - 5304, + 5331, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -146758,19 +147222,19 @@ export default { 40 ], "order_by": [ - 5303, + 5330, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5297 + 5324 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5294, + 5321, { "distinct_on": [ - 5304, + 5331, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -146780,19 +147244,19 @@ export default { 40 ], "order_by": [ - 5303, + 5330, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5297 + 5324 ] } ], "v_match_player_buy_types": [ - 5316, + 5343, { "distinct_on": [ - 5324, + 5351, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -146802,19 +147266,19 @@ export default { 40 ], "order_by": [ - 5323, + 5350, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5320 + 5347 ] } ], "v_match_player_buy_types_aggregate": [ - 5317, + 5344, { "distinct_on": [ - 5324, + 5351, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -146824,19 +147288,19 @@ export default { 40 ], "order_by": [ - 5323, + 5350, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5320 + 5347 ] } ], "v_match_player_opening_duels": [ - 5334, + 5361, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -146846,19 +147310,19 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "v_match_player_opening_duels_aggregate": [ - 5335, + 5362, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -146868,19 +147332,19 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "v_player_arch_nemesis": [ - 5367, + 5394, { "distinct_on": [ - 5375, + 5402, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -146890,19 +147354,19 @@ export default { 40 ], "order_by": [ - 5374, + 5401, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5371 + 5398 ] } ], "v_player_arch_nemesis_aggregate": [ - 5368, + 5395, { "distinct_on": [ - 5375, + 5402, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -146912,19 +147376,19 @@ export default { 40 ], "order_by": [ - 5374, + 5401, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5371 + 5398 ] } ], "v_player_damage": [ - 5385, + 5412, { "distinct_on": [ - 5393, + 5420, "[v_player_damage_select_column!]" ], "limit": [ @@ -146934,19 +147398,19 @@ export default { 40 ], "order_by": [ - 5392, + 5419, "[v_player_damage_order_by!]" ], "where": [ - 5389 + 5416 ] } ], "v_player_damage_aggregate": [ - 5386, + 5413, { "distinct_on": [ - 5393, + 5420, "[v_player_damage_select_column!]" ], "limit": [ @@ -146956,19 +147420,19 @@ export default { 40 ], "order_by": [ - 5392, + 5419, "[v_player_damage_order_by!]" ], "where": [ - 5389 + 5416 ] } ], "v_player_elo": [ - 5403, + 5430, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -146978,19 +147442,19 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "v_player_elo_aggregate": [ - 5404, + 5431, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -147000,19 +147464,19 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "v_player_map_losses": [ - 5454, + 5481, { "distinct_on": [ - 5462, + 5489, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -147022,19 +147486,19 @@ export default { 40 ], "order_by": [ - 5461, + 5488, "[v_player_map_losses_order_by!]" ], "where": [ - 5458 + 5485 ] } ], "v_player_map_losses_aggregate": [ - 5455, + 5482, { "distinct_on": [ - 5462, + 5489, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -147044,19 +147508,19 @@ export default { 40 ], "order_by": [ - 5461, + 5488, "[v_player_map_losses_order_by!]" ], "where": [ - 5458 + 5485 ] } ], "v_player_map_wins": [ - 5472, + 5499, { "distinct_on": [ - 5480, + 5507, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -147066,19 +147530,19 @@ export default { 40 ], "order_by": [ - 5479, + 5506, "[v_player_map_wins_order_by!]" ], "where": [ - 5476 + 5503 ] } ], "v_player_map_wins_aggregate": [ - 5473, + 5500, { "distinct_on": [ - 5480, + 5507, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -147088,19 +147552,19 @@ export default { 40 ], "order_by": [ - 5479, + 5506, "[v_player_map_wins_order_by!]" ], "where": [ - 5476 + 5503 ] } ], "v_player_match_head_to_head": [ - 5490, + 5517, { "distinct_on": [ - 5498, + 5525, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -147110,19 +147574,19 @@ export default { 40 ], "order_by": [ - 5497, + 5524, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5494 + 5521 ] } ], "v_player_match_head_to_head_aggregate": [ - 5491, + 5518, { "distinct_on": [ - 5498, + 5525, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -147132,19 +147596,19 @@ export default { 40 ], "order_by": [ - 5497, + 5524, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5494 + 5521 ] } ], "v_player_match_map_hltv": [ - 5508, + 5535, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -147154,19 +147618,19 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "v_player_match_map_hltv_aggregate": [ - 5509, + 5536, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -147176,19 +147640,19 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "v_player_match_map_roles": [ - 5545, + 5572, { "distinct_on": [ - 5553, + 5580, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -147198,19 +147662,19 @@ export default { 40 ], "order_by": [ - 5552, + 5579, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5549 + 5576 ] } ], "v_player_match_map_roles_aggregate": [ - 5546, + 5573, { "distinct_on": [ - 5553, + 5580, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -147220,19 +147684,19 @@ export default { 40 ], "order_by": [ - 5552, + 5579, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5549 + 5576 ] } ], "v_player_match_performance": [ - 5563, + 5590, { "distinct_on": [ - 5571, + 5598, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -147242,19 +147706,19 @@ export default { 40 ], "order_by": [ - 5570, + 5597, "[v_player_match_performance_order_by!]" ], "where": [ - 5567 + 5594 ] } ], "v_player_match_performance_aggregate": [ - 5564, + 5591, { "distinct_on": [ - 5571, + 5598, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -147264,19 +147728,19 @@ export default { 40 ], "order_by": [ - 5570, + 5597, "[v_player_match_performance_order_by!]" ], "where": [ - 5567 + 5594 ] } ], "v_player_match_rating": [ - 5581, + 5608, { "distinct_on": [ - 5589, + 5616, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -147286,19 +147750,19 @@ export default { 40 ], "order_by": [ - 5588, + 5615, "[v_player_match_rating_order_by!]" ], "where": [ - 5585 + 5612 ] } ], "v_player_match_rating_aggregate": [ - 5582, + 5609, { "distinct_on": [ - 5589, + 5616, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -147308,19 +147772,19 @@ export default { 40 ], "order_by": [ - 5588, + 5615, "[v_player_match_rating_order_by!]" ], "where": [ - 5585 + 5612 ] } ], "v_player_multi_kills": [ - 5599, + 5626, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -147330,19 +147794,19 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], "v_player_multi_kills_aggregate": [ - 5600, + 5627, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -147352,19 +147816,19 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], "v_player_queue_partners": [ - 5632, + 5659, { "distinct_on": [ - 5640, + 5667, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -147374,19 +147838,19 @@ export default { 40 ], "order_by": [ - 5639, + 5666, "[v_player_queue_partners_order_by!]" ], "where": [ - 5636 + 5663 ] } ], "v_player_queue_partners_aggregate": [ - 5633, + 5660, { "distinct_on": [ - 5640, + 5667, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -147396,19 +147860,19 @@ export default { 40 ], "order_by": [ - 5639, + 5666, "[v_player_queue_partners_order_by!]" ], "where": [ - 5636 + 5663 ] } ], "v_player_weapon_damage": [ - 5650, + 5677, { "distinct_on": [ - 5658, + 5685, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -147418,19 +147882,19 @@ export default { 40 ], "order_by": [ - 5657, + 5684, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5654 + 5681 ] } ], "v_player_weapon_damage_aggregate": [ - 5651, + 5678, { "distinct_on": [ - 5658, + 5685, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -147440,19 +147904,19 @@ export default { 40 ], "order_by": [ - 5657, + 5684, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5654 + 5681 ] } ], "v_player_weapon_kills": [ - 5668, + 5695, { "distinct_on": [ - 5676, + 5703, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -147462,19 +147926,19 @@ export default { 40 ], "order_by": [ - 5675, + 5702, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5672 + 5699 ] } ], "v_player_weapon_kills_aggregate": [ - 5669, + 5696, { "distinct_on": [ - 5676, + 5703, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -147484,19 +147948,19 @@ export default { 40 ], "order_by": [ - 5675, + 5702, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5672 + 5699 ] } ], "v_pool_maps": [ - 5686, + 5713, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -147506,19 +147970,19 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], "v_pool_maps_aggregate": [ - 5687, + 5714, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -147528,19 +147992,19 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], "v_steam_account_pool_status": [ - 5710, + 5737, { "distinct_on": [ - 5718, + 5745, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -147550,19 +148014,19 @@ export default { 40 ], "order_by": [ - 5717, + 5744, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5714 + 5741 ] } ], "v_steam_account_pool_status_aggregate": [ - 5711, + 5738, { "distinct_on": [ - 5718, + 5745, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -147572,19 +148036,19 @@ export default { 40 ], "order_by": [ - 5717, + 5744, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5714 + 5741 ] } ], "v_team_ranks": [ - 5728, + 5755, { "distinct_on": [ - 5738, + 5765, "[v_team_ranks_select_column!]" ], "limit": [ @@ -147594,19 +148058,19 @@ export default { 40 ], "order_by": [ - 5737, + 5764, "[v_team_ranks_order_by!]" ], "where": [ - 5732 + 5759 ] } ], "v_team_ranks_aggregate": [ - 5729, + 5756, { "distinct_on": [ - 5738, + 5765, "[v_team_ranks_select_column!]" ], "limit": [ @@ -147616,19 +148080,19 @@ export default { 40 ], "order_by": [ - 5737, + 5764, "[v_team_ranks_order_by!]" ], "where": [ - 5732 + 5759 ] } ], "v_team_reputation": [ - 5748, + 5775, { "distinct_on": [ - 5758, + 5785, "[v_team_reputation_select_column!]" ], "limit": [ @@ -147638,19 +148102,19 @@ export default { 40 ], "order_by": [ - 5757, + 5784, "[v_team_reputation_order_by!]" ], "where": [ - 5752 + 5779 ] } ], "v_team_reputation_aggregate": [ - 5749, + 5776, { "distinct_on": [ - 5758, + 5785, "[v_team_reputation_select_column!]" ], "limit": [ @@ -147660,19 +148124,19 @@ export default { 40 ], "order_by": [ - 5757, + 5784, "[v_team_reputation_order_by!]" ], "where": [ - 5752 + 5779 ] } ], "v_team_stage_results": [ - 5768, + 5795, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -147682,19 +148146,19 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], "v_team_stage_results_aggregate": [ - 5769, + 5796, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -147704,32 +148168,32 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], "v_team_stage_results_by_pk": [ - 5768, + 5795, { "tournament_stage_id": [ - 5026, + 5053, "uuid!" ], "tournament_team_id": [ - 5026, + 5053, "uuid!" ] } ], "v_team_tournament_results": [ - 5828, + 5855, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -147739,19 +148203,19 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "v_team_tournament_results_aggregate": [ - 5829, + 5856, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -147761,19 +148225,19 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "v_tournament_player_stats": [ - 5879, + 5906, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -147783,19 +148247,19 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], "v_tournament_player_stats_aggregate": [ - 5880, + 5907, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -147805,11 +148269,11 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], @@ -147822,7 +148286,7 @@ export default { 57, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -147831,17 +148295,17 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4526 + 4553 ], "winning_lineup_id": [ - 5026 + 5053 ] } ], @@ -147849,7 +148313,7 @@ export default { 83, { "invite_id": [ - 5026, + 5053, "uuid!" ], "type": [ @@ -147862,7 +148326,7 @@ export default { 83, { "draftGameId": [ - 5026, + 5053, "uuid!" ], "steamId": [ @@ -147948,7 +148412,7 @@ export default { 83, { "game_server_node_id": [ - 5026, + 5053, "uuid!" ] } @@ -147969,7 +148433,7 @@ export default { 83, { "game_server_node_id": [ - 5026, + 5053, "uuid!" ] } @@ -147978,7 +148442,7 @@ export default { 83, { "job_id": [ - 5026, + 5053, "uuid!" ] } @@ -147987,7 +148451,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -147996,7 +148460,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -148014,7 +148478,7 @@ export default { 83, { "request_id": [ - 5026, + 5053, "uuid!" ] } @@ -148023,7 +148487,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -148032,7 +148496,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -148079,11 +148543,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4526, + 4553, "timestamptz!" ], "request_id": [ - 5026, + 5053, "uuid!" ] } @@ -148104,7 +148568,7 @@ export default { 40 ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "preset": [ @@ -148139,7 +148603,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -148194,7 +148658,7 @@ export default { 83, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148203,7 +148667,7 @@ export default { 83, { "clip_id": [ - 5026, + 5053, "uuid!" ] } @@ -148221,7 +148685,7 @@ export default { 83, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148255,7 +148719,7 @@ export default { 83, { "tournament_id": [ - 5026, + 5053, "uuid!" ] } @@ -148273,11 +148737,11 @@ export default { 100, { "map_id": [ - 5026, + 5053, "uuid!" ], "map_pool_id": [ - 5026, + 5053, "uuid!" ] } @@ -148295,7 +148759,7 @@ export default { 119, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148313,7 +148777,7 @@ export default { 160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148331,7 +148795,7 @@ export default { 188, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148349,7 +148813,7 @@ export default { 229, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148367,7 +148831,7 @@ export default { 262, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148385,7 +148849,7 @@ export default { 314, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148403,7 +148867,7 @@ export default { 346, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148421,7 +148885,7 @@ export default { 373, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -148439,7 +148903,7 @@ export default { 418, { "draft_game_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -148461,7 +148925,7 @@ export default { 463, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149289,11 +149753,11 @@ export default { 1430, { "event_id": [ - 5026, + 5053, "uuid!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -149311,7 +149775,7 @@ export default { 1448, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149329,7 +149793,7 @@ export default { 1470, { "media_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -149351,7 +149815,7 @@ export default { 1531, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -149373,7 +149837,7 @@ export default { 1572, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -149395,11 +149859,11 @@ export default { 1613, { "event_id": [ - 5026, + 5053, "uuid!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } @@ -149417,11 +149881,11 @@ export default { 1637, { "event_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } @@ -149439,7 +149903,7 @@ export default { 1661, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149515,7 +149979,7 @@ export default { 1802, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149542,7 +150006,7 @@ export default { 1869, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149560,7 +150024,7 @@ export default { 1897, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149578,7 +150042,7 @@ export default { 1938, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149596,7 +150060,7 @@ export default { 1979, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149614,7 +150078,7 @@ export default { 2020, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149632,7 +150096,7 @@ export default { 2045, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149650,7 +150114,7 @@ export default { 2078, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149668,7 +150132,7 @@ export default { 2119, { "league_team_season_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -149690,7 +150154,7 @@ export default { 2160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149708,7 +150172,7 @@ export default { 2202, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149726,7 +150190,7 @@ export default { 2221, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149744,7 +150208,7 @@ export default { 2240, { "lobby_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -149766,7 +150230,7 @@ export default { 2285, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -149784,220 +150248,238 @@ export default { 2304, { "id": [ - 5026, + 5053, + "uuid!" + ] + } + ], + "delete_match_camera_tokens": [ + 2343, + { + "where": [ + 2337, + "match_camera_tokens_bool_exp!" + ] + } + ], + "delete_match_camera_tokens_by_pk": [ + 2333, + { + "id": [ + 5053, "uuid!" ] } ], "delete_match_clips": [ - 2350, + 2377, { "where": [ - 2342, + 2369, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2333, + 2360, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2396, + 2423, { "where": [ - 2385, + 2412, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2375, + 2402, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_lineup_players": [ - 2440, + 2467, { "where": [ - 2432, + 2459, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2421, + 2448, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_lineups": [ - 2483, + 2510, { "where": [ - 2475, + 2502, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2466, + 2493, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_map_demos": [ - 2531, + 2558, { "where": [ - 2520, + 2547, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2508, + 2535, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_map_rounds": [ - 2576, + 2603, { "where": [ - 2568, + 2595, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2559, + 2586, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2616, + 2643, { "where": [ - 2609, + 2636, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2600, + 2627, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_maps": [ - 2645, + 2672, { "where": [ - 2637, + 2664, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2628, + 2655, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_options": [ - 2680, + 2707, { "where": [ - 2674, + 2701, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2670, + 2697, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2714, + 2741, { "where": [ - 2707, + 2734, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2698, + 2725, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_streams": [ - 2749, + 2776, { "where": [ - 2738, + 2765, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2726, + 2753, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2784, + 2811, { "where": [ - 2779, + 2806, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2776, + 2803, { "type": [ 740, @@ -150006,34 +150488,34 @@ export default { } ], "delete_matches": [ - 2811, + 2838, { "where": [ - 2803, + 2830, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2794, + 2821, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2844, + 2871, { "where": [ - 2839, + 2866, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2836, + 2863, { "name": [ 80, @@ -150042,126 +150524,126 @@ export default { } ], "delete_my_friends": [ - 2876, + 2903, { "where": [ - 2866, + 2893, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2910, + 2937, { "where": [ - 2904, + 2931, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2900, + 2927, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_notifications": [ - 2950, + 2977, { "where": [ - 2939, + 2966, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2927, + 2954, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2997, + 3024, { "where": [ - 2989, + 3016, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2980, + 3007, { "steam_id": [ 257, "bigint!" ], "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "delete_pending_match_imports": [ - 3031, + 3058, { "where": [ - 3025, + 3052, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3021, + 3048, { "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3059, + 3086, { "where": [ - 3053, + 3080, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3049, + 3076, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3093, + 3120, { "where": [ - 3085, + 3112, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3076, + 3103, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -150175,16 +150657,16 @@ export default { } ], "delete_player_assists": [ - 3136, + 3163, { "where": [ - 3128, + 3155, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3117, + 3144, { "attacked_steam_id": [ 257, @@ -150195,55 +150677,55 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_player_damages": [ - 3197, + 3224, { "where": [ - 3189, + 3216, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3180, + 3207, { "id": [ - 5026, + 5053, "uuid!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_player_elo": [ - 3231, + 3258, { "where": [ - 3225, + 3252, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3221, + 3248, { "match_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -150257,34 +150739,34 @@ export default { } ], "delete_player_faceit_rank_history": [ - 3265, + 3292, { "where": [ - 3257, + 3284, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3248, + 3275, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_player_flashes": [ - 3308, + 3335, { "where": [ - 3300, + 3327, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3289, + 3316, { "attacked_steam_id": [ 257, @@ -150295,26 +150777,26 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_player_kills": [ - 3394, + 3421, { "where": [ - 3345, + 3372, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3334, + 3361, { "attacked_steam_id": [ 257, @@ -150325,26 +150807,26 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3363, + 3390, { "where": [ - 3355, + 3382, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3346, + 3373, { "player_steam_id": [ 257, @@ -150357,28 +150839,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3429, + 3456, { "where": [ - 3424, + 3451, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3460, + 3487, { "where": [ - 3452, + 3479, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3443, + 3470, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -150388,19 +150870,19 @@ export default { } ], "delete_player_objectives": [ - 3552, + 3579, { "where": [ - 3544, + 3571, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3535, + 3562, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -150408,84 +150890,84 @@ export default { "bigint!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3611, + 3638, { "where": [ - 3603, + 3630, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3594, + 3621, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_player_sanctions": [ - 3652, + 3679, { "where": [ - 3644, + 3671, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3635, + 3662, { "created_at": [ - 4526, + 4553, "timestamptz!" ], "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_player_season_stats": [ - 3703, + 3730, { "where": [ - 3695, + 3722, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3676, + 3703, { "player_steam_id": [ 257, "bigint!" ], "season_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_player_stats": [ - 3745, + 3772, { "where": [ - 3739, + 3766, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3735, + 3762, { "player_steam_id": [ 257, @@ -150494,16 +150976,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3777, + 3804, { "where": [ - 3768, + 3795, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3763, + 3790, { "steam_id": [ 257, @@ -150512,16 +150994,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3805, + 3832, { "where": [ - 3799, + 3826, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3795, + 3822, { "steam_id": [ 257, @@ -150530,19 +151012,19 @@ export default { } ], "delete_player_unused_utility": [ - 3839, + 3866, { "where": [ - 3831, + 3858, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3822, + 3849, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -150552,42 +151034,42 @@ export default { } ], "delete_player_utility": [ - 3880, + 3907, { "where": [ - 3872, + 3899, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3863, + 3890, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "delete_players": [ - 3947, + 3974, { "where": [ - 3941, + 3968, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3937, + 3964, { "steam_id": [ 257, @@ -150596,16 +151078,16 @@ export default { } ], "delete_plugin_versions": [ - 3975, + 4002, { "where": [ - 3969, + 3996, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3965, + 3992, { "runtime": [ 1110, @@ -150618,34 +151100,34 @@ export default { } ], "delete_seasons": [ - 4006, + 4033, { "where": [ - 4000, + 4027, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3996, + 4023, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_server_regions": [ - 4033, + 4060, { "where": [ - 4028, + 4055, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4024, + 4051, { "value": [ 80, @@ -150654,34 +151136,34 @@ export default { } ], "delete_servers": [ - 4070, + 4097, { "where": [ - 4062, + 4089, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4051, + 4078, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_settings": [ - 4105, + 4132, { "where": [ - 4100, + 4127, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4097, + 4124, { "name": [ 80, @@ -150690,511 +151172,511 @@ export default { } ], "delete_steam_account_claims": [ - 4131, + 4158, { "where": [ - 4124, + 4151, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4117, + 4144, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_steam_accounts": [ - 4151, + 4178, { "where": [ - 4145, + 4172, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4141, + 4168, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_system_alerts": [ - 4179, + 4206, { "where": [ - 4173, + 4200, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4169, + 4196, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_invites": [ - 4213, + 4240, { "where": [ - 4205, + 4232, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4196, + 4223, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_roster": [ - 4256, + 4283, { "where": [ - 4248, + 4275, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4237, + 4264, { "player_steam_id": [ 257, "bigint!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4292, + 4319, { "where": [ - 4286, + 4313, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4282, + 4309, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4325, + 4352, { "where": [ - 4318, + 4345, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4309, + 4336, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4354, + 4381, { "where": [ - 4346, + 4373, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4337, + 4364, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4397, + 4424, { "where": [ - 4389, + 4416, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4378, + 4405, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4434, + 4461, { "where": [ - 4428, + 4455, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4424, + 4451, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_team_suggestions": [ - 4462, + 4489, { "where": [ - 4456, + 4483, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4452, + 4479, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_teams": [ - 4498, + 4525, { "where": [ - 4490, + 4517, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4479, + 4506, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_awards": [ - 4545, + 4572, { "where": [ - 4537, + 4564, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4528, + 4555, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_brackets": [ - 4589, + 4616, { "where": [ - 4581, + 4608, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4570, + 4597, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_categories": [ - 4630, + 4657, { "where": [ - 4623, + 4650, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4616, + 4643, { "category": [ 1312, "e_tournament_categories_enum!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4654, + 4681, { "where": [ - 4647, + 4674, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4640, + 4667, { "team_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_organizers": [ - 4681, + 4708, { "where": [ - 4673, + 4700, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4664, + 4691, { "steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_prizes": [ - 4722, + 4749, { "where": [ - 4714, + 4741, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4705, + 4732, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4763, + 4790, { "where": [ - 4755, + 4782, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4746, + 4773, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_stages": [ - 4810, + 4837, { "where": [ - 4799, + 4826, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4787, + 4814, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4855, + 4882, { "where": [ - 4847, + 4874, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4838, + 4865, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4896, + 4923, { "where": [ - 4888, + 4915, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4879, + 4906, { "player_steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournament_teams": [ - 4937, + 4964, { "where": [ - 4929, + 4956, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4920, + 4947, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_tournaments": [ - 4991, + 5018, { "where": [ - 4983, + 5010, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4962, + 4989, { "id": [ - 5026, + 5053, "uuid!" ] } ], "delete_v_match_captains": [ - 5191, + 5218, { "where": [ - 5186, + 5213, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5302, + 5329, { "where": [ - 5297, + 5324, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5524, + 5551, { "where": [ - 5517, + 5544, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5701, + 5728, { "where": [ - 5695, + 5722, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5795, + 5822, { "where": [ - 5787, + 5814, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5768, + 5795, { "tournament_stage_id": [ - 5026, + 5053, "uuid!" ], "tournament_team_id": [ - 5026, + 5053, "uuid!" ] } @@ -151203,7 +151685,7 @@ export default { 83, { "invite_id": [ - 5026, + 5053, "uuid!" ], "type": [ @@ -151229,11 +151711,11 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "winning_lineup_id": [ - 5026, + 5053, "uuid!" ] } @@ -151242,7 +151724,7 @@ export default { 45, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -151254,14 +151736,14 @@ export default { 4, { "award_id": [ - 5026, + 5053, "uuid!" ], "event_id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "note": [ 80 @@ -151270,13 +151752,13 @@ export default { 80 ], "season_id": [ - 5026 + 5053 ], "team_id": [ - 5026 + 5053 ], "tournament_id": [ - 5026 + 5053 ] } ], @@ -153266,1743 +153748,1767 @@ export default { ] } ], + "insert_match_camera_tokens": [ + 2343, + { + "objects": [ + 2340, + "[match_camera_tokens_insert_input!]!" + ], + "on_conflict": [ + 2344 + ] + } + ], + "insert_match_camera_tokens_one": [ + 2333, + { + "object": [ + 2340, + "match_camera_tokens_insert_input!" + ], + "on_conflict": [ + 2344 + ] + } + ], "insert_match_clips": [ - 2350, + 2377, { "objects": [ - 2345, + 2372, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2352 + 2379 ] } ], "insert_match_clips_one": [ - 2333, + 2360, { "object": [ - 2345, + 2372, "match_clips_insert_input!" ], "on_conflict": [ - 2352 + 2379 ] } ], "insert_match_demo_sessions": [ - 2396, + 2423, { "objects": [ - 2391, + 2418, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2397 + 2424 ] } ], "insert_match_demo_sessions_one": [ - 2375, + 2402, { "object": [ - 2391, + 2418, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2397 + 2424 ] } ], "insert_match_lineup_players": [ - 2440, + 2467, { "objects": [ - 2435, + 2462, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2441 + 2468 ] } ], "insert_match_lineup_players_one": [ - 2421, + 2448, { "object": [ - 2435, + 2462, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2441 + 2468 ] } ], "insert_match_lineups": [ - 2483, + 2510, { "objects": [ - 2478, + 2505, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2485 + 2512 ] } ], "insert_match_lineups_one": [ - 2466, + 2493, { "object": [ - 2478, + 2505, "match_lineups_insert_input!" ], "on_conflict": [ - 2485 + 2512 ] } ], "insert_match_map_demos": [ - 2531, + 2558, { "objects": [ - 2526, + 2553, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2533 + 2560 ] } ], "insert_match_map_demos_one": [ - 2508, + 2535, { "object": [ - 2526, + 2553, "match_map_demos_insert_input!" ], "on_conflict": [ - 2533 + 2560 ] } ], "insert_match_map_rounds": [ - 2576, + 2603, { "objects": [ - 2571, + 2598, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2577 + 2604 ] } ], "insert_match_map_rounds_one": [ - 2559, + 2586, { "object": [ - 2571, + 2598, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2577 + 2604 ] } ], "insert_match_map_veto_picks": [ - 2616, + 2643, { "objects": [ - 2611, + 2638, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2617 + 2644 ] } ], "insert_match_map_veto_picks_one": [ - 2600, + 2627, { "object": [ - 2611, + 2638, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2617 + 2644 ] } ], "insert_match_maps": [ - 2645, + 2672, { "objects": [ - 2640, + 2667, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2647 + 2674 ] } ], "insert_match_maps_one": [ - 2628, + 2655, { "object": [ - 2640, + 2667, "match_maps_insert_input!" ], "on_conflict": [ - 2647 + 2674 ] } ], "insert_match_options": [ - 2680, + 2707, { "objects": [ - 2677, + 2704, "[match_options_insert_input!]!" ], "on_conflict": [ - 2682 + 2709 ] } ], "insert_match_options_one": [ - 2670, + 2697, { "object": [ - 2677, + 2704, "match_options_insert_input!" ], "on_conflict": [ - 2682 + 2709 ] } ], "insert_match_region_veto_picks": [ - 2714, + 2741, { "objects": [ - 2709, + 2736, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2715 + 2742 ] } ], "insert_match_region_veto_picks_one": [ - 2698, + 2725, { "object": [ - 2709, + 2736, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2715 + 2742 ] } ], "insert_match_streams": [ - 2749, + 2776, { "objects": [ - 2744, + 2771, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2750 + 2777 ] } ], "insert_match_streams_one": [ - 2726, + 2753, { "object": [ - 2744, + 2771, "match_streams_insert_input!" ], "on_conflict": [ - 2750 + 2777 ] } ], "insert_match_type_cfgs": [ - 2784, + 2811, { "objects": [ - 2781, + 2808, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2785 + 2812 ] } ], "insert_match_type_cfgs_one": [ - 2776, + 2803, { "object": [ - 2781, + 2808, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2785 + 2812 ] } ], "insert_matches": [ - 2811, + 2838, { "objects": [ - 2806, + 2833, "[matches_insert_input!]!" ], "on_conflict": [ - 2813 + 2840 ] } ], "insert_matches_one": [ - 2794, + 2821, { "object": [ - 2806, + 2833, "matches_insert_input!" ], "on_conflict": [ - 2813 + 2840 ] } ], "insert_migration_hashes_hashes": [ - 2844, + 2871, { "objects": [ - 2841, + 2868, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2845 + 2872 ] } ], "insert_migration_hashes_hashes_one": [ - 2836, + 2863, { "object": [ - 2841, + 2868, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2845 + 2872 ] } ], "insert_my_friends": [ - 2876, + 2903, { "objects": [ - 2871, + 2898, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2854, + 2881, { "object": [ - 2871, + 2898, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2910, + 2937, { "objects": [ - 2907, + 2934, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2911 + 2938 ] } ], "insert_news_articles_one": [ - 2900, + 2927, { "object": [ - 2907, + 2934, "news_articles_insert_input!" ], "on_conflict": [ - 2911 + 2938 ] } ], "insert_notifications": [ - 2950, + 2977, { "objects": [ - 2945, + 2972, "[notifications_insert_input!]!" ], "on_conflict": [ - 2951 + 2978 ] } ], "insert_notifications_one": [ - 2927, + 2954, { "object": [ - 2945, + 2972, "notifications_insert_input!" ], "on_conflict": [ - 2951 + 2978 ] } ], "insert_pending_match_import_players": [ - 2997, + 3024, { "objects": [ - 2992, + 3019, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2998 + 3025 ] } ], "insert_pending_match_import_players_one": [ - 2980, + 3007, { "object": [ - 2992, + 3019, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2998 + 3025 ] } ], "insert_pending_match_imports": [ - 3031, + 3058, { "objects": [ - 3028, + 3055, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3033 + 3060 ] } ], "insert_pending_match_imports_one": [ - 3021, + 3048, { "object": [ - 3028, + 3055, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3033 + 3060 ] } ], "insert_player_aim_stats_demo": [ - 3059, + 3086, { "objects": [ - 3056, + 3083, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3060 + 3087 ] } ], "insert_player_aim_stats_demo_one": [ - 3049, + 3076, { "object": [ - 3056, + 3083, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3060 + 3087 ] } ], "insert_player_aim_weapon_stats": [ - 3093, + 3120, { "objects": [ - 3088, + 3115, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3094 + 3121 ] } ], "insert_player_aim_weapon_stats_one": [ - 3076, + 3103, { "object": [ - 3088, + 3115, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3094 + 3121 ] } ], "insert_player_assists": [ - 3136, + 3163, { "objects": [ - 3131, + 3158, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3137 + 3164 ] } ], "insert_player_assists_one": [ - 3117, + 3144, { "object": [ - 3131, + 3158, "player_assists_insert_input!" ], "on_conflict": [ - 3137 + 3164 ] } ], "insert_player_damages": [ - 3197, + 3224, { "objects": [ - 3192, + 3219, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3198 + 3225 ] } ], "insert_player_damages_one": [ - 3180, + 3207, { "object": [ - 3192, + 3219, "player_damages_insert_input!" ], "on_conflict": [ - 3198 + 3225 ] } ], "insert_player_elo": [ - 3231, + 3258, { "objects": [ - 3228, + 3255, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3232 + 3259 ] } ], "insert_player_elo_one": [ - 3221, + 3248, { "object": [ - 3228, + 3255, "player_elo_insert_input!" ], "on_conflict": [ - 3232 + 3259 ] } ], "insert_player_faceit_rank_history": [ - 3265, + 3292, { "objects": [ - 3260, + 3287, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3266 + 3293 ] } ], "insert_player_faceit_rank_history_one": [ - 3248, + 3275, { "object": [ - 3260, + 3287, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3266 + 3293 ] } ], "insert_player_flashes": [ - 3308, + 3335, { "objects": [ - 3303, + 3330, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3309 + 3336 ] } ], "insert_player_flashes_one": [ - 3289, + 3316, { "object": [ - 3303, + 3330, "player_flashes_insert_input!" ], "on_conflict": [ - 3309 + 3336 ] } ], "insert_player_kills": [ - 3394, + 3421, { "objects": [ - 3389, + 3416, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3395 + 3422 ] } ], "insert_player_kills_by_weapon": [ - 3363, + 3390, { "objects": [ - 3358, + 3385, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3364 + 3391 ] } ], "insert_player_kills_by_weapon_one": [ - 3346, + 3373, { "object": [ - 3358, + 3385, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3364 + 3391 ] } ], "insert_player_kills_one": [ - 3334, + 3361, { "object": [ - 3389, + 3416, "player_kills_insert_input!" ], "on_conflict": [ - 3395 + 3422 ] } ], "insert_player_leaderboard_rank": [ - 3429, + 3456, { "objects": [ - 3426, + 3453, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3420, + 3447, { "object": [ - 3426, + 3453, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3460, + 3487, { "objects": [ - 3455, + 3482, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3461 + 3488 ] } ], "insert_player_match_map_stats_one": [ - 3443, + 3470, { "object": [ - 3455, + 3482, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3461 + 3488 ] } ], "insert_player_objectives": [ - 3552, + 3579, { "objects": [ - 3547, + 3574, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3553 + 3580 ] } ], "insert_player_objectives_one": [ - 3535, + 3562, { "object": [ - 3547, + 3574, "player_objectives_insert_input!" ], "on_conflict": [ - 3553 + 3580 ] } ], "insert_player_premier_rank_history": [ - 3611, + 3638, { "objects": [ - 3606, + 3633, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3612 + 3639 ] } ], "insert_player_premier_rank_history_one": [ - 3594, + 3621, { "object": [ - 3606, + 3633, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3612 + 3639 ] } ], "insert_player_sanctions": [ - 3652, + 3679, { "objects": [ - 3647, + 3674, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3653 + 3680 ] } ], "insert_player_sanctions_one": [ - 3635, + 3662, { "object": [ - 3647, + 3674, "player_sanctions_insert_input!" ], "on_conflict": [ - 3653 + 3680 ] } ], "insert_player_season_stats": [ - 3703, + 3730, { "objects": [ - 3698, + 3725, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3704 + 3731 ] } ], "insert_player_season_stats_one": [ - 3676, + 3703, { "object": [ - 3698, + 3725, "player_season_stats_insert_input!" ], "on_conflict": [ - 3704 + 3731 ] } ], "insert_player_stats": [ - 3745, + 3772, { "objects": [ - 3742, + 3769, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3747 + 3774 ] } ], "insert_player_stats_one": [ - 3735, + 3762, { "object": [ - 3742, + 3769, "player_stats_insert_input!" ], "on_conflict": [ - 3747 + 3774 ] } ], "insert_player_steam_bot_friend": [ - 3777, + 3804, { "objects": [ - 3774, + 3801, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3778 + 3805 ] } ], "insert_player_steam_bot_friend_one": [ - 3763, + 3790, { "object": [ - 3774, + 3801, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3778 + 3805 ] } ], "insert_player_steam_match_auth": [ - 3805, + 3832, { "objects": [ - 3802, + 3829, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3806 + 3833 ] } ], "insert_player_steam_match_auth_one": [ - 3795, + 3822, { "object": [ - 3802, + 3829, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3806 + 3833 ] } ], "insert_player_unused_utility": [ - 3839, + 3866, { "objects": [ - 3834, + 3861, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3840 + 3867 ] } ], "insert_player_unused_utility_one": [ - 3822, + 3849, { "object": [ - 3834, + 3861, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3840 + 3867 ] } ], "insert_player_utility": [ - 3880, + 3907, { "objects": [ - 3875, + 3902, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3881 + 3908 ] } ], "insert_player_utility_one": [ - 3863, + 3890, { "object": [ - 3875, + 3902, "player_utility_insert_input!" ], "on_conflict": [ - 3881 + 3908 ] } ], "insert_players": [ - 3947, + 3974, { "objects": [ - 3944, + 3971, "[players_insert_input!]!" ], "on_conflict": [ - 3949 + 3976 ] } ], "insert_players_one": [ - 3937, + 3964, { "object": [ - 3944, + 3971, "players_insert_input!" ], "on_conflict": [ - 3949 + 3976 ] } ], "insert_plugin_versions": [ - 3975, + 4002, { "objects": [ - 3972, + 3999, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3976 + 4003 ] } ], "insert_plugin_versions_one": [ - 3965, + 3992, { "object": [ - 3972, + 3999, "plugin_versions_insert_input!" ], "on_conflict": [ - 3976 + 4003 ] } ], "insert_seasons": [ - 4006, + 4033, { "objects": [ - 4003, + 4030, "[seasons_insert_input!]!" ], "on_conflict": [ - 4008 + 4035 ] } ], "insert_seasons_one": [ - 3996, + 4023, { "object": [ - 4003, + 4030, "seasons_insert_input!" ], "on_conflict": [ - 4008 + 4035 ] } ], "insert_server_regions": [ - 4033, + 4060, { "objects": [ - 4030, + 4057, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4035 + 4062 ] } ], "insert_server_regions_one": [ - 4024, + 4051, { "object": [ - 4030, + 4057, "server_regions_insert_input!" ], "on_conflict": [ - 4035 + 4062 ] } ], "insert_servers": [ - 4070, + 4097, { "objects": [ - 4065, + 4092, "[servers_insert_input!]!" ], "on_conflict": [ - 4072 + 4099 ] } ], "insert_servers_one": [ - 4051, + 4078, { "object": [ - 4065, + 4092, "servers_insert_input!" ], "on_conflict": [ - 4072 + 4099 ] } ], "insert_settings": [ - 4105, + 4132, { "objects": [ - 4102, + 4129, "[settings_insert_input!]!" ], "on_conflict": [ - 4106 + 4133 ] } ], "insert_settings_one": [ - 4097, + 4124, { "object": [ - 4102, + 4129, "settings_insert_input!" ], "on_conflict": [ - 4106 + 4133 ] } ], "insert_steam_account_claims": [ - 4131, + 4158, { "objects": [ - 4126, + 4153, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4132 + 4159 ] } ], "insert_steam_account_claims_one": [ - 4117, + 4144, { "object": [ - 4126, + 4153, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4132 + 4159 ] } ], "insert_steam_accounts": [ - 4151, + 4178, { "objects": [ - 4148, + 4175, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4153 + 4180 ] } ], "insert_steam_accounts_one": [ - 4141, + 4168, { "object": [ - 4148, + 4175, "steam_accounts_insert_input!" ], "on_conflict": [ - 4153 + 4180 ] } ], "insert_system_alerts": [ - 4179, + 4206, { "objects": [ - 4176, + 4203, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4180 + 4207 ] } ], "insert_system_alerts_one": [ - 4169, + 4196, { "object": [ - 4176, + 4203, "system_alerts_insert_input!" ], "on_conflict": [ - 4180 + 4207 ] } ], "insert_team_invites": [ - 4213, + 4240, { "objects": [ - 4208, + 4235, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4214 + 4241 ] } ], "insert_team_invites_one": [ - 4196, + 4223, { "object": [ - 4208, + 4235, "team_invites_insert_input!" ], "on_conflict": [ - 4214 + 4241 ] } ], "insert_team_roster": [ - 4256, + 4283, { "objects": [ - 4251, + 4278, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4257 + 4284 ] } ], "insert_team_roster_one": [ - 4237, + 4264, { "object": [ - 4251, + 4278, "team_roster_insert_input!" ], "on_conflict": [ - 4257 + 4284 ] } ], "insert_team_scrim_alerts": [ - 4292, + 4319, { "objects": [ - 4289, + 4316, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4293 + 4320 ] } ], "insert_team_scrim_alerts_one": [ - 4282, + 4309, { "object": [ - 4289, + 4316, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4293 + 4320 ] } ], "insert_team_scrim_availability": [ - 4325, + 4352, { "objects": [ - 4320, + 4347, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4326 + 4353 ] } ], "insert_team_scrim_availability_one": [ - 4309, + 4336, { "object": [ - 4320, + 4347, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4326 + 4353 ] } ], "insert_team_scrim_request_proposals": [ - 4354, + 4381, { "objects": [ - 4349, + 4376, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4355 + 4382 ] } ], "insert_team_scrim_request_proposals_one": [ - 4337, + 4364, { "object": [ - 4349, + 4376, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4355 + 4382 ] } ], "insert_team_scrim_requests": [ - 4397, + 4424, { "objects": [ - 4392, + 4419, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4399 + 4426 ] } ], "insert_team_scrim_requests_one": [ - 4378, + 4405, { "object": [ - 4392, + 4419, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4399 + 4426 ] } ], "insert_team_scrim_settings": [ - 4434, + 4461, { "objects": [ - 4431, + 4458, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4436 + 4463 ] } ], "insert_team_scrim_settings_one": [ - 4424, + 4451, { "object": [ - 4431, + 4458, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4436 + 4463 ] } ], "insert_team_suggestions": [ - 4462, + 4489, { "objects": [ - 4459, + 4486, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4463 + 4490 ] } ], "insert_team_suggestions_one": [ - 4452, + 4479, { "object": [ - 4459, + 4486, "team_suggestions_insert_input!" ], "on_conflict": [ - 4463 + 4490 ] } ], "insert_teams": [ - 4498, + 4525, { "objects": [ - 4493, + 4520, "[teams_insert_input!]!" ], "on_conflict": [ - 4500 + 4527 ] } ], "insert_teams_one": [ - 4479, + 4506, { "object": [ - 4493, + 4520, "teams_insert_input!" ], "on_conflict": [ - 4500 + 4527 ] } ], "insert_tournament_awards": [ - 4545, + 4572, { "objects": [ - 4540, + 4567, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4547 + 4574 ] } ], "insert_tournament_awards_one": [ - 4528, + 4555, { "object": [ - 4540, + 4567, "tournament_awards_insert_input!" ], "on_conflict": [ - 4547 + 4574 ] } ], "insert_tournament_brackets": [ - 4589, + 4616, { "objects": [ - 4584, + 4611, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4591 + 4618 ] } ], "insert_tournament_brackets_one": [ - 4570, + 4597, { "object": [ - 4584, + 4611, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4591 + 4618 ] } ], "insert_tournament_categories": [ - 4630, + 4657, { "objects": [ - 4625, + 4652, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4631 + 4658 ] } ], "insert_tournament_categories_one": [ - 4616, + 4643, { "object": [ - 4625, + 4652, "tournament_categories_insert_input!" ], "on_conflict": [ - 4631 + 4658 ] } ], "insert_tournament_organizer_teams": [ - 4654, + 4681, { "objects": [ - 4649, + 4676, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4655 + 4682 ] } ], "insert_tournament_organizer_teams_one": [ - 4640, + 4667, { "object": [ - 4649, + 4676, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4655 + 4682 ] } ], "insert_tournament_organizers": [ - 4681, + 4708, { "objects": [ - 4676, + 4703, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4682 + 4709 ] } ], "insert_tournament_organizers_one": [ - 4664, + 4691, { "object": [ - 4676, + 4703, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4682 + 4709 ] } ], "insert_tournament_prizes": [ - 4722, + 4749, { "objects": [ - 4717, + 4744, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4723 + 4750 ] } ], "insert_tournament_prizes_one": [ - 4705, + 4732, { "object": [ - 4717, + 4744, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4723 + 4750 ] } ], "insert_tournament_stage_windows": [ - 4763, + 4790, { "objects": [ - 4758, + 4785, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4764 + 4791 ] } ], "insert_tournament_stage_windows_one": [ - 4746, + 4773, { "object": [ - 4758, + 4785, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4764 + 4791 ] } ], "insert_tournament_stages": [ - 4810, + 4837, { "objects": [ - 4805, + 4832, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4812 + 4839 ] } ], "insert_tournament_stages_one": [ - 4787, + 4814, { "object": [ - 4805, + 4832, "tournament_stages_insert_input!" ], "on_conflict": [ - 4812 + 4839 ] } ], "insert_tournament_team_invites": [ - 4855, + 4882, { "objects": [ - 4850, + 4877, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4856 + 4883 ] } ], "insert_tournament_team_invites_one": [ - 4838, + 4865, { "object": [ - 4850, + 4877, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4856 + 4883 ] } ], "insert_tournament_team_roster": [ - 4896, + 4923, { "objects": [ - 4891, + 4918, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4897 + 4924 ] } ], "insert_tournament_team_roster_one": [ - 4879, + 4906, { "object": [ - 4891, + 4918, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4897 + 4924 ] } ], "insert_tournament_teams": [ - 4937, + 4964, { "objects": [ - 4932, + 4959, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4939 + 4966 ] } ], "insert_tournament_teams_one": [ - 4920, + 4947, { "object": [ - 4932, + 4959, "tournament_teams_insert_input!" ], "on_conflict": [ - 4939 + 4966 ] } ], "insert_tournaments": [ - 4991, + 5018, { "objects": [ - 4986, + 5013, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4993 + 5020 ] } ], "insert_tournaments_one": [ - 4962, + 4989, { "object": [ - 4986, + 5013, "tournaments_insert_input!" ], "on_conflict": [ - 4993 + 5020 ] } ], "insert_v_match_captains": [ - 5191, + 5218, { "objects": [ - 5188, + 5215, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5182, + 5209, { "object": [ - 5188, + 5215, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5302, + 5329, { "objects": [ - 5299, + 5326, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5293, + 5320, { "object": [ - 5299, + 5326, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5524, + 5551, { "objects": [ - 5519, + 5546, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5508, + 5535, { "object": [ - 5519, + 5546, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5701, + 5728, { "objects": [ - 5696, + 5723, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5686, + 5713, { "object": [ - 5696, + 5723, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5795, + 5822, { "objects": [ - 5790, + 5817, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5797 + 5824 ] } ], "insert_v_team_stage_results_one": [ - 5768, + 5795, { "object": [ - 5790, + 5817, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5797 + 5824 ] } ], @@ -155010,7 +155516,7 @@ export default { 83, { "draftGameId": [ - 5026, + 5053, "uuid!" ], "inviteCode": [ @@ -155022,7 +155528,7 @@ export default { 83, { "draftGameId": [ - 5026, + 5053, "uuid!" ], "inviteCode": [ @@ -155047,14 +155553,14 @@ export default { } ], "league_award_forfeit": [ - 2794, + 2821, { "args": [ 1868, "league_award_forfeit_args!" ], "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -155064,11 +155570,11 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], @@ -155127,7 +155633,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -155139,7 +155645,7 @@ export default { 24, { "draftGameId": [ - 5026, + 5053, "uuid!" ], "inviteCode": [ @@ -155154,7 +155660,7 @@ export default { 40 ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "preset": [ @@ -155180,7 +155686,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155189,7 +155695,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155198,7 +155704,7 @@ export default { 188, { "args": [ - 3992, + 4019, "recalculate_tournament_awards_args!" ], "distinct_on": [ @@ -155230,7 +155736,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155254,7 +155760,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155284,7 +155790,7 @@ export default { 2160, { "args": [ - 3993, + 4020, "remove_league_team_from_season_args!" ], "distinct_on": [ @@ -155330,7 +155836,7 @@ export default { 1869, { "args": [ - 3994, + 4021, "reorder_league_divisions_args!" ], "distinct_on": [ @@ -155362,7 +155868,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -155371,7 +155877,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155393,7 +155899,7 @@ export default { 83, { "job_id": [ - 5026, + 5053, "uuid!" ] } @@ -155406,7 +155912,7 @@ export default { "Boolean!" ], "draftGameId": [ - 5026, + 5053, "uuid!" ] } @@ -155419,7 +155925,7 @@ export default { "Boolean!" ], "request_id": [ - 5026, + 5053, "uuid!" ] } @@ -155437,7 +155943,7 @@ export default { 2045, { "args": [ - 3995, + 4022, "restart_league_season_args!" ], "distinct_on": [ @@ -155463,7 +155969,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -155472,7 +155978,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "only_failed": [ @@ -155493,7 +155999,7 @@ export default { 83, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -155530,20 +156036,20 @@ export default { 80 ], "event_id": [ - 5026 + 5053 ], "id": [ - 5026 + 5053 ], "league_season_id": [ - 5026 + 5053 ], "name": [ 80, "String!" ], "season_id": [ - 5026 + 5053 ], "silhouette": [ 40 @@ -155553,7 +156059,7 @@ export default { "String!" ], "tournament_id": [ - 5026 + 5053 ] } ], @@ -155568,7 +156074,7 @@ export default { 80 ], "id": [ - 5026 + 5053 ], "teaser": [ 80 @@ -155589,11 +156095,11 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526 + 4553 ] } ], @@ -155604,18 +156110,18 @@ export default { 40 ], "from_team_id": [ - 5026, + 5053, "uuid!" ], "proposed_scheduled_at": [ - 4526, + 4553, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 5026, + 5053, "uuid!" ] } @@ -155637,7 +156143,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "mode": [ @@ -155650,15 +156156,15 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "winning_lineup_id": [ - 5026, + 5053, "uuid!" ] } @@ -155667,11 +156173,11 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "winning_lineup_id": [ - 5026, + 5053, "uuid!" ] } @@ -155680,7 +156186,7 @@ export default { 50, { "id": [ - 5026, + 5053, "uuid!" ], "status": [ @@ -155693,7 +156199,7 @@ export default { 97, { "award_id": [ - 5026 + 5053 ], "custom_name": [ 80 @@ -155706,7 +156212,7 @@ export default { 40 ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } @@ -155718,7 +156224,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155731,7 +156237,7 @@ export default { "Boolean!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155744,7 +156250,7 @@ export default { "String!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155753,7 +156259,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "visible": [ @@ -155766,7 +156272,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155775,7 +156281,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155788,7 +156294,7 @@ export default { "Int!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155797,7 +156303,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "show": [ @@ -155810,7 +156316,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "slot": [ @@ -155827,7 +156333,7 @@ export default { "Boolean!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155836,7 +156342,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "mode": [ @@ -155849,11 +156355,11 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ], "server_id": [ - 5026 + 5053 ] } ], @@ -155861,7 +156367,7 @@ export default { 83, { "game_server_node_id": [ - 5026, + 5053, "uuid!" ] } @@ -155870,7 +156376,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155879,7 +156385,7 @@ export default { 83, { "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -155901,7 +156407,7 @@ export default { 83, { "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155919,7 +156425,7 @@ export default { 83, { "from_match_id": [ - 5026, + 5053, "uuid!" ], "mode": [ @@ -155927,7 +156433,7 @@ export default { "String!" ], "to_match_id": [ - 5026, + 5053, "uuid!" ] } @@ -155967,7 +156473,7 @@ export default { 83, { "clip_id": [ - 5026, + 5053, "uuid!" ], "target_steam_id": [ @@ -155988,7 +156494,7 @@ export default { 80 ], "game_server_node_id": [ - 5026 + 5053 ] } ], @@ -155996,7 +156502,7 @@ export default { 83, { "draftGameId": [ - 5026, + 5053, "uuid!" ], "settings": [ @@ -159086,2930 +159592,2969 @@ export default { ] } ], + "update_match_camera_tokens": [ + 2343, + { + "_inc": [ + 2339 + ], + "_set": [ + 2348 + ], + "where": [ + 2337, + "match_camera_tokens_bool_exp!" + ] + } + ], + "update_match_camera_tokens_by_pk": [ + 2333, + { + "_inc": [ + 2339 + ], + "_set": [ + 2348 + ], + "pk_columns": [ + 2346, + "match_camera_tokens_pk_columns_input!" + ] + } + ], + "update_match_camera_tokens_many": [ + 2343, + { + "updates": [ + 2356, + "[match_camera_tokens_updates!]!" + ] + } + ], "update_match_clips": [ - 2350, + 2377, { "_inc": [ - 2344 + 2371 ], "_set": [ - 2356 + 2383 ], "where": [ - 2342, + 2369, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2333, + 2360, { "_inc": [ - 2344 + 2371 ], "_set": [ - 2356 + 2383 ], "pk_columns": [ - 2354, + 2381, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2350, + 2377, { "updates": [ - 2368, + 2395, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2396, + 2423, { "_append": [ - 2381 + 2408 ], "_delete_at_path": [ - 2387 + 2414 ], "_delete_elem": [ - 2388 + 2415 ], "_delete_key": [ - 2389 + 2416 ], "_inc": [ - 2390 + 2417 ], "_prepend": [ - 2400 + 2427 ], "_set": [ - 2402 + 2429 ], "where": [ - 2385, + 2412, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2375, + 2402, { "_append": [ - 2381 + 2408 ], "_delete_at_path": [ - 2387 + 2414 ], "_delete_elem": [ - 2388 + 2415 ], "_delete_key": [ - 2389 + 2416 ], "_inc": [ - 2390 + 2417 ], "_prepend": [ - 2400 + 2427 ], "_set": [ - 2402 + 2429 ], "pk_columns": [ - 2399, + 2426, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2396, + 2423, { "updates": [ - 2414, + 2441, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2440, + 2467, { "_inc": [ - 2434 + 2461 ], "_set": [ - 2447 + 2474 ], "where": [ - 2432, + 2459, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2421, + 2448, { "_inc": [ - 2434 + 2461 ], "_set": [ - 2447 + 2474 ], "pk_columns": [ - 2443, + 2470, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2440, + 2467, { "updates": [ - 2459, + 2486, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2483, + 2510, { "_inc": [ - 2477 + 2504 ], "_set": [ - 2489 + 2516 ], "where": [ - 2475, + 2502, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2466, + 2493, { "_inc": [ - 2477 + 2504 ], "_set": [ - 2489 + 2516 ], "pk_columns": [ - 2487, + 2514, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2483, + 2510, { "updates": [ - 2501, + 2528, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2531, + 2558, { "_append": [ - 2516 + 2543 ], "_delete_at_path": [ - 2522 + 2549 ], "_delete_elem": [ - 2523 + 2550 ], "_delete_key": [ - 2524 + 2551 ], "_inc": [ - 2525 + 2552 ], "_prepend": [ - 2536 + 2563 ], "_set": [ - 2540 + 2567 ], "where": [ - 2520, + 2547, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2508, + 2535, { "_append": [ - 2516 + 2543 ], "_delete_at_path": [ - 2522 + 2549 ], "_delete_elem": [ - 2523 + 2550 ], "_delete_key": [ - 2524 + 2551 ], "_inc": [ - 2525 + 2552 ], "_prepend": [ - 2536 + 2563 ], "_set": [ - 2540 + 2567 ], "pk_columns": [ - 2535, + 2562, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2531, + 2558, { "updates": [ - 2552, + 2579, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2576, + 2603, { "_inc": [ - 2570 + 2597 ], "_set": [ - 2581 + 2608 ], "where": [ - 2568, + 2595, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2559, + 2586, { "_inc": [ - 2570 + 2597 ], "_set": [ - 2581 + 2608 ], "pk_columns": [ - 2579, + 2606, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2576, + 2603, { "updates": [ - 2593, + 2620, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2616, + 2643, { "_set": [ - 2623 + 2650 ], "where": [ - 2609, + 2636, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2600, + 2627, { "_set": [ - 2623 + 2650 ], "pk_columns": [ - 2619, + 2646, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2616, + 2643, { "updates": [ - 2627, + 2654, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2645, + 2672, { "_inc": [ - 2639 + 2666 ], "_set": [ - 2651 + 2678 ], "where": [ - 2637, + 2664, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2628, + 2655, { "_inc": [ - 2639 + 2666 ], "_set": [ - 2651 + 2678 ], "pk_columns": [ - 2649, + 2676, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2645, + 2672, { "updates": [ - 2663, + 2690, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2680, + 2707, { "_inc": [ - 2676 + 2703 ], "_set": [ - 2686 + 2713 ], "where": [ - 2674, + 2701, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2670, + 2697, { "_inc": [ - 2676 + 2703 ], "_set": [ - 2686 + 2713 ], "pk_columns": [ - 2684, + 2711, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2680, + 2707, { "updates": [ - 2694, + 2721, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2714, + 2741, { "_set": [ - 2721 + 2748 ], "where": [ - 2707, + 2734, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2698, + 2725, { "_set": [ - 2721 + 2748 ], "pk_columns": [ - 2717, + 2744, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2714, + 2741, { "updates": [ - 2725, + 2752, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2749, + 2776, { "_append": [ - 2734 + 2761 ], "_delete_at_path": [ - 2740 + 2767 ], "_delete_elem": [ - 2741 + 2768 ], "_delete_key": [ - 2742 + 2769 ], "_inc": [ - 2743 + 2770 ], "_prepend": [ - 2753 + 2780 ], "_set": [ - 2757 + 2784 ], "where": [ - 2738, + 2765, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2726, + 2753, { "_append": [ - 2734 + 2761 ], "_delete_at_path": [ - 2740 + 2767 ], "_delete_elem": [ - 2741 + 2768 ], "_delete_key": [ - 2742 + 2769 ], "_inc": [ - 2743 + 2770 ], "_prepend": [ - 2753 + 2780 ], "_set": [ - 2757 + 2784 ], "pk_columns": [ - 2752, + 2779, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2749, + 2776, { "updates": [ - 2769, + 2796, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2784, + 2811, { "_set": [ - 2789 + 2816 ], "where": [ - 2779, + 2806, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2776, + 2803, { "_set": [ - 2789 + 2816 ], "pk_columns": [ - 2787, + 2814, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2784, + 2811, { "updates": [ - 2793, + 2820, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2811, + 2838, { "_inc": [ - 2805 + 2832 ], "_set": [ - 2817 + 2844 ], "where": [ - 2803, + 2830, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2794, + 2821, { "_inc": [ - 2805 + 2832 ], "_set": [ - 2817 + 2844 ], "pk_columns": [ - 2815, + 2842, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2811, + 2838, { "updates": [ - 2829, + 2856, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2844, + 2871, { "_set": [ - 2849 + 2876 ], "where": [ - 2839, + 2866, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2836, + 2863, { "_set": [ - 2849 + 2876 ], "pk_columns": [ - 2847, + 2874, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2844, + 2871, { "updates": [ - 2853, + 2880, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2876, + 2903, { "_append": [ - 2862 + 2889 ], "_delete_at_path": [ - 2867 + 2894 ], "_delete_elem": [ - 2868 + 2895 ], "_delete_key": [ - 2869 + 2896 ], "_inc": [ - 2870 + 2897 ], "_prepend": [ - 2878 + 2905 ], "_set": [ - 2882 + 2909 ], "where": [ - 2866, + 2893, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2876, + 2903, { "updates": [ - 2893, + 2920, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2910, + 2937, { "_inc": [ - 2906 + 2933 ], "_set": [ - 2915 + 2942 ], "where": [ - 2904, + 2931, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2900, + 2927, { "_inc": [ - 2906 + 2933 ], "_set": [ - 2915 + 2942 ], "pk_columns": [ - 2913, + 2940, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2910, + 2937, { "updates": [ - 2923, + 2950, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2950, + 2977, { "_append": [ - 2935 + 2962 ], "_delete_at_path": [ - 2941 + 2968 ], "_delete_elem": [ - 2942 + 2969 ], "_delete_key": [ - 2943 + 2970 ], "_inc": [ - 2944 + 2971 ], "_prepend": [ - 2954 + 2981 ], "_set": [ - 2958 + 2985 ], "where": [ - 2939, + 2966, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2927, + 2954, { "_append": [ - 2935 + 2962 ], "_delete_at_path": [ - 2941 + 2968 ], "_delete_elem": [ - 2942 + 2969 ], "_delete_key": [ - 2943 + 2970 ], "_inc": [ - 2944 + 2971 ], "_prepend": [ - 2954 + 2981 ], "_set": [ - 2958 + 2985 ], "pk_columns": [ - 2953, + 2980, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2950, + 2977, { "updates": [ - 2970, + 2997, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2997, + 3024, { "_inc": [ - 2991 + 3018 ], "_set": [ - 3002 + 3029 ], "where": [ - 2989, + 3016, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2980, + 3007, { "_inc": [ - 2991 + 3018 ], "_set": [ - 3002 + 3029 ], "pk_columns": [ - 3000, + 3027, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2997, + 3024, { "updates": [ - 3014, + 3041, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3031, + 3058, { "_inc": [ - 3027 + 3054 ], "_set": [ - 3037 + 3064 ], "where": [ - 3025, + 3052, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3021, + 3048, { "_inc": [ - 3027 + 3054 ], "_set": [ - 3037 + 3064 ], "pk_columns": [ - 3035, + 3062, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3031, + 3058, { "updates": [ - 3045, + 3072, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3059, + 3086, { "_inc": [ - 3055 + 3082 ], "_set": [ - 3064 + 3091 ], "where": [ - 3053, + 3080, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3049, + 3076, { "_inc": [ - 3055 + 3082 ], "_set": [ - 3064 + 3091 ], "pk_columns": [ - 3062, + 3089, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3059, + 3086, { "updates": [ - 3072, + 3099, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3093, + 3120, { "_inc": [ - 3087 + 3114 ], "_set": [ - 3098 + 3125 ], "where": [ - 3085, + 3112, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3076, + 3103, { "_inc": [ - 3087 + 3114 ], "_set": [ - 3098 + 3125 ], "pk_columns": [ - 3096, + 3123, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3093, + 3120, { "updates": [ - 3110, + 3137, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3136, + 3163, { "_inc": [ - 3130 + 3157 ], "_set": [ - 3143 + 3170 ], "where": [ - 3128, + 3155, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3117, + 3144, { "_inc": [ - 3130 + 3157 ], "_set": [ - 3143 + 3170 ], "pk_columns": [ - 3139, + 3166, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3136, + 3163, { "updates": [ - 3155, + 3182, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3197, + 3224, { "_inc": [ - 3191 + 3218 ], "_set": [ - 3202 + 3229 ], "where": [ - 3189, + 3216, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3180, + 3207, { "_inc": [ - 3191 + 3218 ], "_set": [ - 3202 + 3229 ], "pk_columns": [ - 3200, + 3227, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3197, + 3224, { "updates": [ - 3214, + 3241, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3231, + 3258, { "_inc": [ - 3227 + 3254 ], "_set": [ - 3236 + 3263 ], "where": [ - 3225, + 3252, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3221, + 3248, { "_inc": [ - 3227 + 3254 ], "_set": [ - 3236 + 3263 ], "pk_columns": [ - 3234, + 3261, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3231, + 3258, { "updates": [ - 3244, + 3271, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3265, + 3292, { "_inc": [ - 3259 + 3286 ], "_set": [ - 3270 + 3297 ], "where": [ - 3257, + 3284, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3248, + 3275, { "_inc": [ - 3259 + 3286 ], "_set": [ - 3270 + 3297 ], "pk_columns": [ - 3268, + 3295, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3265, + 3292, { "updates": [ - 3282, + 3309, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3308, + 3335, { "_inc": [ - 3302 + 3329 ], "_set": [ - 3315 + 3342 ], "where": [ - 3300, + 3327, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3289, + 3316, { "_inc": [ - 3302 + 3329 ], "_set": [ - 3315 + 3342 ], "pk_columns": [ - 3311, + 3338, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3308, + 3335, { "updates": [ - 3327, + 3354, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3394, + 3421, { "_inc": [ - 3388 + 3415 ], "_set": [ - 3401 + 3428 ], "where": [ - 3345, + 3372, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3334, + 3361, { "_inc": [ - 3388 + 3415 ], "_set": [ - 3401 + 3428 ], "pk_columns": [ - 3397, + 3424, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3363, + 3390, { "_inc": [ - 3357 + 3384 ], "_set": [ - 3368 + 3395 ], "where": [ - 3355, + 3382, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3346, + 3373, { "_inc": [ - 3357 + 3384 ], "_set": [ - 3368 + 3395 ], "pk_columns": [ - 3366, + 3393, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3363, + 3390, { "updates": [ - 3380, + 3407, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3394, + 3421, { "updates": [ - 3413, + 3440, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3429, + 3456, { "_inc": [ - 3425 + 3452 ], "_set": [ - 3432 + 3459 ], "where": [ - 3424, + 3451, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3429, + 3456, { "updates": [ - 3439, + 3466, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3460, + 3487, { "_inc": [ - 3454 + 3481 ], "_set": [ - 3465 + 3492 ], "where": [ - 3452, + 3479, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3443, + 3470, { "_inc": [ - 3454 + 3481 ], "_set": [ - 3465 + 3492 ], "pk_columns": [ - 3463, + 3490, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3460, + 3487, { "updates": [ - 3477, + 3504, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3552, + 3579, { "_inc": [ - 3546 + 3573 ], "_set": [ - 3557 + 3584 ], "where": [ - 3544, + 3571, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3535, + 3562, { "_inc": [ - 3546 + 3573 ], "_set": [ - 3557 + 3584 ], "pk_columns": [ - 3555, + 3582, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3552, + 3579, { "updates": [ - 3569, + 3596, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3611, + 3638, { "_inc": [ - 3605 + 3632 ], "_set": [ - 3616 + 3643 ], "where": [ - 3603, + 3630, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3594, + 3621, { "_inc": [ - 3605 + 3632 ], "_set": [ - 3616 + 3643 ], "pk_columns": [ - 3614, + 3641, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3611, + 3638, { "updates": [ - 3628, + 3655, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3652, + 3679, { "_inc": [ - 3646 + 3673 ], "_set": [ - 3657 + 3684 ], "where": [ - 3644, + 3671, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3635, + 3662, { "_inc": [ - 3646 + 3673 ], "_set": [ - 3657 + 3684 ], "pk_columns": [ - 3655, + 3682, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3652, + 3679, { "updates": [ - 3669, + 3696, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3703, + 3730, { "_inc": [ - 3697 + 3724 ], "_set": [ - 3716 + 3743 ], "where": [ - 3695, + 3722, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3676, + 3703, { "_inc": [ - 3697 + 3724 ], "_set": [ - 3716 + 3743 ], "pk_columns": [ - 3706, + 3733, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3703, + 3730, { "updates": [ - 3728, + 3755, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3745, + 3772, { "_inc": [ - 3741 + 3768 ], "_set": [ - 3751 + 3778 ], "where": [ - 3739, + 3766, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3735, + 3762, { "_inc": [ - 3741 + 3768 ], "_set": [ - 3751 + 3778 ], "pk_columns": [ - 3749, + 3776, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3745, + 3772, { "updates": [ - 3759, + 3786, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3777, + 3804, { "_append": [ - 3766 + 3793 ], "_delete_at_path": [ - 3770 + 3797 ], "_delete_elem": [ - 3771 + 3798 ], "_delete_key": [ - 3772 + 3799 ], "_inc": [ - 3773 + 3800 ], "_prepend": [ - 3781 + 3808 ], "_set": [ - 3783 + 3810 ], "where": [ - 3768, + 3795, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3763, + 3790, { "_append": [ - 3766 + 3793 ], "_delete_at_path": [ - 3770 + 3797 ], "_delete_elem": [ - 3771 + 3798 ], "_delete_key": [ - 3772 + 3799 ], "_inc": [ - 3773 + 3800 ], "_prepend": [ - 3781 + 3808 ], "_set": [ - 3783 + 3810 ], "pk_columns": [ - 3780, + 3807, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3777, + 3804, { "updates": [ - 3791, + 3818, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3805, + 3832, { "_inc": [ - 3801 + 3828 ], "_set": [ - 3810 + 3837 ], "where": [ - 3799, + 3826, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3795, + 3822, { "_inc": [ - 3801 + 3828 ], "_set": [ - 3810 + 3837 ], "pk_columns": [ - 3808, + 3835, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3805, + 3832, { "updates": [ - 3818, + 3845, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3839, + 3866, { "_inc": [ - 3833 + 3860 ], "_set": [ - 3844 + 3871 ], "where": [ - 3831, + 3858, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3822, + 3849, { "_inc": [ - 3833 + 3860 ], "_set": [ - 3844 + 3871 ], "pk_columns": [ - 3842, + 3869, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3839, + 3866, { "updates": [ - 3856, + 3883, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3880, + 3907, { "_inc": [ - 3874 + 3901 ], "_set": [ - 3885 + 3912 ], "where": [ - 3872, + 3899, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3863, + 3890, { "_inc": [ - 3874 + 3901 ], "_set": [ - 3885 + 3912 ], "pk_columns": [ - 3883, + 3910, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3880, + 3907, { "updates": [ - 3897, + 3924, "[player_utility_updates!]!" ] } ], "update_players": [ - 3947, + 3974, { "_inc": [ - 3943 + 3970 ], "_set": [ - 3953 + 3980 ], "where": [ - 3941, + 3968, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3937, + 3964, { "_inc": [ - 3943 + 3970 ], "_set": [ - 3953 + 3980 ], "pk_columns": [ - 3951, + 3978, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3947, + 3974, { "updates": [ - 3961, + 3988, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3975, + 4002, { "_inc": [ - 3971 + 3998 ], "_set": [ - 3980 + 4007 ], "where": [ - 3969, + 3996, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3965, + 3992, { "_inc": [ - 3971 + 3998 ], "_set": [ - 3980 + 4007 ], "pk_columns": [ - 3978, + 4005, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3975, + 4002, { "updates": [ - 3988, + 4015, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 4006, + 4033, { "_inc": [ - 4002 + 4029 ], "_set": [ - 4012 + 4039 ], "where": [ - 4000, + 4027, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3996, + 4023, { "_inc": [ - 4002 + 4029 ], "_set": [ - 4012 + 4039 ], "pk_columns": [ - 4010, + 4037, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4006, + 4033, { "updates": [ - 4020, + 4047, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4033, + 4060, { "_set": [ - 4039 + 4066 ], "where": [ - 4028, + 4055, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4024, + 4051, { "_set": [ - 4039 + 4066 ], "pk_columns": [ - 4037, + 4064, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4033, + 4060, { "updates": [ - 4047, + 4074, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4070, + 4097, { "_inc": [ - 4064 + 4091 ], "_set": [ - 4078 + 4105 ], "where": [ - 4062, + 4089, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4051, + 4078, { "_inc": [ - 4064 + 4091 ], "_set": [ - 4078 + 4105 ], "pk_columns": [ - 4074, + 4101, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4070, + 4097, { "updates": [ - 4090, + 4117, "[servers_updates!]!" ] } ], "update_settings": [ - 4105, + 4132, { "_set": [ - 4110 + 4137 ], "where": [ - 4100, + 4127, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4097, + 4124, { "_set": [ - 4110 + 4137 ], "pk_columns": [ - 4108, + 4135, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4105, + 4132, { "updates": [ - 4114, + 4141, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4131, + 4158, { "_set": [ - 4136 + 4163 ], "where": [ - 4124, + 4151, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4117, + 4144, { "_set": [ - 4136 + 4163 ], "pk_columns": [ - 4134, + 4161, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4131, + 4158, { "updates": [ - 4140, + 4167, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4151, + 4178, { "_inc": [ - 4147 + 4174 ], "_set": [ - 4157 + 4184 ], "where": [ - 4145, + 4172, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4141, + 4168, { "_inc": [ - 4147 + 4174 ], "_set": [ - 4157 + 4184 ], "pk_columns": [ - 4155, + 4182, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4151, + 4178, { "updates": [ - 4165, + 4192, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4179, + 4206, { "_inc": [ - 4175 + 4202 ], "_set": [ - 4184 + 4211 ], "where": [ - 4173, + 4200, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4169, + 4196, { "_inc": [ - 4175 + 4202 ], "_set": [ - 4184 + 4211 ], "pk_columns": [ - 4182, + 4209, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4179, + 4206, { "updates": [ - 4192, + 4219, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4213, + 4240, { "_inc": [ - 4207 + 4234 ], "_set": [ - 4218 + 4245 ], "where": [ - 4205, + 4232, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4196, + 4223, { "_inc": [ - 4207 + 4234 ], "_set": [ - 4218 + 4245 ], "pk_columns": [ - 4216, + 4243, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4213, + 4240, { "updates": [ - 4230, + 4257, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4256, + 4283, { "_inc": [ - 4250 + 4277 ], "_set": [ - 4263 + 4290 ], "where": [ - 4248, + 4275, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4237, + 4264, { "_inc": [ - 4250 + 4277 ], "_set": [ - 4263 + 4290 ], "pk_columns": [ - 4259, + 4286, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4256, + 4283, { "updates": [ - 4275, + 4302, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4292, + 4319, { "_inc": [ - 4288 + 4315 ], "_set": [ - 4297 + 4324 ], "where": [ - 4286, + 4313, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4282, + 4309, { "_inc": [ - 4288 + 4315 ], "_set": [ - 4297 + 4324 ], "pk_columns": [ - 4295, + 4322, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4292, + 4319, { "updates": [ - 4305, + 4332, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4325, + 4352, { "_set": [ - 4332 + 4359 ], "where": [ - 4318, + 4345, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4309, + 4336, { "_set": [ - 4332 + 4359 ], "pk_columns": [ - 4328, + 4355, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4325, + 4352, { "updates": [ - 4336, + 4363, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4354, + 4381, { "_inc": [ - 4348 + 4375 ], "_set": [ - 4359 + 4386 ], "where": [ - 4346, + 4373, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4337, + 4364, { "_inc": [ - 4348 + 4375 ], "_set": [ - 4359 + 4386 ], "pk_columns": [ - 4357, + 4384, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4354, + 4381, { "updates": [ - 4371, + 4398, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4397, + 4424, { "_inc": [ - 4391 + 4418 ], "_set": [ - 4405 + 4432 ], "where": [ - 4389, + 4416, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4378, + 4405, { "_inc": [ - 4391 + 4418 ], "_set": [ - 4405 + 4432 ], "pk_columns": [ - 4401, + 4428, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4397, + 4424, { "updates": [ - 4417, + 4444, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4434, + 4461, { "_inc": [ - 4430 + 4457 ], "_set": [ - 4440 + 4467 ], "where": [ - 4428, + 4455, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4424, + 4451, { "_inc": [ - 4430 + 4457 ], "_set": [ - 4440 + 4467 ], "pk_columns": [ - 4438, + 4465, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4434, + 4461, { "updates": [ - 4448, + 4475, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4462, + 4489, { "_inc": [ - 4458 + 4485 ], "_set": [ - 4467 + 4494 ], "where": [ - 4456, + 4483, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4452, + 4479, { "_inc": [ - 4458 + 4485 ], "_set": [ - 4467 + 4494 ], "pk_columns": [ - 4465, + 4492, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4462, + 4489, { "updates": [ - 4475, + 4502, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4498, + 4525, { "_inc": [ - 4492 + 4519 ], "_set": [ - 4506 + 4533 ], "where": [ - 4490, + 4517, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4479, + 4506, { "_inc": [ - 4492 + 4519 ], "_set": [ - 4506 + 4533 ], "pk_columns": [ - 4502, + 4529, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4498, + 4525, { "updates": [ - 4518, + 4545, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4545, + 4572, { "_inc": [ - 4539 + 4566 ], "_set": [ - 4551 + 4578 ], "where": [ - 4537, + 4564, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4528, + 4555, { "_inc": [ - 4539 + 4566 ], "_set": [ - 4551 + 4578 ], "pk_columns": [ - 4549, + 4576, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4545, + 4572, { "updates": [ - 4563, + 4590, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4589, + 4616, { "_inc": [ - 4583 + 4610 ], "_set": [ - 4597 + 4624 ], "where": [ - 4581, + 4608, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4570, + 4597, { "_inc": [ - 4583 + 4610 ], "_set": [ - 4597 + 4624 ], "pk_columns": [ - 4593, + 4620, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4589, + 4616, { "updates": [ - 4609, + 4636, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4630, + 4657, { "_set": [ - 4635 + 4662 ], "where": [ - 4623, + 4650, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4616, + 4643, { "_set": [ - 4635 + 4662 ], "pk_columns": [ - 4633, + 4660, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4630, + 4657, { "updates": [ - 4639, + 4666, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4654, + 4681, { "_set": [ - 4659 + 4686 ], "where": [ - 4647, + 4674, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4640, + 4667, { "_set": [ - 4659 + 4686 ], "pk_columns": [ - 4657, + 4684, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4654, + 4681, { "updates": [ - 4663, + 4690, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4681, + 4708, { "_inc": [ - 4675 + 4702 ], "_set": [ - 4686 + 4713 ], "where": [ - 4673, + 4700, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4664, + 4691, { "_inc": [ - 4675 + 4702 ], "_set": [ - 4686 + 4713 ], "pk_columns": [ - 4684, + 4711, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4681, + 4708, { "updates": [ - 4698, + 4725, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4722, + 4749, { "_inc": [ - 4716 + 4743 ], "_set": [ - 4727 + 4754 ], "where": [ - 4714, + 4741, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4705, + 4732, { "_inc": [ - 4716 + 4743 ], "_set": [ - 4727 + 4754 ], "pk_columns": [ - 4725, + 4752, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4722, + 4749, { "updates": [ - 4739, + 4766, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4763, + 4790, { "_inc": [ - 4757 + 4784 ], "_set": [ - 4768 + 4795 ], "where": [ - 4755, + 4782, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4746, + 4773, { "_inc": [ - 4757 + 4784 ], "_set": [ - 4768 + 4795 ], "pk_columns": [ - 4766, + 4793, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4763, + 4790, { "updates": [ - 4780, + 4807, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4810, + 4837, { "_append": [ - 4795 + 4822 ], "_delete_at_path": [ - 4801 + 4828 ], "_delete_elem": [ - 4802 + 4829 ], "_delete_key": [ - 4803 + 4830 ], "_inc": [ - 4804 + 4831 ], "_prepend": [ - 4815 + 4842 ], "_set": [ - 4819 + 4846 ], "where": [ - 4799, + 4826, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4787, + 4814, { "_append": [ - 4795 + 4822 ], "_delete_at_path": [ - 4801 + 4828 ], "_delete_elem": [ - 4802 + 4829 ], "_delete_key": [ - 4803 + 4830 ], "_inc": [ - 4804 + 4831 ], "_prepend": [ - 4815 + 4842 ], "_set": [ - 4819 + 4846 ], "pk_columns": [ - 4814, + 4841, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4810, + 4837, { "updates": [ - 4831, + 4858, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4855, + 4882, { "_inc": [ - 4849 + 4876 ], "_set": [ - 4860 + 4887 ], "where": [ - 4847, + 4874, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4838, + 4865, { "_inc": [ - 4849 + 4876 ], "_set": [ - 4860 + 4887 ], "pk_columns": [ - 4858, + 4885, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4855, + 4882, { "updates": [ - 4872, + 4899, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4896, + 4923, { "_inc": [ - 4890 + 4917 ], "_set": [ - 4901 + 4928 ], "where": [ - 4888, + 4915, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4879, + 4906, { "_inc": [ - 4890 + 4917 ], "_set": [ - 4901 + 4928 ], "pk_columns": [ - 4899, + 4926, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4896, + 4923, { "updates": [ - 4913, + 4940, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4937, + 4964, { "_inc": [ - 4931 + 4958 ], "_set": [ - 4943 + 4970 ], "where": [ - 4929, + 4956, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4920, + 4947, { "_inc": [ - 4931 + 4958 ], "_set": [ - 4943 + 4970 ], "pk_columns": [ - 4941, + 4968, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4937, + 4964, { "updates": [ - 4955, + 4982, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 4991, + 5018, { "_inc": [ - 4985 + 5012 ], "_set": [ - 5007 + 5034 ], "where": [ - 4983, + 5010, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4962, + 4989, { "_inc": [ - 4985 + 5012 ], "_set": [ - 5007 + 5034 ], "pk_columns": [ - 4995, + 5022, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4991, + 5018, { "updates": [ - 5019, + 5046, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5191, + 5218, { "_inc": [ - 5187 + 5214 ], "_set": [ - 5195 + 5222 ], "where": [ - 5186, + 5213, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5191, + 5218, { "updates": [ - 5202, + 5229, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5302, + 5329, { "_inc": [ - 5298 + 5325 ], "_set": [ - 5305 + 5332 ], "where": [ - 5297, + 5324, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5302, + 5329, { "updates": [ - 5312, + 5339, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5524, + 5551, { "_inc": [ - 5518 + 5545 ], "_set": [ - 5527 + 5554 ], "where": [ - 5517, + 5544, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5524, + 5551, { "updates": [ - 5538, + 5565, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5701, + 5728, { "_set": [ - 5706 + 5733 ], "where": [ - 5695, + 5722, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5701, + 5728, { "updates": [ - 5709, + 5736, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5795, + 5822, { "_inc": [ - 5789 + 5816 ], "_set": [ - 5809 + 5836 ], "where": [ - 5787, + 5814, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5768, + 5795, { "_inc": [ - 5789 + 5816 ], "_set": [ - 5809 + 5836 ], "pk_columns": [ - 5799, + 5826, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5795, + 5822, { "updates": [ - 5821, + 5848, "[v_team_stage_results_updates!]!" ] } @@ -162018,7 +162563,7 @@ export default { 83, { "game_server_node_id": [ - 5026, + 5053, "uuid!" ] } @@ -162027,10 +162572,10 @@ export default { 99, { "match_map_demo_id": [ - 5026 + 5053 ], "match_map_id": [ - 5026, + 5053, "uuid!" ] } @@ -162108,11 +162653,11 @@ export default { 100, { "map_id": [ - 5026, + 5053, "uuid!" ], "map_pool_id": [ - 5026, + 5053, "uuid!" ] } @@ -162181,7 +162726,7 @@ export default { 119, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162250,7 +162795,7 @@ export default { 160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162319,7 +162864,7 @@ export default { 188, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162388,7 +162933,7 @@ export default { 229, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162457,7 +163002,7 @@ export default { 262, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162526,7 +163071,7 @@ export default { 314, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162595,7 +163140,7 @@ export default { 346, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162664,7 +163209,7 @@ export default { 373, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -162733,7 +163278,7 @@ export default { 418, { "draft_game_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -162806,7 +163351,7 @@ export default { 463, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -165980,11 +166525,11 @@ export default { 1430, { "event_id": [ - 5026, + 5053, "uuid!" ], "match_id": [ - 5026, + 5053, "uuid!" ] } @@ -166053,7 +166598,7 @@ export default { 1448, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -166106,7 +166651,7 @@ export default { 1470, { "media_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -166195,7 +166740,7 @@ export default { 1531, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -166268,7 +166813,7 @@ export default { 1572, { "event_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -166341,11 +166886,11 @@ export default { 1613, { "event_id": [ - 5026, + 5053, "uuid!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } @@ -166414,11 +166959,11 @@ export default { 1637, { "event_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } @@ -166487,7 +167032,7 @@ export default { 1661, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -166767,7 +167312,7 @@ export default { 1802, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -166945,14 +167490,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 3420, + 3447, { "args": [ 1837, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -166962,23 +167507,23 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3421, + 3448, { "args": [ 1837, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -166988,11 +167533,11 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], @@ -167104,7 +167649,7 @@ export default { 1869, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167173,7 +167718,7 @@ export default { 1897, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167242,7 +167787,7 @@ export default { 1938, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167311,7 +167856,7 @@ export default { 1979, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167380,7 +167925,7 @@ export default { 2020, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167449,7 +167994,7 @@ export default { 2045, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167518,7 +168063,7 @@ export default { 2078, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167587,7 +168132,7 @@ export default { 2119, { "league_team_season_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -167660,7 +168205,7 @@ export default { 2160, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167729,7 +168274,7 @@ export default { 2202, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167798,7 +168343,7 @@ export default { 2221, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -167867,7 +168412,7 @@ export default { 2240, { "lobby_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -167940,7 +168485,7 @@ export default { 2285, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -168009,7 +168554,7 @@ export default { 2304, { "id": [ - 5026, + 5053, "uuid!" ] } @@ -168030,11 +168575,80 @@ export default { ] } ], - "match_clips": [ + "match_camera_tokens": [ + 2333, + { + "distinct_on": [ + 2347, + "[match_camera_tokens_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2345, + "[match_camera_tokens_order_by!]" + ], + "where": [ + 2337 + ] + } + ], + "match_camera_tokens_aggregate": [ + 2334, + { + "distinct_on": [ + 2347, + "[match_camera_tokens_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2345, + "[match_camera_tokens_order_by!]" + ], + "where": [ + 2337 + ] + } + ], + "match_camera_tokens_by_pk": [ + 2333, + { + "id": [ + 5053, + "uuid!" + ] + } + ], + "match_camera_tokens_stream": [ 2333, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 2352, + "[match_camera_tokens_stream_cursor_input]!" + ], + "where": [ + 2337 + ] + } + ], + "match_clips": [ + 2360, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -168044,19 +168658,19 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_aggregate": [ - 2334, + 2361, { "distinct_on": [ - 2355, + 2382, "[match_clips_select_column!]" ], "limit": [ @@ -168066,44 +168680,44 @@ export default { 40 ], "order_by": [ - 2353, + 2380, "[match_clips_order_by!]" ], "where": [ - 2342 + 2369 ] } ], "match_clips_by_pk": [ - 2333, + 2360, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_clips_stream": [ - 2333, + 2360, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2363, + 2390, "[match_clips_stream_cursor_input]!" ], "where": [ - 2342 + 2369 ] } ], "match_demo_sessions": [ - 2375, + 2402, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -168113,19 +168727,19 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], "match_demo_sessions_aggregate": [ - 2376, + 2403, { "distinct_on": [ - 2401, + 2428, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -168135,44 +168749,44 @@ export default { 40 ], "order_by": [ - 2398, + 2425, "[match_demo_sessions_order_by!]" ], "where": [ - 2385 + 2412 ] } ], "match_demo_sessions_by_pk": [ - 2375, + 2402, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2375, + 2402, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2409, + 2436, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2385 + 2412 ] } ], "match_lineup_players": [ - 2421, + 2448, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -168182,19 +168796,19 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match_lineup_players_aggregate": [ - 2422, + 2449, { "distinct_on": [ - 2444, + 2471, "[match_lineup_players_select_column!]" ], "limit": [ @@ -168204,44 +168818,44 @@ export default { 40 ], "order_by": [ - 2442, + 2469, "[match_lineup_players_order_by!]" ], "where": [ - 2432 + 2459 ] } ], "match_lineup_players_by_pk": [ - 2421, + 2448, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_lineup_players_stream": [ - 2421, + 2448, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2454, + 2481, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2432 + 2459 ] } ], "match_lineups": [ - 2466, + 2493, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -168251,19 +168865,19 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "match_lineups_aggregate": [ - 2467, + 2494, { "distinct_on": [ - 2488, + 2515, "[match_lineups_select_column!]" ], "limit": [ @@ -168273,44 +168887,44 @@ export default { 40 ], "order_by": [ - 2486, + 2513, "[match_lineups_order_by!]" ], "where": [ - 2475 + 2502 ] } ], "match_lineups_by_pk": [ - 2466, + 2493, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_lineups_stream": [ - 2466, + 2493, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2496, + 2523, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2475 + 2502 ] } ], "match_map_demos": [ - 2508, + 2535, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -168320,19 +168934,19 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "match_map_demos_aggregate": [ - 2509, + 2536, { "distinct_on": [ - 2537, + 2564, "[match_map_demos_select_column!]" ], "limit": [ @@ -168342,44 +168956,44 @@ export default { 40 ], "order_by": [ - 2534, + 2561, "[match_map_demos_order_by!]" ], "where": [ - 2520 + 2547 ] } ], "match_map_demos_by_pk": [ - 2508, + 2535, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_demos_stream": [ - 2508, + 2535, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2547, + 2574, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2520 + 2547 ] } ], "match_map_rounds": [ - 2559, + 2586, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -168389,19 +169003,19 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "match_map_rounds_aggregate": [ - 2560, + 2587, { "distinct_on": [ - 2580, + 2607, "[match_map_rounds_select_column!]" ], "limit": [ @@ -168411,44 +169025,44 @@ export default { 40 ], "order_by": [ - 2578, + 2605, "[match_map_rounds_order_by!]" ], "where": [ - 2568 + 2595 ] } ], "match_map_rounds_by_pk": [ - 2559, + 2586, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_rounds_stream": [ - 2559, + 2586, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2588, + 2615, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2568 + 2595 ] } ], "match_map_veto_picks": [ - 2600, + 2627, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -168458,19 +169072,19 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_map_veto_picks_aggregate": [ - 2601, + 2628, { "distinct_on": [ - 2620, + 2647, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -168480,44 +169094,44 @@ export default { 40 ], "order_by": [ - 2618, + 2645, "[match_map_veto_picks_order_by!]" ], "where": [ - 2609 + 2636 ] } ], "match_map_veto_picks_by_pk": [ - 2600, + 2627, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2600, + 2627, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2624, + 2651, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2609 + 2636 ] } ], "match_maps": [ - 2628, + 2655, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -168527,19 +169141,19 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_aggregate": [ - 2629, + 2656, { "distinct_on": [ - 2650, + 2677, "[match_maps_select_column!]" ], "limit": [ @@ -168549,44 +169163,44 @@ export default { 40 ], "order_by": [ - 2648, + 2675, "[match_maps_order_by!]" ], "where": [ - 2637 + 2664 ] } ], "match_maps_by_pk": [ - 2628, + 2655, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_maps_stream": [ - 2628, + 2655, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2658, + 2685, "[match_maps_stream_cursor_input]!" ], "where": [ - 2637 + 2664 ] } ], "match_options": [ - 2670, + 2697, { "distinct_on": [ - 2685, + 2712, "[match_options_select_column!]" ], "limit": [ @@ -168596,19 +169210,19 @@ export default { 40 ], "order_by": [ - 2683, + 2710, "[match_options_order_by!]" ], "where": [ - 2674 + 2701 ] } ], "match_options_aggregate": [ - 2671, + 2698, { "distinct_on": [ - 2685, + 2712, "[match_options_select_column!]" ], "limit": [ @@ -168618,44 +169232,44 @@ export default { 40 ], "order_by": [ - 2683, + 2710, "[match_options_order_by!]" ], "where": [ - 2674 + 2701 ] } ], "match_options_by_pk": [ - 2670, + 2697, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_options_stream": [ - 2670, + 2697, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2690, + 2717, "[match_options_stream_cursor_input]!" ], "where": [ - 2674 + 2701 ] } ], "match_region_veto_picks": [ - 2698, + 2725, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -168665,19 +169279,19 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], "match_region_veto_picks_aggregate": [ - 2699, + 2726, { "distinct_on": [ - 2718, + 2745, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -168687,44 +169301,44 @@ export default { 40 ], "order_by": [ - 2716, + 2743, "[match_region_veto_picks_order_by!]" ], "where": [ - 2707 + 2734 ] } ], "match_region_veto_picks_by_pk": [ - 2698, + 2725, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2698, + 2725, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2722, + 2749, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2707 + 2734 ] } ], "match_streams": [ - 2726, + 2753, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -168734,19 +169348,19 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "match_streams_aggregate": [ - 2727, + 2754, { "distinct_on": [ - 2754, + 2781, "[match_streams_select_column!]" ], "limit": [ @@ -168756,44 +169370,44 @@ export default { 40 ], "order_by": [ - 2751, + 2778, "[match_streams_order_by!]" ], "where": [ - 2738 + 2765 ] } ], "match_streams_by_pk": [ - 2726, + 2753, { "id": [ - 5026, + 5053, "uuid!" ] } ], "match_streams_stream": [ - 2726, + 2753, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2764, + 2791, "[match_streams_stream_cursor_input]!" ], "where": [ - 2738 + 2765 ] } ], "match_type_cfgs": [ - 2776, + 2803, { "distinct_on": [ - 2788, + 2815, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -168803,19 +169417,19 @@ export default { 40 ], "order_by": [ - 2786, + 2813, "[match_type_cfgs_order_by!]" ], "where": [ - 2779 + 2806 ] } ], "match_type_cfgs_aggregate": [ - 2777, + 2804, { "distinct_on": [ - 2788, + 2815, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -168825,16 +169439,16 @@ export default { 40 ], "order_by": [ - 2786, + 2813, "[match_type_cfgs_order_by!]" ], "where": [ - 2779 + 2806 ] } ], "match_type_cfgs_by_pk": [ - 2776, + 2803, { "type": [ 740, @@ -168843,26 +169457,26 @@ export default { } ], "match_type_cfgs_stream": [ - 2776, + 2803, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2790, + 2817, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2779 + 2806 ] } ], "matches": [ - 2794, + 2821, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -168872,19 +169486,19 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_aggregate": [ - 2795, + 2822, { "distinct_on": [ - 2816, + 2843, "[matches_select_column!]" ], "limit": [ @@ -168894,44 +169508,44 @@ export default { 40 ], "order_by": [ - 2814, + 2841, "[matches_order_by!]" ], "where": [ - 2803 + 2830 ] } ], "matches_by_pk": [ - 2794, + 2821, { "id": [ - 5026, + 5053, "uuid!" ] } ], "matches_stream": [ - 2794, + 2821, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2824, + 2851, "[matches_stream_cursor_input]!" ], "where": [ - 2803 + 2830 ] } ], "migration_hashes_hashes": [ - 2836, + 2863, { "distinct_on": [ - 2848, + 2875, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -168941,19 +169555,19 @@ export default { 40 ], "order_by": [ - 2846, + 2873, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2839 + 2866 ] } ], "migration_hashes_hashes_aggregate": [ - 2837, + 2864, { "distinct_on": [ - 2848, + 2875, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -168963,16 +169577,16 @@ export default { 40 ], "order_by": [ - 2846, + 2873, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2839 + 2866 ] } ], "migration_hashes_hashes_by_pk": [ - 2836, + 2863, { "name": [ 80, @@ -168981,26 +169595,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2836, + 2863, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2850, + 2877, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2839 + 2866 ] } ], "my_friends": [ - 2854, + 2881, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -169010,19 +169624,19 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], "my_friends_aggregate": [ - 2855, + 2882, { "distinct_on": [ - 2879, + 2906, "[my_friends_select_column!]" ], "limit": [ @@ -169032,35 +169646,35 @@ export default { 40 ], "order_by": [ - 2877, + 2904, "[my_friends_order_by!]" ], "where": [ - 2866 + 2893 ] } ], "my_friends_stream": [ - 2854, + 2881, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2889, + 2916, "[my_friends_stream_cursor_input]!" ], "where": [ - 2866 + 2893 ] } ], "news_articles": [ - 2900, + 2927, { "distinct_on": [ - 2914, + 2941, "[news_articles_select_column!]" ], "limit": [ @@ -169070,19 +169684,19 @@ export default { 40 ], "order_by": [ - 2912, + 2939, "[news_articles_order_by!]" ], "where": [ - 2904 + 2931 ] } ], "news_articles_aggregate": [ - 2901, + 2928, { "distinct_on": [ - 2914, + 2941, "[news_articles_select_column!]" ], "limit": [ @@ -169092,44 +169706,44 @@ export default { 40 ], "order_by": [ - 2912, + 2939, "[news_articles_order_by!]" ], "where": [ - 2904 + 2931 ] } ], "news_articles_by_pk": [ - 2900, + 2927, { "id": [ - 5026, + 5053, "uuid!" ] } ], "news_articles_stream": [ - 2900, + 2927, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2919, + 2946, "[news_articles_stream_cursor_input]!" ], "where": [ - 2904 + 2931 ] } ], "notifications": [ - 2927, + 2954, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -169139,19 +169753,19 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "notifications_aggregate": [ - 2928, + 2955, { "distinct_on": [ - 2955, + 2982, "[notifications_select_column!]" ], "limit": [ @@ -169161,44 +169775,44 @@ export default { 40 ], "order_by": [ - 2952, + 2979, "[notifications_order_by!]" ], "where": [ - 2939 + 2966 ] } ], "notifications_by_pk": [ - 2927, + 2954, { "id": [ - 5026, + 5053, "uuid!" ] } ], "notifications_stream": [ - 2927, + 2954, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2965, + 2992, "[notifications_stream_cursor_input]!" ], "where": [ - 2939 + 2966 ] } ], "pending_match_import_players": [ - 2980, + 3007, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -169208,19 +169822,19 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "pending_match_import_players_aggregate": [ - 2981, + 3008, { "distinct_on": [ - 3001, + 3028, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -169230,48 +169844,48 @@ export default { 40 ], "order_by": [ - 2999, + 3026, "[pending_match_import_players_order_by!]" ], "where": [ - 2989 + 3016 ] } ], "pending_match_import_players_by_pk": [ - 2980, + 3007, { "steam_id": [ 257, "bigint!" ], "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2980, + 3007, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3009, + 3036, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2989 + 3016 ] } ], "pending_match_imports": [ - 3021, + 3048, { "distinct_on": [ - 3036, + 3063, "[pending_match_imports_select_column!]" ], "limit": [ @@ -169281,19 +169895,19 @@ export default { 40 ], "order_by": [ - 3034, + 3061, "[pending_match_imports_order_by!]" ], "where": [ - 3025 + 3052 ] } ], "pending_match_imports_aggregate": [ - 3022, + 3049, { "distinct_on": [ - 3036, + 3063, "[pending_match_imports_select_column!]" ], "limit": [ @@ -169303,44 +169917,44 @@ export default { 40 ], "order_by": [ - 3034, + 3061, "[pending_match_imports_order_by!]" ], "where": [ - 3025 + 3052 ] } ], "pending_match_imports_by_pk": [ - 3021, + 3048, { "valve_match_id": [ - 2977, + 3004, "numeric!" ] } ], "pending_match_imports_stream": [ - 3021, + 3048, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3041, + 3068, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3025 + 3052 ] } ], "player_aim_stats_demo": [ - 3049, + 3076, { "distinct_on": [ - 3063, + 3090, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -169350,19 +169964,19 @@ export default { 40 ], "order_by": [ - 3061, + 3088, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3053 + 3080 ] } ], "player_aim_stats_demo_aggregate": [ - 3050, + 3077, { "distinct_on": [ - 3063, + 3090, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -169372,48 +169986,48 @@ export default { 40 ], "order_by": [ - 3061, + 3088, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3053 + 3080 ] } ], "player_aim_stats_demo_by_pk": [ - 3049, + 3076, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3049, + 3076, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3068, + 3095, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3053 + 3080 ] } ], "player_aim_weapon_stats": [ - 3076, + 3103, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -169423,19 +170037,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "player_aim_weapon_stats_aggregate": [ - 3077, + 3104, { "distinct_on": [ - 3097, + 3124, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -169445,19 +170059,19 @@ export default { 40 ], "order_by": [ - 3095, + 3122, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3085 + 3112 ] } ], "player_aim_weapon_stats_by_pk": [ - 3076, + 3103, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -169471,26 +170085,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 3076, + 3103, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3105, + 3132, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3085 + 3112 ] } ], "player_assists": [ - 3117, + 3144, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -169500,19 +170114,19 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_aggregate": [ - 3118, + 3145, { "distinct_on": [ - 3140, + 3167, "[player_assists_select_column!]" ], "limit": [ @@ -169522,16 +170136,16 @@ export default { 40 ], "order_by": [ - 3138, + 3165, "[player_assists_order_by!]" ], "where": [ - 3128 + 3155 ] } ], "player_assists_by_pk": [ - 3117, + 3144, { "attacked_steam_id": [ 257, @@ -169542,36 +170156,36 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_assists_stream": [ - 3117, + 3144, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3150, + 3177, "[player_assists_stream_cursor_input]!" ], "where": [ - 3128 + 3155 ] } ], "player_career_stats_v": [ - 3162, + 3189, { "distinct_on": [ - 3170, + 3197, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -169581,19 +170195,19 @@ export default { 40 ], "order_by": [ - 3169, + 3196, "[player_career_stats_v_order_by!]" ], "where": [ - 3166 + 3193 ] } ], "player_career_stats_v_aggregate": [ - 3163, + 3190, { "distinct_on": [ - 3170, + 3197, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -169603,35 +170217,35 @@ export default { 40 ], "order_by": [ - 3169, + 3196, "[player_career_stats_v_order_by!]" ], "where": [ - 3166 + 3193 ] } ], "player_career_stats_v_stream": [ - 3162, + 3189, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3174, + 3201, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3166 + 3193 ] } ], "player_damages": [ - 3180, + 3207, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -169641,19 +170255,19 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_aggregate": [ - 3181, + 3208, { "distinct_on": [ - 3201, + 3228, "[player_damages_select_column!]" ], "limit": [ @@ -169663,52 +170277,52 @@ export default { 40 ], "order_by": [ - 3199, + 3226, "[player_damages_order_by!]" ], "where": [ - 3189 + 3216 ] } ], "player_damages_by_pk": [ - 3180, + 3207, { "id": [ - 5026, + 5053, "uuid!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_damages_stream": [ - 3180, + 3207, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3209, + 3236, "[player_damages_stream_cursor_input]!" ], "where": [ - 3189 + 3216 ] } ], "player_elo": [ - 3221, + 3248, { "distinct_on": [ - 3235, + 3262, "[player_elo_select_column!]" ], "limit": [ @@ -169718,19 +170332,19 @@ export default { 40 ], "order_by": [ - 3233, + 3260, "[player_elo_order_by!]" ], "where": [ - 3225 + 3252 ] } ], "player_elo_aggregate": [ - 3222, + 3249, { "distinct_on": [ - 3235, + 3262, "[player_elo_select_column!]" ], "limit": [ @@ -169740,19 +170354,19 @@ export default { 40 ], "order_by": [ - 3233, + 3260, "[player_elo_order_by!]" ], "where": [ - 3225 + 3252 ] } ], "player_elo_by_pk": [ - 3221, + 3248, { "match_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -169766,26 +170380,26 @@ export default { } ], "player_elo_stream": [ - 3221, + 3248, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3240, + 3267, "[player_elo_stream_cursor_input]!" ], "where": [ - 3225 + 3252 ] } ], "player_faceit_rank_history": [ - 3248, + 3275, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -169795,19 +170409,19 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], "player_faceit_rank_history_aggregate": [ - 3249, + 3276, { "distinct_on": [ - 3269, + 3296, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -169817,44 +170431,44 @@ export default { 40 ], "order_by": [ - 3267, + 3294, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3257 + 3284 ] } ], "player_faceit_rank_history_by_pk": [ - 3248, + 3275, { "id": [ - 5026, + 5053, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3248, + 3275, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3277, + 3304, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3257 + 3284 ] } ], "player_flashes": [ - 3289, + 3316, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -169864,19 +170478,19 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_flashes_aggregate": [ - 3290, + 3317, { "distinct_on": [ - 3312, + 3339, "[player_flashes_select_column!]" ], "limit": [ @@ -169886,16 +170500,16 @@ export default { 40 ], "order_by": [ - 3310, + 3337, "[player_flashes_order_by!]" ], "where": [ - 3300 + 3327 ] } ], "player_flashes_by_pk": [ - 3289, + 3316, { "attacked_steam_id": [ 257, @@ -169906,36 +170520,36 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_flashes_stream": [ - 3289, + 3316, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3322, + 3349, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3300 + 3327 ] } ], "player_kills": [ - 3334, + 3361, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -169945,19 +170559,19 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_aggregate": [ - 3335, + 3362, { "distinct_on": [ - 3398, + 3425, "[player_kills_select_column!]" ], "limit": [ @@ -169967,16 +170581,16 @@ export default { 40 ], "order_by": [ - 3396, + 3423, "[player_kills_order_by!]" ], "where": [ - 3345 + 3372 ] } ], "player_kills_by_pk": [ - 3334, + 3361, { "attacked_steam_id": [ 257, @@ -169987,20 +170601,20 @@ export default { "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3346, + 3373, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -170010,19 +170624,19 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], "player_kills_by_weapon_aggregate": [ - 3347, + 3374, { "distinct_on": [ - 3367, + 3394, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -170032,16 +170646,16 @@ export default { 40 ], "order_by": [ - 3365, + 3392, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3355 + 3382 ] } ], "player_kills_by_weapon_by_pk": [ - 3346, + 3373, { "player_steam_id": [ 257, @@ -170054,42 +170668,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3346, + 3373, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3375, + 3402, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3355 + 3382 ] } ], "player_kills_stream": [ - 3334, + 3361, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3408, + 3435, "[player_kills_stream_cursor_input]!" ], "where": [ - 3345 + 3372 ] } ], "player_leaderboard_rank": [ - 3420, + 3447, { "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170099,19 +170713,19 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "player_leaderboard_rank_aggregate": [ - 3421, + 3448, { "distinct_on": [ - 3431, + 3458, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170121,35 +170735,35 @@ export default { 40 ], "order_by": [ - 3430, + 3457, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3424 + 3451 ] } ], "player_leaderboard_rank_stream": [ - 3420, + 3447, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3436, + 3463, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3424 + 3451 ] } ], "player_match_map_stats": [ - 3443, + 3470, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -170159,19 +170773,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "player_match_map_stats_aggregate": [ - 3444, + 3471, { "distinct_on": [ - 3464, + 3491, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -170181,19 +170795,19 @@ export default { 40 ], "order_by": [ - 3462, + 3489, "[player_match_map_stats_order_by!]" ], "where": [ - 3452 + 3479 ] } ], "player_match_map_stats_by_pk": [ - 3443, + 3470, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "steam_id": [ @@ -170203,26 +170817,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3443, + 3470, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3472, + 3499, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3452 + 3479 ] } ], "player_match_performance_v": [ - 3484, + 3511, { "distinct_on": [ - 3492, + 3519, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -170232,19 +170846,19 @@ export default { 40 ], "order_by": [ - 3491, + 3518, "[player_match_performance_v_order_by!]" ], "where": [ - 3488 + 3515 ] } ], "player_match_performance_v_aggregate": [ - 3485, + 3512, { "distinct_on": [ - 3492, + 3519, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -170254,35 +170868,35 @@ export default { 40 ], "order_by": [ - 3491, + 3518, "[player_match_performance_v_order_by!]" ], "where": [ - 3488 + 3515 ] } ], "player_match_performance_v_stream": [ - 3484, + 3511, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3496, + 3523, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3488 + 3515 ] } ], "player_match_stats_v": [ - 3502, + 3529, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -170292,19 +170906,19 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "player_match_stats_v_aggregate": [ - 3503, + 3530, { "distinct_on": [ - 3518, + 3545, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -170314,35 +170928,35 @@ export default { 40 ], "order_by": [ - 3517, + 3544, "[player_match_stats_v_order_by!]" ], "where": [ - 3511 + 3538 ] } ], "player_match_stats_v_stream": [ - 3502, + 3529, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3525, + 3552, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3511 + 3538 ] } ], "player_objectives": [ - 3535, + 3562, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -170352,19 +170966,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_aggregate": [ - 3536, + 3563, { "distinct_on": [ - 3556, + 3583, "[player_objectives_select_column!]" ], "limit": [ @@ -170374,19 +170988,19 @@ export default { 40 ], "order_by": [ - 3554, + 3581, "[player_objectives_order_by!]" ], "where": [ - 3544 + 3571 ] } ], "player_objectives_by_pk": [ - 3535, + 3562, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -170394,32 +171008,32 @@ export default { "bigint!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_objectives_stream": [ - 3535, + 3562, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3564, + 3591, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3544 + 3571 ] } ], "player_performance_v": [ - 3576, + 3603, { "distinct_on": [ - 3584, + 3611, "[player_performance_v_select_column!]" ], "limit": [ @@ -170429,19 +171043,19 @@ export default { 40 ], "order_by": [ - 3583, + 3610, "[player_performance_v_order_by!]" ], "where": [ - 3580 + 3607 ] } ], "player_performance_v_aggregate": [ - 3577, + 3604, { "distinct_on": [ - 3584, + 3611, "[player_performance_v_select_column!]" ], "limit": [ @@ -170451,35 +171065,35 @@ export default { 40 ], "order_by": [ - 3583, + 3610, "[player_performance_v_order_by!]" ], "where": [ - 3580 + 3607 ] } ], "player_performance_v_stream": [ - 3576, + 3603, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3588, + 3615, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3580 + 3607 ] } ], "player_premier_rank_history": [ - 3594, + 3621, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -170489,19 +171103,19 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "player_premier_rank_history_aggregate": [ - 3595, + 3622, { "distinct_on": [ - 3615, + 3642, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -170511,44 +171125,44 @@ export default { 40 ], "order_by": [ - 3613, + 3640, "[player_premier_rank_history_order_by!]" ], "where": [ - 3603 + 3630 ] } ], "player_premier_rank_history_by_pk": [ - 3594, + 3621, { "id": [ - 5026, + 5053, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3594, + 3621, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3623, + 3650, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3603 + 3630 ] } ], "player_sanctions": [ - 3635, + 3662, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -170558,19 +171172,19 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "player_sanctions_aggregate": [ - 3636, + 3663, { "distinct_on": [ - 3656, + 3683, "[player_sanctions_select_column!]" ], "limit": [ @@ -170580,48 +171194,48 @@ export default { 40 ], "order_by": [ - 3654, + 3681, "[player_sanctions_order_by!]" ], "where": [ - 3644 + 3671 ] } ], "player_sanctions_by_pk": [ - 3635, + 3662, { "created_at": [ - 4526, + 4553, "timestamptz!" ], "id": [ - 5026, + 5053, "uuid!" ] } ], "player_sanctions_stream": [ - 3635, + 3662, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3664, + 3691, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3644 + 3671 ] } ], "player_season_stats": [ - 3676, + 3703, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -170631,19 +171245,19 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "player_season_stats_aggregate": [ - 3677, + 3704, { "distinct_on": [ - 3707, + 3734, "[player_season_stats_select_column!]" ], "limit": [ @@ -170653,48 +171267,48 @@ export default { 40 ], "order_by": [ - 3705, + 3732, "[player_season_stats_order_by!]" ], "where": [ - 3695 + 3722 ] } ], "player_season_stats_by_pk": [ - 3676, + 3703, { "player_steam_id": [ 257, "bigint!" ], "season_id": [ - 5026, + 5053, "uuid!" ] } ], "player_season_stats_stream": [ - 3676, + 3703, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3723, + 3750, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3695 + 3722 ] } ], "player_stats": [ - 3735, + 3762, { "distinct_on": [ - 3750, + 3777, "[player_stats_select_column!]" ], "limit": [ @@ -170704,19 +171318,19 @@ export default { 40 ], "order_by": [ - 3748, + 3775, "[player_stats_order_by!]" ], "where": [ - 3739 + 3766 ] } ], "player_stats_aggregate": [ - 3736, + 3763, { "distinct_on": [ - 3750, + 3777, "[player_stats_select_column!]" ], "limit": [ @@ -170726,16 +171340,16 @@ export default { 40 ], "order_by": [ - 3748, + 3775, "[player_stats_order_by!]" ], "where": [ - 3739 + 3766 ] } ], "player_stats_by_pk": [ - 3735, + 3762, { "player_steam_id": [ 257, @@ -170744,26 +171358,26 @@ export default { } ], "player_stats_stream": [ - 3735, + 3762, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3755, + 3782, "[player_stats_stream_cursor_input]!" ], "where": [ - 3739 + 3766 ] } ], "player_steam_bot_friend": [ - 3763, + 3790, { "distinct_on": [ - 3782, + 3809, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -170773,19 +171387,19 @@ export default { 40 ], "order_by": [ - 3779, + 3806, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3768 + 3795 ] } ], "player_steam_bot_friend_aggregate": [ - 3764, + 3791, { "distinct_on": [ - 3782, + 3809, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -170795,16 +171409,16 @@ export default { 40 ], "order_by": [ - 3779, + 3806, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3768 + 3795 ] } ], "player_steam_bot_friend_by_pk": [ - 3763, + 3790, { "steam_id": [ 257, @@ -170813,26 +171427,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3763, + 3790, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3787, + 3814, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3768 + 3795 ] } ], "player_steam_match_auth": [ - 3795, + 3822, { "distinct_on": [ - 3809, + 3836, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -170842,19 +171456,19 @@ export default { 40 ], "order_by": [ - 3807, + 3834, "[player_steam_match_auth_order_by!]" ], "where": [ - 3799 + 3826 ] } ], "player_steam_match_auth_aggregate": [ - 3796, + 3823, { "distinct_on": [ - 3809, + 3836, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -170864,16 +171478,16 @@ export default { 40 ], "order_by": [ - 3807, + 3834, "[player_steam_match_auth_order_by!]" ], "where": [ - 3799 + 3826 ] } ], "player_steam_match_auth_by_pk": [ - 3795, + 3822, { "steam_id": [ 257, @@ -170882,26 +171496,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3795, + 3822, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3814, + 3841, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3799 + 3826 ] } ], "player_unused_utility": [ - 3822, + 3849, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -170911,19 +171525,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utility_aggregate": [ - 3823, + 3850, { "distinct_on": [ - 3843, + 3870, "[player_unused_utility_select_column!]" ], "limit": [ @@ -170933,19 +171547,19 @@ export default { 40 ], "order_by": [ - 3841, + 3868, "[player_unused_utility_order_by!]" ], "where": [ - 3831 + 3858 ] } ], "player_unused_utility_by_pk": [ - 3822, + 3849, { "match_map_id": [ - 5026, + 5053, "uuid!" ], "player_steam_id": [ @@ -170955,26 +171569,26 @@ export default { } ], "player_unused_utility_stream": [ - 3822, + 3849, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3851, + 3878, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3831 + 3858 ] } ], "player_utility": [ - 3863, + 3890, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -170984,19 +171598,19 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utility_aggregate": [ - 3864, + 3891, { "distinct_on": [ - 3884, + 3911, "[player_utility_select_column!]" ], "limit": [ @@ -171006,52 +171620,52 @@ export default { 40 ], "order_by": [ - 3882, + 3909, "[player_utility_order_by!]" ], "where": [ - 3872 + 3899 ] } ], "player_utility_by_pk": [ - 3863, + 3890, { "attacker_steam_id": [ 257, "bigint!" ], "match_map_id": [ - 5026, + 5053, "uuid!" ], "time": [ - 4526, + 4553, "timestamptz!" ] } ], "player_utility_stream": [ - 3863, + 3890, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3892, + 3919, "[player_utility_stream_cursor_input]!" ], "where": [ - 3872 + 3899 ] } ], "player_weapon_stats_v": [ - 3904, + 3931, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -171061,19 +171675,19 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], "player_weapon_stats_v_aggregate": [ - 3905, + 3932, { "distinct_on": [ - 3920, + 3947, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -171083,35 +171697,35 @@ export default { 40 ], "order_by": [ - 3919, + 3946, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3913 + 3940 ] } ], "player_weapon_stats_v_stream": [ - 3904, + 3931, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3927, + 3954, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3913 + 3940 ] } ], "players": [ - 3937, + 3964, { "distinct_on": [ - 3952, + 3979, "[players_select_column!]" ], "limit": [ @@ -171121,19 +171735,19 @@ export default { 40 ], "order_by": [ - 3950, + 3977, "[players_order_by!]" ], "where": [ - 3941 + 3968 ] } ], "players_aggregate": [ - 3938, + 3965, { "distinct_on": [ - 3952, + 3979, "[players_select_column!]" ], "limit": [ @@ -171143,16 +171757,16 @@ export default { 40 ], "order_by": [ - 3950, + 3977, "[players_order_by!]" ], "where": [ - 3941 + 3968 ] } ], "players_by_pk": [ - 3937, + 3964, { "steam_id": [ 257, @@ -171161,26 +171775,26 @@ export default { } ], "players_stream": [ - 3937, + 3964, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3957, + 3984, "[players_stream_cursor_input]!" ], "where": [ - 3941 + 3968 ] } ], "plugin_versions": [ - 3965, + 3992, { "distinct_on": [ - 3979, + 4006, "[plugin_versions_select_column!]" ], "limit": [ @@ -171190,19 +171804,19 @@ export default { 40 ], "order_by": [ - 3977, + 4004, "[plugin_versions_order_by!]" ], "where": [ - 3969 + 3996 ] } ], "plugin_versions_aggregate": [ - 3966, + 3993, { "distinct_on": [ - 3979, + 4006, "[plugin_versions_select_column!]" ], "limit": [ @@ -171212,16 +171826,16 @@ export default { 40 ], "order_by": [ - 3977, + 4004, "[plugin_versions_order_by!]" ], "where": [ - 3969 + 3996 ] } ], "plugin_versions_by_pk": [ - 3965, + 3992, { "runtime": [ 1110, @@ -171234,26 +171848,26 @@ export default { } ], "plugin_versions_stream": [ - 3965, + 3992, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3984, + 4011, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3969 + 3996 ] } ], "seasons": [ - 3996, + 4023, { "distinct_on": [ - 4011, + 4038, "[seasons_select_column!]" ], "limit": [ @@ -171263,19 +171877,19 @@ export default { 40 ], "order_by": [ - 4009, + 4036, "[seasons_order_by!]" ], "where": [ - 4000 + 4027 ] } ], "seasons_aggregate": [ - 3997, + 4024, { "distinct_on": [ - 4011, + 4038, "[seasons_select_column!]" ], "limit": [ @@ -171285,44 +171899,44 @@ export default { 40 ], "order_by": [ - 4009, + 4036, "[seasons_order_by!]" ], "where": [ - 4000 + 4027 ] } ], "seasons_by_pk": [ - 3996, + 4023, { "id": [ - 5026, + 5053, "uuid!" ] } ], "seasons_stream": [ - 3996, + 4023, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4016, + 4043, "[seasons_stream_cursor_input]!" ], "where": [ - 4000 + 4027 ] } ], "server_regions": [ - 4024, + 4051, { "distinct_on": [ - 4038, + 4065, "[server_regions_select_column!]" ], "limit": [ @@ -171332,19 +171946,19 @@ export default { 40 ], "order_by": [ - 4036, + 4063, "[server_regions_order_by!]" ], "where": [ - 4028 + 4055 ] } ], "server_regions_aggregate": [ - 4025, + 4052, { "distinct_on": [ - 4038, + 4065, "[server_regions_select_column!]" ], "limit": [ @@ -171354,16 +171968,16 @@ export default { 40 ], "order_by": [ - 4036, + 4063, "[server_regions_order_by!]" ], "where": [ - 4028 + 4055 ] } ], "server_regions_by_pk": [ - 4024, + 4051, { "value": [ 80, @@ -171372,26 +171986,26 @@ export default { } ], "server_regions_stream": [ - 4024, + 4051, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4043, + 4070, "[server_regions_stream_cursor_input]!" ], "where": [ - 4028 + 4055 ] } ], "servers": [ - 4051, + 4078, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -171401,19 +172015,19 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_aggregate": [ - 4052, + 4079, { "distinct_on": [ - 4075, + 4102, "[servers_select_column!]" ], "limit": [ @@ -171423,44 +172037,44 @@ export default { 40 ], "order_by": [ - 4073, + 4100, "[servers_order_by!]" ], "where": [ - 4062 + 4089 ] } ], "servers_by_pk": [ - 4051, + 4078, { "id": [ - 5026, + 5053, "uuid!" ] } ], "servers_stream": [ - 4051, + 4078, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4085, + 4112, "[servers_stream_cursor_input]!" ], "where": [ - 4062 + 4089 ] } ], "settings": [ - 4097, + 4124, { "distinct_on": [ - 4109, + 4136, "[settings_select_column!]" ], "limit": [ @@ -171470,19 +172084,19 @@ export default { 40 ], "order_by": [ - 4107, + 4134, "[settings_order_by!]" ], "where": [ - 4100 + 4127 ] } ], "settings_aggregate": [ - 4098, + 4125, { "distinct_on": [ - 4109, + 4136, "[settings_select_column!]" ], "limit": [ @@ -171492,16 +172106,16 @@ export default { 40 ], "order_by": [ - 4107, + 4134, "[settings_order_by!]" ], "where": [ - 4100 + 4127 ] } ], "settings_by_pk": [ - 4097, + 4124, { "name": [ 80, @@ -171510,26 +172124,26 @@ export default { } ], "settings_stream": [ - 4097, + 4124, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4111, + 4138, "[settings_stream_cursor_input]!" ], "where": [ - 4100 + 4127 ] } ], "steam_account_claims": [ - 4117, + 4144, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -171539,19 +172153,19 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "steam_account_claims_aggregate": [ - 4118, + 4145, { "distinct_on": [ - 4135, + 4162, "[steam_account_claims_select_column!]" ], "limit": [ @@ -171561,44 +172175,44 @@ export default { 40 ], "order_by": [ - 4133, + 4160, "[steam_account_claims_order_by!]" ], "where": [ - 4124 + 4151 ] } ], "steam_account_claims_by_pk": [ - 4117, + 4144, { "id": [ - 5026, + 5053, "uuid!" ] } ], "steam_account_claims_stream": [ - 4117, + 4144, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4137, + 4164, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4124 + 4151 ] } ], "steam_accounts": [ - 4141, + 4168, { "distinct_on": [ - 4156, + 4183, "[steam_accounts_select_column!]" ], "limit": [ @@ -171608,19 +172222,19 @@ export default { 40 ], "order_by": [ - 4154, + 4181, "[steam_accounts_order_by!]" ], "where": [ - 4145 + 4172 ] } ], "steam_accounts_aggregate": [ - 4142, + 4169, { "distinct_on": [ - 4156, + 4183, "[steam_accounts_select_column!]" ], "limit": [ @@ -171630,44 +172244,44 @@ export default { 40 ], "order_by": [ - 4154, + 4181, "[steam_accounts_order_by!]" ], "where": [ - 4145 + 4172 ] } ], "steam_accounts_by_pk": [ - 4141, + 4168, { "id": [ - 5026, + 5053, "uuid!" ] } ], "steam_accounts_stream": [ - 4141, + 4168, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4161, + 4188, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4145 + 4172 ] } ], "system_alerts": [ - 4169, + 4196, { "distinct_on": [ - 4183, + 4210, "[system_alerts_select_column!]" ], "limit": [ @@ -171677,19 +172291,19 @@ export default { 40 ], "order_by": [ - 4181, + 4208, "[system_alerts_order_by!]" ], "where": [ - 4173 + 4200 ] } ], "system_alerts_aggregate": [ - 4170, + 4197, { "distinct_on": [ - 4183, + 4210, "[system_alerts_select_column!]" ], "limit": [ @@ -171699,44 +172313,44 @@ export default { 40 ], "order_by": [ - 4181, + 4208, "[system_alerts_order_by!]" ], "where": [ - 4173 + 4200 ] } ], "system_alerts_by_pk": [ - 4169, + 4196, { "id": [ - 5026, + 5053, "uuid!" ] } ], "system_alerts_stream": [ - 4169, + 4196, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4188, + 4215, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4173 + 4200 ] } ], "team_invites": [ - 4196, + 4223, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -171746,19 +172360,19 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_invites_aggregate": [ - 4197, + 4224, { "distinct_on": [ - 4217, + 4244, "[team_invites_select_column!]" ], "limit": [ @@ -171768,44 +172382,44 @@ export default { 40 ], "order_by": [ - 4215, + 4242, "[team_invites_order_by!]" ], "where": [ - 4205 + 4232 ] } ], "team_invites_by_pk": [ - 4196, + 4223, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_invites_stream": [ - 4196, + 4223, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4225, + 4252, "[team_invites_stream_cursor_input]!" ], "where": [ - 4205 + 4232 ] } ], "team_roster": [ - 4237, + 4264, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -171815,19 +172429,19 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_roster_aggregate": [ - 4238, + 4265, { "distinct_on": [ - 4260, + 4287, "[team_roster_select_column!]" ], "limit": [ @@ -171837,48 +172451,48 @@ export default { 40 ], "order_by": [ - 4258, + 4285, "[team_roster_order_by!]" ], "where": [ - 4248 + 4275 ] } ], "team_roster_by_pk": [ - 4237, + 4264, { "player_steam_id": [ 257, "bigint!" ], "team_id": [ - 5026, + 5053, "uuid!" ] } ], "team_roster_stream": [ - 4237, + 4264, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4270, + 4297, "[team_roster_stream_cursor_input]!" ], "where": [ - 4248 + 4275 ] } ], "team_scrim_alerts": [ - 4282, + 4309, { "distinct_on": [ - 4296, + 4323, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -171888,19 +172502,19 @@ export default { 40 ], "order_by": [ - 4294, + 4321, "[team_scrim_alerts_order_by!]" ], "where": [ - 4286 + 4313 ] } ], "team_scrim_alerts_aggregate": [ - 4283, + 4310, { "distinct_on": [ - 4296, + 4323, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -171910,44 +172524,44 @@ export default { 40 ], "order_by": [ - 4294, + 4321, "[team_scrim_alerts_order_by!]" ], "where": [ - 4286 + 4313 ] } ], "team_scrim_alerts_by_pk": [ - 4282, + 4309, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4282, + 4309, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4301, + 4328, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4286 + 4313 ] } ], "team_scrim_availability": [ - 4309, + 4336, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -171957,19 +172571,19 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "team_scrim_availability_aggregate": [ - 4310, + 4337, { "distinct_on": [ - 4329, + 4356, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -171979,44 +172593,44 @@ export default { 40 ], "order_by": [ - 4327, + 4354, "[team_scrim_availability_order_by!]" ], "where": [ - 4318 + 4345 ] } ], "team_scrim_availability_by_pk": [ - 4309, + 4336, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4309, + 4336, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4333, + 4360, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4318 + 4345 ] } ], "team_scrim_request_proposals": [ - 4337, + 4364, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -172026,19 +172640,19 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "team_scrim_request_proposals_aggregate": [ - 4338, + 4365, { "distinct_on": [ - 4358, + 4385, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -172048,44 +172662,44 @@ export default { 40 ], "order_by": [ - 4356, + 4383, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4346 + 4373 ] } ], "team_scrim_request_proposals_by_pk": [ - 4337, + 4364, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4337, + 4364, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4366, + 4393, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4346 + 4373 ] } ], "team_scrim_requests": [ - 4378, + 4405, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -172095,19 +172709,19 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], "team_scrim_requests_aggregate": [ - 4379, + 4406, { "distinct_on": [ - 4402, + 4429, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -172117,44 +172731,44 @@ export default { 40 ], "order_by": [ - 4400, + 4427, "[team_scrim_requests_order_by!]" ], "where": [ - 4389 + 4416 ] } ], "team_scrim_requests_by_pk": [ - 4378, + 4405, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4378, + 4405, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4412, + 4439, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4389 + 4416 ] } ], "team_scrim_settings": [ - 4424, + 4451, { "distinct_on": [ - 4439, + 4466, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -172164,19 +172778,19 @@ export default { 40 ], "order_by": [ - 4437, + 4464, "[team_scrim_settings_order_by!]" ], "where": [ - 4428 + 4455 ] } ], "team_scrim_settings_aggregate": [ - 4425, + 4452, { "distinct_on": [ - 4439, + 4466, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -172186,44 +172800,44 @@ export default { 40 ], "order_by": [ - 4437, + 4464, "[team_scrim_settings_order_by!]" ], "where": [ - 4428 + 4455 ] } ], "team_scrim_settings_by_pk": [ - 4424, + 4451, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4424, + 4451, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4444, + 4471, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4428 + 4455 ] } ], "team_suggestions": [ - 4452, + 4479, { "distinct_on": [ - 4466, + 4493, "[team_suggestions_select_column!]" ], "limit": [ @@ -172233,19 +172847,19 @@ export default { 40 ], "order_by": [ - 4464, + 4491, "[team_suggestions_order_by!]" ], "where": [ - 4456 + 4483 ] } ], "team_suggestions_aggregate": [ - 4453, + 4480, { "distinct_on": [ - 4466, + 4493, "[team_suggestions_select_column!]" ], "limit": [ @@ -172255,44 +172869,44 @@ export default { 40 ], "order_by": [ - 4464, + 4491, "[team_suggestions_order_by!]" ], "where": [ - 4456 + 4483 ] } ], "team_suggestions_by_pk": [ - 4452, + 4479, { "id": [ - 5026, + 5053, "uuid!" ] } ], "team_suggestions_stream": [ - 4452, + 4479, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4471, + 4498, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4456 + 4483 ] } ], "teams": [ - 4479, + 4506, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -172302,19 +172916,19 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "teams_aggregate": [ - 4480, + 4507, { "distinct_on": [ - 4503, + 4530, "[teams_select_column!]" ], "limit": [ @@ -172324,44 +172938,44 @@ export default { 40 ], "order_by": [ - 4501, + 4528, "[teams_order_by!]" ], "where": [ - 4490 + 4517 ] } ], "teams_by_pk": [ - 4479, + 4506, { "id": [ - 5026, + 5053, "uuid!" ] } ], "teams_stream": [ - 4479, + 4506, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4513, + 4540, "[teams_stream_cursor_input]!" ], "where": [ - 4490 + 4517 ] } ], "tournament_awards": [ - 4528, + 4555, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -172371,19 +172985,19 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_awards_aggregate": [ - 4529, + 4556, { "distinct_on": [ - 4550, + 4577, "[tournament_awards_select_column!]" ], "limit": [ @@ -172393,44 +173007,44 @@ export default { 40 ], "order_by": [ - 4548, + 4575, "[tournament_awards_order_by!]" ], "where": [ - 4537 + 4564 ] } ], "tournament_awards_by_pk": [ - 4528, + 4555, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_awards_stream": [ - 4528, + 4555, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4558, + 4585, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4537 + 4564 ] } ], "tournament_brackets": [ - 4570, + 4597, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -172440,19 +173054,19 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "tournament_brackets_aggregate": [ - 4571, + 4598, { "distinct_on": [ - 4594, + 4621, "[tournament_brackets_select_column!]" ], "limit": [ @@ -172462,44 +173076,44 @@ export default { 40 ], "order_by": [ - 4592, + 4619, "[tournament_brackets_order_by!]" ], "where": [ - 4581 + 4608 ] } ], "tournament_brackets_by_pk": [ - 4570, + 4597, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_brackets_stream": [ - 4570, + 4597, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4604, + 4631, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4581 + 4608 ] } ], "tournament_categories": [ - 4616, + 4643, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -172509,19 +173123,19 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "tournament_categories_aggregate": [ - 4617, + 4644, { "distinct_on": [ - 4634, + 4661, "[tournament_categories_select_column!]" ], "limit": [ @@ -172531,48 +173145,48 @@ export default { 40 ], "order_by": [ - 4632, + 4659, "[tournament_categories_order_by!]" ], "where": [ - 4623 + 4650 ] } ], "tournament_categories_by_pk": [ - 4616, + 4643, { "category": [ 1312, "e_tournament_categories_enum!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_categories_stream": [ - 4616, + 4643, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4636, + 4663, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4623 + 4650 ] } ], "tournament_organizer_teams": [ - 4640, + 4667, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -172582,19 +173196,19 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "tournament_organizer_teams_aggregate": [ - 4641, + 4668, { "distinct_on": [ - 4658, + 4685, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -172604,48 +173218,48 @@ export default { 40 ], "order_by": [ - 4656, + 4683, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4647 + 4674 ] } ], "tournament_organizer_teams_by_pk": [ - 4640, + 4667, { "team_id": [ - 5026, + 5053, "uuid!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4640, + 4667, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4660, + 4687, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4647 + 4674 ] } ], "tournament_organizers": [ - 4664, + 4691, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -172655,19 +173269,19 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_organizers_aggregate": [ - 4665, + 4692, { "distinct_on": [ - 4685, + 4712, "[tournament_organizers_select_column!]" ], "limit": [ @@ -172677,48 +173291,48 @@ export default { 40 ], "order_by": [ - 4683, + 4710, "[tournament_organizers_order_by!]" ], "where": [ - 4673 + 4700 ] } ], "tournament_organizers_by_pk": [ - 4664, + 4691, { "steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_organizers_stream": [ - 4664, + 4691, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4693, + 4720, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4673 + 4700 ] } ], "tournament_prizes": [ - 4705, + 4732, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -172728,19 +173342,19 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "tournament_prizes_aggregate": [ - 4706, + 4733, { "distinct_on": [ - 4726, + 4753, "[tournament_prizes_select_column!]" ], "limit": [ @@ -172750,44 +173364,44 @@ export default { 40 ], "order_by": [ - 4724, + 4751, "[tournament_prizes_order_by!]" ], "where": [ - 4714 + 4741 ] } ], "tournament_prizes_by_pk": [ - 4705, + 4732, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_prizes_stream": [ - 4705, + 4732, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4734, + 4761, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4714 + 4741 ] } ], "tournament_stage_windows": [ - 4746, + 4773, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -172797,19 +173411,19 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], "tournament_stage_windows_aggregate": [ - 4747, + 4774, { "distinct_on": [ - 4767, + 4794, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -172819,44 +173433,44 @@ export default { 40 ], "order_by": [ - 4765, + 4792, "[tournament_stage_windows_order_by!]" ], "where": [ - 4755 + 4782 ] } ], "tournament_stage_windows_by_pk": [ - 4746, + 4773, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4746, + 4773, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4775, + 4802, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4755 + 4782 ] } ], "tournament_stages": [ - 4787, + 4814, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -172866,19 +173480,19 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "tournament_stages_aggregate": [ - 4788, + 4815, { "distinct_on": [ - 4816, + 4843, "[tournament_stages_select_column!]" ], "limit": [ @@ -172888,44 +173502,44 @@ export default { 40 ], "order_by": [ - 4813, + 4840, "[tournament_stages_order_by!]" ], "where": [ - 4799 + 4826 ] } ], "tournament_stages_by_pk": [ - 4787, + 4814, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_stages_stream": [ - 4787, + 4814, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4826, + 4853, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4799 + 4826 ] } ], "tournament_team_invites": [ - 4838, + 4865, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -172935,19 +173549,19 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], "tournament_team_invites_aggregate": [ - 4839, + 4866, { "distinct_on": [ - 4859, + 4886, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -172957,44 +173571,44 @@ export default { 40 ], "order_by": [ - 4857, + 4884, "[tournament_team_invites_order_by!]" ], "where": [ - 4847 + 4874 ] } ], "tournament_team_invites_by_pk": [ - 4838, + 4865, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4838, + 4865, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4867, + 4894, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4847 + 4874 ] } ], "tournament_team_roster": [ - 4879, + 4906, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -173004,19 +173618,19 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_team_roster_aggregate": [ - 4880, + 4907, { "distinct_on": [ - 4900, + 4927, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -173026,48 +173640,48 @@ export default { 40 ], "order_by": [ - 4898, + 4925, "[tournament_team_roster_order_by!]" ], "where": [ - 4888 + 4915 ] } ], "tournament_team_roster_by_pk": [ - 4879, + 4906, { "player_steam_id": [ 257, "bigint!" ], "tournament_id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4879, + 4906, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4908, + 4935, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4888 + 4915 ] } ], "tournament_teams": [ - 4920, + 4947, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -173077,19 +173691,19 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "tournament_teams_aggregate": [ - 4921, + 4948, { "distinct_on": [ - 4942, + 4969, "[tournament_teams_select_column!]" ], "limit": [ @@ -173099,44 +173713,44 @@ export default { 40 ], "order_by": [ - 4940, + 4967, "[tournament_teams_order_by!]" ], "where": [ - 4929 + 4956 ] } ], "tournament_teams_by_pk": [ - 4920, + 4947, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournament_teams_stream": [ - 4920, + 4947, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4950, + 4977, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4929 + 4956 ] } ], "tournaments": [ - 4962, + 4989, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -173146,19 +173760,19 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_aggregate": [ - 4963, + 4990, { "distinct_on": [ - 4996, + 5023, "[tournaments_select_column!]" ], "limit": [ @@ -173168,44 +173782,44 @@ export default { 40 ], "order_by": [ - 4994, + 5021, "[tournaments_order_by!]" ], "where": [ - 4983 + 5010 ] } ], "tournaments_by_pk": [ - 4962, + 4989, { "id": [ - 5026, + 5053, "uuid!" ] } ], "tournaments_stream": [ - 4962, + 4989, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5014, + 5041, "[tournaments_stream_cursor_input]!" ], "where": [ - 4983 + 5010 ] } ], "v_event_player_stats": [ - 5029, + 5056, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -173215,19 +173829,19 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], "v_event_player_stats_aggregate": [ - 5030, + 5057, { "distinct_on": [ - 5055, + 5082, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -173237,35 +173851,35 @@ export default { 40 ], "order_by": [ - 5054, + 5081, "[v_event_player_stats_order_by!]" ], "where": [ - 5048 + 5075 ] } ], "v_event_player_stats_stream": [ - 5029, + 5056, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5070, + 5097, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5048 + 5075 ] } ], "v_gpu_pool_status": [ - 5080, + 5107, { "distinct_on": [ - 5088, + 5115, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -173275,19 +173889,19 @@ export default { 40 ], "order_by": [ - 5087, + 5114, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5084 + 5111 ] } ], "v_gpu_pool_status_aggregate": [ - 5081, + 5108, { "distinct_on": [ - 5088, + 5115, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -173297,35 +173911,35 @@ export default { 40 ], "order_by": [ - 5087, + 5114, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5084 + 5111 ] } ], "v_gpu_pool_status_stream": [ - 5080, + 5107, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5092, + 5119, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5084 + 5111 ] } ], "v_league_division_standings": [ - 5098, + 5125, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -173335,19 +173949,19 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "v_league_division_standings_aggregate": [ - 5099, + 5126, { "distinct_on": [ - 5114, + 5141, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -173357,35 +173971,35 @@ export default { 40 ], "order_by": [ - 5113, + 5140, "[v_league_division_standings_order_by!]" ], "where": [ - 5107 + 5134 ] } ], "v_league_division_standings_stream": [ - 5098, + 5125, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5121, + 5148, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5107 + 5134 ] } ], "v_league_season_player_stats": [ - 5131, + 5158, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -173395,19 +174009,19 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], "v_league_season_player_stats_aggregate": [ - 5132, + 5159, { "distinct_on": [ - 5157, + 5184, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -173417,35 +174031,35 @@ export default { 40 ], "order_by": [ - 5156, + 5183, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5150 + 5177 ] } ], "v_league_season_player_stats_stream": [ - 5131, + 5158, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5172, + 5199, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5150 + 5177 ] } ], "v_match_captains": [ - 5182, + 5209, { "distinct_on": [ - 5194, + 5221, "[v_match_captains_select_column!]" ], "limit": [ @@ -173455,19 +174069,19 @@ export default { 40 ], "order_by": [ - 5193, + 5220, "[v_match_captains_order_by!]" ], "where": [ - 5186 + 5213 ] } ], "v_match_captains_aggregate": [ - 5183, + 5210, { "distinct_on": [ - 5194, + 5221, "[v_match_captains_select_column!]" ], "limit": [ @@ -173477,35 +174091,35 @@ export default { 40 ], "order_by": [ - 5193, + 5220, "[v_match_captains_order_by!]" ], "where": [ - 5186 + 5213 ] } ], "v_match_captains_stream": [ - 5182, + 5209, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5199, + 5226, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5186 + 5213 ] } ], "v_match_clutches": [ - 5206, + 5233, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -173515,19 +174129,19 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], "v_match_clutches_aggregate": [ - 5207, + 5234, { "distinct_on": [ - 5222, + 5249, "[v_match_clutches_select_column!]" ], "limit": [ @@ -173537,35 +174151,35 @@ export default { 40 ], "order_by": [ - 5221, + 5248, "[v_match_clutches_order_by!]" ], "where": [ - 5215 + 5242 ] } ], "v_match_clutches_stream": [ - 5206, + 5233, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5229, + 5256, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5215 + 5242 ] } ], "v_match_kill_pairs": [ - 5239, + 5266, { "distinct_on": [ - 5247, + 5274, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -173575,19 +174189,19 @@ export default { 40 ], "order_by": [ - 5246, + 5273, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5243 + 5270 ] } ], "v_match_kill_pairs_aggregate": [ - 5240, + 5267, { "distinct_on": [ - 5247, + 5274, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -173597,35 +174211,35 @@ export default { 40 ], "order_by": [ - 5246, + 5273, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5243 + 5270 ] } ], "v_match_kill_pairs_stream": [ - 5239, + 5266, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5251, + 5278, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5243 + 5270 ] } ], "v_match_lineup_buy_types": [ - 5257, + 5284, { "distinct_on": [ - 5265, + 5292, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -173635,19 +174249,19 @@ export default { 40 ], "order_by": [ - 5264, + 5291, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5261 + 5288 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5258, + 5285, { "distinct_on": [ - 5265, + 5292, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -173657,35 +174271,35 @@ export default { 40 ], "order_by": [ - 5264, + 5291, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5261 + 5288 ] } ], "v_match_lineup_buy_types_stream": [ - 5257, + 5284, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5269, + 5296, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5261 + 5288 ] } ], "v_match_lineup_map_stats": [ - 5275, + 5302, { "distinct_on": [ - 5283, + 5310, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -173695,19 +174309,19 @@ export default { 40 ], "order_by": [ - 5282, + 5309, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5279 + 5306 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5276, + 5303, { "distinct_on": [ - 5283, + 5310, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -173717,35 +174331,35 @@ export default { 40 ], "order_by": [ - 5282, + 5309, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5279 + 5306 ] } ], "v_match_lineup_map_stats_stream": [ - 5275, + 5302, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5287, + 5314, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5279 + 5306 ] } ], "v_match_map_backup_rounds": [ - 5293, + 5320, { "distinct_on": [ - 5304, + 5331, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -173755,19 +174369,19 @@ export default { 40 ], "order_by": [ - 5303, + 5330, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5297 + 5324 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5294, + 5321, { "distinct_on": [ - 5304, + 5331, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -173777,35 +174391,35 @@ export default { 40 ], "order_by": [ - 5303, + 5330, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5297 + 5324 ] } ], "v_match_map_backup_rounds_stream": [ - 5293, + 5320, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5309, + 5336, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5297 + 5324 ] } ], "v_match_player_buy_types": [ - 5316, + 5343, { "distinct_on": [ - 5324, + 5351, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -173815,19 +174429,19 @@ export default { 40 ], "order_by": [ - 5323, + 5350, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5320 + 5347 ] } ], "v_match_player_buy_types_aggregate": [ - 5317, + 5344, { "distinct_on": [ - 5324, + 5351, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -173837,35 +174451,35 @@ export default { 40 ], "order_by": [ - 5323, + 5350, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5320 + 5347 ] } ], "v_match_player_buy_types_stream": [ - 5316, + 5343, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5328, + 5355, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5320 + 5347 ] } ], "v_match_player_opening_duels": [ - 5334, + 5361, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -173875,19 +174489,19 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "v_match_player_opening_duels_aggregate": [ - 5335, + 5362, { "distinct_on": [ - 5350, + 5377, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -173897,35 +174511,35 @@ export default { 40 ], "order_by": [ - 5349, + 5376, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5343 + 5370 ] } ], "v_match_player_opening_duels_stream": [ - 5334, + 5361, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5357, + 5384, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5343 + 5370 ] } ], "v_player_arch_nemesis": [ - 5367, + 5394, { "distinct_on": [ - 5375, + 5402, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -173935,19 +174549,19 @@ export default { 40 ], "order_by": [ - 5374, + 5401, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5371 + 5398 ] } ], "v_player_arch_nemesis_aggregate": [ - 5368, + 5395, { "distinct_on": [ - 5375, + 5402, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -173957,35 +174571,35 @@ export default { 40 ], "order_by": [ - 5374, + 5401, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5371 + 5398 ] } ], "v_player_arch_nemesis_stream": [ - 5367, + 5394, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5379, + 5406, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5371 + 5398 ] } ], "v_player_damage": [ - 5385, + 5412, { "distinct_on": [ - 5393, + 5420, "[v_player_damage_select_column!]" ], "limit": [ @@ -173995,19 +174609,19 @@ export default { 40 ], "order_by": [ - 5392, + 5419, "[v_player_damage_order_by!]" ], "where": [ - 5389 + 5416 ] } ], "v_player_damage_aggregate": [ - 5386, + 5413, { "distinct_on": [ - 5393, + 5420, "[v_player_damage_select_column!]" ], "limit": [ @@ -174017,35 +174631,35 @@ export default { 40 ], "order_by": [ - 5392, + 5419, "[v_player_damage_order_by!]" ], "where": [ - 5389 + 5416 ] } ], "v_player_damage_stream": [ - 5385, + 5412, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5397, + 5424, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5389 + 5416 ] } ], "v_player_elo": [ - 5403, + 5430, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -174055,19 +174669,19 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "v_player_elo_aggregate": [ - 5404, + 5431, { "distinct_on": [ - 5429, + 5456, "[v_player_elo_select_column!]" ], "limit": [ @@ -174077,35 +174691,35 @@ export default { 40 ], "order_by": [ - 5428, + 5455, "[v_player_elo_order_by!]" ], "where": [ - 5422 + 5449 ] } ], "v_player_elo_stream": [ - 5403, + 5430, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5444, + 5471, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5422 + 5449 ] } ], "v_player_map_losses": [ - 5454, + 5481, { "distinct_on": [ - 5462, + 5489, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -174115,19 +174729,19 @@ export default { 40 ], "order_by": [ - 5461, + 5488, "[v_player_map_losses_order_by!]" ], "where": [ - 5458 + 5485 ] } ], "v_player_map_losses_aggregate": [ - 5455, + 5482, { "distinct_on": [ - 5462, + 5489, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -174137,35 +174751,35 @@ export default { 40 ], "order_by": [ - 5461, + 5488, "[v_player_map_losses_order_by!]" ], "where": [ - 5458 + 5485 ] } ], "v_player_map_losses_stream": [ - 5454, + 5481, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5466, + 5493, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5458 + 5485 ] } ], "v_player_map_wins": [ - 5472, + 5499, { "distinct_on": [ - 5480, + 5507, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -174175,19 +174789,19 @@ export default { 40 ], "order_by": [ - 5479, + 5506, "[v_player_map_wins_order_by!]" ], "where": [ - 5476 + 5503 ] } ], "v_player_map_wins_aggregate": [ - 5473, + 5500, { "distinct_on": [ - 5480, + 5507, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -174197,35 +174811,35 @@ export default { 40 ], "order_by": [ - 5479, + 5506, "[v_player_map_wins_order_by!]" ], "where": [ - 5476 + 5503 ] } ], "v_player_map_wins_stream": [ - 5472, + 5499, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5484, + 5511, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5476 + 5503 ] } ], "v_player_match_head_to_head": [ - 5490, + 5517, { "distinct_on": [ - 5498, + 5525, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -174235,19 +174849,19 @@ export default { 40 ], "order_by": [ - 5497, + 5524, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5494 + 5521 ] } ], "v_player_match_head_to_head_aggregate": [ - 5491, + 5518, { "distinct_on": [ - 5498, + 5525, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -174257,35 +174871,35 @@ export default { 40 ], "order_by": [ - 5497, + 5524, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5494 + 5521 ] } ], "v_player_match_head_to_head_stream": [ - 5490, + 5517, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5502, + 5529, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5494 + 5521 ] } ], "v_player_match_map_hltv": [ - 5508, + 5535, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -174295,19 +174909,19 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "v_player_match_map_hltv_aggregate": [ - 5509, + 5536, { "distinct_on": [ - 5526, + 5553, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -174317,35 +174931,35 @@ export default { 40 ], "order_by": [ - 5525, + 5552, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5517 + 5544 ] } ], "v_player_match_map_hltv_stream": [ - 5508, + 5535, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5534, + 5561, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5517 + 5544 ] } ], "v_player_match_map_roles": [ - 5545, + 5572, { "distinct_on": [ - 5553, + 5580, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -174355,19 +174969,19 @@ export default { 40 ], "order_by": [ - 5552, + 5579, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5549 + 5576 ] } ], "v_player_match_map_roles_aggregate": [ - 5546, + 5573, { "distinct_on": [ - 5553, + 5580, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -174377,35 +174991,35 @@ export default { 40 ], "order_by": [ - 5552, + 5579, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5549 + 5576 ] } ], "v_player_match_map_roles_stream": [ - 5545, + 5572, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5557, + 5584, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5549 + 5576 ] } ], "v_player_match_performance": [ - 5563, + 5590, { "distinct_on": [ - 5571, + 5598, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -174415,19 +175029,19 @@ export default { 40 ], "order_by": [ - 5570, + 5597, "[v_player_match_performance_order_by!]" ], "where": [ - 5567 + 5594 ] } ], "v_player_match_performance_aggregate": [ - 5564, + 5591, { "distinct_on": [ - 5571, + 5598, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -174437,35 +175051,35 @@ export default { 40 ], "order_by": [ - 5570, + 5597, "[v_player_match_performance_order_by!]" ], "where": [ - 5567 + 5594 ] } ], "v_player_match_performance_stream": [ - 5563, + 5590, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5575, + 5602, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5567 + 5594 ] } ], "v_player_match_rating": [ - 5581, + 5608, { "distinct_on": [ - 5589, + 5616, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -174475,19 +175089,19 @@ export default { 40 ], "order_by": [ - 5588, + 5615, "[v_player_match_rating_order_by!]" ], "where": [ - 5585 + 5612 ] } ], "v_player_match_rating_aggregate": [ - 5582, + 5609, { "distinct_on": [ - 5589, + 5616, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -174497,35 +175111,35 @@ export default { 40 ], "order_by": [ - 5588, + 5615, "[v_player_match_rating_order_by!]" ], "where": [ - 5585 + 5612 ] } ], "v_player_match_rating_stream": [ - 5581, + 5608, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5593, + 5620, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5585 + 5612 ] } ], "v_player_multi_kills": [ - 5599, + 5626, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -174535,19 +175149,19 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], "v_player_multi_kills_aggregate": [ - 5600, + 5627, { "distinct_on": [ - 5615, + 5642, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -174557,35 +175171,35 @@ export default { 40 ], "order_by": [ - 5614, + 5641, "[v_player_multi_kills_order_by!]" ], "where": [ - 5608 + 5635 ] } ], "v_player_multi_kills_stream": [ - 5599, + 5626, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5622, + 5649, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5608 + 5635 ] } ], "v_player_queue_partners": [ - 5632, + 5659, { "distinct_on": [ - 5640, + 5667, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -174595,19 +175209,19 @@ export default { 40 ], "order_by": [ - 5639, + 5666, "[v_player_queue_partners_order_by!]" ], "where": [ - 5636 + 5663 ] } ], "v_player_queue_partners_aggregate": [ - 5633, + 5660, { "distinct_on": [ - 5640, + 5667, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -174617,35 +175231,35 @@ export default { 40 ], "order_by": [ - 5639, + 5666, "[v_player_queue_partners_order_by!]" ], "where": [ - 5636 + 5663 ] } ], "v_player_queue_partners_stream": [ - 5632, + 5659, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5644, + 5671, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5636 + 5663 ] } ], "v_player_weapon_damage": [ - 5650, + 5677, { "distinct_on": [ - 5658, + 5685, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -174655,19 +175269,19 @@ export default { 40 ], "order_by": [ - 5657, + 5684, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5654 + 5681 ] } ], "v_player_weapon_damage_aggregate": [ - 5651, + 5678, { "distinct_on": [ - 5658, + 5685, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -174677,35 +175291,35 @@ export default { 40 ], "order_by": [ - 5657, + 5684, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5654 + 5681 ] } ], "v_player_weapon_damage_stream": [ - 5650, + 5677, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5662, + 5689, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5654 + 5681 ] } ], "v_player_weapon_kills": [ - 5668, + 5695, { "distinct_on": [ - 5676, + 5703, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -174715,19 +175329,19 @@ export default { 40 ], "order_by": [ - 5675, + 5702, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5672 + 5699 ] } ], "v_player_weapon_kills_aggregate": [ - 5669, + 5696, { "distinct_on": [ - 5676, + 5703, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -174737,35 +175351,35 @@ export default { 40 ], "order_by": [ - 5675, + 5702, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5672 + 5699 ] } ], "v_player_weapon_kills_stream": [ - 5668, + 5695, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5680, + 5707, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5672 + 5699 ] } ], "v_pool_maps": [ - 5686, + 5713, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -174775,19 +175389,19 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], "v_pool_maps_aggregate": [ - 5687, + 5714, { "distinct_on": [ - 5703, + 5730, "[v_pool_maps_select_column!]" ], "limit": [ @@ -174797,35 +175411,35 @@ export default { 40 ], "order_by": [ - 5702, + 5729, "[v_pool_maps_order_by!]" ], "where": [ - 5695 + 5722 ] } ], "v_pool_maps_stream": [ - 5686, + 5713, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5707, + 5734, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5695 + 5722 ] } ], "v_steam_account_pool_status": [ - 5710, + 5737, { "distinct_on": [ - 5718, + 5745, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -174835,19 +175449,19 @@ export default { 40 ], "order_by": [ - 5717, + 5744, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5714 + 5741 ] } ], "v_steam_account_pool_status_aggregate": [ - 5711, + 5738, { "distinct_on": [ - 5718, + 5745, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -174857,35 +175471,35 @@ export default { 40 ], "order_by": [ - 5717, + 5744, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5714 + 5741 ] } ], "v_steam_account_pool_status_stream": [ - 5710, + 5737, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5722, + 5749, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5714 + 5741 ] } ], "v_team_ranks": [ - 5728, + 5755, { "distinct_on": [ - 5738, + 5765, "[v_team_ranks_select_column!]" ], "limit": [ @@ -174895,19 +175509,19 @@ export default { 40 ], "order_by": [ - 5737, + 5764, "[v_team_ranks_order_by!]" ], "where": [ - 5732 + 5759 ] } ], "v_team_ranks_aggregate": [ - 5729, + 5756, { "distinct_on": [ - 5738, + 5765, "[v_team_ranks_select_column!]" ], "limit": [ @@ -174917,35 +175531,35 @@ export default { 40 ], "order_by": [ - 5737, + 5764, "[v_team_ranks_order_by!]" ], "where": [ - 5732 + 5759 ] } ], "v_team_ranks_stream": [ - 5728, + 5755, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5742, + 5769, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5732 + 5759 ] } ], "v_team_reputation": [ - 5748, + 5775, { "distinct_on": [ - 5758, + 5785, "[v_team_reputation_select_column!]" ], "limit": [ @@ -174955,19 +175569,19 @@ export default { 40 ], "order_by": [ - 5757, + 5784, "[v_team_reputation_order_by!]" ], "where": [ - 5752 + 5779 ] } ], "v_team_reputation_aggregate": [ - 5749, + 5776, { "distinct_on": [ - 5758, + 5785, "[v_team_reputation_select_column!]" ], "limit": [ @@ -174977,35 +175591,35 @@ export default { 40 ], "order_by": [ - 5757, + 5784, "[v_team_reputation_order_by!]" ], "where": [ - 5752 + 5779 ] } ], "v_team_reputation_stream": [ - 5748, + 5775, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5762, + 5789, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5752 + 5779 ] } ], "v_team_stage_results": [ - 5768, + 5795, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -175015,19 +175629,19 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], "v_team_stage_results_aggregate": [ - 5769, + 5796, { "distinct_on": [ - 5800, + 5827, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -175037,48 +175651,48 @@ export default { 40 ], "order_by": [ - 5798, + 5825, "[v_team_stage_results_order_by!]" ], "where": [ - 5787 + 5814 ] } ], "v_team_stage_results_by_pk": [ - 5768, + 5795, { "tournament_stage_id": [ - 5026, + 5053, "uuid!" ], "tournament_team_id": [ - 5026, + 5053, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5768, + 5795, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5816, + 5843, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5787 + 5814 ] } ], "v_team_tournament_results": [ - 5828, + 5855, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -175088,19 +175702,19 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "v_team_tournament_results_aggregate": [ - 5829, + 5856, { "distinct_on": [ - 5854, + 5881, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -175110,35 +175724,35 @@ export default { 40 ], "order_by": [ - 5853, + 5880, "[v_team_tournament_results_order_by!]" ], "where": [ - 5847 + 5874 ] } ], "v_team_tournament_results_stream": [ - 5828, + 5855, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5869, + 5896, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5847 + 5874 ] } ], "v_tournament_player_stats": [ - 5879, + 5906, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -175148,19 +175762,19 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], "v_tournament_player_stats_aggregate": [ - 5880, + 5907, { "distinct_on": [ - 5905, + 5932, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -175170,27 +175784,27 @@ export default { 40 ], "order_by": [ - 5904, + 5931, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5898 + 5925 ] } ], "v_tournament_player_stats_stream": [ - 5879, + 5906, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5920, + 5947, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5898 + 5925 ] } ], diff --git a/hasura/functions/demos/persist_imported_demo.sql b/hasura/functions/demos/persist_imported_demo.sql index f95a101e..8273ccf5 100644 --- a/hasura/functions/demos/persist_imported_demo.sql +++ b/hasura/functions/demos/persist_imported_demo.sql @@ -279,8 +279,15 @@ BEGIN v_match_id, v_match_map_id, rt_match.round, v_start_time + ((elem->>'tick')::int::numeric / v_tick_rate::numeric) * interval '1 second', - NULLIF(elem->>'killer', '')::bigint, - NULLIF(elem->>'killer_team', ''), + -- A bomb or world death has no killer. The live path records those as + -- self-inflicted (see KillEvent.ts, "self damage") so the death still + -- lands; mirror it here rather than dropping the row, or the same death + -- counts in a live match and vanishes from an imported demo. Attributing + -- it to the victim does not invent a kill: recompute_player_match_map_stats + -- counts kills FILTER (attacker_team <> attacked_team), and a self-kill has + -- the same team on both sides. + COALESCE(NULLIF(elem->>'killer', '')::bigint, NULLIF(elem->>'victim', '')::bigint), + COALESCE(NULLIF(elem->>'killer_team', ''), NULLIF(elem->>'victim_team', '')), '', NULLIF(concat_ws(' ', elem->>'attacker_x', elem->>'attacker_y', elem->>'attacker_z'), ''), NULLIF(elem->>'victim', '')::bigint, @@ -304,8 +311,7 @@ BEGIN ORDER BY (rt->>'round')::int LIMIT 1 ) rt_match - WHERE NULLIF(elem->>'victim', '') IS NOT NULL - AND NULLIF(elem->>'killer', '') IS NOT NULL; + WHERE NULLIF(elem->>'victim', '') IS NOT NULL; INSERT INTO public.player_assists ( match_id, match_map_id, round, time, diff --git a/hasura/functions/tournaments/clone_match_options.sql b/hasura/functions/tournaments/clone_match_options.sql index 8de8324f..f6e40388 100644 --- a/hasura/functions/tournaments/clone_match_options.sql +++ b/hasura/functions/tournaments/clone_match_options.sql @@ -3,31 +3,28 @@ CREATE OR REPLACE FUNCTION clone_match_options( ) RETURNS uuid AS $$ DECLARE - cloned_id uuid; + _options match_options%ROWTYPE; BEGIN IF _match_options_id IS NULL THEN RETURN NULL; END IF; - INSERT INTO match_options ( - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, - map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, - regions, prefer_dedicated_server, invite_code, - region_veto, ready_setting, check_in_setting, default_models, tv_delay, - auto_cancellation, match_mode, auto_cancel_duration, live_match_timeout, - veto_pick_timeout - ) - SELECT - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, - map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, - regions, prefer_dedicated_server, invite_code, - region_veto, ready_setting, check_in_setting, default_models, tv_delay, - auto_cancellation, match_mode, auto_cancel_duration, live_match_timeout, - veto_pick_timeout + SELECT * INTO _options FROM match_options - WHERE id = _match_options_id - RETURNING id INTO cloned_id; + WHERE id = _match_options_id; - RETURN cloned_id; + IF NOT FOUND THEN + RETURN NULL; + END IF; + + -- Whole-row copy instead of an explicit column list. Every hand-maintained + -- list of match_options columns has silently dropped settings as new ones + -- were added (round_restart_delay, halftime_pausematch, auto_cancellation), + -- producing tournaments whose matches quietly ignore their own settings. + _options.id := gen_random_uuid(); + + INSERT INTO match_options VALUES (_options.*); + + RETURN _options.id; END; $$ LANGUAGE plpgsql; diff --git a/hasura/functions/tournaments/update_match_options_best_of.sql b/hasura/functions/tournaments/update_match_options_best_of.sql index 82c418fc..2ed22ebd 100644 --- a/hasura/functions/tournaments/update_match_options_best_of.sql +++ b/hasura/functions/tournaments/update_match_options_best_of.sql @@ -4,70 +4,37 @@ CREATE OR REPLACE FUNCTION update_match_options_best_of( RETURNS uuid AS $$ DECLARE original_match_options_id uuid; - match_options_record match_options%ROWTYPE; - final_match_options_id uuid; _decider_best_of int; - _effective_best_of int; + _current_best_of int; BEGIN -- Get match_options_id from stage first, then tournament if stage doesn't have one - SELECT COALESCE( - ts.match_options_id, - t.match_options_id - ) INTO original_match_options_id + SELECT COALESCE(ts.match_options_id, t.match_options_id), ts.decider_best_of + INTO original_match_options_id, _decider_best_of FROM tournament_stages ts INNER JOIN tournaments t ON t.id = ts.tournament_id WHERE ts.id = _stage_id; - -- If no match_options_id found, return NULL IF original_match_options_id IS NULL THEN RETURN NULL; END IF; - -- Get match_options record - SELECT * INTO match_options_record - FROM match_options - WHERE id = original_match_options_id; - - -- Read decider_best_of from the stage - SELECT ts.decider_best_of INTO _decider_best_of - FROM tournament_stages ts WHERE ts.id = _stage_id; - - -- Determine effective best_of for decider matches -- Only apply a different BO if the stage explicitly has decider_best_of set - IF _decider_best_of IS NOT NULL THEN - _effective_best_of := _decider_best_of; - ELSE + IF _decider_best_of IS NULL THEN RETURN original_match_options_id; END IF; + SELECT best_of INTO _current_best_of + FROM match_options + WHERE id = original_match_options_id; + -- If target BO equals current BO, no clone needed - IF _effective_best_of = match_options_record.best_of THEN + IF _decider_best_of = _current_best_of THEN RETURN original_match_options_id; END IF; - -- Clone match_options with the new best_of - match_options_record.best_of := _effective_best_of; - INSERT INTO match_options ( - overtime, knife_round, mr, best_of, coaches, number_of_substitutes, - map_veto, timeout_setting, tech_timeout_setting, map_pool_id, type, - regions, prefer_dedicated_server, invite_code, - region_veto, ready_setting, check_in_setting, default_models, tv_delay, - veto_pick_timeout - ) VALUES ( - match_options_record.overtime, match_options_record.knife_round, - match_options_record.mr, match_options_record.best_of, - match_options_record.coaches, match_options_record.number_of_substitutes, - match_options_record.map_veto, match_options_record.timeout_setting, - match_options_record.tech_timeout_setting, match_options_record.map_pool_id, - match_options_record.type, match_options_record.regions, - match_options_record.prefer_dedicated_server, match_options_record.invite_code, - match_options_record.region_veto, - match_options_record.ready_setting, match_options_record.check_in_setting, - match_options_record.default_models, match_options_record.tv_delay, - match_options_record.veto_pick_timeout - ) - RETURNING id INTO final_match_options_id; - - RETURN final_match_options_id; + RETURN clone_match_options_with_best_of( + original_match_options_id, + _decider_best_of + ); END; $$ LANGUAGE plpgsql; diff --git a/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml b/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml new file mode 100644 index 00000000..ac3d4442 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml @@ -0,0 +1,20 @@ +table: + name: match_camera_tokens + schema: public +object_relationships: + - name: match + using: + foreign_key_constraint_on: match_id +select_permissions: + - role: user + permission: + columns: + - id + - match_id + - steam_id + - token + - created_at + filter: + steam_id: + _eq: X-Hasura-User-Id + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_match_options.yaml b/hasura/metadata/databases/default/tables/public_match_options.yaml index ae849e63..b5de606d 100644 --- a/hasura/metadata/databases/default/tables/public_match_options.yaml +++ b/hasura/metadata/databases/default/tables/public_match_options.yaml @@ -50,6 +50,8 @@ insert_permissions: check: {} columns: - best_of + - camera_required + - camera_allow_teammates - check_in_setting - coaches - default_models @@ -104,6 +106,8 @@ select_permissions: permission: columns: - best_of + - camera_required + - camera_allow_teammates - check_in_setting - coaches - default_models @@ -136,6 +140,8 @@ update_permissions: permission: columns: - best_of + - camera_required + - camera_allow_teammates - check_in_setting - coaches - default_models diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index cacca419..9005ab12 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -82,6 +82,7 @@ - "!include public_lobby_players.yaml" - "!include public_map_pools.yaml" - "!include public_maps.yaml" +- "!include public_match_camera_tokens.yaml" - "!include public_match_clips.yaml" - "!include public_match_demo_sessions.yaml" - "!include public_match_lineup_players.yaml" diff --git a/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql b/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql new file mode 100644 index 00000000..fed666cf --- /dev/null +++ b/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql @@ -0,0 +1,5 @@ +DROP TABLE IF EXISTS "public"."match_camera_tokens"; + +ALTER TABLE "public"."match_options" DROP COLUMN IF EXISTS "camera_allow_teammates"; + +ALTER TABLE "public"."match_options" DROP COLUMN IF EXISTS "camera_required"; diff --git a/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql b/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql new file mode 100644 index 00000000..dea52c84 --- /dev/null +++ b/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql @@ -0,0 +1,22 @@ +ALTER TABLE "public"."match_options" + ADD COLUMN IF NOT EXISTS "camera_required" boolean NOT NULL DEFAULT false; + +-- Lets a player see their own side's cameras. Never the other side: that would +-- hand a competitor a live view of the opposition. +ALTER TABLE "public"."match_options" + ADD COLUMN IF NOT EXISTS "camera_allow_teammates" boolean NOT NULL DEFAULT false; + +CREATE TABLE IF NOT EXISTS "public"."match_camera_tokens" ( + "id" uuid DEFAULT gen_random_uuid() NOT NULL, + "match_id" uuid NOT NULL, + "steam_id" bigint NOT NULL, + "token" uuid DEFAULT gen_random_uuid() NOT NULL, + "created_at" timestamp with time zone DEFAULT now() NOT NULL, + PRIMARY KEY ("id"), + FOREIGN KEY ("match_id") REFERENCES "public"."matches"("id") ON UPDATE cascade ON DELETE cascade, + UNIQUE ("token"), + UNIQUE ("match_id", "steam_id") +); + +CREATE INDEX IF NOT EXISTS "match_camera_tokens_match_id_idx" + ON "public"."match_camera_tokens" ("match_id"); diff --git a/src/app.module.ts b/src/app.module.ts index c277b73c..6117866b 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -6,6 +6,7 @@ import { TypeSenseModule } from "./type-sense/type-sense.module"; import { AuthModule } from "./auth/auth.module"; import { DiscordBotModule } from "./discord-bot/discord-bot.module"; import { MatchesModule } from "./matches/matches.module"; +import { VoiceModule } from "./voice/voice.module"; import { EncryptionModule } from "./encryption/encryption.module"; import { CacheModule } from "./cache/cache.module"; @@ -67,6 +68,7 @@ import { PluginsModule } from "./plugins/plugins.module"; SocketsModule, TypeSenseModule, MatchesModule, + VoiceModule, MatchMaking, DraftGamesModule, EncryptionModule, diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 39ac923d..a799f92c 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -1,3 +1,4 @@ +import { randomUUID } from "crypto"; import { Injectable, Logger } from "@nestjs/common"; import { User } from "../auth/types/User"; import Redis from "ioredis"; @@ -386,6 +387,9 @@ export class ChatService { const timestamp = new Date(); const message = { + // Both the history snapshot sent on join and the live broadcast carry the + // message, so clients need something stable to recognize it by. + id: randomUUID(), message: _message, timestamp: timestamp.toISOString(), from: { @@ -398,7 +402,9 @@ export class ChatService { }; const messageKey = `chat_${type}_${id}`; - const messageField = `${player.steam_id}:${Date.now().toString()}`; + // Keyed by id and not `${steam_id}:${now}`, which silently dropped a + // message when the same player landed two within the same millisecond. + const messageField = message.id; await this.redis.hset(messageKey, messageField, JSON.stringify(message)); await this.redis.sendCommand( diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index 22e2becf..5e997ddc 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -1028,6 +1028,8 @@ export class DraftGameService { ready_setting: source.ready_setting, tech_timeout_setting: source.tech_timeout_setting, tv_delay: source.tv_delay, + round_restart_delay: source.round_restart_delay ?? null, + halftime_pausematch: source.halftime_pausematch ?? false, }; if (source.map_pool_id) { @@ -1038,6 +1040,8 @@ export class DraftGameService { // permissions never apply — the role gates have to be repeated here. if (isRoleAbove(user.role, "match_organizer")) { object.veto_pick_timeout = source.veto_pick_timeout; + object.camera_required = source.camera_required ?? false; + object.camera_allow_teammates = source.camera_allow_teammates ?? false; } if (isRoleAbove(user.role, "tournament_organizer")) { diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index c6e1ad53..e9a9990f 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -167,6 +167,28 @@ export class HasuraService { await this.postgresService.query( "insert into settings (name, value) values ('public.veto_pick_timeout', '60') on conflict (name) do nothing", ); + + // Off by default: player cameras need MediaMTX reachable and a publicly + // routable WebRTC host, which not every install has. + await this.postgresService.query( + "insert into settings (name, value) values ('public.player_cameras_enabled', 'false') on conflict (name) do nothing", + ); + + // Same WebRTC requirement as cameras above. + await this.postgresService.query( + "insert into settings (name, value) values ('public.voice_chat_enabled', 'false') on conflict (name) do nothing", + ); + + // Platform defaults new match_options rows inherit. Both off: requiring a + // webcam everywhere is a deliberate choice for an event, not a sane default, + // and letting teammates watch each other is opt-in on top of that. + await this.postgresService.query( + "insert into settings (name, value) values ('public.camera_required_default', 'false') on conflict (name) do nothing", + ); + + await this.postgresService.query( + "insert into settings (name, value) values ('public.camera_allow_teammates_default', 'false') on conflict (name) do nothing", + ); } private async applyMigrations(path: string): Promise { diff --git a/src/matches/camera/camera-monitor.service.spec.ts b/src/matches/camera/camera-monitor.service.spec.ts new file mode 100644 index 00000000..27e9e63b --- /dev/null +++ b/src/matches/camera/camera-monitor.service.spec.ts @@ -0,0 +1,175 @@ +import { Logger } from "@nestjs/common"; +import { CameraMonitorService } from "./camera-monitor.service"; + +describe("CameraMonitorService", () => { + const MATCH_ID = "11111111-1111-1111-1111-111111111111"; + const SERVER_ID = "22222222-2222-2222-2222-222222222222"; + const STEAM_ID = "76561198000000001"; + const OTHER_STEAM_ID = "76561198000000002"; + + let redis: { + hgetall: jest.Mock; + hset: jest.Mock; + expire: jest.Mock; + get: jest.Mock; + setex: jest.Mock; + del: jest.Mock; + }; + let postgres: { query: jest.Mock }; + let rconClient: { send: jest.Mock }; + let rcon: { connect: jest.Mock }; + let mediaMtx: { listPaths: jest.Mock }; + let service: CameraMonitorService; + + const path = (steamId: string) => `camera-${MATCH_ID}-${steamId}`; + + const rosterRow = (steamId: string) => ({ + match_id: MATCH_ID, + server_id: SERVER_ID, + steam_id: steamId, + name: `player-${steamId}`, + }); + + beforeEach(() => { + redis = { + hgetall: jest.fn().mockResolvedValue({}), + hset: jest.fn().mockResolvedValue(1), + expire: jest.fn().mockResolvedValue(1), + get: jest.fn().mockResolvedValue(null), + setex: jest.fn().mockResolvedValue("OK"), + del: jest.fn().mockResolvedValue(1), + }; + postgres = { query: jest.fn().mockResolvedValue([rosterRow(STEAM_ID)]) }; + rconClient = { send: jest.fn().mockResolvedValue("") }; + rcon = { connect: jest.fn().mockResolvedValue(rconClient) }; + mediaMtx = { listPaths: jest.fn() }; + + service = new CameraMonitorService( + new Logger("CameraMonitorTest"), + postgres as any, + rcon as any, + mediaMtx as any, + { getConnection: () => redis } as any, + ); + }); + + const listing = ( + entries: Array<[string, { ready: boolean; bytesReceived: number }]>, + ) => new Map(entries); + + it("does not report a camera that has only just gone down", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 29_000); + + expect(rcon.connect).not.toHaveBeenCalled(); + }); + + it("reports a camera that has been down past the grace window", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 30_000); + + expect(rconClient.send).toHaveBeenCalledWith(`camera_state ${STEAM_ID}`); + }); + + // A path can stay `ready` long after the uplink dies, so bytes standing + // still is the signal that actually matters. + it("treats a ready path with no new bytes as offline", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue( + listing([[path(STEAM_ID), { ready: true, bytesReceived: 500 }]]), + ); + + await service.monitorLiveMatches(1000 + 31_000); + + expect(rconClient.send).toHaveBeenCalledWith(`camera_state ${STEAM_ID}`); + }); + + it("keeps a camera healthy while bytes keep arriving", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue( + listing([[path(STEAM_ID), { ready: true, bytesReceived: 900 }]]), + ); + + await service.monitorLiveMatches(1000 + 31_000); + + expect(rcon.connect).not.toHaveBeenCalled(); + expect(redis.hset).toHaveBeenCalledWith(`camera:samples:${MATCH_ID}`, { + [STEAM_ID]: `900:${1000 + 31_000}:live`, + }); + }); + + // Pausing every live match because our own monitor lost its connection is + // far worse than missing a drop for one pass. + it("changes nothing when mediamtx cannot be reached", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue(null); + + await service.monitorLiveMatches(1000 + 600_000); + + expect(rcon.connect).not.toHaveBeenCalled(); + expect(redis.hset).not.toHaveBeenCalled(); + }); + + it("only sends rcon when the offending set changes", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + redis.get.mockResolvedValue(STEAM_ID); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(rcon.connect).not.toHaveBeenCalled(); + }); + + it("clears the reported state once every camera is back", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + redis.get.mockResolvedValue(STEAM_ID); + mediaMtx.listPaths.mockResolvedValue( + listing([[path(STEAM_ID), { ready: true, bytesReceived: 900 }]]), + ); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(rconClient.send).toHaveBeenCalledWith("camera_state "); + expect(redis.del).toHaveBeenCalledWith(`camera:reported:${MATCH_ID}`); + }); + + it("reports offenders in a stable order so the set compares cleanly", async () => { + postgres.query.mockResolvedValue([ + rosterRow(OTHER_STEAM_ID), + rosterRow(STEAM_ID), + ]); + redis.hgetall.mockResolvedValue({ + [STEAM_ID]: "500:1000:live", + [OTHER_STEAM_ID]: "500:1000:live", + }); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(rconClient.send).toHaveBeenCalledWith( + `camera_state ${STEAM_ID},${OTHER_STEAM_ID}`, + ); + }); + + it("does nothing when no live match requires cameras", async () => { + postgres.query.mockResolvedValue([]); + + await service.monitorLiveMatches(); + + expect(mediaMtx.listPaths).not.toHaveBeenCalled(); + }); + + it("leaves the reported state alone when rcon is unreachable", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + rcon.connect.mockResolvedValue(null); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(redis.setex).not.toHaveBeenCalled(); + }); +}); diff --git a/src/matches/camera/camera-monitor.service.ts b/src/matches/camera/camera-monitor.service.ts new file mode 100644 index 00000000..cc350cdb --- /dev/null +++ b/src/matches/camera/camera-monitor.service.ts @@ -0,0 +1,254 @@ +import { Injectable, Logger } from "@nestjs/common"; +import Redis from "ioredis"; +import { PostgresService } from "../../postgres/postgres.service"; +import { RedisManagerService } from "../../redis/redis-manager/redis-manager.service"; +import { RconService } from "../../rcon/rcon.service"; +import { MediaMtxService } from "../../mediamtx/mediamtx.service"; +import { CameraService, type CameraHealth } from "./camera.service"; + +// How long a camera may be anything other than `live` before the match is +// paused. Long enough to ride out a WebRTC renegotiation, a wifi blip or a +// phone locking its screen; short enough to catch a real drop inside a round. +const GRACE_MS = 30_000; + +type PlayerSample = { + bytes: number; + // When this player was last observed healthy. The grace window is measured + // from here, so a feed that flaps never resets its way out of a pause. + healthyAt: number; + health: CameraHealth; +}; + +type MonitoredPlayer = { + steamId: string; + name: string | null; + health: CameraHealth; + offline: boolean; +}; + +@Injectable() +export class CameraMonitorService { + private readonly redis: Redis; + + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly rcon: RconService, + private readonly mediaMtx: MediaMtxService, + redisManager: RedisManagerService, + ) { + this.redis = redisManager.getConnection(); + } + + private static samplesKey(matchId: string) { + return `camera:samples:${matchId}`; + } + + private static reportedKey(matchId: string) { + return `camera:reported:${matchId}`; + } + + public async monitorLiveMatches(now = Date.now()) { + const rows = await this.postgres.query< + Array<{ + match_id: string; + server_id: string | null; + steam_id: string; + name: string | null; + }> + >( + `SELECT m.id AS match_id, + m.server_id::text AS server_id, + mlp.steam_id::text AS steam_id, + p.name + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + INNER JOIN match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + LEFT JOIN players p ON p.steam_id = mlp.steam_id + WHERE m.status = 'Live' + AND mo.camera_required = true + AND m.server_id IS NOT NULL + AND mlp.steam_id IS NOT NULL + AND mlp.is_connected = true`, + ); + + if (rows.length === 0) { + return; + } + + // One list call covers every camera on the box, however many matches are + // live — a per-player status request would scale with the roster. + const paths = await this.mediaMtx.listPaths(); + + // Fail open. If MediaMTX is unreachable we cannot tell a dead camera from + // a dead monitor, and pausing every live match on our own outage is far + // worse than missing a drop. + if (!paths) { + this.logger.warn( + "[camera] skipping monitor pass: mediamtx did not answer", + ); + return; + } + + const byMatch = new Map< + string, + { serverId: string; players: Array<{ steamId: string; name: string | null }> } + >(); + + for (const row of rows) { + if (!row.server_id) { + continue; + } + + const match = byMatch.get(row.match_id) ?? { + serverId: row.server_id, + players: [], + }; + match.players.push({ steamId: row.steam_id, name: row.name }); + byMatch.set(row.match_id, match); + } + + for (const [matchId, { serverId, players }] of byMatch) { + await this.monitorMatch(matchId, serverId, players, paths, now); + } + } + + private async monitorMatch( + matchId: string, + serverId: string, + players: Array<{ steamId: string; name: string | null }>, + paths: Map, + now: number, + ) { + const samplesKey = CameraMonitorService.samplesKey(matchId); + const stored = await this.redis.hgetall(samplesKey); + const nextSamples: Record = {}; + const monitored: Array = []; + + for (const { steamId, name } of players) { + const path = paths.get(CameraService.pathForPlayer(matchId, steamId)); + const previous = CameraMonitorService.parseSample(stored[steamId]); + + let health: CameraHealth; + if (!path?.ready) { + health = "down"; + } else if (!previous || path.bytesReceived > previous.bytes) { + health = "live"; + } else { + // The path is up but nothing has arrived since the last pass: a + // suspended tab or a dead uplink whose session has not torn down yet. + health = "stalled"; + } + + const healthyAt = health === "live" ? now : (previous?.healthyAt ?? now); + + nextSamples[steamId] = + `${path?.bytesReceived ?? 0}:${healthyAt}:${health}`; + + monitored.push({ + steamId, + name, + health, + offline: health !== "live" && now - healthyAt >= GRACE_MS, + }); + } + + await this.redis.hset(samplesKey, nextSamples); + await this.redis.expire(samplesKey, 3600); + + await this.reportToServer(matchId, serverId, monitored); + } + + // Edge-triggered: the plugin owns the pause, so it only needs to hear when + // the offending set actually changes, not once every pass. + private async reportToServer( + matchId: string, + serverId: string, + monitored: Array, + ) { + const offenders = monitored + .filter((player) => player.offline) + .map((player) => player.steamId) + .sort(); + + const payload = offenders.join(","); + const reportedKey = CameraMonitorService.reportedKey(matchId); + // No key means nothing is currently reported, which is the same state as an + // empty payload — without collapsing the two, a healthy match would be sent + // a redundant all-clear on every pass. + const reported = (await this.redis.get(reportedKey)) ?? ""; + + if (reported === payload) { + return; + } + + const rcon = await this.rcon.connect(serverId); + + if (!rcon) { + this.logger.warn( + `[${matchId}] camera state changed but rcon is unavailable; will retry next pass`, + ); + return; + } + + await rcon.send(`camera_state ${payload}`); + + if (payload) { + await this.redis.setex(reportedKey, 3600, payload); + this.logger.log( + `[${matchId}] cameras offline: ${offenders.join(", ")} — asked the server to pause`, + ); + return; + } + + await this.redis.del(reportedKey); + this.logger.log(`[${matchId}] all cameras restored`); + } + + public async clearMatch(matchId: string) { + await this.redis.del( + CameraMonitorService.samplesKey(matchId), + CameraMonitorService.reportedKey(matchId), + ); + } + + // The health of every camera on a match as of the last pass, for callers that + // report state rather than decide it (the game-server payload, the admin grid). + public async healthFor(matchId: string) { + const stored = await this.redis.hgetall( + CameraMonitorService.samplesKey(matchId), + ); + const health = new Map(); + + for (const [steamId, raw] of Object.entries(stored)) { + const sample = CameraMonitorService.parseSample(raw); + + if (sample) { + health.set(steamId, sample.health); + } + } + + return health; + } + + private static parseSample(raw?: string): PlayerSample | null { + if (!raw) { + return null; + } + + const [bytes, healthyAt, health] = raw.split(":"); + const parsedBytes = Number(bytes); + const parsedHealthyAt = Number(healthyAt); + + if (!Number.isFinite(parsedBytes) || !Number.isFinite(parsedHealthyAt)) { + return null; + } + + return { + bytes: parsedBytes, + healthyAt: parsedHealthyAt, + health: health === "live" || health === "stalled" ? health : "down", + }; + } +} diff --git a/src/matches/camera/camera.controller.ts b/src/matches/camera/camera.controller.ts new file mode 100644 index 00000000..9f492fa3 --- /dev/null +++ b/src/matches/camera/camera.controller.ts @@ -0,0 +1,166 @@ +import { + Controller, + ForbiddenException, + Get, + Param, + Post, + Req, + Res, +} from "@nestjs/common"; +import { Request, Response } from "express"; +import { CameraService } from "./camera.service"; +import { CameraMonitorService } from "./camera-monitor.service"; +import { User } from "../../auth/types/User"; + +@Controller("matches/camera") +export class CameraController { + constructor( + private readonly camera: CameraService, + private readonly monitor: CameraMonitorService, + ) {} + + // WHIP/WHEP bodies are `application/sdp`, a content type neither of the + // parsers registered in main.ts claims, so the stream is still unread here. + private readRawBody(request: Request): Promise { + return new Promise((resolve, reject) => { + const chunks: Array = []; + request.on("data", (chunk) => chunks.push(chunk)); + request.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); + request.on("error", reject); + }); + } + + private requireUser(request: Request) { + const user = request.user as User | undefined; + + if (!user) { + throw new ForbiddenException("Authentication required"); + } + + return user; + } + + private async sendSdp(response: Response, answer: () => Promise) { + try { + response.status(200).type("application/sdp").send(await answer()); + } catch (error) { + response.status(400).type("text/plain").send((error as Error).message); + } + } + + // The player routes are gated by the secret token alone: the phone scanning + // the QR code has no session of its own. + + @Post("player/:token/whip") + public async playerPublish( + @Param("token") token: string, + @Req() request: Request, + @Res() response: Response, + ) { + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.camera.proxyPlayerPublish(token, sdp), + ); + } + + @Get("player/:token/status") + public async playerStatus(@Param("token") token: string) { + return this.camera.getPlayerStatus(token); + } + + @Post("player/:token/talk/whep") + public async playerTalk( + @Param("token") token: string, + @Req() request: Request, + @Res() response: Response, + ) { + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => this.camera.proxyPlayerTalk(token, sdp)); + } + + @Get("player/:token/talk/status") + public async playerTalkStatus(@Param("token") token: string) { + return this.camera.getPlayerTalkStatus(token); + } + + @Post("player/:token/talk/hangup") + public async playerTalkHangup(@Param("token") token: string) { + await this.camera.hangupPlayerTalk(token); + + return { ok: true }; + } + + // The admin routes are gated by session + organizer. + + @Get("admin/:matchId/players") + public async adminPlayers( + @Param("matchId") matchId: string, + @Req() request: Request, + ) { + return this.camera.getPlayersWithCameraStatus( + matchId, + this.requireUser(request), + await this.monitor.healthFor(matchId), + ); + } + + @Post("admin/:matchId/:steamId/whep") + public async adminWatch( + @Param("matchId") matchId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.camera.proxyAdminWatch(matchId, steamId, user, sdp), + ); + } + + @Post("admin/:matchId/:steamId/talk/whip") + public async adminTalk( + @Param("matchId") matchId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.camera.proxyAdminTalk(matchId, steamId, user, sdp), + ); + } + + @Get("admin/:matchId/:steamId/talk/status") + public async adminTalkStatus( + @Param("matchId") matchId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + ) { + return this.camera.getAdminTalkStatus( + matchId, + steamId, + this.requireUser(request), + ); + } + + @Post("admin/:matchId/:steamId/talk/hangup") + public async adminTalkHangup( + @Param("matchId") matchId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + ) { + await this.camera.hangupAdminTalk( + matchId, + steamId, + this.requireUser(request), + ); + + return { ok: true }; + } +} diff --git a/src/matches/camera/camera.service.spec.ts b/src/matches/camera/camera.service.spec.ts new file mode 100644 index 00000000..75e3490a --- /dev/null +++ b/src/matches/camera/camera.service.spec.ts @@ -0,0 +1,161 @@ +import { Logger } from "@nestjs/common"; +import { CameraService } from "./camera.service"; +import { User } from "../../auth/types/User"; + +// Authorization only. Nobody playing the match may watch any of it, a +// competitor never sees the other side, and every steam id that reaches a +// MediaMTX path is a Steam64. +describe("CameraService authorization", () => { + const MATCH_ID = "11111111-1111-1111-1111-111111111111"; + const MY_LINEUP = "22222222-2222-2222-2222-222222222222"; + const TEAMMATE = "76561198000000002"; + + const organizer = { steam_id: "76561198000000009", role: "user" } as User; + const admin = { steam_id: "76561198000000008", role: "administrator" } as User; + const player = { steam_id: "76561198000000001", role: "user" } as User; + + let postgres: { query: jest.Mock }; + let mediaMtx: { proxySdp: jest.Mock; isPathReady: jest.Mock; kickSessions: jest.Mock }; + let matchAssistant: { isOrganizer: jest.Mock }; + let service: CameraService; + + const scopeRow = (myLineupId: string | null, allowTeammates: boolean) => [ + { my_lineup_id: myLineupId, allow_teammates: allowTeammates }, + ]; + + beforeEach(() => { + postgres = { query: jest.fn() }; + mediaMtx = { + proxySdp: jest.fn().mockResolvedValue("answer"), + isPathReady: jest.fn().mockResolvedValue(true), + kickSessions: jest.fn().mockResolvedValue(undefined), + }; + matchAssistant = { isOrganizer: jest.fn().mockResolvedValue(false) }; + + service = new CameraService( + new Logger("CameraAuthTest"), + {} as any, + postgres as any, + mediaMtx as any, + matchAssistant as any, + ); + }); + + it("gives an organizer who is not playing both lineups", async () => { + postgres.query.mockResolvedValue(scopeRow(null, false)); + matchAssistant.isOrganizer.mockResolvedValue(true); + + await expect(service.watchScope(MATCH_ID, organizer)).resolves.toEqual({ + kind: "all", + }); + }); + + it("gives an administrator who is not playing both lineups", async () => { + postgres.query.mockResolvedValue(scopeRow(null, false)); + + await expect(service.watchScope(MATCH_ID, admin)).resolves.toEqual({ + kind: "all", + }); + }); + + // The whole point of the feature: a live view of the other side is exactly + // the advantage it exists to prevent. + it("refuses an organizer who is rostered in the match", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, false)); + matchAssistant.isOrganizer.mockResolvedValue(true); + + await expect(service.watchScope(MATCH_ID, organizer)).rejects.toThrow( + /not authorized/i, + ); + }); + + it("refuses an administrator who is rostered in the match", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, false)); + + await expect(service.watchScope(MATCH_ID, admin)).rejects.toThrow( + /not authorized/i, + ); + }); + + it("refuses a player when teammate viewing is off", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, false)); + + await expect(service.watchScope(MATCH_ID, player)).rejects.toThrow( + /not authorized/i, + ); + }); + + it("scopes a player to their own lineup when teammate viewing is on", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, true)); + + await expect(service.watchScope(MATCH_ID, player)).resolves.toEqual({ + kind: "lineup", + lineupId: MY_LINEUP, + }); + }); + + it("refuses a spectator with no role and no roster spot", async () => { + postgres.query.mockResolvedValue(scopeRow(null, true)); + + await expect(service.watchScope(MATCH_ID, player)).rejects.toThrow( + /not authorized/i, + ); + }); + + it("lets a teammate watch someone on their own lineup", async () => { + postgres.query + .mockResolvedValueOnce(scopeRow(MY_LINEUP, true)) + .mockResolvedValueOnce([{ exists: true }]); + + await service.proxyAdminWatch(MATCH_ID, TEAMMATE, player, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `camera-${MATCH_ID}-${TEAMMATE}`, + "whep", + "offer", + ); + }); + + it("refuses a teammate watching someone on the other lineup", async () => { + postgres.query + .mockResolvedValueOnce(scopeRow(MY_LINEUP, true)) + .mockResolvedValueOnce([]); + + await expect( + service.proxyAdminWatch(MATCH_ID, TEAMMATE, player, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // `..` segments in a steam id resolve away the path prefix and reach a + // different camera entirely once the URL is parsed. + it.each([ + "../../camera-other-76561198000000003", + "76561198000000001/../..", + "not-a-steam-id", + "", + ])("refuses a steam id that is not a Steam64: %s", async (steamId) => { + postgres.query.mockResolvedValue(scopeRow(null, false)); + matchAssistant.isOrganizer.mockResolvedValue(true); + + await expect( + service.proxyAdminWatch(MATCH_ID, steamId, organizer, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + it("refuses a match id that is not a uuid, even for an administrator", async () => { + await expect( + service.watchScope("../../etc/passwd", admin), + ).rejects.toThrow(/not authorized/i); + expect(postgres.query).not.toHaveBeenCalled(); + }); + + it("refuses a match that does not exist", async () => { + postgres.query.mockResolvedValue([]); + + await expect(service.watchScope(MATCH_ID, admin)).rejects.toThrow( + /not authorized/i, + ); + }); +}); diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts new file mode 100644 index 00000000..7854833f --- /dev/null +++ b/src/matches/camera/camera.service.ts @@ -0,0 +1,431 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { HasuraService } from "../../hasura/hasura.service"; +import { PostgresService } from "../../postgres/postgres.service"; +import { MediaMtxService } from "../../mediamtx/mediamtx.service"; +import { MatchAssistantService } from "../match-assistant/match-assistant.service"; +import { User } from "../../auth/types/User"; +import { isRoleAbove } from "../../utilities/isRoleAbove"; + +// A token is only meaningful while the match is actually being played, so a +// leaked link stops working on its own without needing an expiry column. +const CAMERA_ACTIVE_MATCH_STATUSES = ["Veto", "Live", "WaitingForServer"]; + +const UUID_PATTERN = + /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; + +// Steam64. Digits-only is the part that matters: these values are interpolated +// into a MediaMTX path, and anything containing a separator could address a +// path other than the one the caller was authorized for. +const STEAM_ID_PATTERN = /^\d{17}$/; + +export type CameraTokenLookup = { + matchId: string; + steamId: string; +}; + +const NOT_AUTHORIZED = "not authorized to view cameras for this match"; + +// "all" is both lineups; "lineup" is a competitor seeing only their own side. +export type CameraScope = + | { kind: "all" } + | { kind: "lineup"; lineupId: string }; + +export type CameraHealth = "live" | "stalled" | "down"; + +export type CameraPlayerStatus = { + steamId: string; + name: string | null; + lineupId: string; + ready: boolean; + // "stalled" is a path that is still up but has stopped delivering — it looks + // identical to a working camera in the grid unless we say so. + health: CameraHealth; +}; + +@Injectable() +export class CameraService { + constructor( + private readonly logger: Logger, + private readonly hasura: HasuraService, + private readonly postgres: PostgresService, + private readonly mediaMtx: MediaMtxService, + private readonly matchAssistant: MatchAssistantService, + ) {} + + public static pathForPlayer(matchId: string, steamId: string) { + return `camera-${matchId}-${steamId}`; + } + + // A call rides its own path so that starting or ending one never disturbs + // the player's required camera publish. + public static talkPathForPlayer(matchId: string, steamId: string) { + return `camera-talk-${matchId}-${steamId}`; + } + + public async generateTokensIfRequired(matchId: string) { + const rows = await this.postgres.query< + Array<{ camera_required: boolean; steam_id: string | null }> + >( + `SELECT mo.camera_required, mlp.steam_id::text AS steam_id + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + LEFT JOIN match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + AND mlp.steam_id IS NOT NULL + WHERE m.id = $1`, + [matchId], + ); + + if (rows.length === 0 || !rows[0].camera_required) { + return; + } + + const steamIds = rows + .map((row) => row.steam_id) + .filter((steamId): steamId is string => Boolean(steamId)); + + if (steamIds.length === 0) { + this.logger.warn( + `[${matchId}] camera_required is on but the lineups are empty; not minting tokens`, + ); + return; + } + + // Idempotent: the Live edge can fire more than once for one match. + await this.postgres.query( + `INSERT INTO match_camera_tokens (match_id, steam_id) + SELECT $1, unnest($2::bigint[]) + ON CONFLICT (match_id, steam_id) DO NOTHING`, + [matchId, steamIds], + ); + } + + public async revokeTokens(matchId: string) { + await this.postgres.query( + `DELETE FROM match_camera_tokens WHERE match_id = $1`, + [matchId], + ); + } + + public async validateToken(token: string): Promise { + // The column is a uuid, so anything else (a stray URL, someone probing the + // endpoint) would reach Postgres and fail as a 500 rather than a clean miss. + if (!token || !UUID_PATTERN.test(token)) { + return null; + } + + const [row] = await this.postgres.query< + Array<{ match_id: string; steam_id: string; status: string }> + >( + `SELECT t.match_id, t.steam_id::text AS steam_id, m.status + FROM match_camera_tokens t + INNER JOIN matches m ON m.id = t.match_id + WHERE t.token = $1 + LIMIT 1`, + [token], + ); + + if (!row || !CAMERA_ACTIVE_MATCH_STATUSES.includes(row.status)) { + return null; + } + + return { matchId: row.match_id, steamId: row.steam_id }; + } + + // Site admins, or an organizer of this specific match — deliberately not the + // global tournament_organizer role, which would open every tournament's + // cameras rather than just this one. + // Who may watch, and whose cameras. Nobody playing the match can watch any of + // it -- not even an administrator -- because a live view of the other side is + // exactly the advantage this feature exists to prevent. + public async watchScope(matchId: string, user: User): Promise { + if (!UUID_PATTERN.test(matchId)) { + throw new Error(NOT_AUTHORIZED); + } + + const [row] = await this.postgres.query< + Array<{ + my_lineup_id: string | null; + allow_teammates: boolean; + }> + >( + `SELECT mo.camera_allow_teammates AS allow_teammates, + ( + SELECT mlp.match_lineup_id::text + FROM match_lineup_players mlp + WHERE mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + AND mlp.steam_id = $2 + LIMIT 1 + ) AS my_lineup_id + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + WHERE m.id = $1`, + [matchId, user.steam_id], + ); + + if (!row) { + throw new Error(NOT_AUTHORIZED); + } + + if (row.my_lineup_id) { + // A player only ever sees their own side, and only when the match was set + // up to allow it. The opposing side is never visible to a competitor. + if (!row.allow_teammates) { + throw new Error(NOT_AUTHORIZED); + } + + return { kind: "lineup", lineupId: row.my_lineup_id }; + } + + if (isRoleAbove(user.role, "administrator")) { + return { kind: "all" }; + } + + const isOrganizer = await this.matchAssistant + .isOrganizer(matchId, user) + .catch(() => false); + + if (!isOrganizer) { + throw new Error(NOT_AUTHORIZED); + } + + return { kind: "all" }; + } + + private async assertCanWatchPlayer( + matchId: string, + steamId: string, + user: User, + ) { + if (!STEAM_ID_PATTERN.test(steamId)) { + throw new Error(NOT_AUTHORIZED); + } + + const scope = await this.watchScope(matchId, user); + + if (scope.kind === "all") { + return; + } + + const [row] = await this.postgres.query>( + `SELECT true AS exists + FROM match_lineup_players + WHERE match_lineup_id = $1 AND steam_id = $2 + LIMIT 1`, + [scope.lineupId, steamId], + ); + + if (!row) { + throw new Error(NOT_AUTHORIZED); + } + } + + public async proxyPlayerPublish(token: string, sdp: string) { + const lookup = await this.requireToken(token); + + return this.mediaMtx.proxySdp( + CameraService.pathForPlayer(lookup.matchId, lookup.steamId), + "whip", + sdp, + ); + } + + public async getPlayerStatus(token: string) { + const lookup = await this.validateToken(token); + + if (!lookup) { + return { ready: false }; + } + + return { + ready: await this.mediaMtx.isPathReady( + CameraService.pathForPlayer(lookup.matchId, lookup.steamId), + ), + }; + } + + public async proxyAdminWatch( + matchId: string, + steamId: string, + user: User, + sdp: string, + ) { + await this.assertCanWatchPlayer(matchId, steamId, user); + + return this.mediaMtx.proxySdp( + CameraService.pathForPlayer(matchId, steamId), + "whep", + sdp, + ); + } + + public async proxyAdminTalk( + matchId: string, + steamId: string, + user: User, + sdp: string, + ) { + await this.assertCanWatchPlayer(matchId, steamId, user); + + return this.mediaMtx.proxySdp( + CameraService.talkPathForPlayer(matchId, steamId), + "whip", + sdp, + ); + } + + public async proxyPlayerTalk(token: string, sdp: string) { + const lookup = await this.requireToken(token); + + return this.mediaMtx.proxySdp( + CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + "whep", + sdp, + ); + } + + public async getPlayerTalkStatus(token: string) { + const lookup = await this.validateToken(token); + + if (!lookup) { + return { ready: false }; + } + + return { + ready: await this.mediaMtx.isPathReady( + CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + ), + }; + } + + public async getAdminTalkStatus(matchId: string, steamId: string, user: User) { + await this.assertCanWatchPlayer(matchId, steamId, user); + + return { + ready: await this.mediaMtx.isPathReady( + CameraService.talkPathForPlayer(matchId, steamId), + ), + }; + } + + public async hangupAdminTalk(matchId: string, steamId: string, user: User) { + await this.assertCanWatchPlayer(matchId, steamId, user); + + await this.mediaMtx.kickSessions( + CameraService.talkPathForPlayer(matchId, steamId), + ); + } + + public async hangupPlayerTalk(token: string) { + const lookup = await this.validateToken(token); + + if (!lookup) { + return; + } + + await this.mediaMtx.kickSessions( + CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + ); + } + + public async getPlayersWithCameraStatus( + matchId: string, + user: User, + health: Map, + ) { + const scope = await this.watchScope(matchId, user); + + const { matches_by_pk: match } = await this.hasura.query({ + matches_by_pk: { + __args: { + id: matchId, + }, + lineup_1: { + id: true, + name: true, + lineup_players: { + steam_id: true, + player: { + name: true, + }, + }, + }, + lineup_2: { + id: true, + name: true, + lineup_players: { + steam_id: true, + player: { + name: true, + }, + }, + }, + }, + }); + + if (!match?.lineup_1 || !match?.lineup_2) { + throw new Error("match lineups not found"); + } + + // A competitor is handed only their own side. Returning the other lineup + // and hiding it in the client would still ship the roster over the wire. + const visible = [match.lineup_1, match.lineup_2].filter((lineup) => { + return scope.kind === "all" || lineup.id === scope.lineupId; + }); + + const lineups = await Promise.all( + visible.map((lineup) => + this.lineupWithCameraStatus(matchId, lineup, health), + ), + ); + + return { lineups }; + } + + private async requireToken(token: string) { + const lookup = await this.validateToken(token); + + if (!lookup) { + throw new Error("invalid or expired camera link"); + } + + return lookup; + } + + private async lineupWithCameraStatus( + matchId: string, + lineup: { + id: string; + name: string; + lineup_players?: Array<{ + steam_id: string; + player?: { name?: string | null } | null; + }>; + }, + health: Map, + ) { + return { + id: lineup.id, + name: lineup.name, + players: await Promise.all( + (lineup.lineup_players ?? []).map(async (lineupPlayer) => { + const ready = await this.mediaMtx.isPathReady( + CameraService.pathForPlayer(matchId, lineupPlayer.steam_id), + ); + + return { + steamId: lineupPlayer.steam_id, + name: lineupPlayer.player?.name ?? null, + lineupId: lineup.id, + ready, + // Fall back to the live path check when the monitor has no sample: + // it only runs for Live matches, and the grid opens during veto too. + health: + health.get(String(lineupPlayer.steam_id)) ?? + (ready ? "live" : "down"), + } satisfies CameraPlayerStatus; + }), + ), + }; + } +} diff --git a/src/matches/game-streamer/game-streamer.service.ts b/src/matches/game-streamer/game-streamer.service.ts index e2908568..b5af0029 100644 --- a/src/matches/game-streamer/game-streamer.service.ts +++ b/src/matches/game-streamer/game-streamer.service.ts @@ -3315,13 +3315,15 @@ export class GameStreamerService { // No CPU request/limit — 1 streamer per GPU node, so let it // use every core (uncapped = no CFS throttling; the CPU-bound // shader compile wants them all). GPU + memory still bounded. + // The 8Gi request tracks real steady-state (cs2 alone sits at + // ~7Gi) so the scheduler stops treating the node as near-empty. resources: { limits: { memory: "16Gi", "nvidia.com/gpu": "1", }, requests: { - memory: "2Gi", + memory: "8Gi", "nvidia.com/gpu": "1", }, }, diff --git a/src/matches/jobs/MonitorMatchCameras.ts b/src/matches/jobs/MonitorMatchCameras.ts new file mode 100644 index 00000000..2783e23a --- /dev/null +++ b/src/matches/jobs/MonitorMatchCameras.ts @@ -0,0 +1,26 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { MatchQueues } from "../enums/MatchQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { CameraMonitorService } from "../camera/camera-monitor.service"; + +@UseQueue("Matches", MatchQueues.ScheduledMatches) +export class MonitorMatchCameras extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly cameraMonitor: CameraMonitorService, + ) { + super(); + } + + async process(): Promise { + try { + await this.cameraMonitor.monitorLiveMatches(); + } catch (error) { + this.logger.error( + `MonitorMatchCameras failed: ${(error as Error)?.message}`, + (error as Error)?.stack, + ); + } + } +} diff --git a/src/matches/match-assistant/match-assistant.service.spec.ts b/src/matches/match-assistant/match-assistant.service.spec.ts index 795caee6..42ced9ab 100644 --- a/src/matches/match-assistant/match-assistant.service.spec.ts +++ b/src/matches/match-assistant/match-assistant.service.spec.ts @@ -459,4 +459,75 @@ describe("MatchAssistantService", () => { }), ); }); + + // Matchmaking builds its match_options inline rather than through the match + // form, so the platform defaults have to be read here or a "cameras on all + // matches" operator would still get ranked games without them. + describe("camera defaults on matchmaking-created matches", () => { + const createMatch = async ( + settings: Array<{ name: string; value: string }>, + ) => { + hasura.query.mockImplementation(async (request: any) => { + if (request.settings) { + return { settings }; + } + return { map_pools: [{ id: "pool-1" }] }; + }); + hasura.mutation.mockResolvedValue({ + insert_matches_one: { + id: "match-1", + lineup_1_id: "l1", + lineup_2_id: "l2", + }, + }); + + await service.createMatchBasedOnType("Competitive" as any, "Ranked" as any, { + mr: 12, + best_of: 1, + knife: true, + overtime: true, + maps: ["map-1"], + } as any); + + return hasura.mutation.mock.calls[0][0].insert_matches_one.__args.object + .options.data; + }; + + it("is off when the platform default is off", async () => { + const options = await createMatch([]); + + expect(options.camera_required).toBe(false); + expect(options.camera_allow_teammates).toBe(false); + }); + + it("requires cameras when the platform default says so", async () => { + const options = await createMatch([ + { name: "public.camera_required_default", value: "true" }, + ]); + + expect(options.camera_required).toBe(true); + expect(options.camera_allow_teammates).toBe(false); + }); + + it("carries the teammate default alongside it", async () => { + const options = await createMatch([ + { name: "public.camera_required_default", value: "true" }, + { name: "public.camera_allow_teammates_default", value: "true" }, + ]); + + expect(options.camera_required).toBe(true); + expect(options.camera_allow_teammates).toBe(true); + }); + + // Teammate viewing on its own would let players watch a feed nobody has to + // publish, so it never turns itself on in isolation. + it("ignores the teammate default when cameras are not required", async () => { + const options = await createMatch([ + { name: "public.camera_allow_teammates_default", value: "true" }, + ]); + + expect(options.camera_required).toBe(false); + expect(options.camera_allow_teammates).toBe(false); + }); + }); }); diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index d562e4a7..7d4ff37d 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -1550,6 +1550,43 @@ export class MatchAssistantService { return matches_by_pk?.can_reassign_winner ?? false; } + // Matchmaking builds its match_options inline rather than through the match + // form, so the platform defaults have to be read here too — otherwise an + // operator who turned cameras on for "all matches" would still get ranked + // games without them. + private async cameraDefaults() { + const { settings } = await this.hasura.query({ + settings: { + __args: { + where: { + name: { + _in: [ + "public.camera_required_default", + "public.camera_allow_teammates_default", + ], + }, + }, + }, + name: true, + value: true, + }, + }); + + const isOn = (name: string) => { + return settings.find((setting) => setting.name === name)?.value === "true"; + }; + + const camera_required = isOn("public.camera_required_default"); + + return { + camera_required, + // Meaningless without a camera to watch, so it never turns itself on in + // isolation. + camera_allow_teammates: + camera_required && isOn("public.camera_allow_teammates_default"), + }; + } + public async createMatchBasedOnType( matchType: e_match_types_enum, mapPoolType: e_map_pool_types_enum, @@ -1626,6 +1663,7 @@ export class MatchAssistantService { overtime: options.overtime, knife_round: options.knife, region_veto: options.region ? false : true, + ...(await this.cameraDefaults()), ...(options.timeout_setting && { timeout_setting: options.timeout_setting, }), diff --git a/src/matches/matches.controller.spec.ts b/src/matches/matches.controller.spec.ts index ec5fb9f4..1ba9189f 100644 --- a/src/matches/matches.controller.spec.ts +++ b/src/matches/matches.controller.spec.ts @@ -48,6 +48,8 @@ describe("MatchesController", () => { {} as any, {} as any, {} as any, + {} as any, + {} as any, ); }); diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index cb857a7b..32d8bc50 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -46,6 +46,8 @@ import { GameStreamerService } from "./game-streamer/game-streamer.service"; import { isRoleAbove } from "../utilities/isRoleAbove"; import { DemoMetadataService } from "../demos/demo-metadata.service"; import { ClipsService } from "./clips/clips.service"; +import { CameraService } from "./camera/camera.service"; +import { CameraMonitorService } from "./camera/camera-monitor.service"; import { ClipSpec } from "./clips/types/ClipSpec"; @Controller("matches") @@ -108,6 +110,8 @@ export class MatchesController { private readonly demoMetadata: DemoMetadataService, private readonly clips: ClipsService, private readonly matchImport: MatchImportService, + private readonly camera: CameraService, + private readonly cameraMonitor: CameraMonitorService, ) { this.appConfig = this.configService.get("app"); } @@ -467,11 +471,53 @@ export class MatchesController { match.options.use_playcast = usePlaycast?.value === "true" ? true : false; + await this.decorateWithCameraState(match); + const data = JSON.parse(safeJsonStringify(match)); response.status(200).json(data); } + // camera_required and per-player camera health are read straight from + // Postgres/Redis rather than the Hasura selection above, so the plugin + // payload does not wait on Zeus codegen to learn about a new column. + private async decorateWithCameraState(match: { + id: string; + options: Record; + lineup_1?: { lineup_players?: Array> }; + lineup_2?: { lineup_players?: Array> }; + }) { + const [row] = await this.postgres.query< + Array<{ camera_required: boolean }> + >( + `SELECT mo.camera_required + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + WHERE m.id = $1`, + [match.id], + ); + + const cameraRequired = row?.camera_required === true; + match.options.camera_required = cameraRequired; + + if (!cameraRequired) { + return; + } + + const health = await this.cameraMonitor.healthFor(match.id); + + for (const lineup of [match.lineup_1, match.lineup_2]) { + for (const player of lineup?.lineup_players ?? []) { + const steamId = player.steam_id; + // Unknown means the monitor has not sampled this player yet (they just + // joined, or the match only went Live seconds ago) — treat that as fine + // rather than flagging someone the monitor has never looked at. + player.camera_ok = + steamId == null || (health.get(String(steamId)) ?? "live") === "live"; + } + } + } + @HasuraEvent() public async match_map_demo_events( data: HasuraEventData, @@ -616,6 +662,8 @@ export class MatchesController { await this.removeDiscordIntegration(matchId); await this.matchmaking.cancelMatchMakingByMatchId(matchId); await this.releaseScrimScheduledNotifications(matchId); + await this.camera.revokeTokens(matchId); + await this.cameraMonitor.clearMatch(matchId); await this.eloCalculationQueue.add(EloCalculation.name, { matchId, @@ -743,15 +791,17 @@ export class MatchesController { } } - if ( - status === "Live" && - data.old.status !== "Live" && - match.server?.game_server_node_id - ) { - await this.maybePauseRendersForServerNode( - matchId, - String(match.server.game_server_node_id), - ); + if (status === "Live" && data.old.status !== "Live") { + if (match.server?.game_server_node_id) { + await this.maybePauseRendersForServerNode( + matchId, + String(match.server.game_server_node_id), + ); + } + + // Veto finishing is what flips a match Live (create_match_map_from_veto), + // and that is the first point the lineups can no longer change. + await this.camera.generateTokensIfRequired(matchId); } await this.discordMatchOverview.updateMatchOverview(matchId); diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index f22e14de..7a259107 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -45,6 +45,7 @@ import { SocketsModule } from "../sockets/sockets.module"; import { CleanAbandonedMatches } from "./jobs/CleanAbandonedMatches"; import { ReapIdleDemoSessions } from "./jobs/ReapIdleDemoSessions"; import { PollMediaMtxViewers } from "./jobs/PollMediaMtxViewers"; +import { MonitorMatchCameras } from "./jobs/MonitorMatchCameras"; import { MatchMaking } from "src/matchmaking/matchmaking.module"; import { MatchEventsGateway } from "./match-events.gateway"; import { PostgresModule } from "src/postgres/postgres.module"; @@ -68,10 +69,15 @@ import { DemosModule } from "../demos/demos.module"; import { ClipsModule } from "./clips/clips.module"; import { SteamMatchHistoryModule } from "../steam-match-history/steam-match-history.module"; import { LeaguesModule } from "../leagues/leagues.module"; +import { MediaMtxModule } from "../mediamtx/mediamtx.module"; +import { CameraController } from "./camera/camera.controller"; +import { CameraService } from "./camera/camera.service"; +import { CameraMonitorService } from "./camera/camera-monitor.service"; @Module({ imports: [ HasuraModule, + MediaMtxModule, forwardRef(() => RconModule), CacheModule, RedisModule, @@ -149,12 +155,14 @@ import { LeaguesModule } from "../leagues/leagues.module"; }, ), ], - controllers: [MatchesController, MatchRelayController], + controllers: [MatchesController, MatchRelayController, CameraController], exports: [MatchAssistantService, PlayerEloRecomputeService], providers: [ MatchEventsGateway, MatchAssistantService, MatchRelayService, + CameraService, + CameraMonitorService, CheckOnDemandServerJob, CheckOnDemandServerJobEvents, CancelExpiredMatches, @@ -171,6 +179,7 @@ import { LeaguesModule } from "../leagues/leagues.module"; CleanAbandonedMatches, ReapIdleDemoSessions, PollMediaMtxViewers, + MonitorMatchCameras, EloCalculation, RecomputeAllElo, PlayerEloRecomputeService, @@ -327,6 +336,18 @@ export class MatchesModule implements NestModule { }, ); + // Faster than the viewer poll: this one decides whether a live match keeps + // playing, and the grace window is only 30s. + void scheduleMatchQueue.add( + MonitorMatchCameras.name, + {}, + { + repeat: { + every: 10_000, + }, + }, + ); + void this.generatePlayerRatings(); } diff --git a/src/mediamtx/mediamtx.module.ts b/src/mediamtx/mediamtx.module.ts new file mode 100644 index 00000000..f18e1bed --- /dev/null +++ b/src/mediamtx/mediamtx.module.ts @@ -0,0 +1,9 @@ +import { Module } from "@nestjs/common"; +import { MediaMtxService } from "./mediamtx.service"; +import { loggerFactory } from "../utilities/LoggerFactory"; + +@Module({ + exports: [MediaMtxService], + providers: [MediaMtxService, loggerFactory()], +}) +export class MediaMtxModule {} diff --git a/src/mediamtx/mediamtx.service.ts b/src/mediamtx/mediamtx.service.ts new file mode 100644 index 00000000..1b23da67 --- /dev/null +++ b/src/mediamtx/mediamtx.service.ts @@ -0,0 +1,171 @@ +import { Injectable, Logger } from "@nestjs/common"; + +@Injectable() +export class MediaMtxService { + constructor(private readonly logger: Logger) {} + + // A MediaMTX path is one URL segment, so it is encoded rather than + // interpolated: an unencoded `..` in a caller-supplied path component + // resolves away the prefix and reaches a different path entirely + // (`camera--../../camera--` -> `camera--`). + private encodePath(path: string) { + return encodeURIComponent(path); + } + + private apiBase() { + return (process.env.MEDIAMTX_API_BASE || "http://mediamtx:9997").replace( + /\/$/, + "", + ); + } + + private whipBase() { + return (process.env.MEDIAMTX_WHIP_BASE || "http://mediamtx:8889").replace( + /\/$/, + "", + ); + } + + public async proxySdp(path: string, action: "whip" | "whep", sdp: string) { + let response: Response; + + try { + response = await fetch( + `${this.whipBase()}/${this.encodePath(path)}/${action}`, + { + method: "POST", + headers: { + "Content-Type": "application/sdp", + }, + body: sdp, + signal: AbortSignal.timeout(10_000), + }, + ); + } catch (error) { + this.logger.error( + `[mediamtx] ${action} proxy to ${path} failed: ${(error as Error)?.message}`, + ); + throw new Error("signaling service unreachable"); + } + + const body = await response.text(); + + if (!response.ok) { + throw new Error( + `mediamtx ${path}/${action} responded ${response.status}: ${body.slice(0, 200)}`, + ); + } + + return body; + } + + // Null means "could not ask", which callers must not confuse with "nothing is + // publishing" — an empty map is a real answer, null is an outage. + public async listPaths(): Promise | null> { + try { + const response = await fetch(`${this.apiBase()}/v3/paths/list`, { + signal: AbortSignal.timeout(5_000), + }); + + if (!response.ok) { + return null; + } + + const { items } = (await response.json()) as { + items?: Array<{ + name?: string; + ready?: boolean; + bytesReceived?: number; + }>; + }; + + const paths = new Map(); + + for (const item of items ?? []) { + if (!item?.name) { + continue; + } + + paths.set(item.name, { + ready: item.ready === true, + bytesReceived: Number(item.bytesReceived ?? 0), + }); + } + + return paths; + } catch (error) { + this.logger.warn( + `[mediamtx] listing paths failed: ${(error as Error)?.message}`, + ); + return null; + } + } + + public async isPathReady(path: string) { + try { + const response = await fetch( + `${this.apiBase()}/v3/paths/get/${this.encodePath(path)}`, + { + signal: AbortSignal.timeout(5_000), + }, + ); + + if (!response.ok) { + return false; + } + + const { ready } = (await response.json()) as { ready?: boolean }; + + return ready === true; + } catch (error) { + this.logger.warn( + `[mediamtx] status check for ${path} failed: ${(error as Error)?.message}`, + ); + return false; + } + } + + // Dropping the publisher is what actually ends a session for everyone + // attached to the path — there is no per-viewer teardown to coordinate. + public async kickSessions(path: string) { + try { + const response = await fetch( + `${this.apiBase()}/v3/webrtcsessions/list`, + { + signal: AbortSignal.timeout(5_000), + }, + ); + + if (!response.ok) { + return; + } + + const { items } = (await response.json()) as { + items?: Array<{ id: string; path?: string }>; + }; + + await Promise.all( + (items ?? []) + .filter((session) => session.path === path) + .map((session) => { + return fetch( + `${this.apiBase()}/v3/webrtcsessions/kick/${this.encodePath(session.id)}`, + { + method: "POST", + signal: AbortSignal.timeout(5_000), + }, + ).catch(() => {}); + }), + ); + } catch (error) { + // Best effort: if the control API is unreachable the WebRTC connection + // still times out and settles on its own. + this.logger.warn( + `[mediamtx] kick sessions for ${path} failed: ${(error as Error)?.message}`, + ); + } + } +} diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 75cf8a4d..d876041a 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -14,6 +14,10 @@ export enum SystemSettingName { CreateAwardsRole = "public.create_awards_role", GrantAwardsRole = "public.grant_awards_role", RequireLoginForLiveStreams = "public.require_login_for_live_streams", + PlayerCamerasEnabled = "public.player_cameras_enabled", + CameraRequiredDefault = "public.camera_required_default", + CameraAllowTeammatesDefault = "public.camera_allow_teammates_default", + VoiceChatEnabled = "public.voice_chat_enabled", LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index 981fdb34..55f07619 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -35,7 +35,7 @@ export class TelemetryService { setting: "auto_generate_match_clips_imported", defaultEnabled: false, }, - clip_branding: { setting: "clip_bake_branding", defaultEnabled: false }, + clip_branding: { setting: "clip_bake_branding", defaultEnabled: true }, leagues: { setting: "public.leagues_enabled", defaultEnabled: false }, seasons: { setting: "public.seasons_enabled", defaultEnabled: false }, events: { setting: "public.events_enabled", defaultEnabled: false }, diff --git a/src/voice/voice.controller.ts b/src/voice/voice.controller.ts new file mode 100644 index 00000000..4f071e02 --- /dev/null +++ b/src/voice/voice.controller.ts @@ -0,0 +1,91 @@ +import { + Controller, + ForbiddenException, + Get, + Param, + Post, + Req, + Res, +} from "@nestjs/common"; +import { Request, Response } from "express"; +import { VoiceService } from "./voice.service"; +import { User } from "../auth/types/User"; + +@Controller("voice") +export class VoiceController { + constructor(private readonly voice: VoiceService) {} + + // WHIP/WHEP bodies are `application/sdp`, which neither parser registered in + // main.ts claims, so the stream is still unread here. + private readRawBody(request: Request): Promise { + return new Promise((resolve, reject) => { + const chunks: Array = []; + request.on("data", (chunk) => chunks.push(chunk)); + request.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); + request.on("error", reject); + }); + } + + private requireUser(request: Request) { + const user = request.user as User | undefined; + + if (!user) { + throw new ForbiddenException("Authentication required"); + } + + return user; + } + + private async sendSdp(response: Response, answer: () => Promise) { + try { + response.status(200).type("application/sdp").send(await answer()); + } catch (error) { + response.status(400).type("text/plain").send((error as Error).message); + } + } + + @Post(":lobbyId/whip") + public async publish( + @Param("lobbyId") lobbyId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => this.voice.publish(lobbyId, user, sdp)); + } + + @Post(":lobbyId/:steamId/whep") + public async subscribe( + @Param("lobbyId") lobbyId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.voice.subscribe(lobbyId, steamId, user, sdp), + ); + } + + @Get(":lobbyId/participants") + public async participants( + @Param("lobbyId") lobbyId: string, + @Req() request: Request, + ) { + return this.voice.participants(lobbyId, this.requireUser(request)); + } + + @Post(":lobbyId/leave") + public async leave( + @Param("lobbyId") lobbyId: string, + @Req() request: Request, + ) { + await this.voice.leave(lobbyId, this.requireUser(request)); + + return { ok: true }; + } +} diff --git a/src/voice/voice.module.ts b/src/voice/voice.module.ts new file mode 100644 index 00000000..14fdaa6f --- /dev/null +++ b/src/voice/voice.module.ts @@ -0,0 +1,14 @@ +import { Module } from "@nestjs/common"; +import { VoiceController } from "./voice.controller"; +import { VoiceService } from "./voice.service"; +import { PostgresModule } from "../postgres/postgres.module"; +import { MediaMtxModule } from "../mediamtx/mediamtx.module"; +import { loggerFactory } from "../utilities/LoggerFactory"; + +@Module({ + imports: [PostgresModule, MediaMtxModule], + controllers: [VoiceController], + providers: [VoiceService, loggerFactory()], + exports: [VoiceService], +}) +export class VoiceModule {} diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts new file mode 100644 index 00000000..9c7e9f47 --- /dev/null +++ b/src/voice/voice.service.spec.ts @@ -0,0 +1,161 @@ +import { Logger } from "@nestjs/common"; +import { VoiceService } from "./voice.service"; +import { User } from "../auth/types/User"; + +describe("VoiceService", () => { + const LOBBY_ID = "11111111-1111-1111-1111-111111111111"; + const ME = { steam_id: "76561198000000001" } as User; + const PEER = "76561198000000002"; + + let postgres: { query: jest.Mock }; + let mediaMtx: { proxySdp: jest.Mock; kickSessions: jest.Mock; listPaths: jest.Mock }; + let service: VoiceService; + + // The service reads the enabled flag and then the membership row, so the + // happy path needs both in order. + const enabled = (value: boolean) => [{ value: String(value) }]; + + const accepted = () => + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]); + + beforeEach(() => { + postgres = { query: jest.fn().mockResolvedValue([]) }; + mediaMtx = { + proxySdp: jest.fn().mockResolvedValue("answer-sdp"), + kickSessions: jest.fn().mockResolvedValue(undefined), + listPaths: jest.fn().mockResolvedValue(new Map()), + }; + service = new VoiceService( + new Logger("VoiceTest"), + postgres as any, + mediaMtx as any, + ); + }); + + it("publishes to the member's own path", async () => { + accepted(); + + await expect(service.publish(LOBBY_ID, ME, "offer")).resolves.toBe( + "answer-sdp", + ); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${ME.steam_id}`, + "whip", + "offer", + ); + }); + + it("refuses anyone who is not in the lobby", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([]); + + await expect(service.publish(LOBBY_ID, ME, "offer")).rejects.toThrow( + /not a member/i, + ); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // An invite that has not been taken up is not a seat at the table. + it("refuses a member who has not accepted", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Invited" }]); + + await expect(service.publish(LOBBY_ID, ME, "offer")).rejects.toThrow( + /not a member/i, + ); + }); + + it("refuses everything while the feature is off", async () => { + postgres.query.mockResolvedValue(enabled(false)); + + await expect(service.publish(LOBBY_ID, ME, "offer")).rejects.toThrow( + /not enabled/i, + ); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // Guards the lobby id before it reaches Postgres as a uuid. + it("refuses a lobby id that is not a uuid", async () => { + postgres.query.mockResolvedValue(enabled(true)); + + await expect( + service.publish("../../etc/passwd", ME, "offer"), + ).rejects.toThrow(/not a member/i); + // The membership lookup never runs: the id is rejected before it could + // reach Postgres as a uuid. + expect(postgres.query).toHaveBeenCalledTimes(1); + }); + + it("subscribes to a peer's path", async () => { + accepted(); + + await service.subscribe(LOBBY_ID, PEER, ME, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${PEER}`, + "whep", + "offer", + ); + }); + + // Subscribing to yourself is an echo loop, never something a client wants. + it("refuses subscribing to your own microphone", async () => { + accepted(); + + await expect( + service.subscribe(LOBBY_ID, ME.steam_id, ME, "offer"), + ).rejects.toThrow(/your own/i); + }); + + it("lists the whole party and flags who has a live mic", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [`voice-${LOBBY_ID}-${PEER}`, { ready: true, bytesReceived: 10 }], + ]), + ); + + const participants = await service.participants(LOBBY_ID, ME); + + expect(participants).toEqual([ + { steamId: ME.steam_id, name: "me", avatarUrl: null, speaking: false }, + { steamId: PEER, name: "peer", avatarUrl: null, speaking: true }, + ]); + }); + + // Losing MediaMTX should dim the talking indicators, not empty the party list. + it("still lists the party when mediamtx cannot be reached", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([ + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + mediaMtx.listPaths.mockResolvedValue(null); + + const participants = await service.participants(LOBBY_ID, ME); + + expect(participants).toHaveLength(1); + expect(participants[0].speaking).toBe(false); + }); + + it("drops only your own session on leave", async () => { + accepted(); + + await service.leave(LOBBY_ID, ME); + + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${ME.steam_id}`, + ); + }); +}); diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts new file mode 100644 index 00000000..f244ac88 --- /dev/null +++ b/src/voice/voice.service.ts @@ -0,0 +1,135 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "../postgres/postgres.service"; +import { MediaMtxService } from "../mediamtx/mediamtx.service"; +import { SystemSettingName } from "../system/enums/SystemSettingName"; +import { User } from "../auth/types/User"; + +const UUID_PATTERN = + /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; + +export type VoiceParticipant = { + steamId: string; + name: string | null; + avatarUrl: string | null; + speaking: boolean; +}; + +@Injectable() +export class VoiceService { + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly mediaMtx: MediaMtxService, + ) {} + + // Mirrors the camera paths so both features are recognisable in a + // `/v3/paths/list` dump and neither can collide with the other. + public static pathForMember(lobbyId: string, steamId: string) { + return `voice-${lobbyId}-${steamId}`; + } + + // Read straight from the settings table rather than through SystemService, + // which would drag its whole module graph (chat, k8s, s3, queues) into this + // feature for the sake of one row. + public async isEnabled() { + const [row] = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [SystemSettingName.VoiceChatEnabled], + ); + + return row?.value === "true"; + } + + // Voice is only ever offered to a lobby you are actually in, and only for + // members who accepted — an invite that has not been taken up is not a seat + // at the table. + public async assertMember(lobbyId: string, user: User) { + if (!(await this.isEnabled())) { + throw new Error("voice chat is not enabled"); + } + + if (!UUID_PATTERN.test(lobbyId)) { + throw new Error("not a member of this lobby"); + } + + const [row] = await this.postgres.query>( + `SELECT status FROM lobby_players WHERE lobby_id = $1 AND steam_id = $2`, + [lobbyId, user.steam_id], + ); + + if (row?.status !== "Accepted") { + throw new Error("not a member of this lobby"); + } + } + + public async publish(lobbyId: string, user: User, sdp: string) { + await this.assertMember(lobbyId, user); + + return this.mediaMtx.proxySdp( + VoiceService.pathForMember(lobbyId, user.steam_id), + "whip", + sdp, + ); + } + + public async subscribe( + lobbyId: string, + steamId: string, + user: User, + sdp: string, + ) { + await this.assertMember(lobbyId, user); + + if (steamId === user.steam_id) { + throw new Error("cannot subscribe to your own microphone"); + } + + return this.mediaMtx.proxySdp( + VoiceService.pathForMember(lobbyId, steamId), + "whep", + sdp, + ); + } + + public async leave(lobbyId: string, user: User) { + await this.assertMember(lobbyId, user); + + await this.mediaMtx.kickSessions( + VoiceService.pathForMember(lobbyId, user.steam_id), + ); + } + + // Everyone in the lobby, with a flag for who currently has a live mic, so the + // panel can show the whole party rather than only the people already talking. + public async participants(lobbyId: string, user: User) { + await this.assertMember(lobbyId, user); + + const members = await this.postgres.query< + Array<{ steam_id: string; name: string | null; avatar_url: string | null }> + >( + `SELECT lp.steam_id::text AS steam_id, p.name, p.avatar_url + FROM lobby_players lp + LEFT JOIN players p ON p.steam_id = lp.steam_id + WHERE lp.lobby_id = $1 AND lp.status = 'Accepted' + ORDER BY p.name`, + [lobbyId], + ); + + const paths = await this.mediaMtx.listPaths(); + + return members.map((member) => { + const path = paths?.get( + VoiceService.pathForMember(lobbyId, member.steam_id), + ); + + return { + steamId: member.steam_id, + name: member.name, + avatarUrl: member.avatar_url, + // Unknown when MediaMTX did not answer: better to show nobody talking + // for one poll than to drop the whole party out of the list. + speaking: path?.ready === true, + } satisfies VoiceParticipant; + }); + } +} diff --git a/test/camera.spec.ts b/test/camera.spec.ts new file mode 100644 index 00000000..da5dbaf4 --- /dev/null +++ b/test/camera.spec.ts @@ -0,0 +1,151 @@ +import { Logger } from "@nestjs/common"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { CameraService } from "./../src/matches/camera/camera.service"; +import { Fixtures } from "./utils/fixtures"; +import { + bootMigratedDb, + seedRegionWithServer, + SqlTestDb, +} from "./utils/sql-test-db"; + +// Runs CameraService's real SQL (minting, revoking, token lookup) against a +// migrated database, so the queries are covered rather than re-typed here. +describe("camera tokens (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + let camera: CameraService; + + beforeAll(async () => { + db = await bootMigratedDb("CameraTest"); + postgres = db.postgres; + fx = new Fixtures(postgres); + camera = new CameraService( + new Logger("CameraTest"), + {} as any, + postgres, + {} as any, + {} as any, + ); + await seedRegionWithServer(postgres, "CameraTestRegion", 27015); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM players"); + }); + + const rosteredMatch = async (cameraRequired: boolean) => { + const { poolId } = await fx.mapPool(1); + const match = await fx.match({ mapPoolId: poolId }); + + await postgres.query( + "UPDATE match_options SET camera_required = $1 WHERE id = $2", + [cameraRequired, match.options_id], + ); + + const steamIds = [ + await fx.lineupPlayer(match.lineup_1_id), + await fx.lineupPlayer(match.lineup_1_id), + await fx.lineupPlayer(match.lineup_2_id), + ]; + + return { matchId: match.id, steamIds }; + }; + + const tokensFor = (matchId: string) => + postgres.query>( + "SELECT steam_id::text AS steam_id, token::text AS token FROM match_camera_tokens WHERE match_id = $1 ORDER BY steam_id", + [matchId], + ); + + it("mints one token per rostered player when camera_required is on", async () => { + const { matchId, steamIds } = await rosteredMatch(true); + + await camera.generateTokensIfRequired(matchId); + + const tokens = await tokensFor(matchId); + expect(tokens.map((row) => row.steam_id).sort()).toEqual( + [...steamIds].sort(), + ); + expect(new Set(tokens.map((row) => row.token)).size).toBe(steamIds.length); + }); + + it("mints nothing when camera_required is off", async () => { + const { matchId } = await rosteredMatch(false); + + await camera.generateTokensIfRequired(matchId); + + expect(await tokensFor(matchId)).toHaveLength(0); + }); + + // The Live edge can fire more than once for a single match. + it("is idempotent and keeps the token a player already has", async () => { + const { matchId } = await rosteredMatch(true); + + await camera.generateTokensIfRequired(matchId); + const first = await tokensFor(matchId); + + await camera.generateTokensIfRequired(matchId); + const second = await tokensFor(matchId); + + expect(second).toEqual(first); + }); + + it("resolves a token to its match and player only while the match is active", async () => { + const { matchId } = await rosteredMatch(true); + await camera.generateTokensIfRequired(matchId); + const [{ steam_id: steamId, token }] = await tokensFor(matchId); + + await postgres.query("UPDATE matches SET status = 'Live' WHERE id = $1", [ + matchId, + ]); + expect(await camera.validateToken(token)).toEqual({ matchId, steamId }); + + await postgres.query( + "UPDATE matches SET status = 'Canceled' WHERE id = $1", + [matchId], + ); + expect(await camera.validateToken(token)).toBeNull(); + }); + + it("rejects a token that is not a uuid without reaching the database", async () => { + const failing = { + query: jest.fn(), + } as unknown as PostgresService; + const guard = new CameraService( + new Logger("CameraTest"), + {} as any, + failing, + {} as any, + {} as any, + ); + + expect(await guard.validateToken("../../etc/passwd")).toBeNull(); + expect(await guard.validateToken("")).toBeNull(); + expect(failing.query).not.toHaveBeenCalled(); + }); + + it("revokes every token for a match", async () => { + const { matchId } = await rosteredMatch(true); + await camera.generateTokensIfRequired(matchId); + + await camera.revokeTokens(matchId); + + expect(await tokensFor(matchId)).toHaveLength(0); + }); + + it("drops tokens with the match", async () => { + const { matchId } = await rosteredMatch(true); + await camera.generateTokensIfRequired(matchId); + + await postgres.query("DELETE FROM matches WHERE id = $1", [matchId]); + + expect(await tokensFor(matchId)).toHaveLength(0); + }); +}); diff --git a/test/demo-import-kills.spec.ts b/test/demo-import-kills.spec.ts new file mode 100644 index 00000000..46d41678 --- /dev/null +++ b/test/demo-import-kills.spec.ts @@ -0,0 +1,169 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { + bootMigratedDb, + seedRegionWithServer, + SqlTestDb, +} from "./utils/sql-test-db"; + +// persist_imported_demo turns a demo-parser payload into player_kills rows. +// The parser emits one entry per death, and a death has no killer when the +// bomb or the world did it. Those rows still have to land: the live event path +// (KillEvent.ts) records them as self-inflicted, so dropping them here would +// mean the same death counts in a live match and disappears from an imported +// demo — the victim quietly loses a death, and every stat derived from it +// (K/D, survival, KAST, HLTV rating) drifts with it. +describe("persist_imported_demo kill ingestion", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + beforeAll(async () => { + db = await bootMigratedDb("DemoImportKillsTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199300000000n); + await seedRegionWithServer(postgres, "TestDemoImport"); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM players"); + }); + + // Wires a demo row onto a bare match so persist_imported_demo can resolve it. + const demoFor = async (ctx: { matchId: string; mapId: string }) => { + const [row] = await postgres.query>( + `INSERT INTO match_map_demos (match_id, match_map_id, file) + VALUES ($1, $2, 'test.dem') RETURNING id`, + [ctx.matchId, ctx.mapId], + ); + return row.id; + }; + + const importDemo = async (demoId: string, parsed: unknown) => { + await postgres.query("SELECT public.persist_imported_demo($1::uuid, $2::jsonb)", [ + demoId, + JSON.stringify(parsed), + ]); + }; + + const killRows = async (mapId: string) => + postgres.query< + Array<{ + attacker_steam_id: string | null; + attacked_steam_id: string; + with: string; + }> + >( + `SELECT attacker_steam_id::text, attacked_steam_id::text, "with" + FROM player_kills WHERE match_map_id = $1 ORDER BY time`, + [mapId], + ); + + it("keeps a bomb death, attributing it to the victim like the live path", async () => { + const ctx = await fx.bareMatch(); + const demoId = await demoFor(ctx); + const [shooter, victim, bombVictim] = await fx.players(3); + + await importDemo(demoId, { + map_name: "de_cache", + tick_rate: 64, + total_ticks: 2000, + round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], + players: [shooter, victim, bombVictim].map((steam_id) => ({ + steam_id, + name: `p-${steam_id}`, + })), + kills: [ + { + tick: 100, + killer: shooter, + killer_team: "ct", + victim, + victim_team: "t", + weapon: "ak47", + }, + // Bomb detonation: the parser reports the victim with no killer. + { + tick: 200, + killer: "", + killer_team: "", + victim: bombVictim, + victim_team: "ct", + weapon: "c4", + }, + ], + }); + + const rows = await killRows(ctx.mapId); + expect(rows).toHaveLength(2); + + const bomb = rows.find((r) => r.with === "c4"); + expect(bomb).toBeDefined(); + expect(bomb!.attacked_steam_id).toBe(bombVictim); + // Self-attributed, exactly as KillEvent.ts does for a killer-less death. + expect(bomb!.attacker_steam_id).toBe(bombVictim); + }); + + it("counts a bomb death as a death without inventing a kill", async () => { + const ctx = await fx.bareMatch(); + const demoId = await demoFor(ctx); + const [shooter, bombVictim] = await fx.players(2); + + await importDemo(demoId, { + map_name: "de_cache", + tick_rate: 64, + total_ticks: 2000, + round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], + players: [shooter, bombVictim].map((steam_id) => ({ + steam_id, + name: `p-${steam_id}`, + })), + kills: [ + { + tick: 200, + killer: "", + killer_team: "", + victim: bombVictim, + victim_team: "ct", + weapon: "c4", + }, + ], + }); + + const [stats] = await postgres.query< + Array<{ kills: number; deaths: number }> + >( + `SELECT kills, deaths FROM player_match_map_stats + WHERE match_map_id = $1 AND steam_id = $2`, + [ctx.mapId, bombVictim], + ); + + expect(stats?.deaths).toBe(1); + // kills is FILTER (attacker_team <> attacked_team), so a self-kill is out. + expect(stats?.kills).toBe(0); + }); + + it("still drops an entry with no victim at all", async () => { + const ctx = await fx.bareMatch(); + const demoId = await demoFor(ctx); + const [shooter] = await fx.players(1); + + await importDemo(demoId, { + map_name: "de_cache", + tick_rate: 64, + total_ticks: 2000, + round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], + players: [{ steam_id: shooter, name: "p" }], + kills: [ + { tick: 100, killer: shooter, killer_team: "ct", victim: "", weapon: "ak47" }, + ], + }); + + expect(await killRows(ctx.mapId)).toHaveLength(0); + }); +}); diff --git a/test/match-options.spec.ts b/test/match-options.spec.ts index 0a0e77ee..4d041adc 100644 --- a/test/match-options.spec.ts +++ b/test/match-options.spec.ts @@ -267,4 +267,100 @@ describe("match options locks (SQL-driven)", () => { ); expect(remaining.length).toBe(0); }); + + // clone_match_options and update_match_options_best_of both used to carry a + // hand-maintained column list, and both silently dropped every setting added + // after they were written (round_restart_delay, halftime_pausematch, + // auto_cancellation, ...) — a tournament would generate matches that ignored + // its own options. Assert against the live column list so a new column that + // stops round-tripping fails here rather than in production. + describe("clone_match_options copies every column", () => { + const columnsToCompare = async () => { + const rows = await postgres.query>( + `SELECT column_name + FROM information_schema.columns + WHERE table_schema = 'public' + AND table_name = 'match_options' + AND column_name <> 'id' + ORDER BY column_name`, + ); + + return rows.map((row) => row.column_name); + }; + + // Push every column off its default so a clone that drops one produces a + // visibly different value instead of coincidentally matching. + const createDivergentOptions = async () => { + const { poolId } = await createPool(0); + const optionsId = await fx.matchOptions({ mapPoolId: poolId }); + + await postgres.query( + `UPDATE match_options SET + overtime = NOT overtime, + knife_round = NOT knife_round, + coaches = NOT coaches, + map_veto = NOT map_veto, + region_veto = NOT region_veto, + default_models = NOT default_models, + prefer_dedicated_server = NOT prefer_dedicated_server, + halftime_pausematch = NOT halftime_pausematch, + camera_required = NOT camera_required, + auto_cancellation = NOT auto_cancellation, + number_of_substitutes = 3, + round_restart_delay = 17, + tv_delay = 42, + veto_pick_timeout = 33, + auto_cancel_duration = 11, + live_match_timeout = 22, + match_mode = 'admin', + timeout_setting = 'Admin', + tech_timeout_setting = 'Admin', + ready_setting = 'Captains', + check_in_setting = 'Captains' + WHERE id = $1`, + [optionsId], + ); + + return optionsId; + }; + + const readOptions = async (optionsId: string, columns: Array) => { + const [row] = await postgres.query>>( + `SELECT ${columns.join(", ")} FROM match_options WHERE id = $1`, + [optionsId], + ); + + return row; + }; + + it("round-trips through clone_match_options", async () => { + const columns = await columnsToCompare(); + const optionsId = await createDivergentOptions(); + + const [{ clone_match_options: clonedId }] = await postgres.query< + Array<{ clone_match_options: string }> + >("SELECT clone_match_options($1)", [optionsId]); + + expect(clonedId).toBeTruthy(); + expect(await readOptions(clonedId, columns)).toEqual( + await readOptions(optionsId, columns), + ); + }); + + it("round-trips through clone_match_options_with_best_of, changing only best_of", async () => { + const columns = await columnsToCompare(); + const optionsId = await createDivergentOptions(); + + const [{ clone_match_options_with_best_of: clonedId }] = + await postgres.query< + Array<{ clone_match_options_with_best_of: string }> + >("SELECT clone_match_options_with_best_of($1, 3)", [optionsId]); + + const source = await readOptions(optionsId, columns); + const clone = await readOptions(clonedId, columns); + + expect(clone.best_of).toBe(3); + expect({ ...clone, best_of: source.best_of }).toEqual(source); + }); + }); }); From d8e48ed1df5877f534af1d84cbfe5b715ef5e49e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 07:42:02 -0400 Subject: [PATCH 02/17] feat(camera): let the broadcast pull a player's camera The game-streamer pod has no site session, so it could not use the organizer-gated WHEP route to put the spectated player's camera on the stream. Adds a route it can use as the match itself, on the same x-origin-auth scheme status-reporter and snapshot already use. Scoped hard: one pod is authorized for one match, the steam id must be a Steam64 on that match's roster, and the match must actually require cameras. The path is still built through the encoding boundary in MediaMtxService, so a crafted id cannot address another match's feed. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- src/matches/camera/camera.controller.ts | 16 ++++++++ src/matches/camera/camera.service.spec.ts | 48 +++++++++++++++++++++++ src/matches/camera/camera.service.ts | 48 +++++++++++++++++++++++ test/camera.spec.ts | 2 + 4 files changed, 114 insertions(+) diff --git a/src/matches/camera/camera.controller.ts b/src/matches/camera/camera.controller.ts index 9f492fa3..6fbb92eb 100644 --- a/src/matches/camera/camera.controller.ts +++ b/src/matches/camera/camera.controller.ts @@ -92,6 +92,22 @@ export class CameraController { return { ok: true }; } + // The broadcast pod: no session, authenticates as the match itself. + @Post("broadcast/:matchId/:steamId/whep") + public async broadcastWatch( + @Param("matchId") matchId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const originAuth = request.headers["x-origin-auth"]; + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.camera.proxyBroadcastWatch(matchId, steamId, originAuth, sdp), + ); + } + // The admin routes are gated by session + organizer. @Get("admin/:matchId/players") diff --git a/src/matches/camera/camera.service.spec.ts b/src/matches/camera/camera.service.spec.ts index 75e3490a..89fa767e 100644 --- a/src/matches/camera/camera.service.spec.ts +++ b/src/matches/camera/camera.service.spec.ts @@ -17,6 +17,7 @@ describe("CameraService authorization", () => { let postgres: { query: jest.Mock }; let mediaMtx: { proxySdp: jest.Mock; isPathReady: jest.Mock; kickSessions: jest.Mock }; let matchAssistant: { isOrganizer: jest.Mock }; + let gameStreamer: { validateStatusOriginAuth: jest.Mock }; let service: CameraService; const scopeRow = (myLineupId: string | null, allowTeammates: boolean) => [ @@ -31,6 +32,9 @@ describe("CameraService authorization", () => { kickSessions: jest.fn().mockResolvedValue(undefined), }; matchAssistant = { isOrganizer: jest.fn().mockResolvedValue(false) }; + gameStreamer = { + validateStatusOriginAuth: jest.fn().mockResolvedValue(true), + }; service = new CameraService( new Logger("CameraAuthTest"), @@ -38,6 +42,7 @@ describe("CameraService authorization", () => { postgres as any, mediaMtx as any, matchAssistant as any, + gameStreamer as any, ); }); @@ -158,4 +163,47 @@ describe("CameraService authorization", () => { /not authorized/i, ); }); + + // The broadcast pod has no session; it authenticates as the match itself. + describe("broadcast overlay", () => { + const AUTH = "match-1:secret"; + + it("proxies a rostered player's camera", async () => { + postgres.query.mockResolvedValue([{ exists: true }]); + + await service.proxyBroadcastWatch(MATCH_ID, TEAMMATE, AUTH, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `camera-${MATCH_ID}-${TEAMMATE}`, + "whep", + "offer", + ); + }); + + it("refuses a bad origin auth", async () => { + gameStreamer.validateStatusOriginAuth.mockResolvedValue(false); + + await expect( + service.proxyBroadcastWatch(MATCH_ID, TEAMMATE, "nope", "offer"), + ).rejects.toThrow(/not authorized/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // One pod is authorized for one match: it must not be able to name a + // player from a different one. + it("refuses a player who is not on this match", async () => { + postgres.query.mockResolvedValue([]); + + await expect( + service.proxyBroadcastWatch(MATCH_ID, TEAMMATE, AUTH, "offer"), + ).rejects.toThrow(/not authorized/i); + }); + + it("refuses a steam id that is not a Steam64", async () => { + await expect( + service.proxyBroadcastWatch(MATCH_ID, "../../x", AUTH, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(gameStreamer.validateStatusOriginAuth).not.toHaveBeenCalled(); + }); + }); }); diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index 7854833f..52aa00f0 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -3,6 +3,7 @@ import { HasuraService } from "../../hasura/hasura.service"; import { PostgresService } from "../../postgres/postgres.service"; import { MediaMtxService } from "../../mediamtx/mediamtx.service"; import { MatchAssistantService } from "../match-assistant/match-assistant.service"; +import { GameStreamerService } from "../game-streamer/game-streamer.service"; import { User } from "../../auth/types/User"; import { isRoleAbove } from "../../utilities/isRoleAbove"; @@ -50,6 +51,7 @@ export class CameraService { private readonly postgres: PostgresService, private readonly mediaMtx: MediaMtxService, private readonly matchAssistant: MatchAssistantService, + private readonly gameStreamer: GameStreamerService, ) {} public static pathForPlayer(matchId: string, steamId: string) { @@ -220,6 +222,52 @@ export class CameraService { } } + // The broadcast pod has no site session — it authenticates as the match + // itself, the same scheme status-reporter and snapshot already use. Scoped to + // one match, and only to players actually on that match's roster. + public async proxyBroadcastWatch( + matchId: string, + steamId: string, + originAuth: unknown, + sdp: string, + ) { + if (!UUID_PATTERN.test(matchId) || !STEAM_ID_PATTERN.test(steamId)) { + throw new Error(NOT_AUTHORIZED); + } + + const authorized = await this.gameStreamer.validateStatusOriginAuth( + matchId, + originAuth, + ); + + if (!authorized) { + throw new Error(NOT_AUTHORIZED); + } + + const [row] = await this.postgres.query>( + `SELECT true AS exists + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + INNER JOIN match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE m.id = $1 + AND mlp.steam_id = $2 + AND mo.camera_required = true + LIMIT 1`, + [matchId, steamId], + ); + + if (!row) { + throw new Error(NOT_AUTHORIZED); + } + + return this.mediaMtx.proxySdp( + CameraService.pathForPlayer(matchId, steamId), + "whep", + sdp, + ); + } + public async proxyPlayerPublish(token: string, sdp: string) { const lookup = await this.requireToken(token); diff --git a/test/camera.spec.ts b/test/camera.spec.ts index da5dbaf4..1ed0eba9 100644 --- a/test/camera.spec.ts +++ b/test/camera.spec.ts @@ -26,6 +26,7 @@ describe("camera tokens (SQL-driven)", () => { postgres, {} as any, {} as any, + {} as any, ); await seedRegionWithServer(postgres, "CameraTestRegion", 27015); }, 600_000); @@ -124,6 +125,7 @@ describe("camera tokens (SQL-driven)", () => { failing, {} as any, {} as any, + {} as any, ); expect(await guard.validateToken("../../etc/passwd")).toBeNull(); From dd3071d6983ea668e69a4e6692b26bb306ae9200 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 09:52:21 -0400 Subject: [PATCH 03/17] feat(voice): on by default, and stop failing silently Joining party voice showed a spinner and then nothing at all. The composable captured the failure into an `error` ref that no template ever rendered, and Button holds its spinner for a 2s minimum, so a failure that happened instantly still looked like a hang. Nothing was reaching the network because getUserMedia was throwing first -- `navigator.mediaDevices` is undefined on an insecure origin, so a panel served over plain http has no way to get a microphone. Errors are now surfaced in the panel and named rather than dumped: insecure origin, denied permission, no microphone, microphone in use. The insecure-origin case is checked before joining so the button is disabled with an explanation instead of failing on click. Also flips public.voice_chat_enabled to on by default (only an explicit "false" disables it, matching require_login_for_live_streams). Cameras stay off by default -- voice is a convenience for players who already chose to party up, not a surveillance control. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- src/hasura/hasura.service.ts | 6 ++++-- src/voice/voice.service.spec.ts | 11 +++++++++++ src/voice/voice.service.ts | 5 +++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index e9a9990f..71bbff68 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -174,9 +174,11 @@ export class HasuraService { "insert into settings (name, value) values ('public.player_cameras_enabled', 'false') on conflict (name) do nothing", ); - // Same WebRTC requirement as cameras above. + // On by default, unlike cameras: party voice is a convenience for players + // who opted into a lobby together, not a surveillance control. Seeded so + // the admin toggle reflects it; `do nothing` preserves an explicit off. await this.postgresService.query( - "insert into settings (name, value) values ('public.voice_chat_enabled', 'false') on conflict (name) do nothing", + "insert into settings (name, value) values ('public.voice_chat_enabled', 'true') on conflict (name) do nothing", ); // Platform defaults new match_options rows inherit. Both off: requiring a diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts index 9c7e9f47..e93cb1b1 100644 --- a/src/voice/voice.service.spec.ts +++ b/src/voice/voice.service.spec.ts @@ -14,6 +14,7 @@ describe("VoiceService", () => { // The service reads the enabled flag and then the membership row, so the // happy path needs both in order. const enabled = (value: boolean) => [{ value: String(value) }]; + // Voice is on unless explicitly disabled, so "no row" is enabled. const accepted = () => postgres.query @@ -69,6 +70,16 @@ describe("VoiceService", () => { ); }); + it("is enabled when no setting row exists", async () => { + postgres.query + .mockResolvedValueOnce([]) + .mockResolvedValueOnce([{ status: "Accepted" }]); + + await expect(service.publish(LOBBY_ID, ME, "offer")).resolves.toBe( + "answer-sdp", + ); + }); + it("refuses everything while the feature is off", async () => { postgres.query.mockResolvedValue(enabled(false)); diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts index f244ac88..1dceef09 100644 --- a/src/voice/voice.service.ts +++ b/src/voice/voice.service.ts @@ -30,14 +30,15 @@ export class VoiceService { // Read straight from the settings table rather than through SystemService, // which would drag its whole module graph (chat, k8s, s3, queues) into this - // feature for the sake of one row. + // feature for the sake of one row. On by default — only an explicit "false" + // disables it, matching require_login_for_live_streams. public async isEnabled() { const [row] = await this.postgres.query>( `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, [SystemSettingName.VoiceChatEnabled], ); - return row?.value === "true"; + return row?.value !== "false"; } // Voice is only ever offered to a lobby you are actually in, and only for From 42831492df718931035093fc17ef785518049c72 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 10:02:28 -0400 Subject: [PATCH 04/17] refactor(camera): drop the feature kill switch, keep only the match defaults public.player_cameras_enabled gated the whole feature, and the two match-option defaults were nested under it. Since it shipped off, the defaults were invisible on a fresh install -- the settings page showed one disabled toggle and nothing else. Cameras are already opt-in at the level that matters: an organizer turns Require Webcam on per match. A second global switch in front of that only hid the settings that decide what a new match starts with. Removed; the defaults now stand on their own. Party voice keeps its toggle, since that one really is a feature that can be turned off. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- src/hasura/hasura.service.ts | 6 ------ src/system/enums/SystemSettingName.ts | 1 - 2 files changed, 7 deletions(-) diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index 71bbff68..cafabb04 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -168,12 +168,6 @@ export class HasuraService { "insert into settings (name, value) values ('public.veto_pick_timeout', '60') on conflict (name) do nothing", ); - // Off by default: player cameras need MediaMTX reachable and a publicly - // routable WebRTC host, which not every install has. - await this.postgresService.query( - "insert into settings (name, value) values ('public.player_cameras_enabled', 'false') on conflict (name) do nothing", - ); - // On by default, unlike cameras: party voice is a convenience for players // who opted into a lobby together, not a surveillance control. Seeded so // the admin toggle reflects it; `do nothing` preserves an explicit off. diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index d876041a..ae8ed9da 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -14,7 +14,6 @@ export enum SystemSettingName { CreateAwardsRole = "public.create_awards_role", GrantAwardsRole = "public.grant_awards_role", RequireLoginForLiveStreams = "public.require_login_for_live_streams", - PlayerCamerasEnabled = "public.player_cameras_enabled", CameraRequiredDefault = "public.camera_required_default", CameraAllowTeammatesDefault = "public.camera_allow_teammates_default", VoiceChatEnabled = "public.voice_chat_enabled", From 8639dd52b83f2620d5f6f5c15acac6345dbea0e0 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 18:32:25 -0400 Subject: [PATCH 05/17] feat(cors): allow extra browser origins via EXTRA_CORS_ORIGINS Hasura reflects the request origin, so GraphQL already works from a dev machine against a deployed stack. The routes this process serves use a fixed allowlist built from the configured domains, so the same browser that can query GraphQL from localhost is refused by /voice and /matches/camera -- both of which are preflighted, since an application/sdp body is not a CORS-safelisted content type. Empty by default; an operator opts their own dev origin in. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- .../functions/demos/persist_imported_demo.sql | 22 +++- src/main.ts | 12 ++ test/demo-import-kills.spec.ts | 106 +++++++++++++++++- 3 files changed, 129 insertions(+), 11 deletions(-) diff --git a/hasura/functions/demos/persist_imported_demo.sql b/hasura/functions/demos/persist_imported_demo.sql index 8273ccf5..9a5f9aec 100644 --- a/hasura/functions/demos/persist_imported_demo.sql +++ b/hasura/functions/demos/persist_imported_demo.sql @@ -303,15 +303,22 @@ BEGIN false, false, NULLIF(elem->>'assist', '') IS NOT NULL FROM jsonb_array_elements(COALESCE(p_parsed->'kills', '[]'::jsonb)) elem - CROSS JOIN LATERAL ( + LEFT JOIN LATERAL ( SELECT COALESCE((rt->>'round')::int, 0) AS round FROM jsonb_array_elements(COALESCE(p_parsed->'round_ticks', '[]'::jsonb)) rt WHERE (elem->>'tick')::int >= COALESCE((rt->>'start_tick')::int, 0) AND (elem->>'tick')::int <= COALESCE((rt->>'end_tick')::int, 2147483647) ORDER BY (rt->>'round')::int LIMIT 1 - ) rt_match - WHERE NULLIF(elem->>'victim', '') IS NOT NULL; + ) rt_match ON true + WHERE NULLIF(elem->>'victim', '') IS NOT NULL + -- A death outside every round window did not happen during play: the demo + -- keeps recording through the post-match walkaround, where players shoot + -- each other for fun. That is not a scoreboard death, so it is dropped. + -- Written as a LEFT JOIN plus an explicit test rather than leaning on a + -- CROSS JOIN quietly matching nothing — the exclusion is deliberate, and + -- the next person to touch this join should have to mean it. + AND rt_match.round IS NOT NULL; INSERT INTO public.player_assists ( match_id, match_map_id, round, time, @@ -329,16 +336,19 @@ BEGIN COALESCE(NULLIF(elem->>'victim_team', ''), ''), COALESCE((elem->>'assist_flash')::boolean, false) FROM jsonb_array_elements(COALESCE(p_parsed->'kills', '[]'::jsonb)) elem - CROSS JOIN LATERAL ( + LEFT JOIN LATERAL ( SELECT COALESCE((rt->>'round')::int, 0) AS round FROM jsonb_array_elements(COALESCE(p_parsed->'round_ticks', '[]'::jsonb)) rt WHERE (elem->>'tick')::int >= COALESCE((rt->>'start_tick')::int, 0) AND (elem->>'tick')::int <= COALESCE((rt->>'end_tick')::int, 2147483647) ORDER BY (rt->>'round')::int LIMIT 1 - ) rt_match + ) rt_match ON true WHERE NULLIF(elem->>'assist', '') IS NOT NULL - AND NULLIF(elem->>'victim', '') IS NOT NULL; + AND NULLIF(elem->>'victim', '') IS NOT NULL + -- Same round gate as the kills insert above, so a post-match kill and its + -- assist are dropped together rather than leaving an orphaned assist. + AND rt_match.round IS NOT NULL; INSERT INTO public.player_damages ( match_id, match_map_id, round, time, diff --git a/src/main.ts b/src/main.ts index 3bed0822..fe157700 100644 --- a/src/main.ts +++ b/src/main.ts @@ -83,6 +83,18 @@ async function bootstrap() { allowedOrigins.push("http://localhost:3000", "http://0.0.0.0:3000", "http://localhost:3001", "http://0.0.0.0:3001"); } + // Comma-separated extra origins, for developing against a deployed API from + // somewhere that is not one of the configured domains. Empty by default -- + // Hasura reflects the request origin, so GraphQL already works from anywhere + // and only the routes served by this process need to be opted in. + for (const origin of (process.env.EXTRA_CORS_ORIGINS ?? "").split(",")) { + const trimmed = origin.trim(); + + if (trimmed) { + allowedOrigins.push(trimmed); + } + } + app.enableCors({ origin: allowedOrigins, credentials: true, diff --git a/test/demo-import-kills.spec.ts b/test/demo-import-kills.spec.ts index 46d41678..e4d712b7 100644 --- a/test/demo-import-kills.spec.ts +++ b/test/demo-import-kills.spec.ts @@ -45,10 +45,10 @@ describe("persist_imported_demo kill ingestion", () => { }; const importDemo = async (demoId: string, parsed: unknown) => { - await postgres.query("SELECT public.persist_imported_demo($1::uuid, $2::jsonb)", [ - demoId, - JSON.stringify(parsed), - ]); + await postgres.query( + "SELECT public.persist_imported_demo($1::uuid, $2::jsonb)", + [demoId, JSON.stringify(parsed)], + ); }; const killRows = async (mapId: string) => @@ -148,6 +148,96 @@ describe("persist_imported_demo kill ingestion", () => { expect(stats?.kills).toBe(0); }); + // The demo keeps recording after the final round — the post-match walkaround, + // where players shoot each other for fun. Those are not scoreboard deaths. + it("drops a death that lands after the last round ended", async () => { + const ctx = await fx.bareMatch(); + const demoId = await demoFor(ctx); + const [shooter, victim] = await fx.players(2); + + await importDemo(demoId, { + map_name: "de_cache", + tick_rate: 64, + total_ticks: 5000, + round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], + players: [shooter, victim].map((steam_id) => ({ + steam_id, + name: `p-${steam_id}`, + })), + kills: [ + { + tick: 100, // during the round + killer: shooter, + killer_team: "ct", + victim, + victim_team: "t", + weapon: "ak47", + }, + { + tick: 4000, // long after round 1 ended at 2000 + killer: shooter, + killer_team: "ct", + victim, + victim_team: "t", + weapon: "deagle", + }, + { + tick: 4100, // a post-match world death, likewise ignored + killer: "", + killer_team: "", + victim, + victim_team: "t", + weapon: "world", + }, + ], + }); + + const rows = await killRows(ctx.mapId); + expect(rows.map((r) => r.with)).toEqual(["ak47"]); + + const [stats] = await postgres.query>( + `SELECT deaths FROM player_match_map_stats + WHERE match_map_id = $1 AND steam_id = $2`, + [ctx.mapId, victim], + ); + expect(stats?.deaths).toBe(1); + }); + + it("drops a post-match assist along with its kill", async () => { + const ctx = await fx.bareMatch(); + const demoId = await demoFor(ctx); + const [shooter, victim, helper] = await fx.players(3); + + await importDemo(demoId, { + map_name: "de_cache", + tick_rate: 64, + total_ticks: 5000, + round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], + players: [shooter, victim, helper].map((steam_id) => ({ + steam_id, + name: `p-${steam_id}`, + })), + kills: [ + { + tick: 4000, + killer: shooter, + killer_team: "ct", + victim, + victim_team: "t", + weapon: "ak47", + assist: helper, + }, + ], + }); + + expect(await killRows(ctx.mapId)).toHaveLength(0); + const [assists] = await postgres.query>( + "SELECT COUNT(*)::text AS count FROM player_assists WHERE match_map_id = $1", + [ctx.mapId], + ); + expect(assists.count).toBe("0"); + }); + it("still drops an entry with no victim at all", async () => { const ctx = await fx.bareMatch(); const demoId = await demoFor(ctx); @@ -160,7 +250,13 @@ describe("persist_imported_demo kill ingestion", () => { round_ticks: [{ round: 1, start_tick: 0, end_tick: 2000 }], players: [{ steam_id: shooter, name: "p" }], kills: [ - { tick: 100, killer: shooter, killer_team: "ct", victim: "", weapon: "ak47" }, + { + tick: 100, + killer: shooter, + killer_team: "ct", + victim: "", + weapon: "ak47", + }, ], }); From 0fcbc470323a9d82263b8d7efff5f6ea148414e4 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 18:40:56 -0400 Subject: [PATCH 06/17] revert(cors): drop EXTRA_CORS_ORIGINS Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- src/main.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main.ts b/src/main.ts index fe157700..3bed0822 100644 --- a/src/main.ts +++ b/src/main.ts @@ -83,18 +83,6 @@ async function bootstrap() { allowedOrigins.push("http://localhost:3000", "http://0.0.0.0:3000", "http://localhost:3001", "http://0.0.0.0:3001"); } - // Comma-separated extra origins, for developing against a deployed API from - // somewhere that is not one of the configured domains. Empty by default -- - // Hasura reflects the request origin, so GraphQL already works from anywhere - // and only the routes served by this process need to be opted in. - for (const origin of (process.env.EXTRA_CORS_ORIGINS ?? "").split(",")) { - const trimmed = origin.trim(); - - if (trimmed) { - allowedOrigins.push(trimmed); - } - } - app.enableCors({ origin: allowedOrigins, credentials: true, From db9c46a8e189eab389de4d220a2ced6d8598f971 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 18:58:15 -0400 Subject: [PATCH 07/17] fix(camera): gate check-in on a live camera, let admins watch their own match Two things were wrong. Check-in happens at WaitingForCheckIn, which was not in the camera status list -- so no token had been minted yet, the overlay never appeared, and nothing stopped a player checking in without a webcam. Tokens are now minted on that edge too, the status counts as active, and checkIntoMatch refuses until the player's camera is actually publishing. Check-in is the right gate: enforcing only at Live means a player reaches the server unwatched and the match pauses on them instead. Also carves out an exception to "nobody playing may watch": a site administrator keeps full access so the feature can be exercised end-to-end without a second account. Organizers who are playing stay scoped to their own side -- they are competitors, and a live view of the other team is exactly what this prevents. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01QnoNWfftRZL47DxmGUyh8K --- src/main.ts | 2 +- src/matches/camera/camera.service.spec.ts | 10 +++--- src/matches/camera/camera.service.ts | 38 ++++++++++++++++++++++- src/matches/matches.controller.ts | 11 +++++++ 4 files changed, 55 insertions(+), 6 deletions(-) diff --git a/src/main.ts b/src/main.ts index 3bed0822..64e52593 100644 --- a/src/main.ts +++ b/src/main.ts @@ -80,7 +80,7 @@ async function bootstrap() { ]; if (process.env.DEV) { - allowedOrigins.push("http://localhost:3000", "http://0.0.0.0:3000", "http://localhost:3001", "http://0.0.0.0:3001"); + allowedOrigins.push("http://localhost:3000", "http://0.0.0.0:3000", "http://localhost:3002", "http://0.0.0.0:3002"); } app.enableCors({ diff --git a/src/matches/camera/camera.service.spec.ts b/src/matches/camera/camera.service.spec.ts index 89fa767e..17b5bdb2 100644 --- a/src/matches/camera/camera.service.spec.ts +++ b/src/matches/camera/camera.service.spec.ts @@ -74,12 +74,14 @@ describe("CameraService authorization", () => { ); }); - it("refuses an administrator who is rostered in the match", async () => { + // Deliberate exception so the feature can be exercised end-to-end without a + // second account; organizers playing stay scoped to their own side. + it("still gives a rostered administrator both lineups", async () => { postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, false)); - await expect(service.watchScope(MATCH_ID, admin)).rejects.toThrow( - /not authorized/i, - ); + await expect(service.watchScope(MATCH_ID, admin)).resolves.toEqual({ + kind: "all", + }); }); it("refuses a player when teammate viewing is off", async () => { diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index 52aa00f0..e8b417e8 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -9,7 +9,12 @@ import { isRoleAbove } from "../../utilities/isRoleAbove"; // A token is only meaningful while the match is actually being played, so a // leaked link stops working on its own without needing an expiry column. -const CAMERA_ACTIVE_MATCH_STATUSES = ["Veto", "Live", "WaitingForServer"]; +const CAMERA_ACTIVE_MATCH_STATUSES = [ + "WaitingForCheckIn", + "Veto", + "Live", + "WaitingForServer", +]; const UUID_PATTERN = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; @@ -102,6 +107,28 @@ export class CameraService { ); } + // Whether this player's own camera is publishing right now. Used to gate + // check-in, which happens before the monitor starts sampling. + public async isPlayerLive(matchId: string, steamId: string) { + return this.mediaMtx.isPathReady( + CameraService.pathForPlayer(matchId, steamId), + ); + } + + public async isRequired(matchId: string) { + const [row] = await this.postgres.query< + Array<{ camera_required: boolean }> + >( + `SELECT mo.camera_required + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + WHERE m.id = $1`, + [matchId], + ); + + return row?.camera_required === true; + } + public async revokeTokens(matchId: string) { await this.postgres.query( `DELETE FROM match_camera_tokens WHERE match_id = $1`, @@ -170,6 +197,15 @@ export class CameraService { } if (row.my_lineup_id) { + // Deliberate exception to "nobody playing may watch": a site + // administrator keeps full access so the feature can be exercised + // end-to-end without a second account. Organizers playing stay scoped to + // their own side -- they are competitors, and a live view of the other + // team is the advantage this exists to prevent. + if (isRoleAbove(user.role, "administrator")) { + return { kind: "all" }; + } + // A player only ever sees their own side, and only when the match was set // up to allow it. The opposing side is never visible to a competitor. if (!row.allow_teammates) { diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index 32d8bc50..6e5af88b 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -622,6 +622,7 @@ export class MatchesController { ) { await this.tournamentVoice.createMatchVoiceChannels(matchId); await this.tournamentVoice.movePlayersToMatchChannels(matchId); + await this.camera.generateTokensIfRequired(matchId); } if ( @@ -2135,6 +2136,16 @@ export class MatchesController { throw Error("match is not accepting check in's at this time"); } + // Checking in is the commitment to play, so it is the right gate: letting + // it through and only enforcing at Live means a player reaches the server + // unwatched and the match pauses on them instead. + if ( + (await this.camera.isRequired(data.match_id)) && + !(await this.camera.isPlayerLive(data.match_id, data.user.steam_id)) + ) { + throw Error("connect your camera before checking in"); + } + const { update_match_lineup_players } = await this.hasura.mutation({ update_match_lineup_players: { __args: { From 61d7380ba313aafbc00bb64bdb64a7cbed771357 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 22:33:42 -0400 Subject: [PATCH 08/17] wip --- generated/schema.graphql | 929 + generated/schema.ts | 1235 +- generated/types.ts | 61788 ++++++++-------- hasura/enums/notification-types.sql | 6 +- hasura/metadata/actions.graphql | 18 + hasura/metadata/actions.yaml | 18 + .../public_notification_preferences.yaml | 3 + .../default/tables/public_notifications.yaml | 11 + .../tables/public_push_subscriptions.yaml | 3 + .../default/tables/public_settings.yaml | 5 +- .../default/tables/public_v_my_friends.yaml | 1 + .../databases/default/tables/tables.yaml | 2 + .../1877000000000_push_subscriptions/down.sql | 1 + .../1877000000000_push_subscriptions/up.sql | 20 + .../down.sql | 1 + .../up.sql | 21 + .../down.sql | 2 + .../1877000000200_notification_indexes/up.sql | 10 + .../down.sql | 2 + .../up.sql | 8 + .../down.sql | 2 + .../up.sql | 21 + package.json | 2 + src/chat/chat.controller.ts | 17 +- src/chat/chat.gateway.ts | 16 + src/chat/chat.module.ts | 8 +- src/chat/chat.service.spec.ts | 199 + src/chat/chat.service.ts | 434 +- src/chat/enums/ChatLobbyTypes.ts | 4 + src/chat/utilities/directRoomId.spec.ts | 42 + src/chat/utilities/directRoomId.ts | 32 + src/configs/index.ts | 2 + src/configs/types/WebPushConfig.ts | 5 + src/configs/web-push.ts | 13 + src/matches/camera/camera.service.ts | 45 +- .../events/MatchUpdatedLineupsEvent.ts | 8 + src/matches/events/PlayerConnected.ts | 14 + src/matches/events/PlayersConnected.ts | 8 + src/matches/jobs/CancelExpiredMatches.spec.ts | 64 + src/matches/jobs/CancelExpiredMatches.ts | 8 + src/matches/jobs/TournamentReminders.ts | 93 + src/matches/matches.module.ts | 14 + src/news/news.module.ts | 9 +- src/news/news.service.ts | 33 +- .../enums/NotificationsQueues.ts | 1 + src/notifications/jobs/SendPushBroadcast.ts | 25 + src/notifications/notifications.module.ts | 33 +- src/notifications/notifications.service.ts | 113 +- .../notification-categories.spec.ts | 126 + .../preferences/notification-categories.ts | 121 + .../notification-preferences.controller.ts | 88 + .../notification-preferences.service.ts | 99 + src/notifications/push/push-endpoint.spec.ts | 82 + src/notifications/push/push-endpoint.ts | 69 + .../push/push-notifications.controller.ts | 118 + .../push/push-notifications.service.spec.ts | 329 + .../push/push-notifications.service.ts | 429 + .../utilities/notificationUrl.ts | 46 + src/notifications/utilities/stripHtml.ts | 22 + src/system/enums/SystemSettingName.ts | 6 + src/system/system.controller.ts | 4 +- src/system/system.module.ts | 4 +- src/tournaments/tournaments.controller.ts | 34 + src/tournaments/tournaments.module.ts | 2 + src/voice/voice.service.spec.ts | 78 + src/voice/voice.service.ts | 70 +- test/notifications.spec.ts | 383 + yarn.lock | 57 +- 68 files changed, 37210 insertions(+), 30306 deletions(-) create mode 100644 hasura/metadata/databases/default/tables/public_notification_preferences.yaml create mode 100644 hasura/metadata/databases/default/tables/public_push_subscriptions.yaml create mode 100644 hasura/migrations/default/1877000000000_push_subscriptions/down.sql create mode 100644 hasura/migrations/default/1877000000000_push_subscriptions/up.sql create mode 100644 hasura/migrations/default/1877000000100_notification_preferences/down.sql create mode 100644 hasura/migrations/default/1877000000100_notification_preferences/up.sql create mode 100644 hasura/migrations/default/1877000000200_notification_indexes/down.sql create mode 100644 hasura/migrations/default/1877000000200_notification_indexes/up.sql create mode 100644 hasura/migrations/default/1877000000300_name_registered_default/down.sql create mode 100644 hasura/migrations/default/1877000000300_name_registered_default/up.sql create mode 100644 hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql create mode 100644 hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql create mode 100644 src/chat/chat.service.spec.ts create mode 100644 src/chat/utilities/directRoomId.spec.ts create mode 100644 src/chat/utilities/directRoomId.ts create mode 100644 src/configs/types/WebPushConfig.ts create mode 100644 src/configs/web-push.ts create mode 100644 src/matches/jobs/TournamentReminders.ts create mode 100644 src/notifications/jobs/SendPushBroadcast.ts create mode 100644 src/notifications/preferences/notification-categories.spec.ts create mode 100644 src/notifications/preferences/notification-categories.ts create mode 100644 src/notifications/preferences/notification-preferences.controller.ts create mode 100644 src/notifications/preferences/notification-preferences.service.ts create mode 100644 src/notifications/push/push-endpoint.spec.ts create mode 100644 src/notifications/push/push-endpoint.ts create mode 100644 src/notifications/push/push-notifications.controller.ts create mode 100644 src/notifications/push/push-notifications.service.spec.ts create mode 100644 src/notifications/push/push-notifications.service.ts create mode 100644 src/notifications/utilities/notificationUrl.ts create mode 100644 src/notifications/utilities/stripHtml.ts create mode 100644 test/notifications.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index c245a3e6..46825f09 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -886,6 +886,16 @@ type WatchDemoOutput { success: Boolean! } +type WebPushKeysOutput { + success: Boolean! +} + +type WebPushStatusOutput { + configured: Boolean! + managed_by_environment: Boolean! + subscriptions: Int! +} + """ columns and relationships of "_map_pool" """ @@ -11312,6 +11322,9 @@ enum e_notification_types_constraint { } enum e_notification_types_enum { + """A new message in a chat you are part of""" + ChatMessage + """DedicatedServerRconStatus""" DedicatedServerRconStatus @@ -11369,6 +11382,9 @@ enum e_notification_types_enum { """NameChangeRequest""" NameChangeRequest + """A news article was published""" + NewsPublished + """Player search reindex finished""" PlayerReindex @@ -11404,6 +11420,12 @@ enum e_notification_types_enum { """Storage Scan""" StorageScan + + """Registration opened for a tournament""" + TournamentCreated + + """A tournament you are registered for starts soon""" + TournamentReminder } """ @@ -38343,6 +38365,19 @@ type mutation_root { """ delete_news_articles_by_pk(id: uuid!): news_articles + """ + delete data from the table: "notification_preferences" + """ + delete_notification_preferences( + """filter the rows which have to be deleted""" + where: notification_preferences_bool_exp! + ): notification_preferences_mutation_response + + """ + delete single row from the table: "notification_preferences" + """ + delete_notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + """ delete data from the table: "notifications" """ @@ -38663,6 +38698,19 @@ type mutation_root { """ delete_plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions + """ + delete data from the table: "push_subscriptions" + """ + delete_push_subscriptions( + """filter the rows which have to be deleted""" + where: push_subscriptions_bool_exp! + ): push_subscriptions_mutation_response + + """ + delete single row from the table: "push_subscriptions" + """ + delete_push_subscriptions_by_pk(id: uuid!): push_subscriptions + """ delete data from the table: "seasons" """ @@ -39075,6 +39123,11 @@ type mutation_root { denyNameChange(name: String!, steam_id: bigint!): SuccessOutput forfeitMatch(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput + """ + Generates a fresh self-signed VAPID keypair; invalidates every existing subscription + """ + generateWebPushKeys: WebPushKeysOutput + """ Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. """ @@ -41272,6 +41325,28 @@ type mutation_root { on_conflict: news_articles_on_conflict ): news_articles + """ + insert data into the table: "notification_preferences" + """ + insert_notification_preferences( + """the rows to be inserted""" + objects: [notification_preferences_insert_input!]! + + """upsert condition""" + on_conflict: notification_preferences_on_conflict + ): notification_preferences_mutation_response + + """ + insert a single row into the table: "notification_preferences" + """ + insert_notification_preferences_one( + """the row to be inserted""" + object: notification_preferences_insert_input! + + """upsert condition""" + on_conflict: notification_preferences_on_conflict + ): notification_preferences + """ insert data into the table: "notifications" """ @@ -41816,6 +41891,28 @@ type mutation_root { on_conflict: plugin_versions_on_conflict ): plugin_versions + """ + insert data into the table: "push_subscriptions" + """ + insert_push_subscriptions( + """the rows to be inserted""" + objects: [push_subscriptions_insert_input!]! + + """upsert condition""" + on_conflict: push_subscriptions_on_conflict + ): push_subscriptions_mutation_response + + """ + insert a single row into the table: "push_subscriptions" + """ + insert_push_subscriptions_one( + """the row to be inserted""" + object: push_subscriptions_insert_input! + + """upsert condition""" + on_conflict: push_subscriptions_on_conflict + ): push_subscriptions + """ insert data into the table: "seasons" """ @@ -46256,6 +46353,40 @@ type mutation_root { updates: [news_articles_updates!]! ): [news_articles_mutation_response] + """ + update data of the table: "notification_preferences" + """ + update_notification_preferences( + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + + """filter the rows which have to be updated""" + where: notification_preferences_bool_exp! + ): notification_preferences_mutation_response + + """ + update single row of the table: "notification_preferences" + """ + update_notification_preferences_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + pk_columns: notification_preferences_pk_columns_input! + ): notification_preferences + + """ + update multiples rows of table: "notification_preferences" + """ + update_notification_preferences_many( + """updates to execute, in order""" + updates: [notification_preferences_updates!]! + ): [notification_preferences_mutation_response] + """ update data of the table: "notifications" """ @@ -47178,6 +47309,40 @@ type mutation_root { updates: [plugin_versions_updates!]! ): [plugin_versions_mutation_response] + """ + update data of the table: "push_subscriptions" + """ + update_push_subscriptions( + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + + """filter the rows which have to be updated""" + where: push_subscriptions_bool_exp! + ): push_subscriptions_mutation_response + + """ + update single row of the table: "push_subscriptions" + """ + update_push_subscriptions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + pk_columns: push_subscriptions_pk_columns_input! + ): push_subscriptions + + """ + update multiples rows of table: "push_subscriptions" + """ + update_push_subscriptions_many( + """updates to execute, in order""" + updates: [push_subscriptions_updates!]! + ): [push_subscriptions_mutation_response] + """ update data of the table: "seasons" """ @@ -49565,6 +49730,258 @@ type news_articles_variance_fields { view_count: Float } +""" +columns and relationships of "notification_preferences" +""" +type notification_preferences { + channel: String! + enabled: Boolean! + key: String! + steam_id: bigint! + updated_at: timestamptz! +} + +""" +aggregated selection of "notification_preferences" +""" +type notification_preferences_aggregate { + aggregate: notification_preferences_aggregate_fields + nodes: [notification_preferences!]! +} + +""" +aggregate fields of "notification_preferences" +""" +type notification_preferences_aggregate_fields { + avg: notification_preferences_avg_fields + count(columns: [notification_preferences_select_column!], distinct: Boolean): Int! + max: notification_preferences_max_fields + min: notification_preferences_min_fields + stddev: notification_preferences_stddev_fields + stddev_pop: notification_preferences_stddev_pop_fields + stddev_samp: notification_preferences_stddev_samp_fields + sum: notification_preferences_sum_fields + var_pop: notification_preferences_var_pop_fields + var_samp: notification_preferences_var_samp_fields + variance: notification_preferences_variance_fields +} + +"""aggregate avg on columns""" +type notification_preferences_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. +""" +input notification_preferences_bool_exp { + _and: [notification_preferences_bool_exp!] + _not: notification_preferences_bool_exp + _or: [notification_preferences_bool_exp!] + channel: String_comparison_exp + enabled: Boolean_comparison_exp + key: String_comparison_exp + steam_id: bigint_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "notification_preferences" +""" +enum notification_preferences_constraint { + """ + unique or primary key constraint on columns "key", "steam_id", "channel" + """ + notification_preferences_pkey +} + +""" +input type for incrementing numeric columns in table "notification_preferences" +""" +input notification_preferences_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "notification_preferences" +""" +input notification_preferences_insert_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate max on columns""" +type notification_preferences_max_fields { + channel: String + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate min on columns""" +type notification_preferences_min_fields { + channel: String + key: String + steam_id: bigint + updated_at: timestamptz +} + +""" +response of any mutation on the table "notification_preferences" +""" +type notification_preferences_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [notification_preferences!]! +} + +""" +on_conflict condition type for table "notification_preferences" +""" +input notification_preferences_on_conflict { + constraint: notification_preferences_constraint! + update_columns: [notification_preferences_update_column!]! = [] + where: notification_preferences_bool_exp +} + +"""Ordering options when selecting data from "notification_preferences".""" +input notification_preferences_order_by { + channel: order_by + enabled: order_by + key: order_by + steam_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: notification_preferences""" +input notification_preferences_pk_columns_input { + channel: String! + key: String! + steam_id: bigint! +} + +""" +select columns of table "notification_preferences" +""" +enum notification_preferences_select_column { + """column name""" + channel + + """column name""" + enabled + + """column name""" + key + + """column name""" + steam_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "notification_preferences" +""" +input notification_preferences_set_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type notification_preferences_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type notification_preferences_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type notification_preferences_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "notification_preferences" +""" +input notification_preferences_stream_cursor_input { + """Stream column input with initial value""" + initial_value: notification_preferences_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input notification_preferences_stream_cursor_value_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type notification_preferences_sum_fields { + steam_id: bigint +} + +""" +update columns of table "notification_preferences" +""" +enum notification_preferences_update_column { + """column name""" + channel + + """column name""" + enabled + + """column name""" + key + + """column name""" + steam_id + + """column name""" + updated_at +} + +input notification_preferences_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + + """filter the rows which have to be updated""" + where: notification_preferences_bool_exp! +} + +"""aggregate var_pop on columns""" +type notification_preferences_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type notification_preferences_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type notification_preferences_variance_fields { + steam_id: Float +} + """ columns and relationships of "notifications" """ @@ -69874,6 +70291,305 @@ type plugin_versions_variance_fields { min_game_build_id: Float } +""" +columns and relationships of "push_subscriptions" +""" +type push_subscriptions { + auth: String! + created_at: timestamptz! + endpoint: String! + id: uuid! + last_used_at: timestamptz + p256dh: String! + steam_id: bigint! + user_agent: String +} + +""" +aggregated selection of "push_subscriptions" +""" +type push_subscriptions_aggregate { + aggregate: push_subscriptions_aggregate_fields + nodes: [push_subscriptions!]! +} + +""" +aggregate fields of "push_subscriptions" +""" +type push_subscriptions_aggregate_fields { + avg: push_subscriptions_avg_fields + count(columns: [push_subscriptions_select_column!], distinct: Boolean): Int! + max: push_subscriptions_max_fields + min: push_subscriptions_min_fields + stddev: push_subscriptions_stddev_fields + stddev_pop: push_subscriptions_stddev_pop_fields + stddev_samp: push_subscriptions_stddev_samp_fields + sum: push_subscriptions_sum_fields + var_pop: push_subscriptions_var_pop_fields + var_samp: push_subscriptions_var_samp_fields + variance: push_subscriptions_variance_fields +} + +"""aggregate avg on columns""" +type push_subscriptions_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. +""" +input push_subscriptions_bool_exp { + _and: [push_subscriptions_bool_exp!] + _not: push_subscriptions_bool_exp + _or: [push_subscriptions_bool_exp!] + auth: String_comparison_exp + created_at: timestamptz_comparison_exp + endpoint: String_comparison_exp + id: uuid_comparison_exp + last_used_at: timestamptz_comparison_exp + p256dh: String_comparison_exp + steam_id: bigint_comparison_exp + user_agent: String_comparison_exp +} + +""" +unique or primary key constraints on table "push_subscriptions" +""" +enum push_subscriptions_constraint { + """ + unique or primary key constraint on columns "endpoint" + """ + push_subscriptions_endpoint_key + + """ + unique or primary key constraint on columns "id" + """ + push_subscriptions_pkey +} + +""" +input type for incrementing numeric columns in table "push_subscriptions" +""" +input push_subscriptions_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "push_subscriptions" +""" +input push_subscriptions_insert_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate max on columns""" +type push_subscriptions_max_fields { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate min on columns""" +type push_subscriptions_min_fields { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +""" +response of any mutation on the table "push_subscriptions" +""" +type push_subscriptions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [push_subscriptions!]! +} + +""" +on_conflict condition type for table "push_subscriptions" +""" +input push_subscriptions_on_conflict { + constraint: push_subscriptions_constraint! + update_columns: [push_subscriptions_update_column!]! = [] + where: push_subscriptions_bool_exp +} + +"""Ordering options when selecting data from "push_subscriptions".""" +input push_subscriptions_order_by { + auth: order_by + created_at: order_by + endpoint: order_by + id: order_by + last_used_at: order_by + p256dh: order_by + steam_id: order_by + user_agent: order_by +} + +"""primary key columns input for table: push_subscriptions""" +input push_subscriptions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "push_subscriptions" +""" +enum push_subscriptions_select_column { + """column name""" + auth + + """column name""" + created_at + + """column name""" + endpoint + + """column name""" + id + + """column name""" + last_used_at + + """column name""" + p256dh + + """column name""" + steam_id + + """column name""" + user_agent +} + +""" +input type for updating data in table "push_subscriptions" +""" +input push_subscriptions_set_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate stddev on columns""" +type push_subscriptions_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type push_subscriptions_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type push_subscriptions_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "push_subscriptions" +""" +input push_subscriptions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: push_subscriptions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input push_subscriptions_stream_cursor_value_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate sum on columns""" +type push_subscriptions_sum_fields { + steam_id: bigint +} + +""" +update columns of table "push_subscriptions" +""" +enum push_subscriptions_update_column { + """column name""" + auth + + """column name""" + created_at + + """column name""" + endpoint + + """column name""" + id + + """column name""" + last_used_at + + """column name""" + p256dh + + """column name""" + steam_id + + """column name""" + user_agent +} + +input push_subscriptions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + + """filter the rows which have to be updated""" + where: push_subscriptions_bool_exp! +} + +"""aggregate var_pop on columns""" +type push_subscriptions_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type push_subscriptions_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type push_subscriptions_variance_fields { + steam_id: Float +} + type query_root { """ fetch data from the table: "_map_pool" @@ -74505,6 +75221,51 @@ type query_root { """fetch data from the table: "news_articles" using primary key columns""" news_articles_by_pk(id: uuid!): news_articles + """ + fetch data from the table: "notification_preferences" + """ + notification_preferences( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + + """ + fetch aggregated fields from the table: "notification_preferences" + """ + notification_preferences_aggregate( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): notification_preferences_aggregate! + + """ + fetch data from the table: "notification_preferences" using primary key columns + """ + notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + """An array relationship""" notifications( """distinct select on columns""" @@ -75773,6 +76534,51 @@ type query_root { """fetch data from the table: "plugin_versions" using primary key columns""" plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions + """ + fetch data from the table: "push_subscriptions" + """ + push_subscriptions( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + + """ + fetch aggregated fields from the table: "push_subscriptions" + """ + push_subscriptions_aggregate( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): push_subscriptions_aggregate! + + """ + fetch data from the table: "push_subscriptions" using primary key columns + """ + push_subscriptions_by_pk(id: uuid!): push_subscriptions + """Read file content from game server""" readServerFile(file_path: String!, node_id: String!, server_id: String): FileContentResponse! @@ -78315,6 +79121,11 @@ type query_root { """filter the rows returned""" where: v_tournament_player_stats_bool_exp ): v_tournament_player_stats_aggregate! + + """ + Web push setup status for the application settings page; never returns the private key + """ + webPushStatus: WebPushStatusOutput } input recalculate_tournament_awards_args { @@ -86757,6 +87568,65 @@ type subscription_root { where: news_articles_bool_exp ): [news_articles!]! + """ + fetch data from the table: "notification_preferences" + """ + notification_preferences( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + + """ + fetch aggregated fields from the table: "notification_preferences" + """ + notification_preferences_aggregate( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): notification_preferences_aggregate! + + """ + fetch data from the table: "notification_preferences" using primary key columns + """ + notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + + """ + fetch data from the table in a streaming manner: "notification_preferences" + """ + notification_preferences_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [notification_preferences_stream_cursor_input]! + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + """An array relationship""" notifications( """distinct select on columns""" @@ -88445,6 +89315,65 @@ type subscription_root { where: plugin_versions_bool_exp ): [plugin_versions!]! + """ + fetch data from the table: "push_subscriptions" + """ + push_subscriptions( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + + """ + fetch aggregated fields from the table: "push_subscriptions" + """ + push_subscriptions_aggregate( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): push_subscriptions_aggregate! + + """ + fetch data from the table: "push_subscriptions" using primary key columns + """ + push_subscriptions_by_pk(id: uuid!): push_subscriptions + + """ + fetch data from the table in a streaming manner: "push_subscriptions" + """ + push_subscriptions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [push_subscriptions_stream_cursor_input]! + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + """ fetch data from the table: "seasons" """ diff --git a/generated/schema.ts b/generated/schema.ts index 41d716e0..d3ee27c7 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -820,6 +820,18 @@ export interface WatchDemoOutput { __typename: 'WatchDemoOutput' } +export interface WebPushKeysOutput { + success: Scalars['Boolean'] + __typename: 'WebPushKeysOutput' +} + +export interface WebPushStatusOutput { + configured: Scalars['Boolean'] + managed_by_environment: Scalars['Boolean'] + subscriptions: Scalars['Int'] + __typename: 'WebPushStatusOutput' +} + /** columns and relationships of "_map_pool" */ export interface _map_pool { @@ -4389,7 +4401,7 @@ export interface e_notification_types_aggregate_fields { /** unique or primary key constraints on table "e_notification_types" */ export type e_notification_types_constraint = 'e_notification_types_pkey' -export type e_notification_types_enum = 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'EloRecompute' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'StorageScan' +export type e_notification_types_enum = 'ChatMessage' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'EloRecompute' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'StorageScan' | 'TournamentCreated' | 'TournamentReminder' /** aggregate max on columns */ @@ -12818,6 +12830,10 @@ export interface mutation_root { delete_news_articles: (news_articles_mutation_response | null) /** delete single row from the table: "news_articles" */ delete_news_articles_by_pk: (news_articles | null) + /** delete data from the table: "notification_preferences" */ + delete_notification_preferences: (notification_preferences_mutation_response | null) + /** delete single row from the table: "notification_preferences" */ + delete_notification_preferences_by_pk: (notification_preferences | null) /** delete data from the table: "notifications" */ delete_notifications: (notifications_mutation_response | null) /** delete single row from the table: "notifications" */ @@ -12916,6 +12932,10 @@ export interface mutation_root { delete_plugin_versions: (plugin_versions_mutation_response | null) /** delete single row from the table: "plugin_versions" */ delete_plugin_versions_by_pk: (plugin_versions | null) + /** delete data from the table: "push_subscriptions" */ + delete_push_subscriptions: (push_subscriptions_mutation_response | null) + /** delete single row from the table: "push_subscriptions" */ + delete_push_subscriptions_by_pk: (push_subscriptions | null) /** delete data from the table: "seasons" */ delete_seasons: (seasons_mutation_response | null) /** delete single row from the table: "seasons" */ @@ -13043,6 +13063,8 @@ export interface mutation_root { denyInvite: (SuccessOutput | null) denyNameChange: (SuccessOutput | null) forfeitMatch: (SuccessOutput | null) + /** Generates a fresh self-signed VAPID keypair; invalidates every existing subscription */ + generateWebPushKeys: (WebPushKeysOutput | null) /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState: (LiveStreamSpecState | null) getTestUploadLink: GetTestUploadResponse @@ -13448,6 +13470,10 @@ export interface mutation_root { insert_news_articles: (news_articles_mutation_response | null) /** insert a single row into the table: "news_articles" */ insert_news_articles_one: (news_articles | null) + /** insert data into the table: "notification_preferences" */ + insert_notification_preferences: (notification_preferences_mutation_response | null) + /** insert a single row into the table: "notification_preferences" */ + insert_notification_preferences_one: (notification_preferences | null) /** insert data into the table: "notifications" */ insert_notifications: (notifications_mutation_response | null) /** insert a single row into the table: "notifications" */ @@ -13548,6 +13574,10 @@ export interface mutation_root { insert_plugin_versions: (plugin_versions_mutation_response | null) /** insert a single row into the table: "plugin_versions" */ insert_plugin_versions_one: (plugin_versions | null) + /** insert data into the table: "push_subscriptions" */ + insert_push_subscriptions: (push_subscriptions_mutation_response | null) + /** insert a single row into the table: "push_subscriptions" */ + insert_push_subscriptions_one: (push_subscriptions | null) /** insert data into the table: "seasons" */ insert_seasons: (seasons_mutation_response | null) /** insert a single row into the table: "seasons" */ @@ -14409,6 +14439,12 @@ export interface mutation_root { update_news_articles_by_pk: (news_articles | null) /** update multiples rows of table: "news_articles" */ update_news_articles_many: ((news_articles_mutation_response | null)[] | null) + /** update data of the table: "notification_preferences" */ + update_notification_preferences: (notification_preferences_mutation_response | null) + /** update single row of the table: "notification_preferences" */ + update_notification_preferences_by_pk: (notification_preferences | null) + /** update multiples rows of table: "notification_preferences" */ + update_notification_preferences_many: ((notification_preferences_mutation_response | null)[] | null) /** update data of the table: "notifications" */ update_notifications: (notifications_mutation_response | null) /** update single row of the table: "notifications" */ @@ -14557,6 +14593,12 @@ export interface mutation_root { update_plugin_versions_by_pk: (plugin_versions | null) /** update multiples rows of table: "plugin_versions" */ update_plugin_versions_many: ((plugin_versions_mutation_response | null)[] | null) + /** update data of the table: "push_subscriptions" */ + update_push_subscriptions: (push_subscriptions_mutation_response | null) + /** update single row of the table: "push_subscriptions" */ + update_push_subscriptions_by_pk: (push_subscriptions | null) + /** update multiples rows of table: "push_subscriptions" */ + update_push_subscriptions_many: ((push_subscriptions_mutation_response | null)[] | null) /** update data of the table: "seasons" */ update_seasons: (seasons_mutation_response | null) /** update single row of the table: "seasons" */ @@ -15203,6 +15245,140 @@ export interface news_articles_variance_fields { } +/** columns and relationships of "notification_preferences" */ +export interface notification_preferences { + channel: Scalars['String'] + enabled: Scalars['Boolean'] + key: Scalars['String'] + steam_id: Scalars['bigint'] + updated_at: Scalars['timestamptz'] + __typename: 'notification_preferences' +} + + +/** aggregated selection of "notification_preferences" */ +export interface notification_preferences_aggregate { + aggregate: (notification_preferences_aggregate_fields | null) + nodes: notification_preferences[] + __typename: 'notification_preferences_aggregate' +} + + +/** aggregate fields of "notification_preferences" */ +export interface notification_preferences_aggregate_fields { + avg: (notification_preferences_avg_fields | null) + count: Scalars['Int'] + max: (notification_preferences_max_fields | null) + min: (notification_preferences_min_fields | null) + stddev: (notification_preferences_stddev_fields | null) + stddev_pop: (notification_preferences_stddev_pop_fields | null) + stddev_samp: (notification_preferences_stddev_samp_fields | null) + sum: (notification_preferences_sum_fields | null) + var_pop: (notification_preferences_var_pop_fields | null) + var_samp: (notification_preferences_var_samp_fields | null) + variance: (notification_preferences_variance_fields | null) + __typename: 'notification_preferences_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface notification_preferences_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_avg_fields' +} + + +/** unique or primary key constraints on table "notification_preferences" */ +export type notification_preferences_constraint = 'notification_preferences_pkey' + + +/** aggregate max on columns */ +export interface notification_preferences_max_fields { + channel: (Scalars['String'] | null) + key: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'notification_preferences_max_fields' +} + + +/** aggregate min on columns */ +export interface notification_preferences_min_fields { + channel: (Scalars['String'] | null) + key: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'notification_preferences_min_fields' +} + + +/** response of any mutation on the table "notification_preferences" */ +export interface notification_preferences_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: notification_preferences[] + __typename: 'notification_preferences_mutation_response' +} + + +/** select columns of table "notification_preferences" */ +export type notification_preferences_select_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface notification_preferences_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface notification_preferences_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface notification_preferences_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface notification_preferences_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'notification_preferences_sum_fields' +} + + +/** update columns of table "notification_preferences" */ +export type notification_preferences_update_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface notification_preferences_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface notification_preferences_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface notification_preferences_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_variance_fields' +} + + /** columns and relationships of "notifications" */ export interface notifications { actions: (Scalars['jsonb'] | null) @@ -22895,6 +23071,151 @@ export interface plugin_versions_variance_fields { __typename: 'plugin_versions_variance_fields' } + +/** columns and relationships of "push_subscriptions" */ +export interface push_subscriptions { + auth: Scalars['String'] + created_at: Scalars['timestamptz'] + endpoint: Scalars['String'] + id: Scalars['uuid'] + last_used_at: (Scalars['timestamptz'] | null) + p256dh: Scalars['String'] + steam_id: Scalars['bigint'] + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions' +} + + +/** aggregated selection of "push_subscriptions" */ +export interface push_subscriptions_aggregate { + aggregate: (push_subscriptions_aggregate_fields | null) + nodes: push_subscriptions[] + __typename: 'push_subscriptions_aggregate' +} + + +/** aggregate fields of "push_subscriptions" */ +export interface push_subscriptions_aggregate_fields { + avg: (push_subscriptions_avg_fields | null) + count: Scalars['Int'] + max: (push_subscriptions_max_fields | null) + min: (push_subscriptions_min_fields | null) + stddev: (push_subscriptions_stddev_fields | null) + stddev_pop: (push_subscriptions_stddev_pop_fields | null) + stddev_samp: (push_subscriptions_stddev_samp_fields | null) + sum: (push_subscriptions_sum_fields | null) + var_pop: (push_subscriptions_var_pop_fields | null) + var_samp: (push_subscriptions_var_samp_fields | null) + variance: (push_subscriptions_variance_fields | null) + __typename: 'push_subscriptions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface push_subscriptions_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_avg_fields' +} + + +/** unique or primary key constraints on table "push_subscriptions" */ +export type push_subscriptions_constraint = 'push_subscriptions_endpoint_key' | 'push_subscriptions_pkey' + + +/** aggregate max on columns */ +export interface push_subscriptions_max_fields { + auth: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + endpoint: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_used_at: (Scalars['timestamptz'] | null) + p256dh: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions_max_fields' +} + + +/** aggregate min on columns */ +export interface push_subscriptions_min_fields { + auth: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + endpoint: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_used_at: (Scalars['timestamptz'] | null) + p256dh: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions_min_fields' +} + + +/** response of any mutation on the table "push_subscriptions" */ +export interface push_subscriptions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: push_subscriptions[] + __typename: 'push_subscriptions_mutation_response' +} + + +/** select columns of table "push_subscriptions" */ +export type push_subscriptions_select_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' + + +/** aggregate stddev on columns */ +export interface push_subscriptions_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface push_subscriptions_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface push_subscriptions_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface push_subscriptions_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'push_subscriptions_sum_fields' +} + + +/** update columns of table "push_subscriptions" */ +export type push_subscriptions_update_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' + + +/** aggregate var_pop on columns */ +export interface push_subscriptions_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface push_subscriptions_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface push_subscriptions_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_variance_fields' +} + export interface query_root { /** fetch data from the table: "_map_pool" */ _map_pool: _map_pool[] @@ -23551,6 +23872,12 @@ export interface query_root { news_articles_aggregate: news_articles_aggregate /** fetch data from the table: "news_articles" using primary key columns */ news_articles_by_pk: (news_articles | null) + /** fetch data from the table: "notification_preferences" */ + notification_preferences: notification_preferences[] + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate: notification_preferences_aggregate + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk: (notification_preferences | null) /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -23719,6 +24046,12 @@ export interface query_root { plugin_versions_aggregate: plugin_versions_aggregate /** fetch data from the table: "plugin_versions" using primary key columns */ plugin_versions_by_pk: (plugin_versions | null) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions: push_subscriptions[] + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate: push_subscriptions_aggregate + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk: (push_subscriptions | null) /** Read file content from game server */ readServerFile: FileContentResponse /** fetch data from the table: "seasons" */ @@ -24028,6 +24361,8 @@ export interface query_root { v_tournament_player_stats: v_tournament_player_stats[] /** fetch aggregated fields from the table: "v_tournament_player_stats" */ v_tournament_player_stats_aggregate: v_tournament_player_stats_aggregate + /** Web push setup status for the application settings page; never returns the private key */ + webPushStatus: (WebPushStatusOutput | null) __typename: 'query_root' } @@ -25712,6 +26047,14 @@ export interface subscription_root { news_articles_by_pk: (news_articles | null) /** fetch data from the table in a streaming manner: "news_articles" */ news_articles_stream: news_articles[] + /** fetch data from the table: "notification_preferences" */ + notification_preferences: notification_preferences[] + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate: notification_preferences_aggregate + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk: (notification_preferences | null) + /** fetch data from the table in a streaming manner: "notification_preferences" */ + notification_preferences_stream: notification_preferences[] /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -25940,6 +26283,14 @@ export interface subscription_root { plugin_versions_by_pk: (plugin_versions | null) /** fetch data from the table in a streaming manner: "plugin_versions" */ plugin_versions_stream: plugin_versions[] + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions: push_subscriptions[] + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate: push_subscriptions_aggregate + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk: (push_subscriptions | null) + /** fetch data from the table in a streaming manner: "push_subscriptions" */ + push_subscriptions_stream: push_subscriptions[] /** fetch data from the table: "seasons" */ seasons: seasons[] /** fetch aggregated fields from the table: "seasons" */ @@ -37002,6 +37353,20 @@ export interface WatchDemoOutputGenqlSelection{ __scalar?: boolean | number } +export interface WebPushKeysOutputGenqlSelection{ + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface WebPushStatusOutputGenqlSelection{ + configured?: boolean | number + managed_by_environment?: boolean | number + subscriptions?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + /** columns and relationships of "_map_pool" */ export interface _map_poolGenqlSelection{ @@ -57258,6 +57623,12 @@ export interface mutation_rootGenqlSelection{ where: news_articles_bool_exp} }) /** delete single row from the table: "news_articles" */ delete_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "notification_preferences" */ + delete_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: notification_preferences_bool_exp} }) + /** delete single row from the table: "notification_preferences" */ + delete_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) /** delete data from the table: "notifications" */ delete_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -57406,6 +57777,12 @@ export interface mutation_rootGenqlSelection{ where: plugin_versions_bool_exp} }) /** delete single row from the table: "plugin_versions" */ delete_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** delete data from the table: "push_subscriptions" */ + delete_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: push_subscriptions_bool_exp} }) + /** delete single row from the table: "push_subscriptions" */ + delete_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "seasons" */ delete_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -57599,6 +57976,8 @@ export interface mutation_rootGenqlSelection{ denyInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) denyNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) forfeitMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) + /** Generates a fresh self-signed VAPID keypair; invalidates every existing subscription */ + generateWebPushKeys?: WebPushKeysOutputGenqlSelection /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState?: (LiveStreamSpecStateGenqlSelection & { __args: {match_id: Scalars['uuid']} }) getTestUploadLink?: GetTestUploadResponseGenqlSelection @@ -58796,6 +59175,18 @@ export interface mutation_rootGenqlSelection{ object: news_articles_insert_input, /** upsert condition */ on_conflict?: (news_articles_on_conflict | null)} }) + /** insert data into the table: "notification_preferences" */ + insert_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: notification_preferences_insert_input[], + /** upsert condition */ + on_conflict?: (notification_preferences_on_conflict | null)} }) + /** insert a single row into the table: "notification_preferences" */ + insert_notification_preferences_one?: (notification_preferencesGenqlSelection & { __args: { + /** the row to be inserted */ + object: notification_preferences_insert_input, + /** upsert condition */ + on_conflict?: (notification_preferences_on_conflict | null)} }) /** insert data into the table: "notifications" */ insert_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -59092,6 +59483,18 @@ export interface mutation_rootGenqlSelection{ object: plugin_versions_insert_input, /** upsert condition */ on_conflict?: (plugin_versions_on_conflict | null)} }) + /** insert data into the table: "push_subscriptions" */ + insert_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: push_subscriptions_insert_input[], + /** upsert condition */ + on_conflict?: (push_subscriptions_on_conflict | null)} }) + /** insert a single row into the table: "push_subscriptions" */ + insert_push_subscriptions_one?: (push_subscriptionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: push_subscriptions_insert_input, + /** upsert condition */ + on_conflict?: (push_subscriptions_on_conflict | null)} }) /** insert data into the table: "seasons" */ insert_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -61411,6 +61814,24 @@ export interface mutation_rootGenqlSelection{ update_news_articles_many?: (news_articles_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: news_articles_updates[]} }) + /** update data of the table: "notification_preferences" */ + update_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notification_preferences_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notification_preferences_set_input | null), + /** filter the rows which have to be updated */ + where: notification_preferences_bool_exp} }) + /** update single row of the table: "notification_preferences" */ + update_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notification_preferences_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notification_preferences_set_input | null), pk_columns: notification_preferences_pk_columns_input} }) + /** update multiples rows of table: "notification_preferences" */ + update_notification_preferences_many?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: notification_preferences_updates[]} }) /** update data of the table: "notifications" */ update_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -61895,6 +62316,24 @@ export interface mutation_rootGenqlSelection{ update_plugin_versions_many?: (plugin_versions_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: plugin_versions_updates[]} }) + /** update data of the table: "push_subscriptions" */ + update_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (push_subscriptions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (push_subscriptions_set_input | null), + /** filter the rows which have to be updated */ + where: push_subscriptions_bool_exp} }) + /** update single row of the table: "push_subscriptions" */ + update_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (push_subscriptions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (push_subscriptions_set_input | null), pk_columns: push_subscriptions_pk_columns_input} }) + /** update multiples rows of table: "push_subscriptions" */ + update_push_subscriptions_many?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: push_subscriptions_updates[]} }) /** update data of the table: "seasons" */ update_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -63098,6 +63537,190 @@ export interface news_articles_variance_fieldsGenqlSelection{ } +/** columns and relationships of "notification_preferences" */ +export interface notification_preferencesGenqlSelection{ + channel?: boolean | number + enabled?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "notification_preferences" */ +export interface notification_preferences_aggregateGenqlSelection{ + aggregate?: notification_preferences_aggregate_fieldsGenqlSelection + nodes?: notification_preferencesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "notification_preferences" */ +export interface notification_preferences_aggregate_fieldsGenqlSelection{ + avg?: notification_preferences_avg_fieldsGenqlSelection + count?: { __args: {columns?: (notification_preferences_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: notification_preferences_max_fieldsGenqlSelection + min?: notification_preferences_min_fieldsGenqlSelection + stddev?: notification_preferences_stddev_fieldsGenqlSelection + stddev_pop?: notification_preferences_stddev_pop_fieldsGenqlSelection + stddev_samp?: notification_preferences_stddev_samp_fieldsGenqlSelection + sum?: notification_preferences_sum_fieldsGenqlSelection + var_pop?: notification_preferences_var_pop_fieldsGenqlSelection + var_samp?: notification_preferences_var_samp_fieldsGenqlSelection + variance?: notification_preferences_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface notification_preferences_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. */ +export interface notification_preferences_bool_exp {_and?: (notification_preferences_bool_exp[] | null),_not?: (notification_preferences_bool_exp | null),_or?: (notification_preferences_bool_exp[] | null),channel?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),key?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "notification_preferences" */ +export interface notification_preferences_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "notification_preferences" */ +export interface notification_preferences_insert_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface notification_preferences_max_fieldsGenqlSelection{ + channel?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface notification_preferences_min_fieldsGenqlSelection{ + channel?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "notification_preferences" */ +export interface notification_preferences_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: notification_preferencesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "notification_preferences" */ +export interface notification_preferences_on_conflict {constraint: notification_preferences_constraint,update_columns?: notification_preferences_update_column[],where?: (notification_preferences_bool_exp | null)} + + +/** Ordering options when selecting data from "notification_preferences". */ +export interface notification_preferences_order_by {channel?: (order_by | null),enabled?: (order_by | null),key?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: notification_preferences */ +export interface notification_preferences_pk_columns_input {channel: Scalars['String'],key: Scalars['String'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "notification_preferences" */ +export interface notification_preferences_set_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface notification_preferences_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface notification_preferences_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface notification_preferences_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "notification_preferences" */ +export interface notification_preferences_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: notification_preferences_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface notification_preferences_stream_cursor_value_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface notification_preferences_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface notification_preferences_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (notification_preferences_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (notification_preferences_set_input | null), +/** filter the rows which have to be updated */ +where: notification_preferences_bool_exp} + + +/** aggregate var_pop on columns */ +export interface notification_preferences_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface notification_preferences_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface notification_preferences_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "notifications" */ export interface notificationsGenqlSelection{ actions?: { __args: { @@ -74039,6 +74662,201 @@ export interface plugin_versions_variance_fieldsGenqlSelection{ __scalar?: boolean | number } + +/** columns and relationships of "push_subscriptions" */ +export interface push_subscriptionsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "push_subscriptions" */ +export interface push_subscriptions_aggregateGenqlSelection{ + aggregate?: push_subscriptions_aggregate_fieldsGenqlSelection + nodes?: push_subscriptionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "push_subscriptions" */ +export interface push_subscriptions_aggregate_fieldsGenqlSelection{ + avg?: push_subscriptions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (push_subscriptions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: push_subscriptions_max_fieldsGenqlSelection + min?: push_subscriptions_min_fieldsGenqlSelection + stddev?: push_subscriptions_stddev_fieldsGenqlSelection + stddev_pop?: push_subscriptions_stddev_pop_fieldsGenqlSelection + stddev_samp?: push_subscriptions_stddev_samp_fieldsGenqlSelection + sum?: push_subscriptions_sum_fieldsGenqlSelection + var_pop?: push_subscriptions_var_pop_fieldsGenqlSelection + var_samp?: push_subscriptions_var_samp_fieldsGenqlSelection + variance?: push_subscriptions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface push_subscriptions_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. */ +export interface push_subscriptions_bool_exp {_and?: (push_subscriptions_bool_exp[] | null),_not?: (push_subscriptions_bool_exp | null),_or?: (push_subscriptions_bool_exp[] | null),auth?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),endpoint?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),last_used_at?: (timestamptz_comparison_exp | null),p256dh?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),user_agent?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "push_subscriptions" */ +export interface push_subscriptions_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "push_subscriptions" */ +export interface push_subscriptions_insert_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface push_subscriptions_max_fieldsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface push_subscriptions_min_fieldsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "push_subscriptions" */ +export interface push_subscriptions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: push_subscriptionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "push_subscriptions" */ +export interface push_subscriptions_on_conflict {constraint: push_subscriptions_constraint,update_columns?: push_subscriptions_update_column[],where?: (push_subscriptions_bool_exp | null)} + + +/** Ordering options when selecting data from "push_subscriptions". */ +export interface push_subscriptions_order_by {auth?: (order_by | null),created_at?: (order_by | null),endpoint?: (order_by | null),id?: (order_by | null),last_used_at?: (order_by | null),p256dh?: (order_by | null),steam_id?: (order_by | null),user_agent?: (order_by | null)} + + +/** primary key columns input for table: push_subscriptions */ +export interface push_subscriptions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "push_subscriptions" */ +export interface push_subscriptions_set_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface push_subscriptions_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface push_subscriptions_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface push_subscriptions_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "push_subscriptions" */ +export interface push_subscriptions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: push_subscriptions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface push_subscriptions_stream_cursor_value_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface push_subscriptions_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface push_subscriptions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (push_subscriptions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (push_subscriptions_set_input | null), +/** filter the rows which have to be updated */ +where: push_subscriptions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface push_subscriptions_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface push_subscriptions_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface push_subscriptions_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface query_rootGenqlSelection{ /** fetch data from the table: "_map_pool" */ _map_pool?: (_map_poolGenqlSelection & { __args?: { @@ -76791,6 +77609,32 @@ export interface query_rootGenqlSelection{ where?: (news_articles_bool_exp | null)} }) /** fetch data from the table: "news_articles" using primary key columns */ news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "notification_preferences" */ + notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_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?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_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?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -77559,6 +78403,32 @@ export interface query_rootGenqlSelection{ where?: (plugin_versions_bool_exp | null)} }) /** fetch data from the table: "plugin_versions" using primary key columns */ plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_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?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_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?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** 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" */ @@ -79088,6 +79958,8 @@ export interface query_rootGenqlSelection{ order_by?: (v_tournament_player_stats_order_by[] | null), /** filter the rows returned */ where?: (v_tournament_player_stats_bool_exp | null)} }) + /** Web push setup status for the application settings page; never returns the private key */ + webPushStatus?: WebPushStatusOutputGenqlSelection __typename?: boolean | number __scalar?: boolean | number } @@ -83943,6 +84815,40 @@ export interface subscription_rootGenqlSelection{ cursor: (news_articles_stream_cursor_input | null)[], /** filter the rows returned */ where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" */ + notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_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?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_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?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "notification_preferences" */ + notification_preferences_stream?: (notification_preferencesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (notification_preferences_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -84951,6 +85857,40 @@ export interface subscription_rootGenqlSelection{ cursor: (plugin_versions_stream_cursor_input | null)[], /** filter the rows returned */ where?: (plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_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?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_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?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "push_subscriptions" */ + push_subscriptions_stream?: (push_subscriptionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (push_subscriptions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) /** fetch data from the table: "seasons" */ seasons?: (seasonsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -101470,6 +102410,22 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const WebPushKeysOutput_possibleTypes: string[] = ['WebPushKeysOutput'] + export const isWebPushKeysOutput = (obj?: { __typename?: any } | null): obj is WebPushKeysOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushKeysOutput"') + return WebPushKeysOutput_possibleTypes.includes(obj.__typename) + } + + + + const WebPushStatusOutput_possibleTypes: string[] = ['WebPushStatusOutput'] + export const isWebPushStatusOutput = (obj?: { __typename?: any } | null): obj is WebPushStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushStatusOutput"') + return WebPushStatusOutput_possibleTypes.includes(obj.__typename) + } + + + const _map_pool_possibleTypes: string[] = ['_map_pool'] export const is_map_pool = (obj?: { __typename?: any } | null): obj is _map_pool => { if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool"') @@ -108966,6 +109922,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const notification_preferences_possibleTypes: string[] = ['notification_preferences'] + export const isnotification_preferences = (obj?: { __typename?: any } | null): obj is notification_preferences => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences"') + return notification_preferences_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_aggregate_possibleTypes: string[] = ['notification_preferences_aggregate'] + export const isnotification_preferences_aggregate = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate"') + return notification_preferences_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_aggregate_fields_possibleTypes: string[] = ['notification_preferences_aggregate_fields'] + export const isnotification_preferences_aggregate_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate_fields"') + return notification_preferences_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_avg_fields_possibleTypes: string[] = ['notification_preferences_avg_fields'] + export const isnotification_preferences_avg_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_avg_fields"') + return notification_preferences_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_max_fields_possibleTypes: string[] = ['notification_preferences_max_fields'] + export const isnotification_preferences_max_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_max_fields"') + return notification_preferences_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_min_fields_possibleTypes: string[] = ['notification_preferences_min_fields'] + export const isnotification_preferences_min_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_min_fields"') + return notification_preferences_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_mutation_response_possibleTypes: string[] = ['notification_preferences_mutation_response'] + export const isnotification_preferences_mutation_response = (obj?: { __typename?: any } | null): obj is notification_preferences_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_mutation_response"') + return notification_preferences_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_fields_possibleTypes: string[] = ['notification_preferences_stddev_fields'] + export const isnotification_preferences_stddev_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_fields"') + return notification_preferences_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_pop_fields_possibleTypes: string[] = ['notification_preferences_stddev_pop_fields'] + export const isnotification_preferences_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_pop_fields"') + return notification_preferences_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_samp_fields_possibleTypes: string[] = ['notification_preferences_stddev_samp_fields'] + export const isnotification_preferences_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_samp_fields"') + return notification_preferences_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_sum_fields_possibleTypes: string[] = ['notification_preferences_sum_fields'] + export const isnotification_preferences_sum_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_sum_fields"') + return notification_preferences_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_var_pop_fields_possibleTypes: string[] = ['notification_preferences_var_pop_fields'] + export const isnotification_preferences_var_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_pop_fields"') + return notification_preferences_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_var_samp_fields_possibleTypes: string[] = ['notification_preferences_var_samp_fields'] + export const isnotification_preferences_var_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_samp_fields"') + return notification_preferences_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_variance_fields_possibleTypes: string[] = ['notification_preferences_variance_fields'] + export const isnotification_preferences_variance_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_variance_fields"') + return notification_preferences_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const notifications_possibleTypes: string[] = ['notifications'] export const isnotifications = (obj?: { __typename?: any } | null): obj is notifications => { if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications"') @@ -112286,6 +113354,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const push_subscriptions_possibleTypes: string[] = ['push_subscriptions'] + export const ispush_subscriptions = (obj?: { __typename?: any } | null): obj is push_subscriptions => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions"') + return push_subscriptions_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_aggregate_possibleTypes: string[] = ['push_subscriptions_aggregate'] + export const ispush_subscriptions_aggregate = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate"') + return push_subscriptions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_aggregate_fields_possibleTypes: string[] = ['push_subscriptions_aggregate_fields'] + export const ispush_subscriptions_aggregate_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate_fields"') + return push_subscriptions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_avg_fields_possibleTypes: string[] = ['push_subscriptions_avg_fields'] + export const ispush_subscriptions_avg_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_avg_fields"') + return push_subscriptions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_max_fields_possibleTypes: string[] = ['push_subscriptions_max_fields'] + export const ispush_subscriptions_max_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_max_fields"') + return push_subscriptions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_min_fields_possibleTypes: string[] = ['push_subscriptions_min_fields'] + export const ispush_subscriptions_min_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_min_fields"') + return push_subscriptions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_mutation_response_possibleTypes: string[] = ['push_subscriptions_mutation_response'] + export const ispush_subscriptions_mutation_response = (obj?: { __typename?: any } | null): obj is push_subscriptions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_mutation_response"') + return push_subscriptions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_fields_possibleTypes: string[] = ['push_subscriptions_stddev_fields'] + export const ispush_subscriptions_stddev_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_fields"') + return push_subscriptions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_pop_fields_possibleTypes: string[] = ['push_subscriptions_stddev_pop_fields'] + export const ispush_subscriptions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_pop_fields"') + return push_subscriptions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_samp_fields_possibleTypes: string[] = ['push_subscriptions_stddev_samp_fields'] + export const ispush_subscriptions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_samp_fields"') + return push_subscriptions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_sum_fields_possibleTypes: string[] = ['push_subscriptions_sum_fields'] + export const ispush_subscriptions_sum_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_sum_fields"') + return push_subscriptions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_var_pop_fields_possibleTypes: string[] = ['push_subscriptions_var_pop_fields'] + export const ispush_subscriptions_var_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_pop_fields"') + return push_subscriptions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_var_samp_fields_possibleTypes: string[] = ['push_subscriptions_var_samp_fields'] + export const ispush_subscriptions_var_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_samp_fields"') + return push_subscriptions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_variance_fields_possibleTypes: string[] = ['push_subscriptions_variance_fields'] + export const ispush_subscriptions_variance_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_variance_fields"') + return push_subscriptions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const query_root_possibleTypes: string[] = ['query_root'] export const isquery_root = (obj?: { __typename?: any } | null): obj is query_root => { if (!obj?.__typename) throw new Error('__typename is missing in "isquery_root"') @@ -119489,6 +120669,7 @@ export const enumENotificationTypesConstraint = { } export const enumENotificationTypesEnum = { + ChatMessage: 'ChatMessage' as const, DedicatedServerRconStatus: 'DedicatedServerRconStatus' as const, DedicatedServerStatus: 'DedicatedServerStatus' as const, EloRecompute: 'EloRecompute' as const, @@ -119508,6 +120689,7 @@ export const enumENotificationTypesEnum = { NameChangeApproved: 'NameChangeApproved' as const, NameChangeDenied: 'NameChangeDenied' as const, NameChangeRequest: 'NameChangeRequest' as const, + NewsPublished: 'NewsPublished' as const, PlayerReindex: 'PlayerReindex' as const, PlayerSanctioned: 'PlayerSanctioned' as const, ScrimAlertMatch: 'ScrimAlertMatch' as const, @@ -119519,7 +120701,9 @@ export const enumENotificationTypesEnum = { ScrimRequestExpired: 'ScrimRequestExpired' as const, ScrimRequestReceived: 'ScrimRequestReceived' as const, ScrimTimeChanged: 'ScrimTimeChanged' as const, - StorageScan: 'StorageScan' as const + StorageScan: 'StorageScan' as const, + TournamentCreated: 'TournamentCreated' as const, + TournamentReminder: 'TournamentReminder' as const } export const enumENotificationTypesSelectColumn = { @@ -121348,6 +122532,26 @@ export const enumNewsArticlesUpdateColumn = { view_count: 'view_count' as const } +export const enumNotificationPreferencesConstraint = { + notification_preferences_pkey: 'notification_preferences_pkey' as const +} + +export const enumNotificationPreferencesSelectColumn = { + channel: 'channel' as const, + enabled: 'enabled' as const, + key: 'key' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumNotificationPreferencesUpdateColumn = { + channel: 'channel' as const, + enabled: 'enabled' as const, + key: 'key' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + export const enumNotificationsConstraint = { notifications_pkey: 'notifications_pkey' as const } @@ -122477,6 +123681,33 @@ export const enumPluginVersionsUpdateColumn = { version: 'version' as const } +export const enumPushSubscriptionsConstraint = { + push_subscriptions_endpoint_key: 'push_subscriptions_endpoint_key' as const, + push_subscriptions_pkey: 'push_subscriptions_pkey' as const +} + +export const enumPushSubscriptionsSelectColumn = { + auth: 'auth' as const, + created_at: 'created_at' as const, + endpoint: 'endpoint' as const, + id: 'id' as const, + last_used_at: 'last_used_at' as const, + p256dh: 'p256dh' as const, + steam_id: 'steam_id' as const, + user_agent: 'user_agent' as const +} + +export const enumPushSubscriptionsUpdateColumn = { + auth: 'auth' as const, + created_at: 'created_at' as const, + endpoint: 'endpoint' as const, + id: 'id' as const, + last_used_at: 'last_used_at' as const, + p256dh: 'p256dh' as const, + steam_id: 'steam_id' as const, + user_agent: 'user_agent' as const +} + export const enumSeasonsConstraint = { seasons_pkey: 'seasons_pkey' as const } diff --git a/generated/types.ts b/generated/types.ts index 498c02c6..deccfc3f 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -4,589 +4,585 @@ export default { 31, 40, 80, - 104, - 112, - 116, + 106, + 114, 118, - 129, - 140, - 152, - 165, - 174, - 182, - 198, - 209, - 221, - 234, - 244, - 252, - 257, - 260, - 275, - 290, - 291, + 120, + 131, + 142, + 154, + 167, + 176, + 184, + 200, + 211, + 223, + 236, + 246, + 254, + 259, + 262, + 277, 292, - 304, - 313, - 320, - 333, - 341, - 351, - 360, - 368, - 385, - 396, - 397, + 293, + 294, + 306, + 315, + 322, + 335, + 343, + 353, + 362, + 370, + 387, 398, - 410, - 430, - 441, - 442, + 399, + 400, + 412, + 432, 443, - 455, - 475, - 487, - 488, + 444, + 445, + 457, + 477, 489, - 501, - 513, - 514, - 523, - 527, - 533, - 534, - 543, - 547, - 553, - 554, - 563, - 567, - 573, - 574, - 584, - 588, - 594, - 595, - 605, - 609, - 615, - 616, - 626, - 630, - 636, - 637, - 647, - 651, - 657, - 658, - 668, - 672, - 678, - 679, - 688, - 692, - 698, - 699, - 708, - 712, - 718, - 719, - 729, - 733, - 739, - 740, - 749, - 753, - 759, - 760, - 770, - 774, - 780, - 781, - 791, - 795, - 801, - 802, - 812, - 816, - 822, - 823, - 833, - 837, - 843, - 844, - 854, - 858, - 864, - 865, - 875, - 879, - 885, - 886, - 895, - 899, - 905, - 906, - 916, - 920, - 926, - 927, - 936, - 940, - 946, - 947, - 957, - 961, - 967, - 968, - 977, - 981, - 987, - 988, - 997, - 1001, - 1007, - 1008, - 1018, - 1022, - 1028, - 1029, - 1039, - 1043, - 1049, - 1050, - 1059, - 1063, - 1069, - 1070, - 1079, - 1083, - 1089, - 1090, - 1099, - 1103, - 1109, - 1110, - 1119, - 1123, - 1129, - 1130, - 1139, - 1143, - 1149, - 1150, - 1160, - 1164, - 1170, - 1171, - 1180, - 1184, - 1190, - 1191, - 1200, - 1204, - 1210, - 1211, - 1220, - 1224, - 1230, - 1231, - 1240, - 1244, - 1250, - 1251, - 1261, - 1265, - 1271, - 1272, - 1281, - 1285, - 1291, - 1292, - 1301, - 1305, - 1311, - 1312, - 1322, - 1326, - 1332, - 1333, - 1343, - 1347, - 1353, - 1354, - 1364, - 1368, - 1374, - 1375, - 1384, - 1388, - 1394, - 1395, - 1404, - 1408, - 1414, - 1415, - 1424, - 1428, - 1434, - 1442, - 1446, - 1458, - 1480, - 1491, - 1503, - 1511, - 1523, - 1541, - 1552, - 1564, - 1582, - 1593, - 1605, - 1621, - 1631, - 1635, - 1645, - 1655, - 1659, - 1666, - 1676, - 1684, - 1689, - 1696, - 1705, - 1713, - 1731, - 1747, - 1748, + 490, + 491, + 503, + 515, + 516, + 525, + 529, + 535, + 536, + 545, + 549, + 555, + 556, + 565, + 569, + 575, + 576, + 586, + 590, + 596, + 597, + 607, + 611, + 617, + 618, + 628, + 632, + 638, + 639, + 649, + 653, + 659, + 660, + 670, + 674, + 680, + 681, + 690, + 694, + 700, + 701, + 710, + 714, + 720, + 721, + 731, + 735, + 741, + 742, + 751, + 755, + 761, + 762, + 772, + 776, + 782, + 783, + 793, + 797, + 803, + 804, + 814, + 818, + 824, + 825, + 835, + 839, + 845, + 846, + 856, + 860, + 866, + 867, + 877, + 881, + 887, + 888, + 897, + 901, + 907, + 908, + 918, + 922, + 928, + 929, + 938, + 942, + 948, + 949, + 959, + 963, + 969, + 970, + 979, + 983, + 989, + 990, + 999, + 1003, + 1009, + 1010, + 1020, + 1024, + 1030, + 1031, + 1041, + 1045, + 1051, + 1052, + 1061, + 1065, + 1071, + 1072, + 1081, + 1085, + 1091, + 1092, + 1101, + 1105, + 1111, + 1112, + 1121, + 1125, + 1131, + 1132, + 1141, + 1145, + 1151, + 1152, + 1162, + 1166, + 1172, + 1173, + 1182, + 1186, + 1192, + 1193, + 1202, + 1206, + 1212, + 1213, + 1222, + 1226, + 1232, + 1233, + 1242, + 1246, + 1252, + 1253, + 1263, + 1267, + 1273, + 1274, + 1283, + 1287, + 1293, + 1294, + 1303, + 1307, + 1313, + 1314, + 1324, + 1328, + 1334, + 1335, + 1345, + 1349, + 1355, + 1356, + 1366, + 1370, + 1376, + 1377, + 1386, + 1390, + 1396, + 1397, + 1406, + 1410, + 1416, + 1417, + 1426, + 1430, + 1436, + 1444, + 1448, + 1460, + 1482, + 1493, + 1505, + 1513, + 1525, + 1543, + 1554, + 1566, + 1584, + 1595, + 1607, + 1623, + 1633, + 1637, + 1647, + 1657, + 1661, + 1668, + 1678, + 1686, + 1691, + 1698, + 1707, + 1715, + 1733, 1749, - 1761, - 1775, - 1789, - 1797, - 1808, - 1821, - 1829, - 1838, + 1750, + 1751, + 1763, + 1777, + 1791, + 1799, + 1810, + 1823, + 1831, 1840, 1842, - 1856, - 1874, - 1884, - 1892, - 1907, - 1918, - 1930, - 1948, - 1959, - 1971, - 1989, - 2000, - 2012, - 2028, - 2039, - 2043, - 2051, - 2065, - 2073, - 2088, - 2099, - 2111, - 2129, - 2140, - 2152, - 2170, - 2182, - 2194, - 2206, - 2215, - 2219, - 2225, - 2234, - 2238, - 2252, - 2263, - 2264, + 1844, + 1858, + 1876, + 1886, + 1894, + 1909, + 1920, + 1932, + 1950, + 1961, + 1973, + 1991, + 2002, + 2014, + 2030, + 2041, + 2045, + 2053, + 2067, + 2075, + 2090, + 2101, + 2113, + 2131, + 2142, + 2154, + 2172, + 2184, + 2196, + 2208, + 2217, + 2221, + 2227, + 2236, + 2240, + 2254, 2265, - 2277, - 2289, - 2298, - 2302, - 2314, - 2325, - 2326, + 2266, + 2267, + 2279, + 2291, + 2300, + 2304, + 2316, 2327, - 2331, - 2338, - 2347, - 2355, - 2370, - 2382, - 2394, - 2413, - 2428, - 2440, - 2460, - 2471, - 2472, + 2328, + 2329, + 2333, + 2340, + 2349, + 2357, + 2372, + 2384, + 2396, + 2415, + 2430, + 2442, + 2462, 2473, - 2485, - 2503, - 2515, - 2527, - 2548, - 2564, - 2565, + 2474, + 2475, + 2487, + 2505, + 2517, + 2529, + 2550, 2566, - 2578, - 2596, - 2607, - 2619, - 2637, - 2647, - 2648, + 2567, + 2568, + 2580, + 2598, + 2609, + 2621, + 2639, 2649, - 2653, - 2665, - 2677, - 2689, - 2702, - 2712, - 2720, - 2735, - 2745, - 2746, + 2650, + 2651, + 2655, + 2667, + 2679, + 2691, + 2704, + 2714, + 2722, + 2737, 2747, - 2751, - 2766, - 2781, - 2782, + 2748, + 2749, + 2753, + 2768, 2783, - 2795, - 2807, - 2815, - 2819, - 2831, - 2843, - 2855, - 2867, - 2875, - 2879, - 2906, - 2907, + 2784, + 2785, + 2797, + 2809, + 2817, + 2821, + 2833, + 2845, + 2857, + 2869, + 2877, + 2881, 2908, - 2932, - 2941, - 2949, - 2967, - 2982, - 2983, - 2984, + 2909, + 2910, + 2934, + 2943, + 2951, + 2961, + 2970, + 2978, 2996, - 3004, - 3006, - 3017, - 3028, - 3040, - 3053, - 3063, - 3071, - 3081, - 3090, - 3098, - 3113, - 3124, - 3136, - 3156, - 3167, - 3168, - 3169, - 3181, + 3011, + 3012, + 3013, + 3025, + 3033, + 3035, + 3046, + 3057, + 3069, + 3082, + 3092, + 3100, + 3110, + 3119, + 3127, + 3142, + 3153, + 3165, + 3185, + 3196, 3197, - 3217, - 3228, - 3240, - 3253, - 3262, - 3270, - 3285, - 3296, - 3308, - 3328, - 3339, - 3340, - 3341, - 3353, - 3383, - 3394, - 3406, - 3414, - 3425, - 3426, - 3427, - 3439, - 3458, - 3480, - 3491, - 3503, - 3519, - 3545, - 3572, - 3583, - 3595, - 3611, - 3631, - 3642, - 3654, - 3672, + 3198, + 3210, + 3226, + 3246, + 3257, + 3269, + 3282, + 3291, + 3299, + 3314, + 3325, + 3337, + 3357, + 3368, + 3369, + 3370, + 3382, + 3412, + 3423, + 3435, + 3443, + 3454, + 3455, + 3456, + 3468, + 3487, + 3509, + 3520, + 3532, + 3548, + 3574, + 3601, + 3612, + 3624, + 3640, + 3660, + 3671, 3683, - 3695, - 3723, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3754, + 3701, + 3712, + 3724, + 3752, + 3763, + 3764, + 3765, + 3766, 3767, - 3777, - 3785, + 3768, + 3769, + 3770, + 3771, + 3783, 3796, - 3809, - 3817, - 3827, - 3836, - 3844, - 3859, - 3870, - 3882, - 3900, + 3806, + 3814, + 3825, + 3838, + 3846, + 3856, + 3865, + 3873, + 3888, + 3899, 3911, - 3923, - 3947, - 3969, - 3979, - 3987, - 3997, - 4006, - 4014, - 4028, - 4038, - 4046, - 4056, - 4065, - 4073, - 4090, + 3929, + 3940, + 3952, + 3976, + 3998, + 4008, + 4016, + 4026, + 4035, + 4043, + 4053, + 4062, + 4070, + 4084, + 4094, 4102, - 4103, - 4104, - 4116, - 4128, - 4136, - 4140, - 4142, - 4152, - 4162, - 4166, - 4173, - 4183, - 4191, - 4201, - 4210, + 4112, + 4121, + 4129, + 4146, + 4158, + 4159, + 4160, + 4172, + 4184, + 4192, + 4196, + 4198, + 4208, 4218, - 4233, - 4244, - 4256, - 4276, - 4287, - 4288, + 4222, + 4229, + 4239, + 4247, + 4257, + 4266, + 4274, 4289, - 4301, - 4314, - 4323, - 4331, - 4346, - 4356, + 4300, + 4312, + 4332, + 4343, + 4344, + 4345, 4357, - 4358, - 4362, - 4374, - 4385, - 4397, - 4417, - 4429, + 4370, + 4379, + 4387, + 4402, + 4412, + 4413, + 4414, + 4418, 4430, - 4431, - 4443, - 4456, - 4466, - 4474, - 4484, - 4493, - 4501, - 4518, + 4441, + 4453, + 4473, + 4485, + 4486, + 4487, + 4499, + 4512, + 4522, 4530, - 4531, - 4532, - 4544, - 4552, - 4553, - 4565, - 4577, - 4589, + 4540, + 4549, + 4557, + 4574, + 4586, + 4587, + 4588, + 4600, + 4608, 4609, 4621, - 4622, - 4623, - 4635, - 4651, - 4661, + 4633, + 4645, 4665, - 4675, - 4685, - 4689, - 4701, - 4712, - 4724, - 4742, - 4753, - 4765, - 4783, - 4794, - 4806, - 4827, - 4843, - 4844, - 4845, - 4857, - 4875, - 4886, - 4898, - 4916, - 4927, - 4939, - 4957, - 4969, - 4981, - 5011, - 5023, - 5024, + 4677, + 4678, + 4679, + 4691, + 4707, + 4717, + 4721, + 4731, + 4741, + 4745, + 4757, + 4768, + 4780, + 4798, + 4809, + 4821, + 4839, + 4850, + 4862, + 4883, + 4899, + 4900, + 4901, + 4913, + 4931, + 4942, + 4954, + 4972, + 4983, + 4995, + 5013, 5025, - 5026, - 5027, - 5028, - 5029, - 5030, - 5031, - 5032, - 5033, - 5045, - 5053, + 5037, + 5067, + 5079, + 5080, + 5081, 5082, 5083, 5084, @@ -595,67 +591,65 @@ export default { 5087, 5088, 5089, - 5090, - 5115, + 5101, + 5109, + 5138, + 5139, + 5140, 5141, - 5184, - 5185, - 5186, - 5187, - 5188, - 5189, - 5190, - 5191, - 5192, - 5221, - 5249, - 5274, - 5292, - 5310, - 5331, - 5351, - 5377, - 5402, - 5420, - 5456, - 5457, + 5142, + 5143, + 5144, + 5145, + 5146, + 5171, + 5197, + 5240, + 5241, + 5242, + 5243, + 5244, + 5245, + 5246, + 5247, + 5248, + 5277, + 5305, + 5330, + 5348, + 5366, + 5387, + 5407, + 5433, 5458, - 5459, - 5460, - 5461, - 5462, - 5463, - 5464, - 5489, - 5507, - 5525, - 5553, - 5580, - 5598, - 5616, - 5642, - 5667, - 5685, - 5703, - 5730, - 5731, - 5732, - 5745, - 5765, - 5785, - 5815, - 5827, - 5828, - 5829, - 5830, - 5831, - 5832, - 5833, - 5834, - 5835, - 5847, - 5881, - 5882, + 5476, + 5512, + 5513, + 5514, + 5515, + 5516, + 5517, + 5518, + 5519, + 5520, + 5545, + 5563, + 5581, + 5609, + 5636, + 5654, + 5672, + 5698, + 5723, + 5741, + 5759, + 5786, + 5787, + 5788, + 5801, + 5821, + 5841, + 5871, 5883, 5884, 5885, @@ -663,15 +657,27 @@ export default { 5887, 5888, 5889, - 5932, - 5933, - 5934, - 5935, - 5936, + 5890, + 5891, + 5903, 5937, 5938, 5939, - 5940 + 5940, + 5941, + 5942, + 5943, + 5944, + 5945, + 5988, + 5989, + 5990, + 5991, + 5992, + 5993, + 5994, + 5995, + 5996 ], "types": { "ActiveConnection": { @@ -688,7 +694,7 @@ export default { 80 ], "query_start": [ - 4552 + 4608 ], "state": [ 80 @@ -717,7 +723,7 @@ export default { 80 ], "query_start": [ - 4552 + 4608 ], "state": [ 80 @@ -757,22 +763,22 @@ export default { 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -784,7 +790,7 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ 80 @@ -795,7 +801,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 5053 + 5109 ], "awarded_by_steam_id": [ 80 @@ -804,7 +810,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "note": [ 80 @@ -819,13 +825,13 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -903,7 +909,7 @@ export default { 40 ], "payload": [ - 1842 + 1844 ], "start_ms": [ 40 @@ -937,7 +943,7 @@ export default { 80 ], "match_map_id": [ - 5053 + 5109 ], "output": [ 8 @@ -997,13 +1003,13 @@ export default { }, "CpuStat": { "time": [ - 4552 + 4608 ], "total": [ - 257 + 259 ], "used": [ - 257 + 259 ], "window": [ 31 @@ -1014,7 +1020,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 5053 + 5109 ], "success": [ 5 @@ -1025,7 +1031,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 5053 + 5109 ], "__typename": [ 80 @@ -1033,7 +1039,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 5053 + 5109 ], "__typename": [ 80 @@ -1189,7 +1195,7 @@ export default { 22 ], "time": [ - 4552 + 4608 ], "__typename": [ 80 @@ -1215,7 +1221,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mode": [ 80 @@ -1283,7 +1289,7 @@ export default { 80 ], "size": [ - 257 + 259 ], "__typename": [ 80 @@ -1294,7 +1300,7 @@ export default { 5 ], "modified": [ - 4552 + 4608 ], "name": [ 80 @@ -1303,7 +1309,7 @@ export default { 80 ], "size": [ - 257 + 259 ], "type": [ 80 @@ -1398,7 +1404,7 @@ export default { 34 ], "time": [ - 4552 + 4608 ], "__typename": [ 80 @@ -1640,7 +1646,7 @@ export default { 80 ], "player": [ - 3964 + 3993 ], "profile_url": [ 80 @@ -1657,13 +1663,13 @@ export default { }, "MemoryStat": { "time": [ - 4552 + 4608 ], "total": [ - 257 + 259 ], "used": [ - 257 + 259 ], "__typename": [ 80 @@ -1674,7 +1680,7 @@ export default { 51 ], "time": [ - 4552 + 4608 ], "__typename": [ 80 @@ -1694,7 +1700,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "published_at": [ 80 @@ -1715,7 +1721,7 @@ export default { 80 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -1726,10 +1732,10 @@ export default { 80 ], "rx": [ - 257 + 259 ], "tx": [ - 257 + 259 ], "__typename": [ 80 @@ -2452,16 +2458,16 @@ export default { 40 ], "last_analyze": [ - 4552 + 4608 ], "last_autoanalyze": [ - 4552 + 4608 ], "last_autovacuum": [ - 4552 + 4608 ], "last_vacuum": [ - 4552 + 4608 ], "n_dead_tup": [ 40 @@ -2677,7 +2683,7 @@ export default { 80 ], "next_start": [ - 4552 + 4608 ], "__typename": [ 80 @@ -2699,13 +2705,13 @@ export default { }, "TournamentAward": { "award_id": [ - 5053 + 5109 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -2717,7 +2723,7 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2725,7 +2731,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 5053 + 5109 ], "depth": [ 40 @@ -2734,7 +2740,7 @@ export default { 5 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 @@ -2775,12 +2781,34 @@ export default { 80 ] }, + "WebPushKeysOutput": { + "success": [ + 5 + ], + "__typename": [ + 80 + ] + }, + "WebPushStatusOutput": { + "configured": [ + 5 + ], + "managed_by_environment": [ + 5 + ], + "subscriptions": [ + 40 + ], + "__typename": [ + 80 + ] + }, "_map_pool": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2788,10 +2816,10 @@ export default { }, "_map_pool_aggregate": { "aggregate": [ - 102 + 104 ], "nodes": [ - 100 + 102 ], "__typename": [ 80 @@ -2802,7 +2830,7 @@ export default { 40, { "columns": [ - 112, + 114, "[_map_pool_select_column!]" ], "distinct": [ @@ -2811,10 +2839,10 @@ export default { } ], "max": [ - 106 + 108 ], "min": [ - 107 + 109 ], "__typename": [ 80 @@ -2822,19 +2850,19 @@ export default { }, "_map_pool_bool_exp": { "_and": [ - 103 + 105 ], "_not": [ - 103 + 105 ], "_or": [ - 103 + 105 ], "map_id": [ - 5055 + 5111 ], "map_pool_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -2843,10 +2871,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2854,10 +2882,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2865,10 +2893,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2879,7 +2907,7 @@ export default { 40 ], "returning": [ - 100 + 102 ], "__typename": [ 80 @@ -2887,13 +2915,13 @@ export default { }, "_map_pool_on_conflict": { "constraint": [ - 104 + 106 ], "update_columns": [ - 116 + 118 ], "where": [ - 103 + 105 ], "__typename": [ 80 @@ -2901,10 +2929,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 3006 + 3035 ], "map_pool_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -2912,10 +2940,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2924,10 +2952,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2935,10 +2963,10 @@ export default { }, "_map_pool_stream_cursor_input": { "initial_value": [ - 115 + 117 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -2946,10 +2974,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -2958,10 +2986,10 @@ export default { "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 113 + 115 ], "where": [ - 103 + 105 ], "__typename": [ 80 @@ -2970,19 +2998,19 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -2990,10 +3018,10 @@ export default { }, "abandoned_matches_aggregate": { "aggregate": [ - 123 + 125 ], "nodes": [ - 119 + 121 ], "__typename": [ 80 @@ -3001,7 +3029,7 @@ export default { }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 122 + 124 ], "__typename": [ 80 @@ -3009,13 +3037,13 @@ export default { }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 140 + 142 ], "distinct": [ 5 ], "filter": [ - 128 + 130 ], "predicate": [ 41 @@ -3026,13 +3054,13 @@ export default { }, "abandoned_matches_aggregate_fields": { "avg": [ - 126 + 128 ], "count": [ 40, { "columns": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -3041,31 +3069,31 @@ export default { } ], "max": [ - 132 + 134 ], "min": [ - 134 + 136 ], "stddev": [ - 142 + 144 ], "stddev_pop": [ - 144 + 146 ], "stddev_samp": [ - 146 + 148 ], "sum": [ - 150 + 152 ], "var_pop": [ - 154 + 156 ], "var_samp": [ - 156 + 158 ], "variance": [ - 158 + 160 ], "__typename": [ 80 @@ -3073,37 +3101,37 @@ export default { }, "abandoned_matches_aggregate_order_by": { "avg": [ - 127 + 129 ], "count": [ - 3006 + 3035 ], "max": [ - 133 + 135 ], "min": [ - 135 + 137 ], "stddev": [ - 143 + 145 ], "stddev_pop": [ - 145 + 147 ], "stddev_samp": [ - 147 + 149 ], "sum": [ - 151 + 153 ], "var_pop": [ - 155 + 157 ], "var_samp": [ - 157 + 159 ], "variance": [ - 159 + 161 ], "__typename": [ 80 @@ -3111,10 +3139,10 @@ export default { }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 131 + 133 ], "on_conflict": [ - 137 + 139 ], "__typename": [ 80 @@ -3130,7 +3158,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3138,28 +3166,28 @@ export default { }, "abandoned_matches_bool_exp": { "_and": [ - 128 + 130 ], "_not": [ - 128 + 130 ], "_or": [ - 128 + 130 ], "abandoned_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -3168,7 +3196,7 @@ export default { "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3176,19 +3204,19 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3196,16 +3224,16 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3213,16 +3241,16 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3230,16 +3258,16 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3247,16 +3275,16 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3267,7 +3295,7 @@ export default { 40 ], "returning": [ - 119 + 121 ], "__typename": [ 80 @@ -3275,13 +3303,13 @@ export default { }, "abandoned_matches_on_conflict": { "constraint": [ - 129 + 131 ], "update_columns": [ - 152 + 154 ], "where": [ - 128 + 130 ], "__typename": [ 80 @@ -3289,19 +3317,19 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3309,7 +3337,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -3318,16 +3346,16 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3343,7 +3371,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3359,7 +3387,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3375,7 +3403,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3383,10 +3411,10 @@ export default { }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 149 + 151 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -3394,16 +3422,16 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3411,7 +3439,7 @@ export default { }, "abandoned_matches_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3419,7 +3447,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3428,13 +3456,13 @@ export default { "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 130 + 132 ], "_set": [ - 141 + 143 ], "where": [ - 128 + 130 ], "__typename": [ 80 @@ -3450,7 +3478,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3466,7 +3494,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3482,7 +3510,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3490,19 +3518,19 @@ export default { }, "api_keys": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3510,10 +3538,10 @@ export default { }, "api_keys_aggregate": { "aggregate": [ - 162 + 164 ], "nodes": [ - 160 + 162 ], "__typename": [ 80 @@ -3521,13 +3549,13 @@ export default { }, "api_keys_aggregate_fields": { "avg": [ - 163 + 165 ], "count": [ 40, { "columns": [ - 174, + 176, "[api_keys_select_column!]" ], "distinct": [ @@ -3536,31 +3564,31 @@ export default { } ], "max": [ - 168 + 170 ], "min": [ - 169 + 171 ], "stddev": [ - 176 + 178 ], "stddev_pop": [ - 177 + 179 ], "stddev_samp": [ - 178 + 180 ], "sum": [ - 181 + 183 ], "var_pop": [ - 184 + 186 ], "var_samp": [ - 185 + 187 ], "variance": [ - 186 + 188 ], "__typename": [ 80 @@ -3576,28 +3604,28 @@ export default { }, "api_keys_bool_exp": { "_and": [ - 164 + 166 ], "_not": [ - 164 + 166 ], "_or": [ - 164 + 166 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "label": [ 82 ], "last_used_at": [ - 4554 + 4610 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -3606,7 +3634,7 @@ export default { "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3614,19 +3642,19 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3634,19 +3662,19 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3654,19 +3682,19 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3677,7 +3705,7 @@ export default { 40 ], "returning": [ - 160 + 162 ], "__typename": [ 80 @@ -3685,13 +3713,13 @@ export default { }, "api_keys_on_conflict": { "constraint": [ - 165 + 167 ], "update_columns": [ - 182 + 184 ], "where": [ - 164 + 166 ], "__typename": [ 80 @@ -3699,19 +3727,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "last_used_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -3719,7 +3747,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -3728,19 +3756,19 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3772,10 +3800,10 @@ export default { }, "api_keys_stream_cursor_input": { "initial_value": [ - 180 + 182 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -3783,19 +3811,19 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "last_used_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3803,7 +3831,7 @@ export default { }, "api_keys_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -3812,13 +3840,13 @@ export default { "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 166 + 168 ], "_set": [ - 175 + 177 ], "where": [ - 164 + 166 ], "__typename": [ 80 @@ -3850,7 +3878,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -3858,34 +3886,34 @@ export default { }, "award_recipients": { "award": [ - 229 + 231 ], "award_id": [ - 5053 + 5109 ], "awarded_by": [ - 3964 + 3993 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season": [ - 2045 + 2047 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -3897,40 +3925,40 @@ export default { 80 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "season": [ - 4023 + 4079 ], "season_id": [ - 5053 + 5109 ], "source": [ - 514 + 516 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 4989 + 5045 ], "tournament_award": [ - 4555 + 4611 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team": [ - 4947 + 5003 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -3938,10 +3966,10 @@ export default { }, "award_recipients_aggregate": { "aggregate": [ - 192 + 194 ], "nodes": [ - 188 + 190 ], "__typename": [ 80 @@ -3949,7 +3977,7 @@ export default { }, "award_recipients_aggregate_bool_exp": { "count": [ - 191 + 193 ], "__typename": [ 80 @@ -3957,13 +3985,13 @@ export default { }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 209 + 211 ], "distinct": [ 5 ], "filter": [ - 197 + 199 ], "predicate": [ 41 @@ -3974,13 +4002,13 @@ export default { }, "award_recipients_aggregate_fields": { "avg": [ - 195 + 197 ], "count": [ 40, { "columns": [ - 209, + 211, "[award_recipients_select_column!]" ], "distinct": [ @@ -3989,31 +4017,31 @@ export default { } ], "max": [ - 201 + 203 ], "min": [ - 203 + 205 ], "stddev": [ - 211 + 213 ], "stddev_pop": [ - 213 + 215 ], "stddev_samp": [ - 215 + 217 ], "sum": [ - 219 + 221 ], "var_pop": [ - 223 + 225 ], "var_samp": [ - 225 + 227 ], "variance": [ - 227 + 229 ], "__typename": [ 80 @@ -4021,37 +4049,37 @@ export default { }, "award_recipients_aggregate_order_by": { "avg": [ - 196 + 198 ], "count": [ - 3006 + 3035 ], "max": [ - 202 + 204 ], "min": [ - 204 + 206 ], "stddev": [ - 212 + 214 ], "stddev_pop": [ - 214 + 216 ], "stddev_samp": [ - 216 + 218 ], "sum": [ - 220 + 222 ], "var_pop": [ - 224 + 226 ], "var_samp": [ - 226 + 228 ], "variance": [ - 228 + 230 ], "__typename": [ 80 @@ -4059,10 +4087,10 @@ export default { }, "award_recipients_arr_rel_insert_input": { "data": [ - 200 + 202 ], "on_conflict": [ - 206 + 208 ], "__typename": [ 80 @@ -4084,13 +4112,13 @@ export default { }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4098,43 +4126,43 @@ export default { }, "award_recipients_bool_exp": { "_and": [ - 197 + 199 ], "_not": [ - 197 + 199 ], "_or": [ - 197 + 199 ], "award": [ - 233 + 235 ], "award_id": [ - 5055 + 5111 ], "awarded_by": [ - 3968 + 3997 ], "awarded_by_steam_id": [ - 259 + 261 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "id": [ - 5055 + 5111 ], "league_season": [ - 2050 + 2052 ], "league_season_id": [ - 5055 + 5111 ], "note": [ 82 @@ -4146,40 +4174,40 @@ export default { 82 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "season": [ - 4027 + 4083 ], "season_id": [ - 5055 + 5111 ], "source": [ - 515 + 517 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "tournament": [ - 5010 + 5066 ], "tournament_award": [ - 4564 + 4620 ], "tournament_id": [ - 5055 + 5111 ], "tournament_team": [ - 4956 + 5012 ], "tournament_team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -4188,13 +4216,13 @@ export default { "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 257 + 259 ], "placement": [ 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -4202,34 +4230,34 @@ export default { }, "award_recipients_insert_input": { "award": [ - 240 + 242 ], "award_id": [ - 5053 + 5109 ], "awarded_by": [ - 3975 + 4004 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season": [ - 2060 + 2062 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -4238,40 +4266,40 @@ export default { 40 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "season": [ - 4034 + 4090 ], "season_id": [ - 5053 + 5109 ], "source": [ - 514 + 516 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 5019 + 5075 ], "tournament_award": [ - 4573 + 4629 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team": [ - 4965 + 5021 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4279,22 +4307,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 5053 + 5109 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -4306,19 +4334,19 @@ export default { 80 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4326,46 +4354,46 @@ export default { }, "award_recipients_max_order_by": { "award_id": [ - 3006 + 3035 ], "awarded_by_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "note": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "placement_tier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4373,22 +4401,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 5053 + 5109 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -4400,19 +4428,19 @@ export default { 80 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4420,46 +4448,46 @@ export default { }, "award_recipients_min_order_by": { "award_id": [ - 3006 + 3035 ], "awarded_by_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "note": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "placement_tier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4470,7 +4498,7 @@ export default { 40 ], "returning": [ - 188 + 190 ], "__typename": [ 80 @@ -4478,13 +4506,13 @@ export default { }, "award_recipients_on_conflict": { "constraint": [ - 198 + 200 ], "update_columns": [ - 221 + 223 ], "where": [ - 197 + 199 ], "__typename": [ 80 @@ -4492,79 +4520,79 @@ export default { }, "award_recipients_order_by": { "award": [ - 242 + 244 ], "award_id": [ - 3006 + 3035 ], "awarded_by": [ - 3977 + 4006 ], "awarded_by_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season": [ - 2062 + 2064 ], "league_season_id": [ - 3006 + 3035 ], "note": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "placement_tier": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "season": [ - 4036 + 4092 ], "season_id": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_award": [ - 4575 + 4631 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team": [ - 4967 + 5023 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4572,7 +4600,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4581,22 +4609,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5053 + 5109 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -4605,22 +4633,22 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "source": [ - 514 + 516 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4642,13 +4670,13 @@ export default { }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4670,13 +4698,13 @@ export default { }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4698,13 +4726,13 @@ export default { }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4712,10 +4740,10 @@ export default { }, "award_recipients_stream_cursor_input": { "initial_value": [ - 218 + 220 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -4723,22 +4751,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5053 + 5109 ], "awarded_by_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -4750,22 +4778,22 @@ export default { 80 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "source": [ - 514 + 516 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -4773,13 +4801,13 @@ export default { }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 257 + 259 ], "placement": [ 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -4787,13 +4815,13 @@ export default { }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4802,13 +4830,13 @@ export default { "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 199 + 201 ], "_set": [ - 210 + 212 ], "where": [ - 197 + 199 ], "__typename": [ 80 @@ -4830,13 +4858,13 @@ export default { }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4858,13 +4886,13 @@ export default { }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4886,13 +4914,13 @@ export default { }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -4903,43 +4931,43 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by": [ - 3964 + 3993 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season": [ - 2045 + 2047 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "recipients": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -4949,19 +4977,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "recipients_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -4971,19 +4999,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "season": [ - 4023 + 4079 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -4992,16 +5020,16 @@ export default { 80 ], "tier": [ - 534 + 536 ], "tournament": [ - 4989 + 5045 ], "tournament_configs": [ - 4555, + 4611, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -5011,19 +5039,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_configs_aggregate": [ - 4556, + 4612, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -5033,19 +5061,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5053,10 +5081,10 @@ export default { }, "awards_aggregate": { "aggregate": [ - 231 + 233 ], "nodes": [ - 229 + 231 ], "__typename": [ 80 @@ -5064,13 +5092,13 @@ export default { }, "awards_aggregate_fields": { "avg": [ - 232 + 234 ], "count": [ 40, { "columns": [ - 244, + 246, "[awards_select_column!]" ], "distinct": [ @@ -5079,31 +5107,31 @@ export default { } ], "max": [ - 237 + 239 ], "min": [ - 238 + 240 ], "stddev": [ - 246 + 248 ], "stddev_pop": [ - 247 + 249 ], "stddev_samp": [ - 248 + 250 ], "sum": [ - 251 + 253 ], "var_pop": [ - 254 + 256 ], "var_samp": [ - 255 + 257 ], "variance": [ - 256 + 258 ], "__typename": [ 80 @@ -5122,61 +5150,61 @@ export default { }, "awards_bool_exp": { "_and": [ - 233 + 235 ], "_not": [ - 233 + 235 ], "_or": [ - 233 + 235 ], "allow_multiple": [ 6 ], "created_at": [ - 4554 + 4610 ], "created_by": [ - 3968 + 3997 ], "created_by_steam_id": [ - 259 + 261 ], "description": [ 82 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "id": [ - 5055 + 5111 ], "image_url": [ 82 ], "league_season": [ - 2050 + 2052 ], "league_season_id": [ - 5055 + 5111 ], "name": [ 82 ], "recipients": [ - 197 + 199 ], "recipients_aggregate": [ - 190 + 192 ], "season": [ - 4027 + 4083 ], "season_id": [ - 5055 + 5111 ], "silhouette": [ 41 @@ -5185,22 +5213,22 @@ export default { 82 ], "tier": [ - 535 + 537 ], "tournament": [ - 5010 + 5066 ], "tournament_configs": [ - 4564 + 4620 ], "tournament_configs_aggregate": [ - 4557 + 4613 ], "tournament_id": [ - 5055 + 5111 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -5209,7 +5237,7 @@ export default { "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 257 + 259 ], "silhouette": [ 40 @@ -5223,46 +5251,46 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by": [ - 3975 + 4004 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season": [ - 2060 + 2062 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "recipients": [ - 194 + 196 ], "season": [ - 4034 + 4090 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -5271,19 +5299,19 @@ export default { 80 ], "tier": [ - 534 + 536 ], "tournament": [ - 5019 + 5075 ], "tournament_configs": [ - 4561 + 4617 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5291,31 +5319,31 @@ export default { }, "awards_max_fields": { "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -5324,10 +5352,10 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5335,31 +5363,31 @@ export default { }, "awards_min_fields": { "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -5368,10 +5396,10 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5382,7 +5410,7 @@ export default { 40 ], "returning": [ - 229 + 231 ], "__typename": [ 80 @@ -5390,10 +5418,10 @@ export default { }, "awards_obj_rel_insert_input": { "data": [ - 236 + 238 ], "on_conflict": [ - 241 + 243 ], "__typename": [ 80 @@ -5401,13 +5429,13 @@ export default { }, "awards_on_conflict": { "constraint": [ - 234 + 236 ], "update_columns": [ - 252 + 254 ], "where": [ - 233 + 235 ], "__typename": [ 80 @@ -5415,70 +5443,70 @@ export default { }, "awards_order_by": { "allow_multiple": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "created_by": [ - 3977 + 4006 ], "created_by_steam_id": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "image_url": [ - 3006 + 3035 ], "league_season": [ - 2062 + 2064 ], "league_season_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "recipients_aggregate": [ - 193 + 195 ], "season": [ - 4036 + 4092 ], "season_id": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "system_key": [ - 3006 + 3035 ], "tier": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_configs_aggregate": [ - 4560 + 4616 ], "tournament_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -5486,7 +5514,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -5498,31 +5526,31 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -5531,13 +5559,13 @@ export default { 80 ], "tier": [ - 534 + 536 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5578,10 +5606,10 @@ export default { }, "awards_stream_cursor_input": { "initial_value": [ - 250 + 252 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -5592,31 +5620,31 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "description": [ 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80 ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -5625,13 +5653,13 @@ export default { 80 ], "tier": [ - 534 + 536 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -5639,7 +5667,7 @@ export default { }, "awards_sum_fields": { "created_by_steam_id": [ - 257 + 259 ], "silhouette": [ 40 @@ -5651,13 +5679,13 @@ export default { "awards_update_column": {}, "awards_updates": { "_inc": [ - 235 + 237 ], "_set": [ - 245 + 247 ], "where": [ - 233 + 235 ], "__typename": [ 80 @@ -5699,37 +5727,37 @@ export default { "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 257 + 259 ], "_contains": [ - 257 + 259 ], "_eq": [ - 257 + 259 ], "_gt": [ - 257 + 259 ], "_gte": [ - 257 + 259 ], "_in": [ - 257 + 259 ], "_is_null": [ 5 ], "_lt": [ - 257 + 259 ], "_lte": [ - 257 + 259 ], "_neq": [ - 257 + 259 ], "_nin": [ - 257 + 259 ], "__typename": [ 80 @@ -5737,31 +5765,31 @@ export default { }, "bigint_comparison_exp": { "_eq": [ - 257 + 259 ], "_gt": [ - 257 + 259 ], "_gte": [ - 257 + 259 ], "_in": [ - 257 + 259 ], "_is_null": [ 5 ], "_lt": [ - 257 + 259 ], "_lte": [ - 257 + 259 ], "_neq": [ - 257 + 259 ], "_nin": [ - 257 + 259 ], "__typename": [ 80 @@ -5770,31 +5798,31 @@ export default { "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 260 + 262 ], "_gt": [ - 260 + 262 ], "_gte": [ - 260 + 262 ], "_in": [ - 260 + 262 ], "_is_null": [ 5 ], "_lt": [ - 260 + 262 ], "_lte": [ - 260 + 262 ], "_neq": [ - 260 + 262 ], "_nin": [ - 260 + 262 ], "__typename": [ 80 @@ -5802,49 +5830,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2360 + 2362 ], "clip_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 ], "game_server_node": [ - 1718 + 1720 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map": [ - 2655 + 2657 ], "match_map_demo": [ - 2535 + 2537 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "paused": [ 5 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -5853,7 +5881,7 @@ export default { 40 ], "spec": [ - 1842, + 1844, { "path": [ 80 @@ -5864,7 +5892,7 @@ export default { 80 ], "status_history": [ - 1842, + 1844, { "path": [ 80 @@ -5872,10 +5900,10 @@ export default { } ], "user": [ - 3964 + 3993 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -5883,10 +5911,10 @@ export default { }, "clip_render_jobs_aggregate": { "aggregate": [ - 268 + 270 ], "nodes": [ - 262 + 264 ], "__typename": [ 80 @@ -5894,13 +5922,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 265 + 267 ], "bool_or": [ - 266 + 268 ], "count": [ - 267 + 269 ], "__typename": [ 80 @@ -5908,13 +5936,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 291 + 293 ], "distinct": [ 5 ], "filter": [ - 274 + 276 ], "predicate": [ 6 @@ -5925,13 +5953,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 292 + 294 ], "distinct": [ 5 ], "filter": [ - 274 + 276 ], "predicate": [ 6 @@ -5942,13 +5970,13 @@ export default { }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 290 + 292 ], "distinct": [ 5 ], "filter": [ - 274 + 276 ], "predicate": [ 41 @@ -5959,13 +5987,13 @@ export default { }, "clip_render_jobs_aggregate_fields": { "avg": [ - 272 + 274 ], "count": [ 40, { "columns": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -5974,31 +6002,31 @@ export default { } ], "max": [ - 281 + 283 ], "min": [ - 283 + 285 ], "stddev": [ - 294 + 296 ], "stddev_pop": [ - 296 + 298 ], "stddev_samp": [ - 298 + 300 ], "sum": [ - 302 + 304 ], "var_pop": [ - 306 + 308 ], "var_samp": [ - 308 + 310 ], "variance": [ - 310 + 312 ], "__typename": [ 80 @@ -6006,37 +6034,37 @@ export default { }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 273 + 275 ], "count": [ - 3006 + 3035 ], "max": [ - 282 + 284 ], "min": [ - 284 + 286 ], "stddev": [ - 295 + 297 ], "stddev_pop": [ - 297 + 299 ], "stddev_samp": [ - 299 + 301 ], "sum": [ - 303 + 305 ], "var_pop": [ - 307 + 309 ], "var_samp": [ - 309 + 311 ], "variance": [ - 311 + 313 ], "__typename": [ 80 @@ -6044,10 +6072,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1842 + 1844 ], "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -6055,10 +6083,10 @@ export default { }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 280 + 282 ], "on_conflict": [ - 286 + 288 ], "__typename": [ 80 @@ -6080,13 +6108,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6094,58 +6122,58 @@ export default { }, "clip_render_jobs_bool_exp": { "_and": [ - 274 + 276 ], "_not": [ - 274 + 276 ], "_or": [ - 274 + 276 ], "clip": [ - 2369 + 2371 ], "clip_id": [ - 5055 + 5111 ], "created_at": [ - 4554 + 4610 ], "error_message": [ 82 ], "game_server_node": [ - 1730 + 1732 ], "game_server_node_id": [ 82 ], "id": [ - 5055 + 5111 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4554 + 4610 ], "match_map": [ - 2664 + 2666 ], "match_map_demo": [ - 2547 + 2549 ], "match_map_demo_id": [ - 5055 + 5111 ], "match_map_id": [ - 5055 + 5111 ], "paused": [ 6 ], "progress": [ - 3005 + 3034 ], "session_token": [ 82 @@ -6154,19 +6182,19 @@ export default { 41 ], "spec": [ - 1844 + 1846 ], "status": [ 82 ], "status_history": [ - 1844 + 1846 ], "user": [ - 3968 + 3997 ], "user_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -6208,13 +6236,13 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 3004 + 3033 ], "sort_index": [ 40 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6222,49 +6250,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2378 + 2380 ], "clip_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 ], "game_server_node": [ - 1742 + 1744 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map": [ - 2673 + 2675 ], "match_map_demo": [ - 2559 + 2561 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "paused": [ 5 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -6273,19 +6301,19 @@ export default { 40 ], "spec": [ - 1842 + 1844 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "user": [ - 3975 + 4004 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6293,10 +6321,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -6305,22 +6333,22 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -6332,7 +6360,7 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6340,46 +6368,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "progress": [ - 3006 + 3035 ], "session_token": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6387,10 +6415,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -6399,22 +6427,22 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -6426,7 +6454,7 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6434,46 +6462,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "progress": [ - 3006 + 3035 ], "session_token": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6484,7 +6512,7 @@ export default { 40 ], "returning": [ - 262 + 264 ], "__typename": [ 80 @@ -6492,13 +6520,13 @@ export default { }, "clip_render_jobs_on_conflict": { "constraint": [ - 275 + 277 ], "update_columns": [ - 304 + 306 ], "where": [ - 274 + 276 ], "__typename": [ 80 @@ -6506,70 +6534,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2380 + 2382 ], "clip_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node": [ - 1744 + 1746 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_demo": [ - 2561 + 2563 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "paused": [ - 3006 + 3035 ], "progress": [ - 3006 + 3035 ], "session_token": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "spec": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "status_history": [ - 3006 + 3035 ], "user": [ - 3977 + 4006 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6577,7 +6605,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -6585,10 +6613,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1842 + 1844 ], "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -6599,10 +6627,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": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -6611,25 +6639,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "paused": [ 5 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -6638,16 +6666,16 @@ export default { 40 ], "spec": [ - 1842 + 1844 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6669,13 +6697,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6697,13 +6725,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6725,13 +6753,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6739,10 +6767,10 @@ export default { }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 301 + 303 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -6750,10 +6778,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -6762,25 +6790,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "paused": [ 5 ], "progress": [ - 3004 + 3033 ], "session_token": [ 80 @@ -6789,16 +6817,16 @@ export default { 40 ], "spec": [ - 1842 + 1844 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6806,13 +6834,13 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 3004 + 3033 ], "sort_index": [ 40 ], "user_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -6820,13 +6848,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6835,28 +6863,28 @@ export default { "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 270 + 272 ], "_delete_at_path": [ - 276 + 278 ], "_delete_elem": [ - 277 + 279 ], "_delete_key": [ - 278 + 280 ], "_inc": [ - 279 + 281 ], "_prepend": [ - 289 + 291 ], "_set": [ - 293 + 295 ], "where": [ - 274 + 276 ], "__typename": [ 80 @@ -6878,13 +6906,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6906,13 +6934,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6934,13 +6962,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 3006 + 3035 ], "sort_index": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -6948,7 +6976,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -6957,10 +6985,10 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4553 + 4609 ], "deployments": [ - 1842, + 1844, { "path": [ 80 @@ -6977,7 +7005,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_default": [ 5 @@ -7001,7 +7029,7 @@ export default { 80 ], "required_role": [ - 1090 + 1092 ], "slug": [ 80 @@ -7010,7 +7038,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7018,10 +7046,10 @@ export default { }, "custom_pages_aggregate": { "aggregate": [ - 316 + 318 ], "nodes": [ - 314 + 316 ], "__typename": [ 80 @@ -7029,13 +7057,13 @@ export default { }, "custom_pages_aggregate_fields": { "avg": [ - 318 + 320 ], "count": [ 40, { "columns": [ - 333, + 335, "[custom_pages_select_column!]" ], "distinct": [ @@ -7044,31 +7072,31 @@ export default { } ], "max": [ - 326 + 328 ], "min": [ - 327 + 329 ], "stddev": [ - 335 + 337 ], "stddev_pop": [ - 336 + 338 ], "stddev_samp": [ - 337 + 339 ], "sum": [ - 340 + 342 ], "var_pop": [ - 343 + 345 ], "var_samp": [ - 344 + 346 ], "variance": [ - 345 + 347 ], "__typename": [ 80 @@ -7076,7 +7104,7 @@ export default { }, "custom_pages_append_input": { "deployments": [ - 1842 + 1844 ], "__typename": [ 80 @@ -7092,19 +7120,19 @@ export default { }, "custom_pages_bool_exp": { "_and": [ - 319 + 321 ], "_not": [ - 319 + 321 ], "_or": [ - 319 + 321 ], "created_at": [ - 4554 + 4610 ], "deployments": [ - 1844 + 1846 ], "enabled": [ 6 @@ -7116,7 +7144,7 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "is_default": [ 6 @@ -7140,7 +7168,7 @@ export default { 82 ], "required_role": [ - 1091 + 1093 ], "slug": [ 82 @@ -7149,7 +7177,7 @@ export default { 82 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -7190,10 +7218,10 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4553 + 4609 ], "deployments": [ - 1842 + 1844 ], "enabled": [ 5 @@ -7205,7 +7233,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_default": [ 5 @@ -7229,7 +7257,7 @@ export default { 80 ], "required_role": [ - 1090 + 1092 ], "slug": [ 80 @@ -7238,7 +7266,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7246,7 +7274,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4553 + 4609 ], "exposed_module": [ 80 @@ -7255,7 +7283,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "manifest_url": [ 80 @@ -7282,7 +7310,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7290,7 +7318,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4553 + 4609 ], "exposed_module": [ 80 @@ -7299,7 +7327,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "manifest_url": [ 80 @@ -7326,7 +7354,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7337,7 +7365,7 @@ export default { 40 ], "returning": [ - 314 + 316 ], "__typename": [ 80 @@ -7345,13 +7373,13 @@ export default { }, "custom_pages_on_conflict": { "constraint": [ - 320 + 322 ], "update_columns": [ - 341 + 343 ], "where": [ - 319 + 321 ], "__typename": [ 80 @@ -7359,55 +7387,55 @@ export default { }, "custom_pages_order_by": { "created_at": [ - 3006 + 3035 ], "deployments": [ - 3006 + 3035 ], "enabled": [ - 3006 + 3035 ], "exposed_module": [ - 3006 + 3035 ], "icon": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_default": [ - 3006 + 3035 ], "manifest_url": [ - 3006 + 3035 ], "nav_group": [ - 3006 + 3035 ], "nav_order": [ - 3006 + 3035 ], "profile_tab_label": [ - 3006 + 3035 ], "remote_entry_url": [ - 3006 + 3035 ], "remote_scope": [ - 3006 + 3035 ], "required_role": [ - 3006 + 3035 ], "slug": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -7415,7 +7443,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -7423,7 +7451,7 @@ export default { }, "custom_pages_prepend_input": { "deployments": [ - 1842 + 1844 ], "__typename": [ 80 @@ -7432,10 +7460,10 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4553 + 4609 ], "deployments": [ - 1842 + 1844 ], "enabled": [ 5 @@ -7447,7 +7475,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_default": [ 5 @@ -7471,7 +7499,7 @@ export default { 80 ], "required_role": [ - 1090 + 1092 ], "slug": [ 80 @@ -7480,7 +7508,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7512,10 +7540,10 @@ export default { }, "custom_pages_stream_cursor_input": { "initial_value": [ - 339 + 341 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -7523,10 +7551,10 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "deployments": [ - 1842 + 1844 ], "enabled": [ 5 @@ -7538,7 +7566,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_default": [ 5 @@ -7562,7 +7590,7 @@ export default { 80 ], "required_role": [ - 1090 + 1092 ], "slug": [ 80 @@ -7571,7 +7599,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -7588,28 +7616,28 @@ export default { "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 317 + 319 ], "_delete_at_path": [ - 321 + 323 ], "_delete_elem": [ - 322 + 324 ], "_delete_key": [ - 323 + 325 ], "_inc": [ - 324 + 326 ], "_prepend": [ - 332 + 334 ], "_set": [ - 334 + 336 ], "where": [ - 319 + 321 ], "__typename": [ 80 @@ -7641,10 +7669,10 @@ export default { }, "db_backups": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7658,10 +7686,10 @@ export default { }, "db_backups_aggregate": { "aggregate": [ - 348 + 350 ], "nodes": [ - 346 + 348 ], "__typename": [ 80 @@ -7669,13 +7697,13 @@ export default { }, "db_backups_aggregate_fields": { "avg": [ - 349 + 351 ], "count": [ 40, { "columns": [ - 360, + 362, "[db_backups_select_column!]" ], "distinct": [ @@ -7684,31 +7712,31 @@ export default { } ], "max": [ - 354 + 356 ], "min": [ - 355 + 357 ], "stddev": [ - 362 + 364 ], "stddev_pop": [ - 363 + 365 ], "stddev_samp": [ - 364 + 366 ], "sum": [ - 367 + 369 ], "var_pop": [ - 370 + 372 ], "var_samp": [ - 371 + 373 ], "variance": [ - 372 + 374 ], "__typename": [ 80 @@ -7724,19 +7752,19 @@ export default { }, "db_backups_bool_exp": { "_and": [ - 350 + 352 ], "_not": [ - 350 + 352 ], "_or": [ - 350 + 352 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "name": [ 82 @@ -7759,10 +7787,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7776,10 +7804,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7793,10 +7821,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7813,7 +7841,7 @@ export default { 40 ], "returning": [ - 346 + 348 ], "__typename": [ 80 @@ -7821,13 +7849,13 @@ export default { }, "db_backups_on_conflict": { "constraint": [ - 351 + 353 ], "update_columns": [ - 368 + 370 ], "where": [ - 350 + 352 ], "__typename": [ 80 @@ -7835,16 +7863,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "__typename": [ 80 @@ -7852,7 +7880,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -7861,10 +7889,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7902,10 +7930,10 @@ export default { }, "db_backups_stream_cursor_input": { "initial_value": [ - 366 + 368 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -7913,10 +7941,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 @@ -7939,13 +7967,13 @@ export default { "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 352 + 354 ], "_set": [ - 361 + 363 ], "where": [ - 350 + 352 ], "__typename": [ 80 @@ -7980,22 +8008,22 @@ export default { 5 ], "captain": [ - 3964 + 3993 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game": [ - 463 + 465 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "is_organizer": [ 5 @@ -8004,10 +8032,10 @@ export default { 40 ], "picked": [ - 3964 + 3993 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8015,10 +8043,10 @@ export default { }, "draft_game_picks_aggregate": { "aggregate": [ - 379 + 381 ], "nodes": [ - 373 + 375 ], "__typename": [ 80 @@ -8026,13 +8054,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 376 + 378 ], "bool_or": [ - 377 + 379 ], "count": [ - 378 + 380 ], "__typename": [ 80 @@ -8040,13 +8068,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 397 + 399 ], "distinct": [ 5 ], "filter": [ - 384 + 386 ], "predicate": [ 6 @@ -8057,13 +8085,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 398 + 400 ], "distinct": [ 5 ], "filter": [ - 384 + 386 ], "predicate": [ 6 @@ -8074,13 +8102,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 396 + 398 ], "distinct": [ 5 ], "filter": [ - 384 + 386 ], "predicate": [ 41 @@ -8091,13 +8119,13 @@ export default { }, "draft_game_picks_aggregate_fields": { "avg": [ - 382 + 384 ], "count": [ 40, { "columns": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -8106,31 +8134,31 @@ export default { } ], "max": [ - 388 + 390 ], "min": [ - 390 + 392 ], "stddev": [ - 400 + 402 ], "stddev_pop": [ - 402 + 404 ], "stddev_samp": [ - 404 + 406 ], "sum": [ - 408 + 410 ], "var_pop": [ - 412 + 414 ], "var_samp": [ - 414 + 416 ], "variance": [ - 416 + 418 ], "__typename": [ 80 @@ -8138,37 +8166,37 @@ export default { }, "draft_game_picks_aggregate_order_by": { "avg": [ - 383 + 385 ], "count": [ - 3006 + 3035 ], "max": [ - 389 + 391 ], "min": [ - 391 + 393 ], "stddev": [ - 401 + 403 ], "stddev_pop": [ - 403 + 405 ], "stddev_samp": [ - 405 + 407 ], "sum": [ - 409 + 411 ], "var_pop": [ - 413 + 415 ], "var_samp": [ - 415 + 417 ], "variance": [ - 417 + 419 ], "__typename": [ 80 @@ -8176,10 +8204,10 @@ export default { }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 387 + 389 ], "on_conflict": [ - 393 + 395 ], "__typename": [ 80 @@ -8201,13 +8229,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8215,34 +8243,34 @@ export default { }, "draft_game_picks_bool_exp": { "_and": [ - 384 + 386 ], "_not": [ - 384 + 386 ], "_or": [ - 384 + 386 ], "auto_picked": [ 6 ], "captain": [ - 3968 + 3997 ], "captain_steam_id": [ - 259 + 261 ], "created_at": [ - 4554 + 4610 ], "draft_game": [ - 474 + 476 ], "draft_game_id": [ - 5055 + 5111 ], "id": [ - 5055 + 5111 ], "is_organizer": [ 6 @@ -8251,10 +8279,10 @@ export default { 41 ], "picked": [ - 3968 + 3997 ], "picked_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -8263,13 +8291,13 @@ export default { "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 257 + 259 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8280,31 +8308,31 @@ export default { 5 ], "captain": [ - 3975 + 4004 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game": [ - 483 + 485 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "lineup": [ 40 ], "picked": [ - 3975 + 4004 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8312,22 +8340,22 @@ export default { }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8335,22 +8363,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "draft_game_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8358,22 +8386,22 @@ export default { }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8381,22 +8409,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "draft_game_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8407,7 +8435,7 @@ export default { 40 ], "returning": [ - 373 + 375 ], "__typename": [ 80 @@ -8415,13 +8443,13 @@ export default { }, "draft_game_picks_on_conflict": { "constraint": [ - 385 + 387 ], "update_columns": [ - 410 + 412 ], "where": [ - 384 + 386 ], "__typename": [ 80 @@ -8429,37 +8457,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 3006 + 3035 ], "captain": [ - 3977 + 4006 ], "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "draft_game": [ - 485 + 487 ], "draft_game_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked": [ - 3977 + 4006 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8467,7 +8495,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -8481,22 +8509,22 @@ export default { 5 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8518,13 +8546,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8546,13 +8574,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8574,13 +8602,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8588,10 +8616,10 @@ export default { }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 407 + 409 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -8602,22 +8630,22 @@ export default { 5 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "draft_game_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8625,13 +8653,13 @@ export default { }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 257 + 259 ], "lineup": [ 40 ], "picked_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8639,13 +8667,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8654,13 +8682,13 @@ export default { "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 386 + 388 ], "_set": [ - 399 + 401 ], "where": [ - 384 + 386 ], "__typename": [ 80 @@ -8682,13 +8710,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8710,13 +8738,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8738,13 +8766,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "picked_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8752,13 +8780,13 @@ export default { }, "draft_game_players": { "draft_game": [ - 463 + 465 ], "draft_game_id": [ - 5053 + 5109 ], "e_draft_game_player_status": [ - 632 + 634 ], "elo_snapshot": [ 40 @@ -8770,7 +8798,7 @@ export default { 5 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -8779,13 +8807,13 @@ export default { 40 ], "player": [ - 3964 + 3993 ], "status": [ - 637 + 639 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -8793,10 +8821,10 @@ export default { }, "draft_game_players_aggregate": { "aggregate": [ - 424 + 426 ], "nodes": [ - 418 + 420 ], "__typename": [ 80 @@ -8804,13 +8832,13 @@ export default { }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 421 + 423 ], "bool_or": [ - 422 + 424 ], "count": [ - 423 + 425 ], "__typename": [ 80 @@ -8818,13 +8846,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 442 + 444 ], "distinct": [ 5 ], "filter": [ - 429 + 431 ], "predicate": [ 6 @@ -8835,13 +8863,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 443 + 445 ], "distinct": [ 5 ], "filter": [ - 429 + 431 ], "predicate": [ 6 @@ -8852,13 +8880,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 441 + 443 ], "distinct": [ 5 ], "filter": [ - 429 + 431 ], "predicate": [ 41 @@ -8869,13 +8897,13 @@ export default { }, "draft_game_players_aggregate_fields": { "avg": [ - 427 + 429 ], "count": [ 40, { "columns": [ - 441, + 443, "[draft_game_players_select_column!]" ], "distinct": [ @@ -8884,31 +8912,31 @@ export default { } ], "max": [ - 433 + 435 ], "min": [ - 435 + 437 ], "stddev": [ - 445 + 447 ], "stddev_pop": [ - 447 + 449 ], "stddev_samp": [ - 449 + 451 ], "sum": [ - 453 + 455 ], "var_pop": [ - 457 + 459 ], "var_samp": [ - 459 + 461 ], "variance": [ - 461 + 463 ], "__typename": [ 80 @@ -8916,37 +8944,37 @@ export default { }, "draft_game_players_aggregate_order_by": { "avg": [ - 428 + 430 ], "count": [ - 3006 + 3035 ], "max": [ - 434 + 436 ], "min": [ - 436 + 438 ], "stddev": [ - 446 + 448 ], "stddev_pop": [ - 448 + 450 ], "stddev_samp": [ - 450 + 452 ], "sum": [ - 454 + 456 ], "var_pop": [ - 458 + 460 ], "var_samp": [ - 460 + 462 ], "variance": [ - 462 + 464 ], "__typename": [ 80 @@ -8954,10 +8982,10 @@ export default { }, "draft_game_players_arr_rel_insert_input": { "data": [ - 432 + 434 ], "on_conflict": [ - 438 + 440 ], "__typename": [ 80 @@ -8982,16 +9010,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -8999,22 +9027,22 @@ export default { }, "draft_game_players_bool_exp": { "_and": [ - 429 + 431 ], "_not": [ - 429 + 431 ], "_or": [ - 429 + 431 ], "draft_game": [ - 474 + 476 ], "draft_game_id": [ - 5055 + 5111 ], "e_draft_game_player_status": [ - 635 + 637 ], "elo_snapshot": [ 41 @@ -9026,7 +9054,7 @@ export default { 6 ], "joined_at": [ - 4554 + 4610 ], "lineup": [ 41 @@ -9035,13 +9063,13 @@ export default { 41 ], "player": [ - 3968 + 3997 ], "status": [ - 638 + 640 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -9059,7 +9087,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9067,13 +9095,13 @@ export default { }, "draft_game_players_insert_input": { "draft_game": [ - 483 + 485 ], "draft_game_id": [ - 5053 + 5109 ], "e_draft_game_player_status": [ - 643 + 645 ], "elo_snapshot": [ 40 @@ -9082,7 +9110,7 @@ export default { 5 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -9091,13 +9119,13 @@ export default { 40 ], "player": [ - 3975 + 4004 ], "status": [ - 637 + 639 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9105,13 +9133,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 5053 + 5109 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -9120,7 +9148,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9128,22 +9156,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3006 + 3035 ], "elo_snapshot": [ - 3006 + 3035 ], "joined_at": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9151,13 +9179,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 5053 + 5109 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -9166,7 +9194,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9174,22 +9202,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3006 + 3035 ], "elo_snapshot": [ - 3006 + 3035 ], "joined_at": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9200,7 +9228,7 @@ export default { 40 ], "returning": [ - 418 + 420 ], "__typename": [ 80 @@ -9208,13 +9236,13 @@ export default { }, "draft_game_players_on_conflict": { "constraint": [ - 430 + 432 ], "update_columns": [ - 455 + 457 ], "where": [ - 429 + 431 ], "__typename": [ 80 @@ -9222,40 +9250,40 @@ export default { }, "draft_game_players_order_by": { "draft_game": [ - 485 + 487 ], "draft_game_id": [ - 3006 + 3035 ], "e_draft_game_player_status": [ - 645 + 647 ], "elo_snapshot": [ - 3006 + 3035 ], "is_captain": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "joined_at": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "status": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9263,10 +9291,10 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9277,7 +9305,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": [ - 5053 + 5109 ], "elo_snapshot": [ 40 @@ -9286,7 +9314,7 @@ export default { 5 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -9295,10 +9323,10 @@ export default { 40 ], "status": [ - 637 + 639 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9323,16 +9351,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9357,16 +9385,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9391,16 +9419,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9408,10 +9436,10 @@ export default { }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 452 + 454 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -9419,7 +9447,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5053 + 5109 ], "elo_snapshot": [ 40 @@ -9428,7 +9456,7 @@ export default { 5 ], "joined_at": [ - 4553 + 4609 ], "lineup": [ 40 @@ -9437,10 +9465,10 @@ export default { 40 ], "status": [ - 637 + 639 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9457,7 +9485,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -9465,16 +9493,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9483,13 +9511,13 @@ export default { "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 431 + 433 ], "_set": [ - 444 + 446 ], "where": [ - 429 + 431 ], "__typename": [ 80 @@ -9514,16 +9542,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9548,16 +9576,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9582,16 +9610,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3006 + 3035 ], "lineup": [ - 3006 + 3035 ], "pick_order": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -9599,73 +9627,73 @@ export default { }, "draft_games": { "access": [ - 865 + 867 ], "capacity": [ 40 ], "captain_selection": [ - 574 + 576 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 595 + 597 ], "e_draft_game_captain_selection": [ - 569 + 571 ], "e_draft_game_draft_order": [ - 590 + 592 ], "e_draft_game_mode": [ - 611 + 613 ], "e_draft_game_status": [ - 653 + 655 ], "e_lobby_access": [ - 860 + 862 ], "expires_at": [ - 4553 + 4609 ], "host": [ - 3964 + 3993 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "inner_squad": [ 5 ], "invite_code": [ - 5053 + 5109 ], "is_organizer": [ 5 ], "map_pool": [ - 2285 + 2287 ], "map_pool_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -9674,13 +9702,13 @@ export default { 40 ], "mode": [ - 616 + 618 ], "options": [ - 2697 + 2699 ], "pattern": [ - 1842, + 1844, { "path": [ 80 @@ -9688,13 +9716,13 @@ export default { } ], "pick_deadline": [ - 4553 + 4609 ], "picks": [ - 373, + 375, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9704,19 +9732,19 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "picks_aggregate": [ - 374, + 376, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -9726,19 +9754,19 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "players": [ - 418, + 420, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -9748,19 +9776,19 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "players_aggregate": [ - 419, + 421, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -9770,11 +9798,11 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], @@ -9785,28 +9813,28 @@ export default { 5 ], "scheduled_at": [ - 4553 + 4609 ], "status": [ - 658 + 660 ], "team_1": [ - 4506 + 4562 ], "team_1_id": [ - 5053 + 5109 ], "team_2": [ - 4506 + 4562 ], "team_2_id": [ - 5053 + 5109 ], "type": [ - 1029 + 1031 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -9814,10 +9842,10 @@ export default { }, "draft_games_aggregate": { "aggregate": [ - 469 + 471 ], "nodes": [ - 463 + 465 ], "__typename": [ 80 @@ -9825,13 +9853,13 @@ export default { }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 466 + 468 ], "bool_or": [ - 467 + 469 ], "count": [ - 468 + 470 ], "__typename": [ 80 @@ -9839,13 +9867,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 488 + 490 ], "distinct": [ 5 ], "filter": [ - 474 + 476 ], "predicate": [ 6 @@ -9856,13 +9884,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 489 + 491 ], "distinct": [ 5 ], "filter": [ - 474 + 476 ], "predicate": [ 6 @@ -9873,13 +9901,13 @@ export default { }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 487 + 489 ], "distinct": [ 5 ], "filter": [ - 474 + 476 ], "predicate": [ 41 @@ -9890,13 +9918,13 @@ export default { }, "draft_games_aggregate_fields": { "avg": [ - 472 + 474 ], "count": [ 40, { "columns": [ - 487, + 489, "[draft_games_select_column!]" ], "distinct": [ @@ -9905,31 +9933,31 @@ export default { } ], "max": [ - 478 + 480 ], "min": [ - 480 + 482 ], "stddev": [ - 491 + 493 ], "stddev_pop": [ - 493 + 495 ], "stddev_samp": [ - 495 + 497 ], "sum": [ - 499 + 501 ], "var_pop": [ - 503 + 505 ], "var_samp": [ - 505 + 507 ], "variance": [ - 507 + 509 ], "__typename": [ 80 @@ -9937,37 +9965,37 @@ export default { }, "draft_games_aggregate_order_by": { "avg": [ - 473 + 475 ], "count": [ - 3006 + 3035 ], "max": [ - 479 + 481 ], "min": [ - 481 + 483 ], "stddev": [ - 492 + 494 ], "stddev_pop": [ - 494 + 496 ], "stddev_samp": [ - 496 + 498 ], "sum": [ - 500 + 502 ], "var_pop": [ - 504 + 506 ], "var_samp": [ - 506 + 508 ], "variance": [ - 508 + 510 ], "__typename": [ 80 @@ -9975,10 +10003,10 @@ export default { }, "draft_games_arr_rel_insert_input": { "data": [ - 477 + 479 ], "on_conflict": [ - 484 + 486 ], "__typename": [ 80 @@ -10006,19 +10034,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10026,82 +10054,82 @@ export default { }, "draft_games_bool_exp": { "_and": [ - 474 + 476 ], "_not": [ - 474 + 476 ], "_or": [ - 474 + 476 ], "access": [ - 866 + 868 ], "capacity": [ 41 ], "captain_selection": [ - 575 + 577 ], "created_at": [ - 4554 + 4610 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 596 + 598 ], "e_draft_game_captain_selection": [ - 572 + 574 ], "e_draft_game_draft_order": [ - 593 + 595 ], "e_draft_game_mode": [ - 614 + 616 ], "e_draft_game_status": [ - 656 + 658 ], "e_lobby_access": [ - 863 + 865 ], "expires_at": [ - 4554 + 4610 ], "host": [ - 3968 + 3997 ], "host_steam_id": [ - 259 + 261 ], "id": [ - 5055 + 5111 ], "inner_squad": [ 6 ], "invite_code": [ - 5055 + 5111 ], "is_organizer": [ 6 ], "map_pool": [ - 2288 + 2290 ], "map_pool_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_options_id": [ - 5055 + 5111 ], "max_elo": [ 41 @@ -10110,28 +10138,28 @@ export default { 41 ], "mode": [ - 617 + 619 ], "options": [ - 2701 + 2703 ], "pattern": [ - 1844 + 1846 ], "pick_deadline": [ - 4554 + 4610 ], "picks": [ - 384 + 386 ], "picks_aggregate": [ - 375 + 377 ], "players": [ - 429 + 431 ], "players_aggregate": [ - 420 + 422 ], "regions": [ 81 @@ -10140,28 +10168,28 @@ export default { 6 ], "scheduled_at": [ - 4554 + 4610 ], "status": [ - 659 + 661 ], "team_1": [ - 4517 + 4573 ], "team_1_id": [ - 5055 + 5111 ], "team_2": [ - 4517 + 4573 ], "team_2_id": [ - 5055 + 5111 ], "type": [ - 1030 + 1032 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -10176,7 +10204,7 @@ export default { 40 ], "host_steam_id": [ - 257 + 259 ], "max_elo": [ 40 @@ -10190,70 +10218,70 @@ export default { }, "draft_games_insert_input": { "access": [ - 865 + 867 ], "capacity": [ 40 ], "captain_selection": [ - 574 + 576 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 595 + 597 ], "e_draft_game_captain_selection": [ - 580 + 582 ], "e_draft_game_draft_order": [ - 601 + 603 ], "e_draft_game_mode": [ - 622 + 624 ], "e_draft_game_status": [ - 664 + 666 ], "e_lobby_access": [ - 871 + 873 ], "expires_at": [ - 4553 + 4609 ], "host": [ - 3975 + 4004 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "inner_squad": [ 5 ], "invite_code": [ - 5053 + 5109 ], "map_pool": [ - 2294 + 2296 ], "map_pool_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -10262,19 +10290,19 @@ export default { 40 ], "mode": [ - 616 + 618 ], "options": [ - 2708 + 2710 ], "pick_deadline": [ - 4553 + 4609 ], "picks": [ - 381 + 383 ], "players": [ - 426 + 428 ], "regions": [ 80 @@ -10283,28 +10311,28 @@ export default { 5 ], "scheduled_at": [ - 4553 + 4609 ], "status": [ - 658 + 660 ], "team_1": [ - 4526 + 4582 ], "team_1_id": [ - 5053 + 5109 ], "team_2": [ - 4526 + 4582 ], "team_2_id": [ - 5053 + 5109 ], "type": [ - 1029 + 1031 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -10315,31 +10343,31 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4553 + 4609 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "invite_code": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -10348,22 +10376,22 @@ export default { 40 ], "pick_deadline": [ - 4553 + 4609 ], "regions": [ 80 ], "scheduled_at": [ - 4553 + 4609 ], "team_1_id": [ - 5053 + 5109 ], "team_2_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -10371,58 +10399,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invite_code": [ - 3006 + 3035 ], "map_pool_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "pick_deadline": [ - 3006 + 3035 ], "regions": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "team_1_id": [ - 3006 + 3035 ], "team_2_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10433,31 +10461,31 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4553 + 4609 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "invite_code": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -10466,22 +10494,22 @@ export default { 40 ], "pick_deadline": [ - 4553 + 4609 ], "regions": [ 80 ], "scheduled_at": [ - 4553 + 4609 ], "team_1_id": [ - 5053 + 5109 ], "team_2_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -10489,58 +10517,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invite_code": [ - 3006 + 3035 ], "map_pool_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "pick_deadline": [ - 3006 + 3035 ], "regions": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "team_1_id": [ - 3006 + 3035 ], "team_2_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10551,7 +10579,7 @@ export default { 40 ], "returning": [ - 463 + 465 ], "__typename": [ 80 @@ -10559,10 +10587,10 @@ export default { }, "draft_games_obj_rel_insert_input": { "data": [ - 477 + 479 ], "on_conflict": [ - 484 + 486 ], "__typename": [ 80 @@ -10570,13 +10598,13 @@ export default { }, "draft_games_on_conflict": { "constraint": [ - 475 + 477 ], "update_columns": [ - 501 + 503 ], "where": [ - 474 + 476 ], "__typename": [ 80 @@ -10584,127 +10612,127 @@ export default { }, "draft_games_order_by": { "access": [ - 3006 + 3035 ], "capacity": [ - 3006 + 3035 ], "captain_selection": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "draft_order": [ - 3006 + 3035 ], "e_draft_game_captain_selection": [ - 582 + 584 ], "e_draft_game_draft_order": [ - 603 + 605 ], "e_draft_game_mode": [ - 624 + 626 ], "e_draft_game_status": [ - 666 + 668 ], "e_lobby_access": [ - 873 + 875 ], "expires_at": [ - 3006 + 3035 ], "host": [ - 3977 + 4006 ], "host_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "inner_squad": [ - 3006 + 3035 ], "invite_code": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "map_pool": [ - 2296 + 2298 ], "map_pool_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "mode": [ - 3006 + 3035 ], "options": [ - 2710 + 2712 ], "pattern": [ - 3006 + 3035 ], "pick_deadline": [ - 3006 + 3035 ], "picks_aggregate": [ - 380 + 382 ], "players_aggregate": [ - 425 + 427 ], "regions": [ - 3006 + 3035 ], "require_approval": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "team_1": [ - 4528 + 4584 ], "team_1_id": [ - 3006 + 3035 ], "team_2": [ - 4528 + 4584 ], "team_2_id": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10712,7 +10740,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -10723,46 +10751,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 865 + 867 ], "capacity": [ 40 ], "captain_selection": [ - 574 + 576 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 595 + 597 ], "expires_at": [ - 4553 + 4609 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "inner_squad": [ 5 ], "invite_code": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -10771,10 +10799,10 @@ export default { 40 ], "mode": [ - 616 + 618 ], "pick_deadline": [ - 4553 + 4609 ], "regions": [ 80 @@ -10783,22 +10811,22 @@ export default { 5 ], "scheduled_at": [ - 4553 + 4609 ], "status": [ - 658 + 660 ], "team_1_id": [ - 5053 + 5109 ], "team_2_id": [ - 5053 + 5109 ], "type": [ - 1029 + 1031 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -10826,19 +10854,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10866,19 +10894,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10906,19 +10934,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -10926,10 +10954,10 @@ export default { }, "draft_games_stream_cursor_input": { "initial_value": [ - 498 + 500 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -10937,46 +10965,46 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 865 + 867 ], "capacity": [ 40 ], "captain_selection": [ - 574 + 576 ], "created_at": [ - 4553 + 4609 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 595 + 597 ], "expires_at": [ - 4553 + 4609 ], "host_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "inner_squad": [ 5 ], "invite_code": [ - 5053 + 5109 ], "map_pool_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_elo": [ 40 @@ -10985,10 +11013,10 @@ export default { 40 ], "mode": [ - 616 + 618 ], "pick_deadline": [ - 4553 + 4609 ], "regions": [ 80 @@ -10997,22 +11025,22 @@ export default { 5 ], "scheduled_at": [ - 4553 + 4609 ], "status": [ - 658 + 660 ], "team_1_id": [ - 5053 + 5109 ], "team_2_id": [ - 5053 + 5109 ], "type": [ - 1029 + 1031 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -11026,7 +11054,7 @@ export default { 40 ], "host_steam_id": [ - 257 + 259 ], "max_elo": [ 40 @@ -11040,19 +11068,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11061,13 +11089,13 @@ export default { "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 476 + 478 ], "_set": [ - 490 + 492 ], "where": [ - 474 + 476 ], "__typename": [ 80 @@ -11095,19 +11123,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11135,19 +11163,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11175,19 +11203,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 3006 + 3035 ], "current_pick_lineup": [ - 3006 + 3035 ], "host_steam_id": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11206,10 +11234,10 @@ export default { }, "e_award_sources_aggregate": { "aggregate": [ - 511 + 513 ], "nodes": [ - 509 + 511 ], "__typename": [ 80 @@ -11220,7 +11248,7 @@ export default { 40, { "columns": [ - 523, + 525, "[e_award_sources_select_column!]" ], "distinct": [ @@ -11229,10 +11257,10 @@ export default { } ], "max": [ - 517 + 519 ], "min": [ - 518 + 520 ], "__typename": [ 80 @@ -11240,13 +11268,13 @@ export default { }, "e_award_sources_bool_exp": { "_and": [ - 512 + 514 ], "_not": [ - 512 + 514 ], "_or": [ - 512 + 514 ], "description": [ 82 @@ -11262,19 +11290,19 @@ export default { "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 514 + 516 ], "_in": [ - 514 + 516 ], "_is_null": [ 5 ], "_neq": [ - 514 + 516 ], "_nin": [ - 514 + 516 ], "__typename": [ 80 @@ -11318,7 +11346,7 @@ export default { 40 ], "returning": [ - 509 + 511 ], "__typename": [ 80 @@ -11326,13 +11354,13 @@ export default { }, "e_award_sources_on_conflict": { "constraint": [ - 513 + 515 ], "update_columns": [ - 527 + 529 ], "where": [ - 512 + 514 ], "__typename": [ 80 @@ -11340,10 +11368,10 @@ export default { }, "e_award_sources_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11371,10 +11399,10 @@ export default { }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 526 + 528 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -11394,10 +11422,10 @@ export default { "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 524 + 526 ], "where": [ - 512 + 514 ], "__typename": [ 80 @@ -11416,10 +11444,10 @@ export default { }, "e_award_tiers_aggregate": { "aggregate": [ - 531 + 533 ], "nodes": [ - 529 + 531 ], "__typename": [ 80 @@ -11430,7 +11458,7 @@ export default { 40, { "columns": [ - 543, + 545, "[e_award_tiers_select_column!]" ], "distinct": [ @@ -11439,10 +11467,10 @@ export default { } ], "max": [ - 537 + 539 ], "min": [ - 538 + 540 ], "__typename": [ 80 @@ -11450,13 +11478,13 @@ export default { }, "e_award_tiers_bool_exp": { "_and": [ - 532 + 534 ], "_not": [ - 532 + 534 ], "_or": [ - 532 + 534 ], "description": [ 82 @@ -11472,19 +11500,19 @@ export default { "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 534 + 536 ], "_in": [ - 534 + 536 ], "_is_null": [ 5 ], "_neq": [ - 534 + 536 ], "_nin": [ - 534 + 536 ], "__typename": [ 80 @@ -11528,7 +11556,7 @@ export default { 40 ], "returning": [ - 529 + 531 ], "__typename": [ 80 @@ -11536,13 +11564,13 @@ export default { }, "e_award_tiers_on_conflict": { "constraint": [ - 533 + 535 ], "update_columns": [ - 547 + 549 ], "where": [ - 532 + 534 ], "__typename": [ 80 @@ -11550,10 +11578,10 @@ export default { }, "e_award_tiers_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11581,10 +11609,10 @@ export default { }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 546 + 548 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -11604,10 +11632,10 @@ export default { "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 544 + 546 ], "where": [ - 532 + 534 ], "__typename": [ 80 @@ -11626,10 +11654,10 @@ export default { }, "e_check_in_settings_aggregate": { "aggregate": [ - 551 + 553 ], "nodes": [ - 549 + 551 ], "__typename": [ 80 @@ -11640,7 +11668,7 @@ export default { 40, { "columns": [ - 563, + 565, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -11649,10 +11677,10 @@ export default { } ], "max": [ - 557 + 559 ], "min": [ - 558 + 560 ], "__typename": [ 80 @@ -11660,13 +11688,13 @@ export default { }, "e_check_in_settings_bool_exp": { "_and": [ - 552 + 554 ], "_not": [ - 552 + 554 ], "_or": [ - 552 + 554 ], "description": [ 82 @@ -11682,19 +11710,19 @@ export default { "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 554 + 556 ], "_in": [ - 554 + 556 ], "_is_null": [ 5 ], "_neq": [ - 554 + 556 ], "_nin": [ - 554 + 556 ], "__typename": [ 80 @@ -11738,7 +11766,7 @@ export default { 40 ], "returning": [ - 549 + 551 ], "__typename": [ 80 @@ -11746,13 +11774,13 @@ export default { }, "e_check_in_settings_on_conflict": { "constraint": [ - 553 + 555 ], "update_columns": [ - 567 + 569 ], "where": [ - 552 + 554 ], "__typename": [ 80 @@ -11760,10 +11788,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -11791,10 +11819,10 @@ export default { }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 566 + 568 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -11814,10 +11842,10 @@ export default { "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 564 + 566 ], "where": [ - 552 + 554 ], "__typename": [ 80 @@ -11836,10 +11864,10 @@ export default { }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 571 + 573 ], "nodes": [ - 569 + 571 ], "__typename": [ 80 @@ -11850,7 +11878,7 @@ export default { 40, { "columns": [ - 584, + 586, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -11859,10 +11887,10 @@ export default { } ], "max": [ - 577 + 579 ], "min": [ - 578 + 580 ], "__typename": [ 80 @@ -11870,13 +11898,13 @@ export default { }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 572 + 574 ], "_not": [ - 572 + 574 ], "_or": [ - 572 + 574 ], "description": [ 82 @@ -11892,19 +11920,19 @@ export default { "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 574 + 576 ], "_in": [ - 574 + 576 ], "_is_null": [ 5 ], "_neq": [ - 574 + 576 ], "_nin": [ - 574 + 576 ], "__typename": [ 80 @@ -11948,7 +11976,7 @@ export default { 40 ], "returning": [ - 569 + 571 ], "__typename": [ 80 @@ -11956,10 +11984,10 @@ export default { }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 576 + 578 ], "on_conflict": [ - 581 + 583 ], "__typename": [ 80 @@ -11967,13 +11995,13 @@ export default { }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 573 + 575 ], "update_columns": [ - 588 + 590 ], "where": [ - 572 + 574 ], "__typename": [ 80 @@ -11981,10 +12009,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -12012,10 +12040,10 @@ export default { }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 587 + 589 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -12035,10 +12063,10 @@ export default { "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 585 + 587 ], "where": [ - 572 + 574 ], "__typename": [ 80 @@ -12057,10 +12085,10 @@ export default { }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 592 + 594 ], "nodes": [ - 590 + 592 ], "__typename": [ 80 @@ -12071,7 +12099,7 @@ export default { 40, { "columns": [ - 605, + 607, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -12080,10 +12108,10 @@ export default { } ], "max": [ - 598 + 600 ], "min": [ - 599 + 601 ], "__typename": [ 80 @@ -12091,13 +12119,13 @@ export default { }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 593 + 595 ], "_not": [ - 593 + 595 ], "_or": [ - 593 + 595 ], "description": [ 82 @@ -12113,19 +12141,19 @@ export default { "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 595 + 597 ], "_in": [ - 595 + 597 ], "_is_null": [ 5 ], "_neq": [ - 595 + 597 ], "_nin": [ - 595 + 597 ], "__typename": [ 80 @@ -12169,7 +12197,7 @@ export default { 40 ], "returning": [ - 590 + 592 ], "__typename": [ 80 @@ -12177,10 +12205,10 @@ export default { }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 597 + 599 ], "on_conflict": [ - 602 + 604 ], "__typename": [ 80 @@ -12188,13 +12216,13 @@ export default { }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 594 + 596 ], "update_columns": [ - 609 + 611 ], "where": [ - 593 + 595 ], "__typename": [ 80 @@ -12202,10 +12230,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -12233,10 +12261,10 @@ export default { }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 608 + 610 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -12256,10 +12284,10 @@ export default { "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 606 + 608 ], "where": [ - 593 + 595 ], "__typename": [ 80 @@ -12278,10 +12306,10 @@ export default { }, "e_draft_game_mode_aggregate": { "aggregate": [ - 613 + 615 ], "nodes": [ - 611 + 613 ], "__typename": [ 80 @@ -12292,7 +12320,7 @@ export default { 40, { "columns": [ - 626, + 628, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -12301,10 +12329,10 @@ export default { } ], "max": [ - 619 + 621 ], "min": [ - 620 + 622 ], "__typename": [ 80 @@ -12312,13 +12340,13 @@ export default { }, "e_draft_game_mode_bool_exp": { "_and": [ - 614 + 616 ], "_not": [ - 614 + 616 ], "_or": [ - 614 + 616 ], "description": [ 82 @@ -12334,19 +12362,19 @@ export default { "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 616 + 618 ], "_in": [ - 616 + 618 ], "_is_null": [ 5 ], "_neq": [ - 616 + 618 ], "_nin": [ - 616 + 618 ], "__typename": [ 80 @@ -12390,7 +12418,7 @@ export default { 40 ], "returning": [ - 611 + 613 ], "__typename": [ 80 @@ -12398,10 +12426,10 @@ export default { }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 618 + 620 ], "on_conflict": [ - 623 + 625 ], "__typename": [ 80 @@ -12409,13 +12437,13 @@ export default { }, "e_draft_game_mode_on_conflict": { "constraint": [ - 615 + 617 ], "update_columns": [ - 630 + 632 ], "where": [ - 614 + 616 ], "__typename": [ 80 @@ -12423,10 +12451,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -12454,10 +12482,10 @@ export default { }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 629 + 631 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -12477,10 +12505,10 @@ export default { "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 627 + 629 ], "where": [ - 614 + 616 ], "__typename": [ 80 @@ -12499,10 +12527,10 @@ export default { }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 634 + 636 ], "nodes": [ - 632 + 634 ], "__typename": [ 80 @@ -12513,7 +12541,7 @@ export default { 40, { "columns": [ - 647, + 649, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -12522,10 +12550,10 @@ export default { } ], "max": [ - 640 + 642 ], "min": [ - 641 + 643 ], "__typename": [ 80 @@ -12533,13 +12561,13 @@ export default { }, "e_draft_game_player_status_bool_exp": { "_and": [ - 635 + 637 ], "_not": [ - 635 + 637 ], "_or": [ - 635 + 637 ], "description": [ 82 @@ -12555,19 +12583,19 @@ export default { "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 637 + 639 ], "_in": [ - 637 + 639 ], "_is_null": [ 5 ], "_neq": [ - 637 + 639 ], "_nin": [ - 637 + 639 ], "__typename": [ 80 @@ -12611,7 +12639,7 @@ export default { 40 ], "returning": [ - 632 + 634 ], "__typename": [ 80 @@ -12619,10 +12647,10 @@ export default { }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 639 + 641 ], "on_conflict": [ - 644 + 646 ], "__typename": [ 80 @@ -12630,13 +12658,13 @@ export default { }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 636 + 638 ], "update_columns": [ - 651 + 653 ], "where": [ - 635 + 637 ], "__typename": [ 80 @@ -12644,10 +12672,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -12675,10 +12703,10 @@ export default { }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 650 + 652 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -12698,10 +12726,10 @@ export default { "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 648 + 650 ], "where": [ - 635 + 637 ], "__typename": [ 80 @@ -12720,10 +12748,10 @@ export default { }, "e_draft_game_status_aggregate": { "aggregate": [ - 655 + 657 ], "nodes": [ - 653 + 655 ], "__typename": [ 80 @@ -12734,7 +12762,7 @@ export default { 40, { "columns": [ - 668, + 670, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -12743,10 +12771,10 @@ export default { } ], "max": [ - 661 + 663 ], "min": [ - 662 + 664 ], "__typename": [ 80 @@ -12754,13 +12782,13 @@ export default { }, "e_draft_game_status_bool_exp": { "_and": [ - 656 + 658 ], "_not": [ - 656 + 658 ], "_or": [ - 656 + 658 ], "description": [ 82 @@ -12776,19 +12804,19 @@ export default { "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 658 + 660 ], "_in": [ - 658 + 660 ], "_is_null": [ 5 ], "_neq": [ - 658 + 660 ], "_nin": [ - 658 + 660 ], "__typename": [ 80 @@ -12832,7 +12860,7 @@ export default { 40 ], "returning": [ - 653 + 655 ], "__typename": [ 80 @@ -12840,10 +12868,10 @@ export default { }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 660 + 662 ], "on_conflict": [ - 665 + 667 ], "__typename": [ 80 @@ -12851,13 +12879,13 @@ export default { }, "e_draft_game_status_on_conflict": { "constraint": [ - 657 + 659 ], "update_columns": [ - 672 + 674 ], "where": [ - 656 + 658 ], "__typename": [ 80 @@ -12865,10 +12893,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -12896,10 +12924,10 @@ export default { }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 671 + 673 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -12919,10 +12947,10 @@ export default { "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 669 + 671 ], "where": [ - 656 + 658 ], "__typename": [ 80 @@ -12941,10 +12969,10 @@ export default { }, "e_event_media_access_aggregate": { "aggregate": [ - 676 + 678 ], "nodes": [ - 674 + 676 ], "__typename": [ 80 @@ -12955,7 +12983,7 @@ export default { 40, { "columns": [ - 688, + 690, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -12964,10 +12992,10 @@ export default { } ], "max": [ - 682 + 684 ], "min": [ - 683 + 685 ], "__typename": [ 80 @@ -12975,13 +13003,13 @@ export default { }, "e_event_media_access_bool_exp": { "_and": [ - 677 + 679 ], "_not": [ - 677 + 679 ], "_or": [ - 677 + 679 ], "description": [ 82 @@ -12997,19 +13025,19 @@ export default { "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 679 + 681 ], "_in": [ - 679 + 681 ], "_is_null": [ 5 ], "_neq": [ - 679 + 681 ], "_nin": [ - 679 + 681 ], "__typename": [ 80 @@ -13053,7 +13081,7 @@ export default { 40 ], "returning": [ - 674 + 676 ], "__typename": [ 80 @@ -13061,13 +13089,13 @@ export default { }, "e_event_media_access_on_conflict": { "constraint": [ - 678 + 680 ], "update_columns": [ - 692 + 694 ], "where": [ - 677 + 679 ], "__typename": [ 80 @@ -13075,10 +13103,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -13106,10 +13134,10 @@ export default { }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 691 + 693 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -13129,10 +13157,10 @@ export default { "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 689 + 691 ], "where": [ - 677 + 679 ], "__typename": [ 80 @@ -13151,10 +13179,10 @@ export default { }, "e_event_visibility_aggregate": { "aggregate": [ - 696 + 698 ], "nodes": [ - 694 + 696 ], "__typename": [ 80 @@ -13165,7 +13193,7 @@ export default { 40, { "columns": [ - 708, + 710, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -13174,10 +13202,10 @@ export default { } ], "max": [ - 702 + 704 ], "min": [ - 703 + 705 ], "__typename": [ 80 @@ -13185,13 +13213,13 @@ export default { }, "e_event_visibility_bool_exp": { "_and": [ - 697 + 699 ], "_not": [ - 697 + 699 ], "_or": [ - 697 + 699 ], "description": [ 82 @@ -13207,19 +13235,19 @@ export default { "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 699 + 701 ], "_in": [ - 699 + 701 ], "_is_null": [ 5 ], "_neq": [ - 699 + 701 ], "_nin": [ - 699 + 701 ], "__typename": [ 80 @@ -13263,7 +13291,7 @@ export default { 40 ], "returning": [ - 694 + 696 ], "__typename": [ 80 @@ -13271,13 +13299,13 @@ export default { }, "e_event_visibility_on_conflict": { "constraint": [ - 698 + 700 ], "update_columns": [ - 712 + 714 ], "where": [ - 697 + 699 ], "__typename": [ 80 @@ -13285,10 +13313,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -13316,10 +13344,10 @@ export default { }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 711 + 713 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -13339,10 +13367,10 @@ export default { "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 709 + 711 ], "where": [ - 697 + 699 ], "__typename": [ 80 @@ -13361,10 +13389,10 @@ export default { }, "e_friend_status_aggregate": { "aggregate": [ - 716 + 718 ], "nodes": [ - 714 + 716 ], "__typename": [ 80 @@ -13375,7 +13403,7 @@ export default { 40, { "columns": [ - 729, + 731, "[e_friend_status_select_column!]" ], "distinct": [ @@ -13384,10 +13412,10 @@ export default { } ], "max": [ - 722 + 724 ], "min": [ - 723 + 725 ], "__typename": [ 80 @@ -13395,13 +13423,13 @@ export default { }, "e_friend_status_bool_exp": { "_and": [ - 717 + 719 ], "_not": [ - 717 + 719 ], "_or": [ - 717 + 719 ], "description": [ 82 @@ -13417,19 +13445,19 @@ export default { "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 719 + 721 ], "_in": [ - 719 + 721 ], "_is_null": [ 5 ], "_neq": [ - 719 + 721 ], "_nin": [ - 719 + 721 ], "__typename": [ 80 @@ -13473,7 +13501,7 @@ export default { 40 ], "returning": [ - 714 + 716 ], "__typename": [ 80 @@ -13481,10 +13509,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 721 + 723 ], "on_conflict": [ - 726 + 728 ], "__typename": [ 80 @@ -13492,13 +13520,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 718 + 720 ], "update_columns": [ - 733 + 735 ], "where": [ - 717 + 719 ], "__typename": [ 80 @@ -13506,10 +13534,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -13537,10 +13565,10 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 732 + 734 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -13560,10 +13588,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 730 + 732 ], "where": [ - 717 + 719 ], "__typename": [ 80 @@ -13582,10 +13610,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 737 + 739 ], "nodes": [ - 735 + 737 ], "__typename": [ 80 @@ -13596,7 +13624,7 @@ export default { 40, { "columns": [ - 749, + 751, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -13605,10 +13633,10 @@ export default { } ], "max": [ - 743 + 745 ], "min": [ - 744 + 746 ], "__typename": [ 80 @@ -13616,13 +13644,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 738 + 740 ], "_not": [ - 738 + 740 ], "_or": [ - 738 + 740 ], "description": [ 82 @@ -13638,19 +13666,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 740 + 742 ], "_in": [ - 740 + 742 ], "_is_null": [ 5 ], "_neq": [ - 740 + 742 ], "_nin": [ - 740 + 742 ], "__typename": [ 80 @@ -13694,7 +13722,7 @@ export default { 40 ], "returning": [ - 735 + 737 ], "__typename": [ 80 @@ -13702,13 +13730,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 739 + 741 ], "update_columns": [ - 753 + 755 ], "where": [ - 738 + 740 ], "__typename": [ 80 @@ -13716,10 +13744,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -13747,10 +13775,10 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 752 + 754 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -13770,10 +13798,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 750 + 752 ], "where": [ - 738 + 740 ], "__typename": [ 80 @@ -13792,10 +13820,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 757 + 759 ], "nodes": [ - 755 + 757 ], "__typename": [ 80 @@ -13806,7 +13834,7 @@ export default { 40, { "columns": [ - 770, + 772, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -13815,10 +13843,10 @@ export default { } ], "max": [ - 763 + 765 ], "min": [ - 764 + 766 ], "__typename": [ 80 @@ -13826,13 +13854,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 758 + 760 ], "_not": [ - 758 + 760 ], "_or": [ - 758 + 760 ], "description": [ 82 @@ -13848,19 +13876,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 760 + 762 ], "_in": [ - 760 + 762 ], "_is_null": [ 5 ], "_neq": [ - 760 + 762 ], "_nin": [ - 760 + 762 ], "__typename": [ 80 @@ -13904,7 +13932,7 @@ export default { 40 ], "returning": [ - 755 + 757 ], "__typename": [ 80 @@ -13912,10 +13940,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 762 + 764 ], "on_conflict": [ - 767 + 769 ], "__typename": [ 80 @@ -13923,13 +13951,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 759 + 761 ], "update_columns": [ - 774 + 776 ], "where": [ - 758 + 760 ], "__typename": [ 80 @@ -13937,10 +13965,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -13968,10 +13996,10 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 773 + 775 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -13991,10 +14019,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 771 + 773 ], "where": [ - 758 + 760 ], "__typename": [ 80 @@ -14013,10 +14041,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 778 + 780 ], "nodes": [ - 776 + 778 ], "__typename": [ 80 @@ -14027,7 +14055,7 @@ export default { 40, { "columns": [ - 791, + 793, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -14036,10 +14064,10 @@ export default { } ], "max": [ - 784 + 786 ], "min": [ - 785 + 787 ], "__typename": [ 80 @@ -14047,13 +14075,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 779 + 781 ], "_not": [ - 779 + 781 ], "_or": [ - 779 + 781 ], "description": [ 82 @@ -14069,19 +14097,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 781 + 783 ], "_in": [ - 781 + 783 ], "_is_null": [ 5 ], "_neq": [ - 781 + 783 ], "_nin": [ - 781 + 783 ], "__typename": [ 80 @@ -14125,7 +14153,7 @@ export default { 40 ], "returning": [ - 776 + 778 ], "__typename": [ 80 @@ -14133,10 +14161,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 783 + 785 ], "on_conflict": [ - 788 + 790 ], "__typename": [ 80 @@ -14144,13 +14172,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 780 + 782 ], "update_columns": [ - 795 + 797 ], "where": [ - 779 + 781 ], "__typename": [ 80 @@ -14158,10 +14186,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -14189,10 +14217,10 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 794 + 796 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -14212,10 +14240,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 792 + 794 ], "where": [ - 779 + 781 ], "__typename": [ 80 @@ -14234,10 +14262,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 799 + 801 ], "nodes": [ - 797 + 799 ], "__typename": [ 80 @@ -14248,7 +14276,7 @@ export default { 40, { "columns": [ - 812, + 814, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -14257,10 +14285,10 @@ export default { } ], "max": [ - 805 + 807 ], "min": [ - 806 + 808 ], "__typename": [ 80 @@ -14268,13 +14296,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 800 + 802 ], "_not": [ - 800 + 802 ], "_or": [ - 800 + 802 ], "description": [ 82 @@ -14290,19 +14318,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 802 + 804 ], "_in": [ - 802 + 804 ], "_is_null": [ 5 ], "_neq": [ - 802 + 804 ], "_nin": [ - 802 + 804 ], "__typename": [ 80 @@ -14346,7 +14374,7 @@ export default { 40 ], "returning": [ - 797 + 799 ], "__typename": [ 80 @@ -14354,10 +14382,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 804 + 806 ], "on_conflict": [ - 809 + 811 ], "__typename": [ 80 @@ -14365,13 +14393,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 801 + 803 ], "update_columns": [ - 816 + 818 ], "where": [ - 800 + 802 ], "__typename": [ 80 @@ -14379,10 +14407,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -14410,10 +14438,10 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 815 + 817 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -14433,10 +14461,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 813 + 815 ], "where": [ - 800 + 802 ], "__typename": [ 80 @@ -14455,10 +14483,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 820 + 822 ], "nodes": [ - 818 + 820 ], "__typename": [ 80 @@ -14469,7 +14497,7 @@ export default { 40, { "columns": [ - 833, + 835, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -14478,10 +14506,10 @@ export default { } ], "max": [ - 826 + 828 ], "min": [ - 827 + 829 ], "__typename": [ 80 @@ -14489,13 +14517,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 821 + 823 ], "_not": [ - 821 + 823 ], "_or": [ - 821 + 823 ], "description": [ 82 @@ -14511,19 +14539,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 823 + 825 ], "_in": [ - 823 + 825 ], "_is_null": [ 5 ], "_neq": [ - 823 + 825 ], "_nin": [ - 823 + 825 ], "__typename": [ 80 @@ -14567,7 +14595,7 @@ export default { 40 ], "returning": [ - 818 + 820 ], "__typename": [ 80 @@ -14575,10 +14603,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 825 + 827 ], "on_conflict": [ - 830 + 832 ], "__typename": [ 80 @@ -14586,13 +14614,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 822 + 824 ], "update_columns": [ - 837 + 839 ], "where": [ - 821 + 823 ], "__typename": [ 80 @@ -14600,10 +14628,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -14631,10 +14659,10 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 836 + 838 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -14654,10 +14682,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 834 + 836 ], "where": [ - 821 + 823 ], "__typename": [ 80 @@ -14676,10 +14704,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 841 + 843 ], "nodes": [ - 839 + 841 ], "__typename": [ 80 @@ -14690,7 +14718,7 @@ export default { 40, { "columns": [ - 854, + 856, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -14699,10 +14727,10 @@ export default { } ], "max": [ - 847 + 849 ], "min": [ - 848 + 850 ], "__typename": [ 80 @@ -14710,13 +14738,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 842 + 844 ], "_not": [ - 842 + 844 ], "_or": [ - 842 + 844 ], "description": [ 82 @@ -14732,19 +14760,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 844 + 846 ], "_in": [ - 844 + 846 ], "_is_null": [ 5 ], "_neq": [ - 844 + 846 ], "_nin": [ - 844 + 846 ], "__typename": [ 80 @@ -14788,7 +14816,7 @@ export default { 40 ], "returning": [ - 839 + 841 ], "__typename": [ 80 @@ -14796,10 +14824,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 846 + 848 ], "on_conflict": [ - 851 + 853 ], "__typename": [ 80 @@ -14807,13 +14835,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 843 + 845 ], "update_columns": [ - 858 + 860 ], "where": [ - 842 + 844 ], "__typename": [ 80 @@ -14821,10 +14849,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -14852,10 +14880,10 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 857 + 859 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -14875,10 +14903,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 855 + 857 ], "where": [ - 842 + 844 ], "__typename": [ 80 @@ -14897,10 +14925,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 862 + 864 ], "nodes": [ - 860 + 862 ], "__typename": [ 80 @@ -14911,7 +14939,7 @@ export default { 40, { "columns": [ - 875, + 877, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -14920,10 +14948,10 @@ export default { } ], "max": [ - 868 + 870 ], "min": [ - 869 + 871 ], "__typename": [ 80 @@ -14931,13 +14959,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 863 + 865 ], "_not": [ - 863 + 865 ], "_or": [ - 863 + 865 ], "description": [ 82 @@ -14953,19 +14981,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 865 + 867 ], "_in": [ - 865 + 867 ], "_is_null": [ 5 ], "_neq": [ - 865 + 867 ], "_nin": [ - 865 + 867 ], "__typename": [ 80 @@ -15009,7 +15037,7 @@ export default { 40 ], "returning": [ - 860 + 862 ], "__typename": [ 80 @@ -15017,10 +15045,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 867 + 869 ], "on_conflict": [ - 872 + 874 ], "__typename": [ 80 @@ -15028,13 +15056,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 864 + 866 ], "update_columns": [ - 879 + 881 ], "where": [ - 863 + 865 ], "__typename": [ 80 @@ -15042,10 +15070,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -15073,10 +15101,10 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 878 + 880 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -15096,10 +15124,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 876 + 878 ], "where": [ - 863 + 865 ], "__typename": [ 80 @@ -15118,10 +15146,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 883 + 885 ], "nodes": [ - 881 + 883 ], "__typename": [ 80 @@ -15132,7 +15160,7 @@ export default { 40, { "columns": [ - 895, + 897, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -15141,10 +15169,10 @@ export default { } ], "max": [ - 889 + 891 ], "min": [ - 890 + 892 ], "__typename": [ 80 @@ -15152,13 +15180,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 884 + 886 ], "_not": [ - 884 + 886 ], "_or": [ - 884 + 886 ], "description": [ 82 @@ -15174,19 +15202,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 886 + 888 ], "_in": [ - 886 + 888 ], "_is_null": [ 5 ], "_neq": [ - 886 + 888 ], "_nin": [ - 886 + 888 ], "__typename": [ 80 @@ -15230,7 +15258,7 @@ export default { 40 ], "returning": [ - 881 + 883 ], "__typename": [ 80 @@ -15238,13 +15266,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 885 + 887 ], "update_columns": [ - 899 + 901 ], "where": [ - 884 + 886 ], "__typename": [ 80 @@ -15252,10 +15280,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -15283,10 +15311,10 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 898 + 900 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -15306,10 +15334,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 896 + 898 ], "where": [ - 884 + 886 ], "__typename": [ 80 @@ -15328,10 +15356,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 903 + 905 ], "nodes": [ - 901 + 903 ], "__typename": [ 80 @@ -15342,7 +15370,7 @@ export default { 40, { "columns": [ - 916, + 918, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -15351,10 +15379,10 @@ export default { } ], "max": [ - 909 + 911 ], "min": [ - 910 + 912 ], "__typename": [ 80 @@ -15362,13 +15390,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 904 + 906 ], "_not": [ - 904 + 906 ], "_or": [ - 904 + 906 ], "description": [ 82 @@ -15384,19 +15412,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 906 + 908 ], "_in": [ - 906 + 908 ], "_is_null": [ 5 ], "_neq": [ - 906 + 908 ], "_nin": [ - 906 + 908 ], "__typename": [ 80 @@ -15440,7 +15468,7 @@ export default { 40 ], "returning": [ - 901 + 903 ], "__typename": [ 80 @@ -15448,10 +15476,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 908 + 910 ], "on_conflict": [ - 913 + 915 ], "__typename": [ 80 @@ -15459,13 +15487,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 905 + 907 ], "update_columns": [ - 920 + 922 ], "where": [ - 904 + 906 ], "__typename": [ 80 @@ -15473,10 +15501,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -15504,10 +15532,10 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 919 + 921 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -15527,10 +15555,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 917 + 919 ], "where": [ - 904 + 906 ], "__typename": [ 80 @@ -15541,10 +15569,10 @@ export default { 80 ], "match_clips": [ - 2360, + 2362, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -15554,19 +15582,19 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_aggregate": [ - 2361, + 2363, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -15576,11 +15604,11 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], @@ -15593,10 +15621,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 924 + 926 ], "nodes": [ - 922 + 924 ], "__typename": [ 80 @@ -15607,7 +15635,7 @@ export default { 40, { "columns": [ - 936, + 938, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -15616,10 +15644,10 @@ export default { } ], "max": [ - 930 + 932 ], "min": [ - 931 + 933 ], "__typename": [ 80 @@ -15627,22 +15655,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 925 + 927 ], "_not": [ - 925 + 927 ], "_or": [ - 925 + 927 ], "description": [ 82 ], "match_clips": [ - 2369 + 2371 ], "match_clips_aggregate": [ - 2362 + 2364 ], "value": [ 82 @@ -15655,19 +15683,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 927 + 929 ], "_in": [ - 927 + 929 ], "_is_null": [ 5 ], "_neq": [ - 927 + 929 ], "_nin": [ - 927 + 929 ], "__typename": [ 80 @@ -15678,7 +15706,7 @@ export default { 80 ], "match_clips": [ - 2366 + 2368 ], "value": [ 80 @@ -15714,7 +15742,7 @@ export default { 40 ], "returning": [ - 922 + 924 ], "__typename": [ 80 @@ -15722,13 +15750,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 926 + 928 ], "update_columns": [ - 940 + 942 ], "where": [ - 925 + 927 ], "__typename": [ 80 @@ -15736,13 +15764,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 3006 + 3035 ], "match_clips_aggregate": [ - 2365 + 2367 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -15770,10 +15798,10 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 939 + 941 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -15793,10 +15821,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 937 + 939 ], "where": [ - 925 + 927 ], "__typename": [ 80 @@ -15807,10 +15835,10 @@ export default { 80 ], "match_maps": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -15820,19 +15848,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -15842,11 +15870,11 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], @@ -15859,10 +15887,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 944 + 946 ], "nodes": [ - 942 + 944 ], "__typename": [ 80 @@ -15873,7 +15901,7 @@ export default { 40, { "columns": [ - 957, + 959, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -15882,10 +15910,10 @@ export default { } ], "max": [ - 950 + 952 ], "min": [ - 951 + 953 ], "__typename": [ 80 @@ -15893,22 +15921,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 945 + 947 ], "_not": [ - 945 + 947 ], "_or": [ - 945 + 947 ], "description": [ 82 ], "match_maps": [ - 2664 + 2666 ], "match_maps_aggregate": [ - 2657 + 2659 ], "value": [ 82 @@ -15921,19 +15949,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 947 + 949 ], "_in": [ - 947 + 949 ], "_is_null": [ 5 ], "_neq": [ - 947 + 949 ], "_nin": [ - 947 + 949 ], "__typename": [ 80 @@ -15944,7 +15972,7 @@ export default { 80 ], "match_maps": [ - 2661 + 2663 ], "value": [ 80 @@ -15980,7 +16008,7 @@ export default { 40 ], "returning": [ - 942 + 944 ], "__typename": [ 80 @@ -15988,10 +16016,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 949 + 951 ], "on_conflict": [ - 954 + 956 ], "__typename": [ 80 @@ -15999,13 +16027,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 946 + 948 ], "update_columns": [ - 961 + 963 ], "where": [ - 945 + 947 ], "__typename": [ 80 @@ -16013,13 +16041,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 3006 + 3035 ], "match_maps_aggregate": [ - 2660 + 2662 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -16047,10 +16075,10 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 960 + 962 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -16070,10 +16098,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 958 + 960 ], "where": [ - 945 + 947 ], "__typename": [ 80 @@ -16092,10 +16120,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 965 + 967 ], "nodes": [ - 963 + 965 ], "__typename": [ 80 @@ -16106,7 +16134,7 @@ export default { 40, { "columns": [ - 977, + 979, "[e_match_mode_select_column!]" ], "distinct": [ @@ -16115,10 +16143,10 @@ export default { } ], "max": [ - 971 + 973 ], "min": [ - 972 + 974 ], "__typename": [ 80 @@ -16126,13 +16154,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 966 + 968 ], "_not": [ - 966 + 968 ], "_or": [ - 966 + 968 ], "description": [ 82 @@ -16148,19 +16176,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 968 + 970 ], "_in": [ - 968 + 970 ], "_is_null": [ 5 ], "_neq": [ - 968 + 970 ], "_nin": [ - 968 + 970 ], "__typename": [ 80 @@ -16204,7 +16232,7 @@ export default { 40 ], "returning": [ - 963 + 965 ], "__typename": [ 80 @@ -16212,13 +16240,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 967 + 969 ], "update_columns": [ - 981 + 983 ], "where": [ - 966 + 968 ], "__typename": [ 80 @@ -16226,10 +16254,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -16257,10 +16285,10 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 980 + 982 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -16280,10 +16308,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 978 + 980 ], "where": [ - 966 + 968 ], "__typename": [ 80 @@ -16294,10 +16322,10 @@ export default { 80 ], "match_lineup_players": [ - 2448, + 2450, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16307,19 +16335,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match_lineup_players_aggregate": [ - 2449, + 2451, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16329,11 +16357,11 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], @@ -16346,10 +16374,10 @@ export default { }, "e_match_party_sources_aggregate": { "aggregate": [ - 985 + 987 ], "nodes": [ - 983 + 985 ], "__typename": [ 80 @@ -16360,7 +16388,7 @@ export default { 40, { "columns": [ - 997, + 999, "[e_match_party_sources_select_column!]" ], "distinct": [ @@ -16369,10 +16397,10 @@ export default { } ], "max": [ - 991 + 993 ], "min": [ - 992 + 994 ], "__typename": [ 80 @@ -16380,22 +16408,22 @@ export default { }, "e_match_party_sources_bool_exp": { "_and": [ - 986 + 988 ], "_not": [ - 986 + 988 ], "_or": [ - 986 + 988 ], "description": [ 82 ], "match_lineup_players": [ - 2459 + 2461 ], "match_lineup_players_aggregate": [ - 2450 + 2452 ], "value": [ 82 @@ -16408,19 +16436,19 @@ export default { "e_match_party_sources_enum": {}, "e_match_party_sources_enum_comparison_exp": { "_eq": [ - 988 + 990 ], "_in": [ - 988 + 990 ], "_is_null": [ 5 ], "_neq": [ - 988 + 990 ], "_nin": [ - 988 + 990 ], "__typename": [ 80 @@ -16431,7 +16459,7 @@ export default { 80 ], "match_lineup_players": [ - 2456 + 2458 ], "value": [ 80 @@ -16467,7 +16495,7 @@ export default { 40 ], "returning": [ - 983 + 985 ], "__typename": [ 80 @@ -16475,13 +16503,13 @@ export default { }, "e_match_party_sources_on_conflict": { "constraint": [ - 987 + 989 ], "update_columns": [ - 1001 + 1003 ], "where": [ - 986 + 988 ], "__typename": [ 80 @@ -16489,13 +16517,13 @@ export default { }, "e_match_party_sources_order_by": { "description": [ - 3006 + 3035 ], "match_lineup_players_aggregate": [ - 2455 + 2457 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -16523,10 +16551,10 @@ export default { }, "e_match_party_sources_stream_cursor_input": { "initial_value": [ - 1000 + 1002 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -16546,10 +16574,10 @@ export default { "e_match_party_sources_update_column": {}, "e_match_party_sources_updates": { "_set": [ - 998 + 1000 ], "where": [ - 986 + 988 ], "__typename": [ 80 @@ -16560,10 +16588,10 @@ export default { 80 ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -16573,19 +16601,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_aggregate": [ - 2822, + 2824, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -16595,11 +16623,11 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], @@ -16612,10 +16640,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 1005 + 1007 ], "nodes": [ - 1003 + 1005 ], "__typename": [ 80 @@ -16626,7 +16654,7 @@ export default { 40, { "columns": [ - 1018, + 1020, "[e_match_status_select_column!]" ], "distinct": [ @@ -16635,10 +16663,10 @@ export default { } ], "max": [ - 1011 + 1013 ], "min": [ - 1012 + 1014 ], "__typename": [ 80 @@ -16646,22 +16674,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 1006 + 1008 ], "_not": [ - 1006 + 1008 ], "_or": [ - 1006 + 1008 ], "description": [ 82 ], "matches": [ - 2830 + 2832 ], "matches_aggregate": [ - 2823 + 2825 ], "value": [ 82 @@ -16674,19 +16702,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 1008 + 1010 ], "_in": [ - 1008 + 1010 ], "_is_null": [ 5 ], "_neq": [ - 1008 + 1010 ], "_nin": [ - 1008 + 1010 ], "__typename": [ 80 @@ -16697,7 +16725,7 @@ export default { 80 ], "matches": [ - 2827 + 2829 ], "value": [ 80 @@ -16733,7 +16761,7 @@ export default { 40 ], "returning": [ - 1003 + 1005 ], "__typename": [ 80 @@ -16741,10 +16769,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 1010 + 1012 ], "on_conflict": [ - 1015 + 1017 ], "__typename": [ 80 @@ -16752,13 +16780,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 1007 + 1009 ], "update_columns": [ - 1022 + 1024 ], "where": [ - 1006 + 1008 ], "__typename": [ 80 @@ -16766,13 +16794,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 3006 + 3035 ], "matches_aggregate": [ - 2826 + 2828 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -16800,10 +16828,10 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 1021 + 1023 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -16823,10 +16851,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 1019 + 1021 ], "where": [ - 1006 + 1008 ], "__typename": [ 80 @@ -16837,10 +16865,10 @@ export default { 80 ], "maps": [ - 2304, + 2306, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -16850,19 +16878,19 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], "maps_aggregate": [ - 2305, + 2307, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -16872,11 +16900,11 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], @@ -16889,10 +16917,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 1026 + 1028 ], "nodes": [ - 1024 + 1026 ], "__typename": [ 80 @@ -16903,7 +16931,7 @@ export default { 40, { "columns": [ - 1039, + 1041, "[e_match_types_select_column!]" ], "distinct": [ @@ -16912,10 +16940,10 @@ export default { } ], "max": [ - 1032 + 1034 ], "min": [ - 1033 + 1035 ], "__typename": [ 80 @@ -16923,22 +16951,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 1027 + 1029 ], "_not": [ - 1027 + 1029 ], "_or": [ - 1027 + 1029 ], "description": [ 82 ], "maps": [ - 2313 + 2315 ], "maps_aggregate": [ - 2306 + 2308 ], "value": [ 82 @@ -16951,19 +16979,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1029 + 1031 ], "_in": [ - 1029 + 1031 ], "_is_null": [ 5 ], "_neq": [ - 1029 + 1031 ], "_nin": [ - 1029 + 1031 ], "__typename": [ 80 @@ -16974,7 +17002,7 @@ export default { 80 ], "maps": [ - 2312 + 2314 ], "value": [ 80 @@ -17010,7 +17038,7 @@ export default { 40 ], "returning": [ - 1024 + 1026 ], "__typename": [ 80 @@ -17018,10 +17046,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 1031 + 1033 ], "on_conflict": [ - 1036 + 1038 ], "__typename": [ 80 @@ -17029,13 +17057,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 1028 + 1030 ], "update_columns": [ - 1043 + 1045 ], "where": [ - 1027 + 1029 ], "__typename": [ 80 @@ -17043,13 +17071,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 3006 + 3035 ], "maps_aggregate": [ - 2311 + 2313 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -17077,10 +17105,10 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1042 + 1044 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -17100,10 +17128,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1040 + 1042 ], "where": [ - 1027 + 1029 ], "__typename": [ 80 @@ -17122,10 +17150,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 1047 + 1049 ], "nodes": [ - 1045 + 1047 ], "__typename": [ 80 @@ -17136,7 +17164,7 @@ export default { 40, { "columns": [ - 1059, + 1061, "[e_notification_types_select_column!]" ], "distinct": [ @@ -17145,10 +17173,10 @@ export default { } ], "max": [ - 1053 + 1055 ], "min": [ - 1054 + 1056 ], "__typename": [ 80 @@ -17156,13 +17184,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 1048 + 1050 ], "_not": [ - 1048 + 1050 ], "_or": [ - 1048 + 1050 ], "description": [ 82 @@ -17178,19 +17206,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1050 + 1052 ], "_in": [ - 1050 + 1052 ], "_is_null": [ 5 ], "_neq": [ - 1050 + 1052 ], "_nin": [ - 1050 + 1052 ], "__typename": [ 80 @@ -17234,7 +17262,7 @@ export default { 40 ], "returning": [ - 1045 + 1047 ], "__typename": [ 80 @@ -17242,13 +17270,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 1049 + 1051 ], "update_columns": [ - 1063 + 1065 ], "where": [ - 1048 + 1050 ], "__typename": [ 80 @@ -17256,10 +17284,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -17287,10 +17315,10 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1062 + 1064 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -17310,10 +17338,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1060 + 1062 ], "where": [ - 1048 + 1050 ], "__typename": [ 80 @@ -17324,10 +17352,10 @@ export default { 80 ], "player_objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -17337,19 +17365,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -17359,11 +17387,11 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], @@ -17376,10 +17404,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 1067 + 1069 ], "nodes": [ - 1065 + 1067 ], "__typename": [ 80 @@ -17390,7 +17418,7 @@ export default { 40, { "columns": [ - 1079, + 1081, "[e_objective_types_select_column!]" ], "distinct": [ @@ -17399,10 +17427,10 @@ export default { } ], "max": [ - 1073 + 1075 ], "min": [ - 1074 + 1076 ], "__typename": [ 80 @@ -17410,22 +17438,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 1068 + 1070 ], "_not": [ - 1068 + 1070 ], "_or": [ - 1068 + 1070 ], "description": [ 82 ], "player_objectives": [ - 3571 + 3600 ], "player_objectives_aggregate": [ - 3564 + 3593 ], "value": [ 82 @@ -17438,19 +17466,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1070 + 1072 ], "_in": [ - 1070 + 1072 ], "_is_null": [ 5 ], "_neq": [ - 1070 + 1072 ], "_nin": [ - 1070 + 1072 ], "__typename": [ 80 @@ -17461,7 +17489,7 @@ export default { 80 ], "player_objectives": [ - 3568 + 3597 ], "value": [ 80 @@ -17497,7 +17525,7 @@ export default { 40 ], "returning": [ - 1065 + 1067 ], "__typename": [ 80 @@ -17505,13 +17533,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 1069 + 1071 ], "update_columns": [ - 1083 + 1085 ], "where": [ - 1068 + 1070 ], "__typename": [ 80 @@ -17519,13 +17547,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 3006 + 3035 ], "player_objectives_aggregate": [ - 3567 + 3596 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -17553,10 +17581,10 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1082 + 1084 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -17576,10 +17604,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1080 + 1082 ], "where": [ - 1068 + 1070 ], "__typename": [ 80 @@ -17598,10 +17626,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 1087 + 1089 ], "nodes": [ - 1085 + 1087 ], "__typename": [ 80 @@ -17612,7 +17640,7 @@ export default { 40, { "columns": [ - 1099, + 1101, "[e_player_roles_select_column!]" ], "distinct": [ @@ -17621,10 +17649,10 @@ export default { } ], "max": [ - 1093 + 1095 ], "min": [ - 1094 + 1096 ], "__typename": [ 80 @@ -17632,13 +17660,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 1088 + 1090 ], "_not": [ - 1088 + 1090 ], "_or": [ - 1088 + 1090 ], "description": [ 82 @@ -17654,19 +17682,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1090 + 1092 ], "_in": [ - 1090 + 1092 ], "_is_null": [ 5 ], "_neq": [ - 1090 + 1092 ], "_nin": [ - 1090 + 1092 ], "__typename": [ 80 @@ -17710,7 +17738,7 @@ export default { 40 ], "returning": [ - 1085 + 1087 ], "__typename": [ 80 @@ -17718,13 +17746,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 1089 + 1091 ], "update_columns": [ - 1103 + 1105 ], "where": [ - 1088 + 1090 ], "__typename": [ 80 @@ -17732,10 +17760,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -17763,10 +17791,10 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1102 + 1104 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -17786,10 +17814,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1100 + 1102 ], "where": [ - 1088 + 1090 ], "__typename": [ 80 @@ -17808,10 +17836,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1107 + 1109 ], "nodes": [ - 1105 + 1107 ], "__typename": [ 80 @@ -17822,7 +17850,7 @@ export default { 40, { "columns": [ - 1119, + 1121, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -17831,10 +17859,10 @@ export default { } ], "max": [ - 1113 + 1115 ], "min": [ - 1114 + 1116 ], "__typename": [ 80 @@ -17842,13 +17870,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1108 + 1110 ], "_not": [ - 1108 + 1110 ], "_or": [ - 1108 + 1110 ], "description": [ 82 @@ -17864,19 +17892,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1110 + 1112 ], "_in": [ - 1110 + 1112 ], "_is_null": [ 5 ], "_neq": [ - 1110 + 1112 ], "_nin": [ - 1110 + 1112 ], "__typename": [ 80 @@ -17920,7 +17948,7 @@ export default { 40 ], "returning": [ - 1105 + 1107 ], "__typename": [ 80 @@ -17928,13 +17956,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1109 + 1111 ], "update_columns": [ - 1123 + 1125 ], "where": [ - 1108 + 1110 ], "__typename": [ 80 @@ -17942,10 +17970,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -17973,10 +18001,10 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1122 + 1124 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -17996,10 +18024,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1120 + 1122 ], "where": [ - 1108 + 1110 ], "__typename": [ 80 @@ -18018,10 +18046,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 1127 + 1129 ], "nodes": [ - 1125 + 1127 ], "__typename": [ 80 @@ -18032,7 +18060,7 @@ export default { 40, { "columns": [ - 1139, + 1141, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -18041,10 +18069,10 @@ export default { } ], "max": [ - 1133 + 1135 ], "min": [ - 1134 + 1136 ], "__typename": [ 80 @@ -18052,13 +18080,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 1128 + 1130 ], "_not": [ - 1128 + 1130 ], "_or": [ - 1128 + 1130 ], "description": [ 82 @@ -18074,19 +18102,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1130 + 1132 ], "_in": [ - 1130 + 1132 ], "_is_null": [ 5 ], "_neq": [ - 1130 + 1132 ], "_nin": [ - 1130 + 1132 ], "__typename": [ 80 @@ -18130,7 +18158,7 @@ export default { 40 ], "returning": [ - 1125 + 1127 ], "__typename": [ 80 @@ -18138,13 +18166,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 1129 + 1131 ], "update_columns": [ - 1143 + 1145 ], "where": [ - 1128 + 1130 ], "__typename": [ 80 @@ -18152,10 +18180,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -18183,10 +18211,10 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1142 + 1144 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -18206,10 +18234,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1140 + 1142 ], "where": [ - 1128 + 1130 ], "__typename": [ 80 @@ -18228,10 +18256,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 1147 + 1149 ], "nodes": [ - 1145 + 1147 ], "__typename": [ 80 @@ -18242,7 +18270,7 @@ export default { 40, { "columns": [ - 1160, + 1162, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -18251,10 +18279,10 @@ export default { } ], "max": [ - 1153 + 1155 ], "min": [ - 1154 + 1156 ], "__typename": [ 80 @@ -18262,13 +18290,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 1148 + 1150 ], "_not": [ - 1148 + 1150 ], "_or": [ - 1148 + 1150 ], "description": [ 82 @@ -18284,19 +18312,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1150 + 1152 ], "_in": [ - 1150 + 1152 ], "_is_null": [ 5 ], "_neq": [ - 1150 + 1152 ], "_nin": [ - 1150 + 1152 ], "__typename": [ 80 @@ -18340,7 +18368,7 @@ export default { 40 ], "returning": [ - 1145 + 1147 ], "__typename": [ 80 @@ -18348,10 +18376,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1152 + 1154 ], "on_conflict": [ - 1157 + 1159 ], "__typename": [ 80 @@ -18359,13 +18387,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 1149 + 1151 ], "update_columns": [ - 1164 + 1166 ], "where": [ - 1148 + 1150 ], "__typename": [ 80 @@ -18373,10 +18401,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -18404,10 +18432,10 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1163 + 1165 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -18427,10 +18455,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1161 + 1163 ], "where": [ - 1148 + 1150 ], "__typename": [ 80 @@ -18441,10 +18469,10 @@ export default { 80 ], "scrim_requests": [ - 4405, + 4461, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18454,19 +18482,19 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], "scrim_requests_aggregate": [ - 4406, + 4462, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18476,11 +18504,11 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], @@ -18493,10 +18521,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1168 + 1170 ], "nodes": [ - 1166 + 1168 ], "__typename": [ 80 @@ -18507,7 +18535,7 @@ export default { 40, { "columns": [ - 1180, + 1182, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -18516,10 +18544,10 @@ export default { } ], "max": [ - 1174 + 1176 ], "min": [ - 1175 + 1177 ], "__typename": [ 80 @@ -18527,22 +18555,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1169 + 1171 ], "_not": [ - 1169 + 1171 ], "_or": [ - 1169 + 1171 ], "description": [ 82 ], "scrim_requests": [ - 4416 + 4472 ], "scrim_requests_aggregate": [ - 4407 + 4463 ], "value": [ 82 @@ -18555,19 +18583,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1171 + 1173 ], "_in": [ - 1171 + 1173 ], "_is_null": [ 5 ], "_neq": [ - 1171 + 1173 ], "_nin": [ - 1171 + 1173 ], "__typename": [ 80 @@ -18578,7 +18606,7 @@ export default { 80 ], "scrim_requests": [ - 4413 + 4469 ], "value": [ 80 @@ -18614,7 +18642,7 @@ export default { 40 ], "returning": [ - 1166 + 1168 ], "__typename": [ 80 @@ -18622,13 +18650,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1170 + 1172 ], "update_columns": [ - 1184 + 1186 ], "where": [ - 1169 + 1171 ], "__typename": [ 80 @@ -18636,13 +18664,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 3006 + 3035 ], "scrim_requests_aggregate": [ - 4412 + 4468 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -18670,10 +18698,10 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1183 + 1185 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -18693,10 +18721,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1181 + 1183 ], "where": [ - 1169 + 1171 ], "__typename": [ 80 @@ -18707,10 +18735,10 @@ export default { 80 ], "servers": [ - 4078, + 4134, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -18720,19 +18748,19 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_aggregate": [ - 4079, + 4135, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -18742,11 +18770,11 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], @@ -18759,10 +18787,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 1188 + 1190 ], "nodes": [ - 1186 + 1188 ], "__typename": [ 80 @@ -18773,7 +18801,7 @@ export default { 40, { "columns": [ - 1200, + 1202, "[e_server_types_select_column!]" ], "distinct": [ @@ -18782,10 +18810,10 @@ export default { } ], "max": [ - 1194 + 1196 ], "min": [ - 1195 + 1197 ], "__typename": [ 80 @@ -18793,22 +18821,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1189 + 1191 ], "_not": [ - 1189 + 1191 ], "_or": [ - 1189 + 1191 ], "description": [ 82 ], "servers": [ - 4089 + 4145 ], "servers_aggregate": [ - 4080 + 4136 ], "value": [ 82 @@ -18821,19 +18849,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1191 + 1193 ], "_in": [ - 1191 + 1193 ], "_is_null": [ 5 ], "_neq": [ - 1191 + 1193 ], "_nin": [ - 1191 + 1193 ], "__typename": [ 80 @@ -18844,7 +18872,7 @@ export default { 80 ], "servers": [ - 4086 + 4142 ], "value": [ 80 @@ -18880,7 +18908,7 @@ export default { 40 ], "returning": [ - 1186 + 1188 ], "__typename": [ 80 @@ -18888,13 +18916,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1190 + 1192 ], "update_columns": [ - 1204 + 1206 ], "where": [ - 1189 + 1191 ], "__typename": [ 80 @@ -18902,13 +18930,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 3006 + 3035 ], "servers_aggregate": [ - 4085 + 4141 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -18936,10 +18964,10 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1203 + 1205 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -18959,10 +18987,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1201 + 1203 ], "where": [ - 1189 + 1191 ], "__typename": [ 80 @@ -18973,10 +19001,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -18986,19 +19014,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_map_lineup_1_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -19008,19 +19036,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_map_lineup_2": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -19030,19 +19058,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_map_lineup_2_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -19052,11 +19080,11 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], @@ -19069,10 +19097,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1208 + 1210 ], "nodes": [ - 1206 + 1208 ], "__typename": [ 80 @@ -19083,7 +19111,7 @@ export default { 40, { "columns": [ - 1220, + 1222, "[e_sides_select_column!]" ], "distinct": [ @@ -19092,10 +19120,10 @@ export default { } ], "max": [ - 1214 + 1216 ], "min": [ - 1215 + 1217 ], "__typename": [ 80 @@ -19103,28 +19131,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1209 + 1211 ], "_not": [ - 1209 + 1211 ], "_or": [ - 1209 + 1211 ], "description": [ 82 ], "match_map_lineup_1": [ - 2664 + 2666 ], "match_map_lineup_1_aggregate": [ - 2657 + 2659 ], "match_map_lineup_2": [ - 2664 + 2666 ], "match_map_lineup_2_aggregate": [ - 2657 + 2659 ], "value": [ 82 @@ -19137,19 +19165,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1211 + 1213 ], "_in": [ - 1211 + 1213 ], "_is_null": [ 5 ], "_neq": [ - 1211 + 1213 ], "_nin": [ - 1211 + 1213 ], "__typename": [ 80 @@ -19160,10 +19188,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2661 + 2663 ], "match_map_lineup_2": [ - 2661 + 2663 ], "value": [ 80 @@ -19199,7 +19227,7 @@ export default { 40 ], "returning": [ - 1206 + 1208 ], "__typename": [ 80 @@ -19207,13 +19235,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1210 + 1212 ], "update_columns": [ - 1224 + 1226 ], "where": [ - 1209 + 1211 ], "__typename": [ 80 @@ -19221,16 +19249,16 @@ export default { }, "e_sides_order_by": { "description": [ - 3006 + 3035 ], "match_map_lineup_1_aggregate": [ - 2660 + 2662 ], "match_map_lineup_2_aggregate": [ - 2660 + 2662 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -19258,10 +19286,10 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1223 + 1225 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -19281,10 +19309,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1221 + 1223 ], "where": [ - 1209 + 1211 ], "__typename": [ 80 @@ -19303,10 +19331,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1228 + 1230 ], "nodes": [ - 1226 + 1228 ], "__typename": [ 80 @@ -19317,7 +19345,7 @@ export default { 40, { "columns": [ - 1240, + 1242, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -19326,10 +19354,10 @@ export default { } ], "max": [ - 1234 + 1236 ], "min": [ - 1235 + 1237 ], "__typename": [ 80 @@ -19337,13 +19365,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1229 + 1231 ], "_not": [ - 1229 + 1231 ], "_or": [ - 1229 + 1231 ], "description": [ 82 @@ -19359,19 +19387,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1231 + 1233 ], "_in": [ - 1231 + 1233 ], "_is_null": [ 5 ], "_neq": [ - 1231 + 1233 ], "_nin": [ - 1231 + 1233 ], "__typename": [ 80 @@ -19415,7 +19443,7 @@ export default { 40 ], "returning": [ - 1226 + 1228 ], "__typename": [ 80 @@ -19423,13 +19451,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1230 + 1232 ], "update_columns": [ - 1244 + 1246 ], "where": [ - 1229 + 1231 ], "__typename": [ 80 @@ -19437,10 +19465,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -19468,10 +19496,10 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1243 + 1245 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -19491,10 +19519,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1241 + 1243 ], "where": [ - 1229 + 1231 ], "__typename": [ 80 @@ -19505,10 +19533,10 @@ export default { 80 ], "team_rosters": [ - 4264, + 4320, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -19518,19 +19546,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_rosters_aggregate": [ - 4265, + 4321, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -19540,19 +19568,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "tournament_team_rosters": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19562,19 +19590,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_team_rosters_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19584,11 +19612,11 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], @@ -19601,10 +19629,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1248 + 1250 ], "nodes": [ - 1246 + 1248 ], "__typename": [ 80 @@ -19615,7 +19643,7 @@ export default { 40, { "columns": [ - 1261, + 1263, "[e_team_roles_select_column!]" ], "distinct": [ @@ -19624,10 +19652,10 @@ export default { } ], "max": [ - 1254 + 1256 ], "min": [ - 1255 + 1257 ], "__typename": [ 80 @@ -19635,28 +19663,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1249 + 1251 ], "_not": [ - 1249 + 1251 ], "_or": [ - 1249 + 1251 ], "description": [ 82 ], "team_rosters": [ - 4275 + 4331 ], "team_rosters_aggregate": [ - 4266 + 4322 ], "tournament_team_rosters": [ - 4915 + 4971 ], "tournament_team_rosters_aggregate": [ - 4908 + 4964 ], "value": [ 82 @@ -19669,19 +19697,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1251 + 1253 ], "_in": [ - 1251 + 1253 ], "_is_null": [ 5 ], "_neq": [ - 1251 + 1253 ], "_nin": [ - 1251 + 1253 ], "__typename": [ 80 @@ -19692,10 +19720,10 @@ export default { 80 ], "team_rosters": [ - 4272 + 4328 ], "tournament_team_rosters": [ - 4912 + 4968 ], "value": [ 80 @@ -19731,7 +19759,7 @@ export default { 40 ], "returning": [ - 1246 + 1248 ], "__typename": [ 80 @@ -19739,10 +19767,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1253 + 1255 ], "on_conflict": [ - 1258 + 1260 ], "__typename": [ 80 @@ -19750,13 +19778,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1250 + 1252 ], "update_columns": [ - 1265 + 1267 ], "where": [ - 1249 + 1251 ], "__typename": [ 80 @@ -19764,16 +19792,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 3006 + 3035 ], "team_rosters_aggregate": [ - 4271 + 4327 ], "tournament_team_rosters_aggregate": [ - 4911 + 4967 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -19801,10 +19829,10 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1264 + 1266 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -19824,10 +19852,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1262 + 1264 ], "where": [ - 1249 + 1251 ], "__typename": [ 80 @@ -19846,10 +19874,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1269 + 1271 ], "nodes": [ - 1267 + 1269 ], "__typename": [ 80 @@ -19860,7 +19888,7 @@ export default { 40, { "columns": [ - 1281, + 1283, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -19869,10 +19897,10 @@ export default { } ], "max": [ - 1275 + 1277 ], "min": [ - 1276 + 1278 ], "__typename": [ 80 @@ -19880,13 +19908,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1270 + 1272 ], "_not": [ - 1270 + 1272 ], "_or": [ - 1270 + 1272 ], "description": [ 82 @@ -19902,19 +19930,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1272 + 1274 ], "_in": [ - 1272 + 1274 ], "_is_null": [ 5 ], "_neq": [ - 1272 + 1274 ], "_nin": [ - 1272 + 1274 ], "__typename": [ 80 @@ -19958,7 +19986,7 @@ export default { 40 ], "returning": [ - 1267 + 1269 ], "__typename": [ 80 @@ -19966,13 +19994,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1271 + 1273 ], "update_columns": [ - 1285 + 1287 ], "where": [ - 1270 + 1272 ], "__typename": [ 80 @@ -19980,10 +20008,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -20011,10 +20039,10 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1284 + 1286 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -20034,10 +20062,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1282 + 1284 ], "where": [ - 1270 + 1272 ], "__typename": [ 80 @@ -20056,10 +20084,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1289 + 1291 ], "nodes": [ - 1287 + 1289 ], "__typename": [ 80 @@ -20070,7 +20098,7 @@ export default { 40, { "columns": [ - 1301, + 1303, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -20079,10 +20107,10 @@ export default { } ], "max": [ - 1295 + 1297 ], "min": [ - 1296 + 1298 ], "__typename": [ 80 @@ -20090,13 +20118,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1290 + 1292 ], "_not": [ - 1290 + 1292 ], "_or": [ - 1290 + 1292 ], "description": [ 82 @@ -20112,19 +20140,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1292 + 1294 ], "_in": [ - 1292 + 1294 ], "_is_null": [ 5 ], "_neq": [ - 1292 + 1294 ], "_nin": [ - 1292 + 1294 ], "__typename": [ 80 @@ -20168,7 +20196,7 @@ export default { 40 ], "returning": [ - 1287 + 1289 ], "__typename": [ 80 @@ -20176,13 +20204,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1291 + 1293 ], "update_columns": [ - 1305 + 1307 ], "where": [ - 1290 + 1292 ], "__typename": [ 80 @@ -20190,10 +20218,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -20221,10 +20249,10 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1304 + 1306 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -20244,10 +20272,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1302 + 1304 ], "where": [ - 1290 + 1292 ], "__typename": [ 80 @@ -20258,10 +20286,10 @@ export default { 80 ], "tournament_categories": [ - 4643, + 4699, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -20271,19 +20299,19 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "tournament_categories_aggregate": [ - 4644, + 4700, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -20293,11 +20321,11 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], @@ -20310,10 +20338,10 @@ export default { }, "e_tournament_categories_aggregate": { "aggregate": [ - 1309 + 1311 ], "nodes": [ - 1307 + 1309 ], "__typename": [ 80 @@ -20324,7 +20352,7 @@ export default { 40, { "columns": [ - 1322, + 1324, "[e_tournament_categories_select_column!]" ], "distinct": [ @@ -20333,10 +20361,10 @@ export default { } ], "max": [ - 1315 + 1317 ], "min": [ - 1316 + 1318 ], "__typename": [ 80 @@ -20344,22 +20372,22 @@ export default { }, "e_tournament_categories_bool_exp": { "_and": [ - 1310 + 1312 ], "_not": [ - 1310 + 1312 ], "_or": [ - 1310 + 1312 ], "description": [ 82 ], "tournament_categories": [ - 4650 + 4706 ], "tournament_categories_aggregate": [ - 4645 + 4701 ], "value": [ 82 @@ -20372,19 +20400,19 @@ export default { "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1312 + 1314 ], "_in": [ - 1312 + 1314 ], "_is_null": [ 5 ], "_neq": [ - 1312 + 1314 ], "_nin": [ - 1312 + 1314 ], "__typename": [ 80 @@ -20395,7 +20423,7 @@ export default { 80 ], "tournament_categories": [ - 4649 + 4705 ], "value": [ 80 @@ -20431,7 +20459,7 @@ export default { 40 ], "returning": [ - 1307 + 1309 ], "__typename": [ 80 @@ -20439,10 +20467,10 @@ export default { }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1314 + 1316 ], "on_conflict": [ - 1319 + 1321 ], "__typename": [ 80 @@ -20450,13 +20478,13 @@ export default { }, "e_tournament_categories_on_conflict": { "constraint": [ - 1311 + 1313 ], "update_columns": [ - 1326 + 1328 ], "where": [ - 1310 + 1312 ], "__typename": [ 80 @@ -20464,13 +20492,13 @@ export default { }, "e_tournament_categories_order_by": { "description": [ - 3006 + 3035 ], "tournament_categories_aggregate": [ - 4648 + 4704 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -20498,10 +20526,10 @@ export default { }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1325 + 1327 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -20521,10 +20549,10 @@ export default { "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1323 + 1325 ], "where": [ - 1310 + 1312 ], "__typename": [ 80 @@ -20535,10 +20563,10 @@ export default { 80 ], "tournament_stages": [ - 4814, + 4870, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -20548,19 +20576,19 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "tournament_stages_aggregate": [ - 4815, + 4871, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -20570,11 +20598,11 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], @@ -20587,10 +20615,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1330 + 1332 ], "nodes": [ - 1328 + 1330 ], "__typename": [ 80 @@ -20601,7 +20629,7 @@ export default { 40, { "columns": [ - 1343, + 1345, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -20610,10 +20638,10 @@ export default { } ], "max": [ - 1336 + 1338 ], "min": [ - 1337 + 1339 ], "__typename": [ 80 @@ -20621,22 +20649,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1331 + 1333 ], "_not": [ - 1331 + 1333 ], "_or": [ - 1331 + 1333 ], "description": [ 82 ], "tournament_stages": [ - 4826 + 4882 ], "tournament_stages_aggregate": [ - 4816 + 4872 ], "value": [ 82 @@ -20649,19 +20677,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1333 + 1335 ], "_in": [ - 1333 + 1335 ], "_is_null": [ 5 ], "_neq": [ - 1333 + 1335 ], "_nin": [ - 1333 + 1335 ], "__typename": [ 80 @@ -20672,7 +20700,7 @@ export default { 80 ], "tournament_stages": [ - 4823 + 4879 ], "value": [ 80 @@ -20708,7 +20736,7 @@ export default { 40 ], "returning": [ - 1328 + 1330 ], "__typename": [ 80 @@ -20716,10 +20744,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1335 + 1337 ], "on_conflict": [ - 1340 + 1342 ], "__typename": [ 80 @@ -20727,13 +20755,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1332 + 1334 ], "update_columns": [ - 1347 + 1349 ], "where": [ - 1331 + 1333 ], "__typename": [ 80 @@ -20741,13 +20769,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 3006 + 3035 ], "tournament_stages_aggregate": [ - 4821 + 4877 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -20775,10 +20803,10 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1346 + 1348 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -20798,10 +20826,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1344 + 1346 ], "where": [ - 1331 + 1333 ], "__typename": [ 80 @@ -20812,10 +20840,10 @@ export default { 80 ], "tournaments": [ - 4989, + 5045, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -20825,19 +20853,19 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_aggregate": [ - 4990, + 5046, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -20847,11 +20875,11 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], @@ -20864,10 +20892,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1351 + 1353 ], "nodes": [ - 1349 + 1351 ], "__typename": [ 80 @@ -20878,7 +20906,7 @@ export default { 40, { "columns": [ - 1364, + 1366, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -20887,10 +20915,10 @@ export default { } ], "max": [ - 1357 + 1359 ], "min": [ - 1358 + 1360 ], "__typename": [ 80 @@ -20898,22 +20926,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1352 + 1354 ], "_not": [ - 1352 + 1354 ], "_or": [ - 1352 + 1354 ], "description": [ 82 ], "tournaments": [ - 5010 + 5066 ], "tournaments_aggregate": [ - 4991 + 5047 ], "value": [ 82 @@ -20926,19 +20954,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1354 + 1356 ], "_in": [ - 1354 + 1356 ], "_is_null": [ 5 ], "_neq": [ - 1354 + 1356 ], "_nin": [ - 1354 + 1356 ], "__typename": [ 80 @@ -20949,7 +20977,7 @@ export default { 80 ], "tournaments": [ - 5007 + 5063 ], "value": [ 80 @@ -20985,7 +21013,7 @@ export default { 40 ], "returning": [ - 1349 + 1351 ], "__typename": [ 80 @@ -20993,10 +21021,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1356 + 1358 ], "on_conflict": [ - 1361 + 1363 ], "__typename": [ 80 @@ -21004,13 +21032,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1353 + 1355 ], "update_columns": [ - 1368 + 1370 ], "where": [ - 1352 + 1354 ], "__typename": [ 80 @@ -21018,13 +21046,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 3006 + 3035 ], "tournaments_aggregate": [ - 5006 + 5062 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -21052,10 +21080,10 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1367 + 1369 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -21075,10 +21103,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1365 + 1367 ], "where": [ - 1352 + 1354 ], "__typename": [ 80 @@ -21089,10 +21117,10 @@ export default { 80 ], "player_utilities": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -21102,19 +21130,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utilities_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -21124,11 +21152,11 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], @@ -21141,10 +21169,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1372 + 1374 ], "nodes": [ - 1370 + 1372 ], "__typename": [ 80 @@ -21155,7 +21183,7 @@ export default { 40, { "columns": [ - 1384, + 1386, "[e_utility_types_select_column!]" ], "distinct": [ @@ -21164,10 +21192,10 @@ export default { } ], "max": [ - 1378 + 1380 ], "min": [ - 1379 + 1381 ], "__typename": [ 80 @@ -21175,22 +21203,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1373 + 1375 ], "_not": [ - 1373 + 1375 ], "_or": [ - 1373 + 1375 ], "description": [ 82 ], "player_utilities": [ - 3899 + 3928 ], "player_utilities_aggregate": [ - 3892 + 3921 ], "value": [ 82 @@ -21203,19 +21231,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1375 + 1377 ], "_in": [ - 1375 + 1377 ], "_is_null": [ 5 ], "_neq": [ - 1375 + 1377 ], "_nin": [ - 1375 + 1377 ], "__typename": [ 80 @@ -21226,7 +21254,7 @@ export default { 80 ], "player_utilities": [ - 3896 + 3925 ], "value": [ 80 @@ -21262,7 +21290,7 @@ export default { 40 ], "returning": [ - 1370 + 1372 ], "__typename": [ 80 @@ -21270,13 +21298,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1374 + 1376 ], "update_columns": [ - 1388 + 1390 ], "where": [ - 1373 + 1375 ], "__typename": [ 80 @@ -21284,13 +21312,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 3006 + 3035 ], "player_utilities_aggregate": [ - 3895 + 3924 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -21318,10 +21346,10 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1387 + 1389 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -21341,10 +21369,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1385 + 1387 ], "where": [ - 1373 + 1375 ], "__typename": [ 80 @@ -21355,10 +21383,10 @@ export default { 80 ], "match_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21368,19 +21396,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21390,11 +21418,11 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], @@ -21407,10 +21435,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1392 + 1394 ], "nodes": [ - 1390 + 1392 ], "__typename": [ 80 @@ -21421,7 +21449,7 @@ export default { 40, { "columns": [ - 1404, + 1406, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -21430,10 +21458,10 @@ export default { } ], "max": [ - 1398 + 1400 ], "min": [ - 1399 + 1401 ], "__typename": [ 80 @@ -21441,22 +21469,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1393 + 1395 ], "_not": [ - 1393 + 1395 ], "_or": [ - 1393 + 1395 ], "description": [ 82 ], "match_veto_picks": [ - 2636 + 2638 ], "match_veto_picks_aggregate": [ - 2629 + 2631 ], "value": [ 82 @@ -21469,19 +21497,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1395 + 1397 ], "_in": [ - 1395 + 1397 ], "_is_null": [ 5 ], "_neq": [ - 1395 + 1397 ], "_nin": [ - 1395 + 1397 ], "__typename": [ 80 @@ -21492,7 +21520,7 @@ export default { 80 ], "match_veto_picks": [ - 2635 + 2637 ], "value": [ 80 @@ -21528,7 +21556,7 @@ export default { 40 ], "returning": [ - 1390 + 1392 ], "__typename": [ 80 @@ -21536,13 +21564,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1394 + 1396 ], "update_columns": [ - 1408 + 1410 ], "where": [ - 1393 + 1395 ], "__typename": [ 80 @@ -21550,13 +21578,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 3006 + 3035 ], "match_veto_picks_aggregate": [ - 2634 + 2636 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -21584,10 +21612,10 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1407 + 1409 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -21607,10 +21635,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1405 + 1407 ], "where": [ - 1393 + 1395 ], "__typename": [ 80 @@ -21629,10 +21657,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1412 + 1414 ], "nodes": [ - 1410 + 1412 ], "__typename": [ 80 @@ -21643,7 +21671,7 @@ export default { 40, { "columns": [ - 1424, + 1426, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -21652,10 +21680,10 @@ export default { } ], "max": [ - 1418 + 1420 ], "min": [ - 1419 + 1421 ], "__typename": [ 80 @@ -21663,13 +21691,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1413 + 1415 ], "_not": [ - 1413 + 1415 ], "_or": [ - 1413 + 1415 ], "description": [ 82 @@ -21685,19 +21713,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1415 + 1417 ], "_in": [ - 1415 + 1417 ], "_is_null": [ 5 ], "_neq": [ - 1415 + 1417 ], "_nin": [ - 1415 + 1417 ], "__typename": [ 80 @@ -21741,7 +21769,7 @@ export default { 40 ], "returning": [ - 1410 + 1412 ], "__typename": [ 80 @@ -21749,13 +21777,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1414 + 1416 ], "update_columns": [ - 1428 + 1430 ], "where": [ - 1413 + 1415 ], "__typename": [ 80 @@ -21763,10 +21791,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -21794,10 +21822,10 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1427 + 1429 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -21817,10 +21845,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1425 + 1427 ], "where": [ - 1413 + 1415 ], "__typename": [ 80 @@ -21828,19 +21856,19 @@ export default { }, "event_match_links": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -21848,10 +21876,10 @@ export default { }, "event_match_links_aggregate": { "aggregate": [ - 1432 + 1434 ], "nodes": [ - 1430 + 1432 ], "__typename": [ 80 @@ -21862,7 +21890,7 @@ export default { 40, { "columns": [ - 1442, + 1444, "[event_match_links_select_column!]" ], "distinct": [ @@ -21871,10 +21899,10 @@ export default { } ], "max": [ - 1436 + 1438 ], "min": [ - 1437 + 1439 ], "__typename": [ 80 @@ -21882,28 +21910,28 @@ export default { }, "event_match_links_bool_exp": { "_and": [ - 1433 + 1435 ], "_not": [ - 1433 + 1435 ], "_or": [ - 1433 + 1435 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -21912,19 +21940,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -21932,13 +21960,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -21946,13 +21974,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -21963,7 +21991,7 @@ export default { 40 ], "returning": [ - 1430 + 1432 ], "__typename": [ 80 @@ -21971,13 +21999,13 @@ export default { }, "event_match_links_on_conflict": { "constraint": [ - 1434 + 1436 ], "update_columns": [ - 1446 + 1448 ], "where": [ - 1433 + 1435 ], "__typename": [ 80 @@ -21985,19 +22013,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22005,10 +22033,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -22017,13 +22045,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -22031,10 +22059,10 @@ export default { }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1445 + 1447 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -22042,13 +22070,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -22057,10 +22085,10 @@ export default { "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1443 + 1445 ], "where": [ - 1433 + 1435 ], "__typename": [ 80 @@ -22068,13 +22096,13 @@ export default { }, "event_media": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -22083,16 +22111,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "players": [ - 1470, + 1472, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -22102,19 +22130,19 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "players_aggregate": [ - 1471, + 1473, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -22124,16 +22152,16 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -22142,10 +22170,10 @@ export default { 80 ], "uploader": [ - 3964 + 3993 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22153,10 +22181,10 @@ export default { }, "event_media_aggregate": { "aggregate": [ - 1452 + 1454 ], "nodes": [ - 1448 + 1450 ], "__typename": [ 80 @@ -22164,7 +22192,7 @@ export default { }, "event_media_aggregate_bool_exp": { "count": [ - 1451 + 1453 ], "__typename": [ 80 @@ -22172,13 +22200,13 @@ export default { }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1511 + 1513 ], "distinct": [ 5 ], "filter": [ - 1457 + 1459 ], "predicate": [ 41 @@ -22189,13 +22217,13 @@ export default { }, "event_media_aggregate_fields": { "avg": [ - 1455 + 1457 ], "count": [ 40, { "columns": [ - 1511, + 1513, "[event_media_select_column!]" ], "distinct": [ @@ -22204,31 +22232,31 @@ export default { } ], "max": [ - 1461 + 1463 ], "min": [ - 1463 + 1465 ], "stddev": [ - 1513 + 1515 ], "stddev_pop": [ - 1515 + 1517 ], "stddev_samp": [ - 1517 + 1519 ], "sum": [ - 1521 + 1523 ], "var_pop": [ - 1525 + 1527 ], "var_samp": [ - 1527 + 1529 ], "variance": [ - 1529 + 1531 ], "__typename": [ 80 @@ -22236,37 +22264,37 @@ export default { }, "event_media_aggregate_order_by": { "avg": [ - 1456 + 1458 ], "count": [ - 3006 + 3035 ], "max": [ - 1462 + 1464 ], "min": [ - 1464 + 1466 ], "stddev": [ - 1514 + 1516 ], "stddev_pop": [ - 1516 + 1518 ], "stddev_samp": [ - 1518 + 1520 ], "sum": [ - 1522 + 1524 ], "var_pop": [ - 1526 + 1528 ], "var_samp": [ - 1528 + 1530 ], "variance": [ - 1530 + 1532 ], "__typename": [ 80 @@ -22274,10 +22302,10 @@ export default { }, "event_media_arr_rel_insert_input": { "data": [ - 1460 + 1462 ], "on_conflict": [ - 1467 + 1469 ], "__typename": [ 80 @@ -22296,10 +22324,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22307,22 +22335,22 @@ export default { }, "event_media_bool_exp": { "_and": [ - 1457 + 1459 ], "_not": [ - 1457 + 1459 ], "_or": [ - 1457 + 1459 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "external_url": [ 82 @@ -22331,19 +22359,19 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "mime_type": [ 82 ], "players": [ - 1479 + 1481 ], "players_aggregate": [ - 1472 + 1474 ], "size": [ - 259 + 261 ], "thumbnail_filename": [ 82 @@ -22352,10 +22380,10 @@ export default { 82 ], "uploader": [ - 3968 + 3997 ], "uploader_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -22364,10 +22392,10 @@ export default { "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 257 + 259 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22375,13 +22403,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -22390,16 +22418,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "players": [ - 1476 + 1478 ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -22408,10 +22436,10 @@ export default { 80 ], "uploader": [ - 3975 + 4004 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22419,10 +22447,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -22431,13 +22459,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -22446,7 +22474,7 @@ export default { 80 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22454,34 +22482,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "external_url": [ - 3006 + 3035 ], "filename": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "mime_type": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "thumbnail_filename": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22489,10 +22517,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -22501,13 +22529,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -22516,7 +22544,7 @@ export default { 80 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22524,34 +22552,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "external_url": [ - 3006 + 3035 ], "filename": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "mime_type": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "thumbnail_filename": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22562,7 +22590,7 @@ export default { 40 ], "returning": [ - 1448 + 1450 ], "__typename": [ 80 @@ -22570,10 +22598,10 @@ export default { }, "event_media_obj_rel_insert_input": { "data": [ - 1460 + 1462 ], "on_conflict": [ - 1467 + 1469 ], "__typename": [ 80 @@ -22581,13 +22609,13 @@ export default { }, "event_media_on_conflict": { "constraint": [ - 1458 + 1460 ], "update_columns": [ - 1523 + 1525 ], "where": [ - 1457 + 1459 ], "__typename": [ 80 @@ -22595,43 +22623,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "external_url": [ - 3006 + 3035 ], "filename": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "mime_type": [ - 3006 + 3035 ], "players_aggregate": [ - 1475 + 1477 ], "size": [ - 3006 + 3035 ], "thumbnail_filename": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "uploader": [ - 3977 + 4006 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22639,7 +22667,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -22647,19 +22675,19 @@ export default { }, "event_media_players": { "created_at": [ - 4553 + 4609 ], "media": [ - 1448 + 1450 ], "media_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22667,10 +22695,10 @@ export default { }, "event_media_players_aggregate": { "aggregate": [ - 1474 + 1476 ], "nodes": [ - 1470 + 1472 ], "__typename": [ 80 @@ -22678,7 +22706,7 @@ export default { }, "event_media_players_aggregate_bool_exp": { "count": [ - 1473 + 1475 ], "__typename": [ 80 @@ -22686,13 +22714,13 @@ export default { }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1491 + 1493 ], "distinct": [ 5 ], "filter": [ - 1479 + 1481 ], "predicate": [ 41 @@ -22703,13 +22731,13 @@ export default { }, "event_media_players_aggregate_fields": { "avg": [ - 1477 + 1479 ], "count": [ 40, { "columns": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "distinct": [ @@ -22718,31 +22746,31 @@ export default { } ], "max": [ - 1483 + 1485 ], "min": [ - 1485 + 1487 ], "stddev": [ - 1493 + 1495 ], "stddev_pop": [ - 1495 + 1497 ], "stddev_samp": [ - 1497 + 1499 ], "sum": [ - 1501 + 1503 ], "var_pop": [ - 1505 + 1507 ], "var_samp": [ - 1507 + 1509 ], "variance": [ - 1509 + 1511 ], "__typename": [ 80 @@ -22750,37 +22778,37 @@ export default { }, "event_media_players_aggregate_order_by": { "avg": [ - 1478 + 1480 ], "count": [ - 3006 + 3035 ], "max": [ - 1484 + 1486 ], "min": [ - 1486 + 1488 ], "stddev": [ - 1494 + 1496 ], "stddev_pop": [ - 1496 + 1498 ], "stddev_samp": [ - 1498 + 1500 ], "sum": [ - 1502 + 1504 ], "var_pop": [ - 1506 + 1508 ], "var_samp": [ - 1508 + 1510 ], "variance": [ - 1510 + 1512 ], "__typename": [ 80 @@ -22788,10 +22816,10 @@ export default { }, "event_media_players_arr_rel_insert_input": { "data": [ - 1482 + 1484 ], "on_conflict": [ - 1488 + 1490 ], "__typename": [ 80 @@ -22807,7 +22835,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22815,28 +22843,28 @@ export default { }, "event_media_players_bool_exp": { "_and": [ - 1479 + 1481 ], "_not": [ - 1479 + 1481 ], "_or": [ - 1479 + 1481 ], "created_at": [ - 4554 + 4610 ], "media": [ - 1457 + 1459 ], "media_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -22845,7 +22873,7 @@ export default { "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22853,19 +22881,19 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4553 + 4609 ], "media": [ - 1466 + 1468 ], "media_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22873,13 +22901,13 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4553 + 4609 ], "media_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22887,13 +22915,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 3006 + 3035 ], "media_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22901,13 +22929,13 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4553 + 4609 ], "media_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22915,13 +22943,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 3006 + 3035 ], "media_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22932,7 +22960,7 @@ export default { 40 ], "returning": [ - 1470 + 1472 ], "__typename": [ 80 @@ -22940,13 +22968,13 @@ export default { }, "event_media_players_on_conflict": { "constraint": [ - 1480 + 1482 ], "update_columns": [ - 1503 + 1505 ], "where": [ - 1479 + 1481 ], "__typename": [ 80 @@ -22954,19 +22982,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 3006 + 3035 ], "media": [ - 1468 + 1470 ], "media_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -22974,10 +23002,10 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -22986,13 +23014,13 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4553 + 4609 ], "media_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23008,7 +23036,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23024,7 +23052,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23040,7 +23068,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23048,10 +23076,10 @@ export default { }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1500 + 1502 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -23059,13 +23087,13 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "media_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23073,7 +23101,7 @@ export default { }, "event_media_players_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23081,7 +23109,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23090,13 +23118,13 @@ export default { "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1481 + 1483 ], "_set": [ - 1492 + 1494 ], "where": [ - 1479 + 1481 ], "__typename": [ 80 @@ -23112,7 +23140,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23128,7 +23156,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23144,7 +23172,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23153,10 +23181,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -23165,13 +23193,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -23180,7 +23208,7 @@ export default { 80 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23199,10 +23227,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23221,10 +23249,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23243,10 +23271,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23254,10 +23282,10 @@ export default { }, "event_media_stream_cursor_input": { "initial_value": [ - 1520 + 1522 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -23265,10 +23293,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "external_url": [ 80 @@ -23277,13 +23305,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "mime_type": [ 80 ], "size": [ - 257 + 259 ], "thumbnail_filename": [ 80 @@ -23292,7 +23320,7 @@ export default { 80 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23300,10 +23328,10 @@ export default { }, "event_media_sum_fields": { "size": [ - 257 + 259 ], "uploader_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23311,10 +23339,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23323,13 +23351,13 @@ export default { "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1459 + 1461 ], "_set": [ - 1512 + 1514 ], "where": [ - 1457 + 1459 ], "__typename": [ 80 @@ -23348,10 +23376,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23370,10 +23398,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23392,10 +23420,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 3006 + 3035 ], "uploader_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23403,19 +23431,19 @@ export default { }, "event_organizers": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "organizer": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23423,10 +23451,10 @@ export default { }, "event_organizers_aggregate": { "aggregate": [ - 1535 + 1537 ], "nodes": [ - 1531 + 1533 ], "__typename": [ 80 @@ -23434,7 +23462,7 @@ export default { }, "event_organizers_aggregate_bool_exp": { "count": [ - 1534 + 1536 ], "__typename": [ 80 @@ -23442,13 +23470,13 @@ export default { }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1552 + 1554 ], "distinct": [ 5 ], "filter": [ - 1540 + 1542 ], "predicate": [ 41 @@ -23459,13 +23487,13 @@ export default { }, "event_organizers_aggregate_fields": { "avg": [ - 1538 + 1540 ], "count": [ 40, { "columns": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "distinct": [ @@ -23474,31 +23502,31 @@ export default { } ], "max": [ - 1544 + 1546 ], "min": [ - 1546 + 1548 ], "stddev": [ - 1554 + 1556 ], "stddev_pop": [ - 1556 + 1558 ], "stddev_samp": [ - 1558 + 1560 ], "sum": [ - 1562 + 1564 ], "var_pop": [ - 1566 + 1568 ], "var_samp": [ - 1568 + 1570 ], "variance": [ - 1570 + 1572 ], "__typename": [ 80 @@ -23506,37 +23534,37 @@ export default { }, "event_organizers_aggregate_order_by": { "avg": [ - 1539 + 1541 ], "count": [ - 3006 + 3035 ], "max": [ - 1545 + 1547 ], "min": [ - 1547 + 1549 ], "stddev": [ - 1555 + 1557 ], "stddev_pop": [ - 1557 + 1559 ], "stddev_samp": [ - 1559 + 1561 ], "sum": [ - 1563 + 1565 ], "var_pop": [ - 1567 + 1569 ], "var_samp": [ - 1569 + 1571 ], "variance": [ - 1571 + 1573 ], "__typename": [ 80 @@ -23544,10 +23572,10 @@ export default { }, "event_organizers_arr_rel_insert_input": { "data": [ - 1543 + 1545 ], "on_conflict": [ - 1549 + 1551 ], "__typename": [ 80 @@ -23563,7 +23591,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23571,28 +23599,28 @@ export default { }, "event_organizers_bool_exp": { "_and": [ - 1540 + 1542 ], "_not": [ - 1540 + 1542 ], "_or": [ - 1540 + 1542 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "organizer": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -23601,7 +23629,7 @@ export default { "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23609,19 +23637,19 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "organizer": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23629,13 +23657,13 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23643,13 +23671,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23657,13 +23685,13 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23671,13 +23699,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23688,7 +23716,7 @@ export default { 40 ], "returning": [ - 1531 + 1533 ], "__typename": [ 80 @@ -23696,13 +23724,13 @@ export default { }, "event_organizers_on_conflict": { "constraint": [ - 1541 + 1543 ], "update_columns": [ - 1564 + 1566 ], "where": [ - 1540 + 1542 ], "__typename": [ 80 @@ -23710,19 +23738,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "organizer": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23730,10 +23758,10 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23742,13 +23770,13 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23764,7 +23792,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23780,7 +23808,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23796,7 +23824,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23804,10 +23832,10 @@ export default { }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1561 + 1563 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -23815,13 +23843,13 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23829,7 +23857,7 @@ export default { }, "event_organizers_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23837,7 +23865,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23846,13 +23874,13 @@ export default { "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1542 + 1544 ], "_set": [ - 1553 + 1555 ], "where": [ - 1540 + 1542 ], "__typename": [ 80 @@ -23868,7 +23896,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23884,7 +23912,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23900,7 +23928,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -23908,19 +23936,19 @@ export default { }, "event_players": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -23928,10 +23956,10 @@ export default { }, "event_players_aggregate": { "aggregate": [ - 1576 + 1578 ], "nodes": [ - 1572 + 1574 ], "__typename": [ 80 @@ -23939,7 +23967,7 @@ export default { }, "event_players_aggregate_bool_exp": { "count": [ - 1575 + 1577 ], "__typename": [ 80 @@ -23947,13 +23975,13 @@ export default { }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1593 + 1595 ], "distinct": [ 5 ], "filter": [ - 1581 + 1583 ], "predicate": [ 41 @@ -23964,13 +23992,13 @@ export default { }, "event_players_aggregate_fields": { "avg": [ - 1579 + 1581 ], "count": [ 40, { "columns": [ - 1593, + 1595, "[event_players_select_column!]" ], "distinct": [ @@ -23979,31 +24007,31 @@ export default { } ], "max": [ - 1585 + 1587 ], "min": [ - 1587 + 1589 ], "stddev": [ - 1595 + 1597 ], "stddev_pop": [ - 1597 + 1599 ], "stddev_samp": [ - 1599 + 1601 ], "sum": [ - 1603 + 1605 ], "var_pop": [ - 1607 + 1609 ], "var_samp": [ - 1609 + 1611 ], "variance": [ - 1611 + 1613 ], "__typename": [ 80 @@ -24011,37 +24039,37 @@ export default { }, "event_players_aggregate_order_by": { "avg": [ - 1580 + 1582 ], "count": [ - 3006 + 3035 ], "max": [ - 1586 + 1588 ], "min": [ - 1588 + 1590 ], "stddev": [ - 1596 + 1598 ], "stddev_pop": [ - 1598 + 1600 ], "stddev_samp": [ - 1600 + 1602 ], "sum": [ - 1604 + 1606 ], "var_pop": [ - 1608 + 1610 ], "var_samp": [ - 1610 + 1612 ], "variance": [ - 1612 + 1614 ], "__typename": [ 80 @@ -24049,10 +24077,10 @@ export default { }, "event_players_arr_rel_insert_input": { "data": [ - 1584 + 1586 ], "on_conflict": [ - 1590 + 1592 ], "__typename": [ 80 @@ -24068,7 +24096,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24076,28 +24104,28 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1581 + 1583 ], "_not": [ - 1581 + 1583 ], "_or": [ - 1581 + 1583 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -24106,7 +24134,7 @@ export default { "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24114,19 +24142,19 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24134,13 +24162,13 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24148,13 +24176,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24162,13 +24190,13 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24176,13 +24204,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24193,7 +24221,7 @@ export default { 40 ], "returning": [ - 1572 + 1574 ], "__typename": [ 80 @@ -24201,13 +24229,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1582 + 1584 ], "update_columns": [ - 1605 + 1607 ], "where": [ - 1581 + 1583 ], "__typename": [ 80 @@ -24215,19 +24243,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24235,10 +24263,10 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24247,13 +24275,13 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24269,7 +24297,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24285,7 +24313,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24301,7 +24329,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24309,10 +24337,10 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1602 + 1604 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -24320,13 +24348,13 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24334,7 +24362,7 @@ export default { }, "event_players_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -24342,7 +24370,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24351,13 +24379,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1583 + 1585 ], "_set": [ - 1594 + 1596 ], "where": [ - 1581 + 1583 ], "__typename": [ 80 @@ -24373,7 +24401,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24389,7 +24417,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24405,7 +24433,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24413,19 +24441,19 @@ export default { }, "event_teams": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24433,10 +24461,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1617 + 1619 ], "nodes": [ - 1613 + 1615 ], "__typename": [ 80 @@ -24444,7 +24472,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1616 + 1618 ], "__typename": [ 80 @@ -24452,13 +24480,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1631 + 1633 ], "distinct": [ 5 ], "filter": [ - 1620 + 1622 ], "predicate": [ 41 @@ -24472,7 +24500,7 @@ export default { 40, { "columns": [ - 1631, + 1633, "[event_teams_select_column!]" ], "distinct": [ @@ -24481,10 +24509,10 @@ export default { } ], "max": [ - 1623 + 1625 ], "min": [ - 1625 + 1627 ], "__typename": [ 80 @@ -24492,13 +24520,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 1624 + 1626 ], "min": [ - 1626 + 1628 ], "__typename": [ 80 @@ -24506,10 +24534,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1622 + 1624 ], "on_conflict": [ - 1628 + 1630 ], "__typename": [ 80 @@ -24517,28 +24545,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1620 + 1622 ], "_not": [ - 1620 + 1622 ], "_or": [ - 1620 + 1622 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -24547,19 +24575,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24567,13 +24595,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24581,13 +24609,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24595,13 +24623,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24609,13 +24637,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24626,7 +24654,7 @@ export default { 40 ], "returning": [ - 1613 + 1615 ], "__typename": [ 80 @@ -24634,13 +24662,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1621 + 1623 ], "update_columns": [ - 1635 + 1637 ], "where": [ - 1620 + 1622 ], "__typename": [ 80 @@ -24648,19 +24676,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24668,10 +24696,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24680,13 +24708,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24694,10 +24722,10 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1634 + 1636 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -24705,13 +24733,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24720,10 +24748,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1632 + 1634 ], "where": [ - 1620 + 1622 ], "__typename": [ 80 @@ -24731,19 +24759,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4553 + 4609 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24751,10 +24779,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1641 + 1643 ], "nodes": [ - 1637 + 1639 ], "__typename": [ 80 @@ -24762,7 +24790,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1640 + 1642 ], "__typename": [ 80 @@ -24770,13 +24798,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1655 + 1657 ], "distinct": [ 5 ], "filter": [ - 1644 + 1646 ], "predicate": [ 41 @@ -24790,7 +24818,7 @@ export default { 40, { "columns": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "distinct": [ @@ -24799,10 +24827,10 @@ export default { } ], "max": [ - 1647 + 1649 ], "min": [ - 1649 + 1651 ], "__typename": [ 80 @@ -24810,13 +24838,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 1648 + 1650 ], "min": [ - 1650 + 1652 ], "__typename": [ 80 @@ -24824,10 +24852,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1646 + 1648 ], "on_conflict": [ - 1652 + 1654 ], "__typename": [ 80 @@ -24835,28 +24863,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1644 + 1646 ], "_not": [ - 1644 + 1646 ], "_or": [ - 1644 + 1646 ], "created_at": [ - 4554 + 4610 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -24865,19 +24893,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4553 + 4609 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24885,13 +24913,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24899,13 +24927,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24913,13 +24941,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24927,13 +24955,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24944,7 +24972,7 @@ export default { 40 ], "returning": [ - 1637 + 1639 ], "__typename": [ 80 @@ -24952,13 +24980,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1645 + 1647 ], "update_columns": [ - 1659 + 1661 ], "where": [ - 1644 + 1646 ], "__typename": [ 80 @@ -24966,19 +24994,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -24986,10 +25014,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -24998,13 +25026,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -25012,10 +25040,10 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1658 + 1660 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -25023,13 +25051,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "event_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -25038,10 +25066,10 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1656 + 1658 ], "where": [ - 1644 + 1646 ], "__typename": [ 80 @@ -25049,10 +25077,10 @@ export default { }, "events": { "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -25062,19 +25090,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -25084,19 +25112,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "banner": [ - 1448 + 1450 ], "banner_media_id": [ - 5053 + 5109 ], "can_upload_media": [ 5 @@ -25105,28 +25133,28 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "hide_creator_organizer": [ 5 ], "id": [ - 5053 + 5109 ], "is_organizer": [ 5 ], "media": [ - 1448, + 1450, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -25136,22 +25164,22 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], "media_access": [ - 679 + 681 ], "media_aggregate": [ - 1449, + 1451, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -25161,11 +25189,11 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], @@ -25173,16 +25201,16 @@ export default { 80 ], "organizer": [ - 3964 + 3993 ], "organizer_steam_id": [ - 257 + 259 ], "organizers": [ - 1531, + 1533, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -25192,19 +25220,19 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "organizers_aggregate": [ - 1532, + 1534, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -25214,19 +25242,19 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "player_stats": [ - 5056, + 5112, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25236,19 +25264,19 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "player_stats_aggregate": [ - 5057, + 5113, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25258,19 +25286,19 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "players": [ - 1572, + 1574, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -25280,19 +25308,19 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "players_aggregate": [ - 1573, + 1575, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -25302,22 +25330,22 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "starts_at": [ - 4553 + 4609 ], "teams": [ - 1613, + 1615, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -25327,19 +25355,19 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "teams_aggregate": [ - 1614, + 1616, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -25349,19 +25377,19 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "tournaments": [ - 1637, + 1639, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -25371,19 +25399,19 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "tournaments_aggregate": [ - 1638, + 1640, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -25393,16 +25421,16 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "visibility": [ - 699 + 701 ], "__typename": [ 80 @@ -25410,10 +25438,10 @@ export default { }, "events_aggregate": { "aggregate": [ - 1663 + 1665 ], "nodes": [ - 1661 + 1663 ], "__typename": [ 80 @@ -25421,13 +25449,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1664 + 1666 ], "count": [ 40, { "columns": [ - 1676, + 1678, "[events_select_column!]" ], "distinct": [ @@ -25436,31 +25464,31 @@ export default { } ], "max": [ - 1669 + 1671 ], "min": [ - 1670 + 1672 ], "stddev": [ - 1678 + 1680 ], "stddev_pop": [ - 1679 + 1681 ], "stddev_samp": [ - 1680 + 1682 ], "sum": [ - 1683 + 1685 ], "var_pop": [ - 1686 + 1688 ], "var_samp": [ - 1687 + 1689 ], "variance": [ - 1688 + 1690 ], "__typename": [ 80 @@ -25476,25 +25504,25 @@ export default { }, "events_bool_exp": { "_and": [ - 1665 + 1667 ], "_not": [ - 1665 + 1667 ], "_or": [ - 1665 + 1667 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "banner": [ - 1457 + 1459 ], "banner_media_id": [ - 5055 + 5111 ], "can_upload_media": [ 6 @@ -25503,76 +25531,76 @@ export default { 6 ], "created_at": [ - 4554 + 4610 ], "description": [ 82 ], "ends_at": [ - 4554 + 4610 ], "hide_creator_organizer": [ 6 ], "id": [ - 5055 + 5111 ], "is_organizer": [ 6 ], "media": [ - 1457 + 1459 ], "media_access": [ - 680 + 682 ], "media_aggregate": [ - 1450 + 1452 ], "name": [ 82 ], "organizer": [ - 3968 + 3997 ], "organizer_steam_id": [ - 259 + 261 ], "organizers": [ - 1540 + 1542 ], "organizers_aggregate": [ - 1533 + 1535 ], "player_stats": [ - 5075 + 5131 ], "player_stats_aggregate": [ - 5058 + 5114 ], "players": [ - 1581 + 1583 ], "players_aggregate": [ - 1574 + 1576 ], "starts_at": [ - 4554 + 4610 ], "teams": [ - 1620 + 1622 ], "teams_aggregate": [ - 1615 + 1617 ], "tournaments": [ - 1644 + 1646 ], "tournaments_aggregate": [ - 1639 + 1641 ], "visibility": [ - 700 + 702 ], "__typename": [ 80 @@ -25581,7 +25609,7 @@ export default { "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -25589,64 +25617,64 @@ export default { }, "events_insert_input": { "awards": [ - 194 + 196 ], "banner": [ - 1466 + 1468 ], "banner_media_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "hide_creator_organizer": [ 5 ], "id": [ - 5053 + 5109 ], "media": [ - 1454 + 1456 ], "media_access": [ - 679 + 681 ], "name": [ 80 ], "organizer": [ - 3975 + 4004 ], "organizer_steam_id": [ - 257 + 259 ], "organizers": [ - 1537 + 1539 ], "player_stats": [ - 5072 + 5128 ], "players": [ - 1578 + 1580 ], "starts_at": [ - 4553 + 4609 ], "teams": [ - 1619 + 1621 ], "tournaments": [ - 1643 + 1645 ], "visibility": [ - 699 + 701 ], "__typename": [ 80 @@ -25654,28 +25682,28 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -25683,28 +25711,28 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -25715,7 +25743,7 @@ export default { 40 ], "returning": [ - 1661 + 1663 ], "__typename": [ 80 @@ -25723,10 +25751,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1668 + 1670 ], "on_conflict": [ - 1673 + 1675 ], "__typename": [ 80 @@ -25734,13 +25762,13 @@ export default { }, "events_on_conflict": { "constraint": [ - 1666 + 1668 ], "update_columns": [ - 1684 + 1686 ], "where": [ - 1665 + 1667 ], "__typename": [ 80 @@ -25748,73 +25776,73 @@ export default { }, "events_order_by": { "awards_aggregate": [ - 193 + 195 ], "banner": [ - 1468 + 1470 ], "banner_media_id": [ - 3006 + 3035 ], "can_upload_media": [ - 3006 + 3035 ], "can_view": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "ends_at": [ - 3006 + 3035 ], "hide_creator_organizer": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "media_access": [ - 3006 + 3035 ], "media_aggregate": [ - 1453 + 1455 ], "name": [ - 3006 + 3035 ], "organizer": [ - 3977 + 4006 ], "organizer_steam_id": [ - 3006 + 3035 ], "organizers_aggregate": [ - 1536 + 1538 ], "player_stats_aggregate": [ - 5071 + 5127 ], "players_aggregate": [ - 1577 + 1579 ], "starts_at": [ - 3006 + 3035 ], "teams_aggregate": [ - 1618 + 1620 ], "tournaments_aggregate": [ - 1642 + 1644 ], "visibility": [ - 3006 + 3035 ], "__typename": [ 80 @@ -25822,7 +25850,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -25831,37 +25859,37 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "hide_creator_organizer": [ 5 ], "id": [ - 5053 + 5109 ], "media_access": [ - 679 + 681 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "starts_at": [ - 4553 + 4609 ], "visibility": [ - 699 + 701 ], "__typename": [ 80 @@ -25893,10 +25921,10 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1682 + 1684 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -25904,37 +25932,37 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "hide_creator_organizer": [ 5 ], "id": [ - 5053 + 5109 ], "media_access": [ - 679 + 681 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "starts_at": [ - 4553 + 4609 ], "visibility": [ - 699 + 701 ], "__typename": [ 80 @@ -25942,7 +25970,7 @@ export default { }, "events_sum_fields": { "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -25951,13 +25979,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1667 + 1669 ], "_set": [ - 1677 + 1679 ], "where": [ - 1665 + 1667 ], "__typename": [ 80 @@ -25990,31 +26018,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1689 + 1691 ], "_gt": [ - 1689 + 1691 ], "_gte": [ - 1689 + 1691 ], "_in": [ - 1689 + 1691 ], "_is_null": [ 5 ], "_lt": [ - 1689 + 1691 ], "_lte": [ - 1689 + 1691 ], "_neq": [ - 1689 + 1691 ], "_nin": [ - 1689 + 1691 ], "__typename": [ 80 @@ -26022,16 +26050,16 @@ export default { }, "friends": { "e_status": [ - 714 + 716 ], "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "status": [ - 719 + 721 ], "__typename": [ 80 @@ -26039,10 +26067,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1693 + 1695 ], "nodes": [ - 1691 + 1693 ], "__typename": [ 80 @@ -26050,13 +26078,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1694 + 1696 ], "count": [ 40, { "columns": [ - 1705, + 1707, "[friends_select_column!]" ], "distinct": [ @@ -26065,31 +26093,31 @@ export default { } ], "max": [ - 1699 + 1701 ], "min": [ - 1700 + 1702 ], "stddev": [ - 1707 + 1709 ], "stddev_pop": [ - 1708 + 1710 ], "stddev_samp": [ - 1709 + 1711 ], "sum": [ - 1712 + 1714 ], "var_pop": [ - 1715 + 1717 ], "var_samp": [ - 1716 + 1718 ], "variance": [ - 1717 + 1719 ], "__typename": [ 80 @@ -26108,25 +26136,25 @@ export default { }, "friends_bool_exp": { "_and": [ - 1695 + 1697 ], "_not": [ - 1695 + 1697 ], "_or": [ - 1695 + 1697 ], "e_status": [ - 717 + 719 ], "other_player_steam_id": [ - 259 + 261 ], "player_steam_id": [ - 259 + 261 ], "status": [ - 720 + 722 ], "__typename": [ 80 @@ -26135,10 +26163,10 @@ export default { "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -26146,16 +26174,16 @@ export default { }, "friends_insert_input": { "e_status": [ - 725 + 727 ], "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "status": [ - 719 + 721 ], "__typename": [ 80 @@ -26163,10 +26191,10 @@ export default { }, "friends_max_fields": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -26174,10 +26202,10 @@ export default { }, "friends_min_fields": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -26188,7 +26216,7 @@ export default { 40 ], "returning": [ - 1691 + 1693 ], "__typename": [ 80 @@ -26196,13 +26224,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1696 + 1698 ], "update_columns": [ - 1713 + 1715 ], "where": [ - 1695 + 1697 ], "__typename": [ 80 @@ -26210,16 +26238,16 @@ export default { }, "friends_order_by": { "e_status": [ - 727 + 729 ], "other_player_steam_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "__typename": [ 80 @@ -26227,10 +26255,10 @@ export default { }, "friends_pk_columns_input": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -26239,13 +26267,13 @@ export default { "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "status": [ - 719 + 721 ], "__typename": [ 80 @@ -26286,10 +26314,10 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1711 + 1713 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -26297,13 +26325,13 @@ export default { }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "status": [ - 719 + 721 ], "__typename": [ 80 @@ -26311,10 +26339,10 @@ export default { }, "friends_sum_fields": { "other_player_steam_id": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -26323,13 +26351,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1697 + 1699 ], "_set": [ - 1706 + 1708 ], "where": [ - 1695 + 1697 ], "__typename": [ 80 @@ -26379,7 +26407,7 @@ export default { 40 ], "cpu_frequency_info": [ - 1842, + 1844, { "path": [ 80 @@ -26387,7 +26415,7 @@ export default { } ], "cpu_governor_info": [ - 1842, + 1844, { "path": [ 80 @@ -26401,7 +26429,7 @@ export default { 40 ], "cpu_warnings": [ - 1842, + 1844, { "path": [ 80 @@ -26409,7 +26437,7 @@ export default { } ], "cs2_launch_options": [ - 1842, + 1844, { "path": [ 80 @@ -26417,7 +26445,7 @@ export default { } ], "cs2_video_settings": [ - 1842, + 1844, { "path": [ 80 @@ -26437,10 +26465,10 @@ export default { 40 ], "e_region": [ - 4051 + 4107 ], "e_status": [ - 755 + 757 ], "enabled": [ 5 @@ -26458,7 +26486,7 @@ export default { 5 ], "gpu_info": [ - 1842, + 1844, { "path": [ 80 @@ -26478,13 +26506,13 @@ export default { 80 ], "lan_ip": [ - 1838 + 1840 ], "node_ip": [ - 1838 + 1840 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -26496,22 +26524,22 @@ export default { 80 ], "pinned_version": [ - 1769 + 1771 ], "plugin_supported": [ 5 ], "public_ip": [ - 1838 + 1840 ], "region": [ 80 ], "servers": [ - 4078, + 4134, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -26521,19 +26549,19 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_aggregate": [ - 4079, + 4135, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -26543,16 +26571,16 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -26561,7 +26589,7 @@ export default { 80 ], "shader_bake_status_history": [ - 1842, + 1844, { "path": [ 80 @@ -26572,7 +26600,7 @@ export default { 40 ], "status": [ - 760 + 762 ], "supports_cpu_pinning": [ 5 @@ -26590,7 +26618,7 @@ export default { 80 ], "version": [ - 1769 + 1771 ], "__typename": [ 80 @@ -26598,10 +26626,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1724 + 1726 ], "nodes": [ - 1718 + 1720 ], "__typename": [ 80 @@ -26609,13 +26637,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1721 + 1723 ], "bool_or": [ - 1722 + 1724 ], "count": [ - 1723 + 1725 ], "__typename": [ 80 @@ -26623,13 +26651,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1748 + 1750 ], "distinct": [ 5 ], "filter": [ - 1730 + 1732 ], "predicate": [ 6 @@ -26640,13 +26668,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1749 + 1751 ], "distinct": [ 5 ], "filter": [ - 1730 + 1732 ], "predicate": [ 6 @@ -26657,13 +26685,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1747 + 1749 ], "distinct": [ 5 ], "filter": [ - 1730 + 1732 ], "predicate": [ 41 @@ -26674,13 +26702,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1728 + 1730 ], "count": [ 40, { "columns": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -26689,31 +26717,31 @@ export default { } ], "max": [ - 1737 + 1739 ], "min": [ - 1739 + 1741 ], "stddev": [ - 1751 + 1753 ], "stddev_pop": [ - 1753 + 1755 ], "stddev_samp": [ - 1755 + 1757 ], "sum": [ - 1759 + 1761 ], "var_pop": [ - 1763 + 1765 ], "var_samp": [ - 1765 + 1767 ], "variance": [ - 1767 + 1769 ], "__typename": [ 80 @@ -26721,37 +26749,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1729 + 1731 ], "count": [ - 3006 + 3035 ], "max": [ - 1738 + 1740 ], "min": [ - 1740 + 1742 ], "stddev": [ - 1752 + 1754 ], "stddev_pop": [ - 1754 + 1756 ], "stddev_samp": [ - 1756 + 1758 ], "sum": [ - 1760 + 1762 ], "var_pop": [ - 1764 + 1766 ], "var_samp": [ - 1766 + 1768 ], "variance": [ - 1768 + 1770 ], "__typename": [ 80 @@ -26759,25 +26787,25 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1842 + 1844 ], "cpu_governor_info": [ - 1842 + 1844 ], "cpu_warnings": [ - 1842 + 1844 ], "cs2_launch_options": [ - 1842 + 1844 ], "cs2_video_settings": [ - 1842 + 1844 ], "gpu_info": [ - 1842 + 1844 ], "shader_bake_status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -26785,10 +26813,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1736 + 1738 ], "on_conflict": [ - 1743 + 1745 ], "__typename": [ 80 @@ -26843,40 +26871,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -26884,13 +26912,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1730 + 1732 ], "_not": [ - 1730 + 1732 ], "_or": [ - 1730 + 1732 ], "available_server_count": [ 41 @@ -26902,10 +26930,10 @@ export default { 41 ], "cpu_frequency_info": [ - 1844 + 1846 ], "cpu_governor_info": [ - 1844 + 1846 ], "cpu_sockets": [ 41 @@ -26914,13 +26942,13 @@ export default { 41 ], "cpu_warnings": [ - 1844 + 1846 ], "cs2_launch_options": [ - 1844 + 1846 ], "cs2_video_settings": [ - 1844 + 1846 ], "csgo_build_id": [ 41 @@ -26935,10 +26963,10 @@ export default { 41 ], "e_region": [ - 4055 + 4111 ], "e_status": [ - 758 + 760 ], "enabled": [ 6 @@ -26956,7 +26984,7 @@ export default { 6 ], "gpu_info": [ - 1844 + 1846 ], "gpu_rendering_enabled": [ 6 @@ -26971,13 +26999,13 @@ export default { 82 ], "lan_ip": [ - 1839 + 1841 ], "node_ip": [ - 1839 + 1841 ], "offline_at": [ - 4554 + 4610 ], "pin_build_id": [ 41 @@ -26989,25 +27017,25 @@ export default { 82 ], "pinned_version": [ - 1774 + 1776 ], "plugin_supported": [ 6 ], "public_ip": [ - 1839 + 1841 ], "region": [ 82 ], "servers": [ - 4089 + 4145 ], "servers_aggregate": [ - 4080 + 4136 ], "shader_bake_progress": [ - 3005 + 3034 ], "shader_bake_progress_stage": [ 82 @@ -27016,13 +27044,13 @@ export default { 82 ], "shader_bake_status_history": [ - 1844 + 1846 ], "start_port_range": [ 41 ], "status": [ - 761 + 763 ], "supports_cpu_pinning": [ 6 @@ -27040,7 +27068,7 @@ export default { 82 ], "version": [ - 1774 + 1776 ], "__typename": [ 80 @@ -27157,7 +27185,7 @@ export default { 40 ], "shader_bake_progress": [ - 3004 + 3033 ], "start_port_range": [ 40 @@ -27174,10 +27202,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1842 + 1844 ], "cpu_governor_info": [ - 1842 + 1844 ], "cpu_sockets": [ 40 @@ -27186,13 +27214,13 @@ export default { 40 ], "cpu_warnings": [ - 1842 + 1844 ], "cs2_launch_options": [ - 1842 + 1844 ], "cs2_video_settings": [ - 1842 + 1844 ], "csgo_build_id": [ 40 @@ -27207,10 +27235,10 @@ export default { 40 ], "e_region": [ - 4061 + 4117 ], "e_status": [ - 766 + 768 ], "enabled": [ 5 @@ -27228,7 +27256,7 @@ export default { 5 ], "gpu_info": [ - 1842 + 1844 ], "gpu_rendering_enabled": [ 5 @@ -27243,13 +27271,13 @@ export default { 80 ], "lan_ip": [ - 1838 + 1840 ], "node_ip": [ - 1838 + 1840 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -27261,19 +27289,19 @@ export default { 80 ], "pinned_version": [ - 1784 + 1786 ], "public_ip": [ - 1838 + 1840 ], "region": [ 80 ], "servers": [ - 4086 + 4142 ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -27282,13 +27310,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1842 + 1844 ], "start_port_range": [ 40 ], "status": [ - 760 + 762 ], "supports_cpu_pinning": [ 5 @@ -27303,7 +27331,7 @@ export default { 80 ], "version": [ - 1784 + 1786 ], "__typename": [ 80 @@ -27347,7 +27375,7 @@ export default { 80 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -27362,7 +27390,7 @@ export default { 80 ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -27388,70 +27416,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "pin_plugin_runtime": [ - 3006 + 3035 ], "pin_plugin_version": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "shader_bake_progress_stage": [ - 3006 + 3035 ], "shader_bake_status": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "token": [ - 3006 + 3035 ], "update_status": [ - 3006 + 3035 ], "__typename": [ 80 @@ -27495,7 +27523,7 @@ export default { 80 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -27510,7 +27538,7 @@ export default { 80 ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -27536,70 +27564,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "pin_plugin_runtime": [ - 3006 + 3035 ], "pin_plugin_version": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "shader_bake_progress_stage": [ - 3006 + 3035 ], "shader_bake_status": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "token": [ - 3006 + 3035 ], "update_status": [ - 3006 + 3035 ], "__typename": [ 80 @@ -27610,7 +27638,7 @@ export default { 40 ], "returning": [ - 1718 + 1720 ], "__typename": [ 80 @@ -27618,10 +27646,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1736 + 1738 ], "on_conflict": [ - 1743 + 1745 ], "__typename": [ 80 @@ -27629,13 +27657,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1731 + 1733 ], "update_columns": [ - 1761 + 1763 ], "where": [ - 1730 + 1732 ], "__typename": [ 80 @@ -27643,151 +27671,151 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 3006 + 3035 ], "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_frequency_info": [ - 3006 + 3035 ], "cpu_governor_info": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "cpu_warnings": [ - 3006 + 3035 ], "cs2_launch_options": [ - 3006 + 3035 ], "cs2_video_settings": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "e_region": [ - 4063 + 4119 ], "e_status": [ - 768 + 770 ], "enabled": [ - 3006 + 3035 ], "enabled_for_match_making": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "gpu": [ - 3006 + 3035 ], "gpu_demos_enabled": [ - 3006 + 3035 ], "gpu_info": [ - 3006 + 3035 ], "gpu_rendering_enabled": [ - 3006 + 3035 ], "gpu_streaming_enabled": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "lan_ip": [ - 3006 + 3035 ], "node_ip": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "pin_plugin_runtime": [ - 3006 + 3035 ], "pin_plugin_version": [ - 3006 + 3035 ], "pinned_version": [ - 1786 + 1788 ], "plugin_supported": [ - 3006 + 3035 ], "public_ip": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "servers_aggregate": [ - 4085 + 4141 ], "shader_bake_progress": [ - 3006 + 3035 ], "shader_bake_progress_stage": [ - 3006 + 3035 ], "shader_bake_status": [ - 3006 + 3035 ], "shader_bake_status_history": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "supports_cpu_pinning": [ - 3006 + 3035 ], "supports_low_latency": [ - 3006 + 3035 ], "token": [ - 3006 + 3035 ], "total_server_count": [ - 3006 + 3035 ], "update_status": [ - 3006 + 3035 ], "version": [ - 1786 + 1788 ], "__typename": [ 80 @@ -27803,25 +27831,25 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1842 + 1844 ], "cpu_governor_info": [ - 1842 + 1844 ], "cpu_warnings": [ - 1842 + 1844 ], "cs2_launch_options": [ - 1842 + 1844 ], "cs2_video_settings": [ - 1842 + 1844 ], "gpu_info": [ - 1842 + 1844 ], "shader_bake_status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -27838,10 +27866,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1842 + 1844 ], "cpu_governor_info": [ - 1842 + 1844 ], "cpu_sockets": [ 40 @@ -27850,13 +27878,13 @@ export default { 40 ], "cpu_warnings": [ - 1842 + 1844 ], "cs2_launch_options": [ - 1842 + 1844 ], "cs2_video_settings": [ - 1842 + 1844 ], "csgo_build_id": [ 40 @@ -27886,7 +27914,7 @@ export default { 5 ], "gpu_info": [ - 1842 + 1844 ], "gpu_rendering_enabled": [ 5 @@ -27901,13 +27929,13 @@ export default { 80 ], "lan_ip": [ - 1838 + 1840 ], "node_ip": [ - 1838 + 1840 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -27919,13 +27947,13 @@ export default { 80 ], "public_ip": [ - 1838 + 1840 ], "region": [ 80 ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -27934,13 +27962,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1842 + 1844 ], "start_port_range": [ 40 ], "status": [ - 760 + 762 ], "supports_cpu_pinning": [ 5 @@ -28007,40 +28035,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28095,40 +28123,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28183,40 +28211,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28224,10 +28252,10 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1758 + 1760 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -28241,10 +28269,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1842 + 1844 ], "cpu_governor_info": [ - 1842 + 1844 ], "cpu_sockets": [ 40 @@ -28253,13 +28281,13 @@ export default { 40 ], "cpu_warnings": [ - 1842 + 1844 ], "cs2_launch_options": [ - 1842 + 1844 ], "cs2_video_settings": [ - 1842 + 1844 ], "csgo_build_id": [ 40 @@ -28289,7 +28317,7 @@ export default { 5 ], "gpu_info": [ - 1842 + 1844 ], "gpu_rendering_enabled": [ 5 @@ -28304,13 +28332,13 @@ export default { 80 ], "lan_ip": [ - 1838 + 1840 ], "node_ip": [ - 1838 + 1840 ], "offline_at": [ - 4553 + 4609 ], "pin_build_id": [ 40 @@ -28322,13 +28350,13 @@ export default { 80 ], "public_ip": [ - 1838 + 1840 ], "region": [ 80 ], "shader_bake_progress": [ - 3004 + 3033 ], "shader_bake_progress_stage": [ 80 @@ -28337,13 +28365,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1842 + 1844 ], "start_port_range": [ 40 ], "status": [ - 760 + 762 ], "supports_cpu_pinning": [ 5 @@ -28396,7 +28424,7 @@ export default { 40 ], "shader_bake_progress": [ - 3004 + 3033 ], "start_port_range": [ 40 @@ -28410,40 +28438,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28452,28 +28480,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1726 + 1728 ], "_delete_at_path": [ - 1732 + 1734 ], "_delete_elem": [ - 1733 + 1735 ], "_delete_key": [ - 1734 + 1736 ], "_inc": [ - 1735 + 1737 ], "_prepend": [ - 1746 + 1748 ], "_set": [ - 1750 + 1752 ], "where": [ - 1730 + 1732 ], "__typename": [ 80 @@ -28528,40 +28556,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28616,40 +28644,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28704,40 +28732,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 3006 + 3035 ], "cpu_cores_per_socket": [ - 3006 + 3035 ], "cpu_sockets": [ - 3006 + 3035 ], "cpu_threads_per_core": [ - 3006 + 3035 ], "csgo_build_id": [ - 3006 + 3035 ], "demo_network_limiter": [ - 3006 + 3035 ], "disk_available_gb": [ - 3006 + 3035 ], "disk_used_percent": [ - 3006 + 3035 ], "end_port_range": [ - 3006 + 3035 ], "pin_build_id": [ - 3006 + 3035 ], "shader_bake_progress": [ - 3006 + 3035 ], "start_port_range": [ - 3006 + 3035 ], "__typename": [ 80 @@ -28757,7 +28785,7 @@ export default { 80 ], "downloads": [ - 1842, + 1844, { "path": [ 80 @@ -28765,7 +28793,7 @@ export default { } ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -28776,10 +28804,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1771 + 1773 ], "nodes": [ - 1769 + 1771 ], "__typename": [ 80 @@ -28787,13 +28815,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1773 + 1775 ], "count": [ 40, { "columns": [ - 1789, + 1791, "[game_versions_select_column!]" ], "distinct": [ @@ -28802,31 +28830,31 @@ export default { } ], "max": [ - 1781 + 1783 ], "min": [ - 1782 + 1784 ], "stddev": [ - 1791 + 1793 ], "stddev_pop": [ - 1792 + 1794 ], "stddev_samp": [ - 1793 + 1795 ], "sum": [ - 1796 + 1798 ], "var_pop": [ - 1799 + 1801 ], "var_samp": [ - 1800 + 1802 ], "variance": [ - 1801 + 1803 ], "__typename": [ 80 @@ -28834,7 +28862,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1842 + 1844 ], "__typename": [ 80 @@ -28850,13 +28878,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1774 + 1776 ], "_not": [ - 1774 + 1776 ], "_or": [ - 1774 + 1776 ], "build_id": [ 41 @@ -28871,10 +28899,10 @@ export default { 82 ], "downloads": [ - 1844 + 1846 ], "updated_at": [ - 4554 + 4610 ], "version": [ 82 @@ -28930,10 +28958,10 @@ export default { 80 ], "downloads": [ - 1842 + 1844 ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -28950,7 +28978,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -28967,7 +28995,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -28981,7 +29009,7 @@ export default { 40 ], "returning": [ - 1769 + 1771 ], "__typename": [ 80 @@ -28989,10 +29017,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1780 + 1782 ], "on_conflict": [ - 1785 + 1787 ], "__typename": [ 80 @@ -29000,13 +29028,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1775 + 1777 ], "update_columns": [ - 1797 + 1799 ], "where": [ - 1774 + 1776 ], "__typename": [ 80 @@ -29014,25 +29042,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 3006 + 3035 ], "current": [ - 3006 + 3035 ], "cvars": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "downloads": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "version": [ - 3006 + 3035 ], "__typename": [ 80 @@ -29048,7 +29076,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1842 + 1844 ], "__typename": [ 80 @@ -29069,10 +29097,10 @@ export default { 80 ], "downloads": [ - 1842 + 1844 ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -29107,10 +29135,10 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1795 + 1797 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -29130,10 +29158,10 @@ export default { 80 ], "downloads": [ - 1842 + 1844 ], "updated_at": [ - 4553 + 4609 ], "version": [ 80 @@ -29153,28 +29181,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1772 + 1774 ], "_delete_at_path": [ - 1776 + 1778 ], "_delete_elem": [ - 1777 + 1779 ], "_delete_key": [ - 1778 + 1780 ], "_inc": [ - 1779 + 1781 ], "_prepend": [ - 1788 + 1790 ], "_set": [ - 1790 + 1792 ], "where": [ - 1774 + 1776 ], "__typename": [ 80 @@ -29212,13 +29240,13 @@ export default { 40 ], "game_version": [ - 1769 + 1771 ], "id": [ - 5053 + 5109 ], "results": [ - 1842, + 1844, { "path": [ 80 @@ -29229,7 +29257,7 @@ export default { 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29237,10 +29265,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1804 + 1806 ], "nodes": [ - 1802 + 1804 ], "__typename": [ 80 @@ -29248,13 +29276,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1806 + 1808 ], "count": [ 40, { "columns": [ - 1821, + 1823, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -29263,31 +29291,31 @@ export default { } ], "max": [ - 1814 + 1816 ], "min": [ - 1815 + 1817 ], "stddev": [ - 1823 + 1825 ], "stddev_pop": [ - 1824 + 1826 ], "stddev_samp": [ - 1825 + 1827 ], "sum": [ - 1828 + 1830 ], "var_pop": [ - 1831 + 1833 ], "var_samp": [ - 1832 + 1834 ], "variance": [ - 1833 + 1835 ], "__typename": [ 80 @@ -29295,7 +29323,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1842 + 1844 ], "__typename": [ 80 @@ -29311,13 +29339,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1807 + 1809 ], "_not": [ - 1807 + 1809 ], "_or": [ - 1807 + 1809 ], "branch": [ 82 @@ -29326,19 +29354,19 @@ export default { 41 ], "game_version": [ - 1774 + 1776 ], "id": [ - 5055 + 5111 ], "results": [ - 1844 + 1846 ], "status": [ 82 ], "validated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -29385,19 +29413,19 @@ export default { 40 ], "game_version": [ - 1784 + 1786 ], "id": [ - 5053 + 5109 ], "results": [ - 1842 + 1844 ], "status": [ 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29411,13 +29439,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "status": [ 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29431,13 +29459,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "status": [ 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29448,7 +29476,7 @@ export default { 40 ], "returning": [ - 1802 + 1804 ], "__typename": [ 80 @@ -29456,13 +29484,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1808 + 1810 ], "update_columns": [ - 1829 + 1831 ], "where": [ - 1807 + 1809 ], "__typename": [ 80 @@ -29470,25 +29498,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 3006 + 3035 ], "build_id": [ - 3006 + 3035 ], "game_version": [ - 1786 + 1788 ], "id": [ - 3006 + 3035 ], "results": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "validated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -29496,7 +29524,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -29504,7 +29532,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1842 + 1844 ], "__typename": [ 80 @@ -29519,16 +29547,16 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "results": [ - 1842 + 1844 ], "status": [ 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29560,10 +29588,10 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1827 + 1829 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -29577,16 +29605,16 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "results": [ - 1842 + 1844 ], "status": [ 80 ], "validated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -29603,28 +29631,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1805 + 1807 ], "_delete_at_path": [ - 1809 + 1811 ], "_delete_elem": [ - 1810 + 1812 ], "_delete_key": [ - 1811 + 1813 ], "_inc": [ - 1812 + 1814 ], "_prepend": [ - 1820 + 1822 ], "_set": [ - 1822 + 1824 ], "where": [ - 1807 + 1809 ], "__typename": [ 80 @@ -29659,7 +29687,7 @@ export default { 80 ], "_event_id": [ - 5053 + 5109 ], "_match_type": [ 80 @@ -29685,7 +29713,7 @@ export default { 80 ], "_season_id": [ - 5053 + 5109 ], "_source": [ 80 @@ -29702,7 +29730,7 @@ export default { 80 ], "_league_season_id": [ - 5053 + 5109 ], "_role": [ 80 @@ -29725,7 +29753,7 @@ export default { 80 ], "_season_id": [ - 5053 + 5109 ], "_source": [ 80 @@ -29740,31 +29768,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1838 + 1840 ], "_gt": [ - 1838 + 1840 ], "_gte": [ - 1838 + 1840 ], "_in": [ - 1838 + 1840 ], "_is_null": [ 5 ], "_lt": [ - 1838 + 1840 ], "_lte": [ - 1838 + 1840 ], "_neq": [ - 1838 + 1840 ], "_nin": [ - 1838 + 1840 ], "__typename": [ 80 @@ -29773,31 +29801,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1840 + 1842 ], "_gt": [ - 1840 + 1842 ], "_gte": [ - 1840 + 1842 ], "_in": [ - 1840 + 1842 ], "_is_null": [ 5 ], "_lt": [ - 1840 + 1842 ], "_lte": [ - 1840 + 1842 ], "_neq": [ - 1840 + 1842 ], "_nin": [ - 1840 + 1842 ], "__typename": [ 80 @@ -29814,22 +29842,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1843 + 1845 ], "_contained_in": [ - 1842 + 1844 ], "_contains": [ - 1842 + 1844 ], "_eq": [ - 1842 + 1844 ], "_gt": [ - 1842 + 1844 ], "_gte": [ - 1842 + 1844 ], "_has_key": [ 80 @@ -29841,22 +29869,22 @@ export default { 80 ], "_in": [ - 1842 + 1844 ], "_is_null": [ 5 ], "_lt": [ - 1842 + 1844 ], "_lte": [ - 1842 + 1844 ], "_neq": [ - 1842 + 1844 ], "_nin": [ - 1842 + 1844 ], "__typename": [ 80 @@ -29882,13 +29910,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -29896,10 +29924,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1847 + 1849 ], "nodes": [ - 1845 + 1847 ], "__typename": [ 80 @@ -29907,13 +29935,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1848 + 1850 ], "count": [ 40, { "columns": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -29922,31 +29950,31 @@ export default { } ], "max": [ - 1852 + 1854 ], "min": [ - 1853 + 1855 ], "stddev": [ - 1858 + 1860 ], "stddev_pop": [ - 1859 + 1861 ], "stddev_samp": [ - 1860 + 1862 ], "sum": [ - 1863 + 1865 ], "var_pop": [ - 1865 + 1867 ], "var_samp": [ - 1866 + 1868 ], "variance": [ - 1867 + 1869 ], "__typename": [ 80 @@ -29971,13 +29999,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1849 + 1851 ], "_not": [ - 1849 + 1851 ], "_or": [ - 1849 + 1851 ], "matches_played": [ 41 @@ -29998,13 +30026,13 @@ export default { 82 ], "secondary_value": [ - 1690 + 1692 ], "tertiary_value": [ - 1690 + 1692 ], "value": [ - 1690 + 1692 ], "__typename": [ 80 @@ -30015,13 +30043,13 @@ export default { 40 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30047,13 +30075,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30079,13 +30107,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30111,13 +30139,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30128,7 +30156,7 @@ export default { 40 ], "returning": [ - 1845 + 1847 ], "__typename": [ 80 @@ -30136,31 +30164,31 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 3006 + 3035 ], "player_avatar_url": [ - 3006 + 3035 ], "player_country": [ - 3006 + 3035 ], "player_custom_avatar_url": [ - 3006 + 3035 ], "player_name": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "secondary_value": [ - 3006 + 3035 ], "tertiary_value": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -30187,13 +30215,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30252,10 +30280,10 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1862 + 1864 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -30281,13 +30309,13 @@ export default { 80 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30298,13 +30326,13 @@ export default { 40 ], "secondary_value": [ - 1689 + 1691 ], "tertiary_value": [ - 1689 + 1691 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -30312,13 +30340,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1850 + 1852 ], "_set": [ - 1857 + 1859 ], "where": [ - 1849 + 1851 ], "__typename": [ 80 @@ -30377,10 +30405,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5053 + 5109 ], "_winning_tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -30388,19 +30416,19 @@ export default { }, "league_divisions": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "season_divisions": [ - 2020, + 2022, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -30410,19 +30438,19 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "season_divisions_aggregate": [ - 2021, + 2023, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -30432,16 +30460,16 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30449,10 +30477,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1871 + 1873 ], "nodes": [ - 1869 + 1871 ], "__typename": [ 80 @@ -30460,13 +30488,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1872 + 1874 ], "count": [ 40, { "columns": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "distinct": [ @@ -30475,31 +30503,31 @@ export default { } ], "max": [ - 1877 + 1879 ], "min": [ - 1878 + 1880 ], "stddev": [ - 1886 + 1888 ], "stddev_pop": [ - 1887 + 1889 ], "stddev_samp": [ - 1888 + 1890 ], "sum": [ - 1891 + 1893 ], "var_pop": [ - 1894 + 1896 ], "var_samp": [ - 1895 + 1897 ], "variance": [ - 1896 + 1898 ], "__typename": [ 80 @@ -30515,31 +30543,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1873 + 1875 ], "_not": [ - 1873 + 1875 ], "_or": [ - 1873 + 1875 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "name": [ 82 ], "season_divisions": [ - 2027 + 2029 ], "season_divisions_aggregate": [ - 2022 + 2024 ], "tier": [ - 4143 + 4199 ], "__typename": [ 80 @@ -30548,7 +30576,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30556,19 +30584,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "season_divisions": [ - 2026 + 2028 ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30576,16 +30604,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30593,16 +30621,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30613,7 +30641,7 @@ export default { 40 ], "returning": [ - 1869 + 1871 ], "__typename": [ 80 @@ -30621,10 +30649,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1876 + 1878 ], "on_conflict": [ - 1881 + 1883 ], "__typename": [ 80 @@ -30632,13 +30660,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1874 + 1876 ], "update_columns": [ - 1892 + 1894 ], "where": [ - 1873 + 1875 ], "__typename": [ 80 @@ -30646,19 +30674,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "season_divisions_aggregate": [ - 2025 + 2027 ], "tier": [ - 3006 + 3035 ], "__typename": [ 80 @@ -30666,7 +30694,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -30675,16 +30703,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30716,10 +30744,10 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1890 + 1892 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -30727,16 +30755,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30744,7 +30772,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 4142 + 4198 ], "__typename": [ 80 @@ -30753,13 +30781,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1875 + 1877 ], "_set": [ - 1885 + 1887 ], "where": [ - 1873 + 1875 ], "__typename": [ 80 @@ -30791,25 +30819,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "season": [ - 2045 + 2047 ], "week_number": [ 40 @@ -30820,10 +30848,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1901 + 1903 ], "nodes": [ - 1897 + 1899 ], "__typename": [ 80 @@ -30831,7 +30859,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1900 + 1902 ], "__typename": [ 80 @@ -30839,13 +30867,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1918 + 1920 ], "distinct": [ 5 ], "filter": [ - 1906 + 1908 ], "predicate": [ 41 @@ -30856,13 +30884,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1904 + 1906 ], "count": [ 40, { "columns": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -30871,31 +30899,31 @@ export default { } ], "max": [ - 1910 + 1912 ], "min": [ - 1912 + 1914 ], "stddev": [ - 1920 + 1922 ], "stddev_pop": [ - 1922 + 1924 ], "stddev_samp": [ - 1924 + 1926 ], "sum": [ - 1928 + 1930 ], "var_pop": [ - 1932 + 1934 ], "var_samp": [ - 1934 + 1936 ], "variance": [ - 1936 + 1938 ], "__typename": [ 80 @@ -30903,37 +30931,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1905 + 1907 ], "count": [ - 3006 + 3035 ], "max": [ - 1911 + 1913 ], "min": [ - 1913 + 1915 ], "stddev": [ - 1921 + 1923 ], "stddev_pop": [ - 1923 + 1925 ], "stddev_samp": [ - 1925 + 1927 ], "sum": [ - 1929 + 1931 ], "var_pop": [ - 1933 + 1935 ], "var_samp": [ - 1935 + 1937 ], "variance": [ - 1937 + 1939 ], "__typename": [ 80 @@ -30941,10 +30969,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1909 + 1911 ], "on_conflict": [ - 1915 + 1917 ], "__typename": [ 80 @@ -30960,7 +30988,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -30968,34 +30996,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1906 + 1908 ], "_not": [ - 1906 + 1908 ], "_or": [ - 1906 + 1908 ], "closes_at": [ - 4554 + 4610 ], "created_at": [ - 4554 + 4610 ], "default_match_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "opens_at": [ - 4554 + 4610 ], "season": [ - 2050 + 2052 ], "week_number": [ 41 @@ -31015,25 +31043,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "season": [ - 2060 + 2062 ], "week_number": [ 40 @@ -31044,22 +31072,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "week_number": [ 40 @@ -31070,25 +31098,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31096,22 +31124,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "week_number": [ 40 @@ -31122,25 +31150,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31151,7 +31179,7 @@ export default { 40 ], "returning": [ - 1897 + 1899 ], "__typename": [ 80 @@ -31159,13 +31187,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1907 + 1909 ], "update_columns": [ - 1930 + 1932 ], "where": [ - 1906 + 1908 ], "__typename": [ 80 @@ -31173,28 +31201,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "season": [ - 2062 + 2064 ], "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31202,7 +31230,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31211,22 +31239,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "week_number": [ 40 @@ -31245,7 +31273,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31261,7 +31289,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31277,7 +31305,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31285,10 +31313,10 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1927 + 1929 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -31296,22 +31324,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "week_number": [ 40 @@ -31330,7 +31358,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31339,13 +31367,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1908 + 1910 ], "_set": [ - 1919 + 1921 ], "where": [ - 1906 + 1908 ], "__typename": [ 80 @@ -31361,7 +31389,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31377,7 +31405,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31393,7 +31421,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31401,40 +31429,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4553 + 4609 ], "higher_division": [ - 1869 + 1871 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division": [ - 1869 + 1871 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "season": [ - 2045 + 2047 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31442,10 +31470,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1942 + 1944 ], "nodes": [ - 1938 + 1940 ], "__typename": [ 80 @@ -31453,7 +31481,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1941 + 1943 ], "__typename": [ 80 @@ -31461,13 +31489,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1959 + 1961 ], "distinct": [ 5 ], "filter": [ - 1947 + 1949 ], "predicate": [ 41 @@ -31478,13 +31506,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1945 + 1947 ], "count": [ 40, { "columns": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -31493,31 +31521,31 @@ export default { } ], "max": [ - 1951 + 1953 ], "min": [ - 1953 + 1955 ], "stddev": [ - 1961 + 1963 ], "stddev_pop": [ - 1963 + 1965 ], "stddev_samp": [ - 1965 + 1967 ], "sum": [ - 1969 + 1971 ], "var_pop": [ - 1973 + 1975 ], "var_samp": [ - 1975 + 1977 ], "variance": [ - 1977 + 1979 ], "__typename": [ 80 @@ -31525,37 +31553,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1946 + 1948 ], "count": [ - 3006 + 3035 ], "max": [ - 1952 + 1954 ], "min": [ - 1954 + 1956 ], "stddev": [ - 1962 + 1964 ], "stddev_pop": [ - 1964 + 1966 ], "stddev_samp": [ - 1966 + 1968 ], "sum": [ - 1970 + 1972 ], "var_pop": [ - 1974 + 1976 ], "var_samp": [ - 1976 + 1978 ], "variance": [ - 1978 + 1980 ], "__typename": [ 80 @@ -31563,10 +31591,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1950 + 1952 ], "on_conflict": [ - 1956 + 1958 ], "__typename": [ 80 @@ -31582,7 +31610,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31590,49 +31618,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1947 + 1949 ], "_not": [ - 1947 + 1949 ], "_or": [ - 1947 + 1949 ], "created_at": [ - 4554 + 4610 ], "higher_division": [ - 1873 + 1875 ], "higher_division_id": [ - 5055 + 5111 ], "higher_slots": [ 41 ], "id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "lower_division": [ - 1873 + 1875 ], "lower_division_id": [ - 5055 + 5111 ], "resolved_at": [ - 4554 + 4610 ], "season": [ - 2050 + 2052 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -31649,40 +31677,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4553 + 4609 ], "higher_division": [ - 1880 + 1882 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division": [ - 1880 + 1882 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "season": [ - 2060 + 2062 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31690,28 +31718,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4553 + 4609 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31719,28 +31747,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3006 + 3035 ], "higher_division_id": [ - 3006 + 3035 ], "higher_slots": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "lower_division_id": [ - 3006 + 3035 ], "resolved_at": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31748,28 +31776,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4553 + 4609 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31777,28 +31805,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3006 + 3035 ], "higher_division_id": [ - 3006 + 3035 ], "higher_slots": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "lower_division_id": [ - 3006 + 3035 ], "resolved_at": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31809,7 +31837,7 @@ export default { 40 ], "returning": [ - 1938 + 1940 ], "__typename": [ 80 @@ -31817,13 +31845,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1948 + 1950 ], "update_columns": [ - 1971 + 1973 ], "where": [ - 1947 + 1949 ], "__typename": [ 80 @@ -31831,40 +31859,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 3006 + 3035 ], "higher_division": [ - 1882 + 1884 ], "higher_division_id": [ - 3006 + 3035 ], "higher_slots": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "lower_division": [ - 1882 + 1884 ], "lower_division_id": [ - 3006 + 3035 ], "resolved_at": [ - 3006 + 3035 ], "season": [ - 2062 + 2064 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31872,7 +31900,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31881,28 +31909,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4553 + 4609 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -31918,7 +31946,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31934,7 +31962,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31950,7 +31978,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -31958,10 +31986,10 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1968 + 1970 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -31969,28 +31997,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "higher_division_id": [ - 5053 + 5109 ], "higher_slots": [ 40 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "lower_division_id": [ - 5053 + 5109 ], "resolved_at": [ - 4553 + 4609 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32006,7 +32034,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32015,13 +32043,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1949 + 1951 ], "_set": [ - 1960 + 1962 ], "where": [ - 1947 + 1949 ], "__typename": [ 80 @@ -32037,7 +32065,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32053,7 +32081,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32069,7 +32097,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32077,46 +32105,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4597 + 4653 ], "created_at": [ - 4553 + 4609 ], "e_proposal_status": [ - 797 + 799 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by": [ - 3964 + 3993 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by": [ - 3964 + 3993 ], "responded_by_steam_id": [ - 257 + 259 ], "status": [ - 802 + 804 ], "team_season": [ - 2160 + 2162 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32124,10 +32152,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1983 + 1985 ], "nodes": [ - 1979 + 1981 ], "__typename": [ 80 @@ -32135,7 +32163,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1982 + 1984 ], "__typename": [ 80 @@ -32143,13 +32171,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 2000 + 2002 ], "distinct": [ 5 ], "filter": [ - 1988 + 1990 ], "predicate": [ 41 @@ -32160,13 +32188,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1986 + 1988 ], "count": [ 40, { "columns": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -32175,31 +32203,31 @@ export default { } ], "max": [ - 1992 + 1994 ], "min": [ - 1994 + 1996 ], "stddev": [ - 2002 + 2004 ], "stddev_pop": [ - 2004 + 2006 ], "stddev_samp": [ - 2006 + 2008 ], "sum": [ - 2010 + 2012 ], "var_pop": [ - 2014 + 2016 ], "var_samp": [ - 2016 + 2018 ], "variance": [ - 2018 + 2020 ], "__typename": [ 80 @@ -32207,37 +32235,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1987 + 1989 ], "count": [ - 3006 + 3035 ], "max": [ - 1993 + 1995 ], "min": [ - 1995 + 1997 ], "stddev": [ - 2003 + 2005 ], "stddev_pop": [ - 2005 + 2007 ], "stddev_samp": [ - 2007 + 2009 ], "sum": [ - 2011 + 2013 ], "var_pop": [ - 2015 + 2017 ], "var_samp": [ - 2017 + 2019 ], "variance": [ - 2019 + 2021 ], "__typename": [ 80 @@ -32245,10 +32273,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1991 + 1993 ], "on_conflict": [ - 1997 + 1999 ], "__typename": [ 80 @@ -32267,10 +32295,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32278,55 +32306,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1988 + 1990 ], "_not": [ - 1988 + 1990 ], "_or": [ - 1988 + 1990 ], "bracket": [ - 4608 + 4664 ], "created_at": [ - 4554 + 4610 ], "e_proposal_status": [ - 800 + 802 ], "id": [ - 5055 + 5111 ], "message": [ 82 ], "proposed_by": [ - 3968 + 3997 ], "proposed_by_league_team_season_id": [ - 5055 + 5111 ], "proposed_by_steam_id": [ - 259 + 261 ], "proposed_time": [ - 4554 + 4610 ], "responded_by": [ - 3968 + 3997 ], "responded_by_steam_id": [ - 259 + 261 ], "status": [ - 803 + 805 ], "team_season": [ - 2169 + 2171 ], "tournament_bracket_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -32335,10 +32363,10 @@ export default { "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 257 + 259 ], "responded_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -32346,46 +32374,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4617 + 4673 ], "created_at": [ - 4553 + 4609 ], "e_proposal_status": [ - 808 + 810 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by": [ - 3975 + 4004 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by": [ - 3975 + 4004 ], "responded_by_steam_id": [ - 257 + 259 ], "status": [ - 802 + 804 ], "team_season": [ - 2178 + 2180 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32393,28 +32421,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by_steam_id": [ - 257 + 259 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32422,28 +32450,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "proposed_by_league_team_season_id": [ - 3006 + 3035 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_time": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "tournament_bracket_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32451,28 +32479,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by_steam_id": [ - 257 + 259 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32480,28 +32508,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "proposed_by_league_team_season_id": [ - 3006 + 3035 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_time": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "tournament_bracket_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32512,7 +32540,7 @@ export default { 40 ], "returning": [ - 1979 + 1981 ], "__typename": [ 80 @@ -32520,13 +32548,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1989 + 1991 ], "update_columns": [ - 2012 + 2014 ], "where": [ - 1988 + 1990 ], "__typename": [ 80 @@ -32534,46 +32562,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4619 + 4675 ], "created_at": [ - 3006 + 3035 ], "e_proposal_status": [ - 810 + 812 ], "id": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "proposed_by": [ - 3977 + 4006 ], "proposed_by_league_team_season_id": [ - 3006 + 3035 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_time": [ - 3006 + 3035 ], "responded_by": [ - 3977 + 4006 ], "responded_by_steam_id": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "team_season": [ - 2180 + 2182 ], "tournament_bracket_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32581,7 +32609,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32590,31 +32618,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by_steam_id": [ - 257 + 259 ], "status": [ - 802 + 804 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32633,10 +32661,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32655,10 +32683,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32677,10 +32705,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32688,10 +32716,10 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 2009 + 2011 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -32699,31 +32727,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_time": [ - 4553 + 4609 ], "responded_by_steam_id": [ - 257 + 259 ], "status": [ - 802 + 804 ], "tournament_bracket_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32731,10 +32759,10 @@ export default { }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 257 + 259 ], "responded_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -32742,10 +32770,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32754,13 +32782,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1990 + 1992 ], "_set": [ - 2001 + 2003 ], "where": [ - 1988 + 1990 ], "__typename": [ 80 @@ -32779,10 +32807,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32801,10 +32829,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32823,10 +32851,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "responded_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -32834,28 +32862,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4553 + 4609 ], "division": [ - 1869 + 1871 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "season": [ - 2045 + 2047 ], "standings": [ - 5125, + 5181, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32865,19 +32893,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "standings_aggregate": [ - 5126, + 5182, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32887,19 +32915,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -32907,10 +32935,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 2024 + 2026 ], "nodes": [ - 2020 + 2022 ], "__typename": [ 80 @@ -32918,7 +32946,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2023 + 2025 ], "__typename": [ 80 @@ -32926,13 +32954,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2039 + 2041 ], "distinct": [ 5 ], "filter": [ - 2027 + 2029 ], "predicate": [ 41 @@ -32946,7 +32974,7 @@ export default { 40, { "columns": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -32955,10 +32983,10 @@ export default { } ], "max": [ - 2030 + 2032 ], "min": [ - 2032 + 2034 ], "__typename": [ 80 @@ -32966,13 +32994,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 2031 + 2033 ], "min": [ - 2033 + 2035 ], "__typename": [ 80 @@ -32980,10 +33008,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2029 + 2031 ], "on_conflict": [ - 2036 + 2038 ], "__typename": [ 80 @@ -32991,43 +33019,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 2027 + 2029 ], "_not": [ - 2027 + 2029 ], "_or": [ - 2027 + 2029 ], "created_at": [ - 4554 + 4610 ], "division": [ - 1873 + 1875 ], "id": [ - 5055 + 5111 ], "league_division_id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "season": [ - 2050 + 2052 ], "standings": [ - 5134 + 5190 ], "standings_aggregate": [ - 5127 + 5183 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -33036,31 +33064,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4553 + 4609 ], "division": [ - 1880 + 1882 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "season": [ - 2060 + 2062 ], "standings": [ - 5131 + 5187 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33068,19 +33096,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33088,19 +33116,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -33108,19 +33136,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33128,19 +33156,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -33151,7 +33179,7 @@ export default { 40 ], "returning": [ - 2020 + 2022 ], "__typename": [ 80 @@ -33159,10 +33187,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2029 + 2031 ], "on_conflict": [ - 2036 + 2038 ], "__typename": [ 80 @@ -33170,13 +33198,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 2028 + 2030 ], "update_columns": [ - 2043 + 2045 ], "where": [ - 2027 + 2029 ], "__typename": [ 80 @@ -33184,31 +33212,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 3006 + 3035 ], "division": [ - 1882 + 1884 ], "id": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "season": [ - 2062 + 2064 ], "standings_aggregate": [ - 5130 + 5186 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -33216,7 +33244,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33225,19 +33253,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33245,10 +33273,10 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2042 + 2044 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -33256,19 +33284,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "league_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -33277,10 +33305,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2040 + 2042 ], "where": [ - 2027 + 2029 ], "__typename": [ 80 @@ -33291,10 +33319,10 @@ export default { 5 ], "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -33304,19 +33332,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -33326,11 +33354,11 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], @@ -33338,10 +33366,10 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -33353,13 +33381,13 @@ export default { 40 ], "e_league_season_status": [ - 839 + 841 ], "games_per_week": [ 40 ], "id": [ - 5053 + 5109 ], "is_league_admin": [ 5 @@ -33368,13 +33396,13 @@ export default { 5 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks": [ - 1897, + 1899, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -33384,19 +33412,19 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], "match_weeks_aggregate": [ - 1898, + 1900, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -33406,11 +33434,11 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], @@ -33424,10 +33452,10 @@ export default { 40 ], "movements": [ - 2078, + 2080, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -33437,19 +33465,19 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "movements_aggregate": [ - 2079, + 2081, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -33459,19 +33487,19 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "my_registration": [ - 2160, + 2162, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33481,11 +33509,11 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], @@ -33493,13 +33521,13 @@ export default { 80 ], "options": [ - 2697 + 2699 ], "player_stats": [ - 5158, + 5214, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33509,19 +33537,19 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], "player_stats_aggregate": [ - 5159, + 5215, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33531,11 +33559,11 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], @@ -33543,7 +33571,7 @@ export default { 40 ], "playoff_round_best_of": [ - 1842, + 1844, { "path": [ 80 @@ -33554,7 +33582,7 @@ export default { 40 ], "playoff_stage_type": [ - 1333 + 1335 ], "playoff_third_place_match": [ 5 @@ -33563,7 +33591,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1333 + 1335 ], "relegate_count": [ 40 @@ -33572,10 +33600,10 @@ export default { 40 ], "relegation_playoffs": [ - 1938, + 1940, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -33585,19 +33613,19 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], "relegation_playoffs_aggregate": [ - 1939, + 1941, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -33607,11 +33635,11 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], @@ -33619,13 +33647,13 @@ export default { 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_divisions": [ - 2020, + 2022, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -33635,19 +33663,19 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "season_divisions_aggregate": [ - 2021, + 2023, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -33657,11 +33685,11 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], @@ -33669,16 +33697,16 @@ export default { 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "standings": [ - 5125, + 5181, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33688,19 +33716,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "standings_aggregate": [ - 5126, + 5182, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33710,25 +33738,25 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "starts_at": [ - 4553 + 4609 ], "status": [ - 844 + 846 ], "team_seasons": [ - 2160, + 2162, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33738,19 +33766,19 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "team_seasons_aggregate": [ - 2161, + 2163, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33760,16 +33788,16 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "week_best_of": [ - 1842, + 1844, { "path": [ 80 @@ -33782,10 +33810,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 2047 + 2049 ], "nodes": [ - 2045 + 2047 ], "__typename": [ 80 @@ -33793,13 +33821,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 2049 + 2051 ], "count": [ 40, { "columns": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "distinct": [ @@ -33808,31 +33836,31 @@ export default { } ], "max": [ - 2057 + 2059 ], "min": [ - 2058 + 2060 ], "stddev": [ - 2067 + 2069 ], "stddev_pop": [ - 2068 + 2070 ], "stddev_samp": [ - 2069 + 2071 ], "sum": [ - 2072 + 2074 ], "var_pop": [ - 2075 + 2077 ], "var_samp": [ - 2076 + 2078 ], "variance": [ - 2077 + 2079 ], "__typename": [ 80 @@ -33840,10 +33868,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1842 + 1844 ], "week_best_of": [ - 1842 + 1844 ], "__typename": [ 80 @@ -33901,31 +33929,31 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 2050 + 2052 ], "_not": [ - 2050 + 2052 ], "_or": [ - 2050 + 2052 ], "auto_regular_season_format": [ 6 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "can_register": [ 6 ], "created_at": [ - 4554 + 4610 ], "created_by_steam_id": [ - 259 + 261 ], "default_best_of": [ 41 @@ -33937,13 +33965,13 @@ export default { 41 ], "e_league_season_status": [ - 842 + 844 ], "games_per_week": [ 41 ], "id": [ - 5055 + 5111 ], "is_league_admin": [ 6 @@ -33952,13 +33980,13 @@ export default { 6 ], "match_options_id": [ - 5055 + 5111 ], "match_weeks": [ - 1906 + 1908 ], "match_weeks_aggregate": [ - 1899 + 1901 ], "match_weeks_count": [ 41 @@ -33970,37 +33998,37 @@ export default { 41 ], "movements": [ - 2087 + 2089 ], "movements_aggregate": [ - 2080 + 2082 ], "my_registration": [ - 2169 + 2171 ], "name": [ 82 ], "options": [ - 2701 + 2703 ], "player_stats": [ - 5177 + 5233 ], "player_stats_aggregate": [ - 5160 + 5216 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 1844 + 1846 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1334 + 1336 ], "playoff_third_place_match": [ 6 @@ -34009,7 +34037,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1334 + 1336 ], "relegate_count": [ 41 @@ -34018,52 +34046,52 @@ export default { 41 ], "relegation_playoffs": [ - 1947 + 1949 ], "relegation_playoffs_aggregate": [ - 1940 + 1942 ], "relegation_up_count": [ 41 ], "roster_lock_at": [ - 4554 + 4610 ], "season_divisions": [ - 2027 + 2029 ], "season_divisions_aggregate": [ - 2022 + 2024 ], "season_number": [ 41 ], "signup_closes_at": [ - 4554 + 4610 ], "signup_opens_at": [ - 4554 + 4610 ], "standings": [ - 5134 + 5190 ], "standings_aggregate": [ - 5127 + 5183 ], "starts_at": [ - 4554 + 4610 ], "status": [ - 845 + 847 ], "team_seasons": [ - 2169 + 2171 ], "team_seasons_aggregate": [ - 2162 + 2164 ], "week_best_of": [ - 1844 + 1846 ], "__typename": [ 80 @@ -34105,7 +34133,7 @@ export default { }, "league_seasons_inc_input": { "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34158,13 +34186,13 @@ export default { 5 ], "awards": [ - 194 + 196 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34176,19 +34204,19 @@ export default { 40 ], "e_league_season_status": [ - 850 + 852 ], "games_per_week": [ 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks": [ - 1903 + 1905 ], "match_weeks_count": [ 40 @@ -34200,28 +34228,28 @@ export default { 40 ], "movements": [ - 2084 + 2086 ], "name": [ 80 ], "options": [ - 2708 + 2710 ], "player_stats": [ - 5174 + 5230 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1842 + 1844 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1333 + 1335 ], "playoff_third_place_match": [ 5 @@ -34230,7 +34258,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1333 + 1335 ], "relegate_count": [ 40 @@ -34239,40 +34267,40 @@ export default { 40 ], "relegation_playoffs": [ - 1944 + 1946 ], "relegation_up_count": [ 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_divisions": [ - 2026 + 2028 ], "season_number": [ 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "standings": [ - 5131 + 5187 ], "starts_at": [ - 4553 + 4609 ], "status": [ - 844 + 846 ], "team_seasons": [ - 2166 + 2168 ], "week_best_of": [ - 1842 + 1844 ], "__typename": [ 80 @@ -34280,10 +34308,10 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34298,10 +34326,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks_count": [ 40 @@ -34334,19 +34362,19 @@ export default { 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_number": [ 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -34354,10 +34382,10 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34372,10 +34400,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks_count": [ 40 @@ -34408,19 +34436,19 @@ export default { 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_number": [ 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -34431,7 +34459,7 @@ export default { 40 ], "returning": [ - 2045 + 2047 ], "__typename": [ 80 @@ -34439,10 +34467,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 2056 + 2058 ], "on_conflict": [ - 2061 + 2063 ], "__typename": [ 80 @@ -34450,13 +34478,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 2051 + 2053 ], "update_columns": [ - 2073 + 2075 ], "where": [ - 2050 + 2052 ], "__typename": [ 80 @@ -34464,136 +34492,136 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3006 + 3035 ], "awards_aggregate": [ - 193 + 195 ], "can_register": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "created_by_steam_id": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "direct_promote_count": [ - 3006 + 3035 ], "direct_relegate_count": [ - 3006 + 3035 ], "e_league_season_status": [ - 852 + 854 ], "games_per_week": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_league_admin": [ - 3006 + 3035 ], "is_roster_locked": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "match_weeks_aggregate": [ - 1902 + 1904 ], "match_weeks_count": [ - 3006 + 3035 ], "max_roster_size": [ - 3006 + 3035 ], "min_roster_size": [ - 3006 + 3035 ], "movements_aggregate": [ - 2083 + 2085 ], "my_registration_aggregate": [ - 2165 + 2167 ], "name": [ - 3006 + 3035 ], "options": [ - 2710 + 2712 ], "player_stats_aggregate": [ - 5173 + 5229 ], "playoff_best_of": [ - 3006 + 3035 ], "playoff_round_best_of": [ - 3006 + 3035 ], "playoff_seats": [ - 3006 + 3035 ], "playoff_stage_type": [ - 3006 + 3035 ], "playoff_third_place_match": [ - 3006 + 3035 ], "promote_count": [ - 3006 + 3035 ], "regular_season_stage_type": [ - 3006 + 3035 ], "relegate_count": [ - 3006 + 3035 ], "relegation_down_count": [ - 3006 + 3035 ], "relegation_playoffs_aggregate": [ - 1943 + 1945 ], "relegation_up_count": [ - 3006 + 3035 ], "roster_lock_at": [ - 3006 + 3035 ], "season_divisions_aggregate": [ - 2025 + 2027 ], "season_number": [ - 3006 + 3035 ], "signup_closes_at": [ - 3006 + 3035 ], "signup_opens_at": [ - 3006 + 3035 ], "standings_aggregate": [ - 5130 + 5186 ], "starts_at": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "team_seasons_aggregate": [ - 2165 + 2167 ], "week_best_of": [ - 3006 + 3035 ], "__typename": [ 80 @@ -34601,7 +34629,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -34609,10 +34637,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1842 + 1844 ], "week_best_of": [ - 1842 + 1844 ], "__typename": [ 80 @@ -34624,10 +34652,10 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34642,10 +34670,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks_count": [ 40 @@ -34663,13 +34691,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1842 + 1844 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1333 + 1335 ], "playoff_third_place_match": [ 5 @@ -34678,7 +34706,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1333 + 1335 ], "relegate_count": [ 40 @@ -34690,25 +34718,25 @@ export default { 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_number": [ 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "starts_at": [ - 4553 + 4609 ], "status": [ - 844 + 846 ], "week_best_of": [ - 1842 + 1844 ], "__typename": [ 80 @@ -34866,10 +34894,10 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2071 + 2073 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -34880,10 +34908,10 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -34898,10 +34926,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_weeks_count": [ 40 @@ -34919,13 +34947,13 @@ export default { 40 ], "playoff_round_best_of": [ - 1842 + 1844 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1333 + 1335 ], "playoff_third_place_match": [ 5 @@ -34934,7 +34962,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1333 + 1335 ], "relegate_count": [ 40 @@ -34946,25 +34974,25 @@ export default { 40 ], "roster_lock_at": [ - 4553 + 4609 ], "season_number": [ 40 ], "signup_closes_at": [ - 4553 + 4609 ], "signup_opens_at": [ - 4553 + 4609 ], "starts_at": [ - 4553 + 4609 ], "status": [ - 844 + 846 ], "week_best_of": [ - 1842 + 1844 ], "__typename": [ 80 @@ -34972,7 +35000,7 @@ export default { }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 257 + 259 ], "default_best_of": [ 40 @@ -35023,28 +35051,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2048 + 2050 ], "_delete_at_path": [ - 2052 + 2054 ], "_delete_elem": [ - 2053 + 2055 ], "_delete_key": [ - 2054 + 2056 ], "_inc": [ - 2055 + 2057 ], "_prepend": [ - 2064 + 2066 ], "_set": [ - 2066 + 2068 ], "where": [ - 2050 + 2052 ], "__typename": [ 80 @@ -35202,58 +35230,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4553 + 4609 ], "approved_by": [ - 3964 + 3993 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division": [ - 1869 + 1871 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "e_movement_type": [ - 776 + 778 ], "final_rank": [ 40 ], "final_to_division": [ - 1869 + 1871 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division": [ - 1869 + 1871 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2202 + 2204 ], "league_team_id": [ - 5053 + 5109 ], "season": [ - 2045 + 2047 ], "type": [ - 781 + 783 ], "__typename": [ 80 @@ -35261,10 +35289,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 2082 + 2084 ], "nodes": [ - 2078 + 2080 ], "__typename": [ 80 @@ -35272,7 +35300,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2081 + 2083 ], "__typename": [ 80 @@ -35280,13 +35308,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2099 + 2101 ], "distinct": [ 5 ], "filter": [ - 2087 + 2089 ], "predicate": [ 41 @@ -35297,13 +35325,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 2085 + 2087 ], "count": [ 40, { "columns": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "distinct": [ @@ -35312,31 +35340,31 @@ export default { } ], "max": [ - 2091 + 2093 ], "min": [ - 2093 + 2095 ], "stddev": [ - 2101 + 2103 ], "stddev_pop": [ - 2103 + 2105 ], "stddev_samp": [ - 2105 + 2107 ], "sum": [ - 2109 + 2111 ], "var_pop": [ - 2113 + 2115 ], "var_samp": [ - 2115 + 2117 ], "variance": [ - 2117 + 2119 ], "__typename": [ 80 @@ -35344,37 +35372,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 2086 + 2088 ], "count": [ - 3006 + 3035 ], "max": [ - 2092 + 2094 ], "min": [ - 2094 + 2096 ], "stddev": [ - 2102 + 2104 ], "stddev_pop": [ - 2104 + 2106 ], "stddev_samp": [ - 2106 + 2108 ], "sum": [ - 2110 + 2112 ], "var_pop": [ - 2114 + 2116 ], "var_samp": [ - 2116 + 2118 ], "variance": [ - 2118 + 2120 ], "__typename": [ 80 @@ -35382,10 +35410,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2090 + 2092 ], "on_conflict": [ - 2096 + 2098 ], "__typename": [ 80 @@ -35404,10 +35432,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35415,67 +35443,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 2087 + 2089 ], "_not": [ - 2087 + 2089 ], "_or": [ - 2087 + 2089 ], "approved_at": [ - 4554 + 4610 ], "approved_by": [ - 3968 + 3997 ], "approved_by_steam_id": [ - 259 + 261 ], "computed_to_division": [ - 1873 + 1875 ], "computed_to_division_id": [ - 5055 + 5111 ], "created_at": [ - 4554 + 4610 ], "e_movement_type": [ - 779 + 781 ], "final_rank": [ 41 ], "final_to_division": [ - 1873 + 1875 ], "final_to_division_id": [ - 5055 + 5111 ], "from_division": [ - 1873 + 1875 ], "from_division_id": [ - 5055 + 5111 ], "id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "league_team": [ - 2205 + 2207 ], "league_team_id": [ - 5055 + 5111 ], "season": [ - 2050 + 2052 ], "type": [ - 782 + 784 ], "__typename": [ 80 @@ -35484,7 +35512,7 @@ export default { "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 257 + 259 ], "final_rank": [ 40 @@ -35495,58 +35523,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4553 + 4609 ], "approved_by": [ - 3975 + 4004 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division": [ - 1880 + 1882 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "e_movement_type": [ - 787 + 789 ], "final_rank": [ 40 ], "final_to_division": [ - 1880 + 1882 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division": [ - 1880 + 1882 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2211 + 2213 ], "league_team_id": [ - 5053 + 5109 ], "season": [ - 2060 + 2062 ], "type": [ - 781 + 783 ], "__typename": [ 80 @@ -35554,34 +35582,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4553 + 4609 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -35589,34 +35617,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 3006 + 3035 ], "approved_by_steam_id": [ - 3006 + 3035 ], "computed_to_division_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "final_to_division_id": [ - 3006 + 3035 ], "from_division_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35624,34 +35652,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4553 + 4609 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -35659,34 +35687,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 3006 + 3035 ], "approved_by_steam_id": [ - 3006 + 3035 ], "computed_to_division_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "final_to_division_id": [ - 3006 + 3035 ], "from_division_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35697,7 +35725,7 @@ export default { 40 ], "returning": [ - 2078 + 2080 ], "__typename": [ 80 @@ -35705,13 +35733,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 2088 + 2090 ], "update_columns": [ - 2111 + 2113 ], "where": [ - 2087 + 2089 ], "__typename": [ 80 @@ -35719,58 +35747,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 3006 + 3035 ], "approved_by": [ - 3977 + 4006 ], "approved_by_steam_id": [ - 3006 + 3035 ], "computed_to_division": [ - 1882 + 1884 ], "computed_to_division_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "e_movement_type": [ - 789 + 791 ], "final_rank": [ - 3006 + 3035 ], "final_to_division": [ - 1882 + 1884 ], "final_to_division_id": [ - 3006 + 3035 ], "from_division": [ - 1882 + 1884 ], "from_division_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team": [ - 2213 + 2215 ], "league_team_id": [ - 3006 + 3035 ], "season": [ - 2062 + 2064 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35778,7 +35806,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -35787,37 +35815,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4553 + 4609 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "type": [ - 781 + 783 ], "__typename": [ 80 @@ -35836,10 +35864,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35858,10 +35886,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35880,10 +35908,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35891,10 +35919,10 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2108 + 2110 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -35902,37 +35930,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4553 + 4609 ], "approved_by_steam_id": [ - 257 + 259 ], "computed_to_division_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5053 + 5109 ], "from_division_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "type": [ - 781 + 783 ], "__typename": [ 80 @@ -35940,7 +35968,7 @@ export default { }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 257 + 259 ], "final_rank": [ 40 @@ -35951,10 +35979,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -35963,13 +35991,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2089 + 2091 ], "_set": [ - 2100 + 2102 ], "where": [ - 2087 + 2089 ], "__typename": [ 80 @@ -35988,10 +36016,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36010,10 +36038,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36032,10 +36060,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3006 + 3035 ], "final_rank": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36043,28 +36071,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 ], "status": [ - 1272 + 1274 ], "team_season": [ - 2160 + 2162 ], "__typename": [ 80 @@ -36072,10 +36100,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 2123 + 2125 ], "nodes": [ - 2119 + 2121 ], "__typename": [ 80 @@ -36083,7 +36111,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2122 + 2124 ], "__typename": [ 80 @@ -36091,13 +36119,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2140 + 2142 ], "distinct": [ 5 ], "filter": [ - 2128 + 2130 ], "predicate": [ 41 @@ -36108,13 +36136,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 2126 + 2128 ], "count": [ 40, { "columns": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -36123,31 +36151,31 @@ export default { } ], "max": [ - 2132 + 2134 ], "min": [ - 2134 + 2136 ], "stddev": [ - 2142 + 2144 ], "stddev_pop": [ - 2144 + 2146 ], "stddev_samp": [ - 2146 + 2148 ], "sum": [ - 2150 + 2152 ], "var_pop": [ - 2154 + 2156 ], "var_samp": [ - 2156 + 2158 ], "variance": [ - 2158 + 2160 ], "__typename": [ 80 @@ -36155,37 +36183,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 2127 + 2129 ], "count": [ - 3006 + 3035 ], "max": [ - 2133 + 2135 ], "min": [ - 2135 + 2137 ], "stddev": [ - 2143 + 2145 ], "stddev_pop": [ - 2145 + 2147 ], "stddev_samp": [ - 2147 + 2149 ], "sum": [ - 2151 + 2153 ], "var_pop": [ - 2155 + 2157 ], "var_samp": [ - 2157 + 2159 ], "variance": [ - 2159 + 2161 ], "__typename": [ 80 @@ -36193,10 +36221,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2131 + 2133 ], "on_conflict": [ - 2137 + 2139 ], "__typename": [ 80 @@ -36212,7 +36240,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36220,37 +36248,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 2128 + 2130 ], "_not": [ - 2128 + 2130 ], "_or": [ - 2128 + 2130 ], "added_at": [ - 4554 + 4610 ], "league_team_season_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "removed_at": [ - 4554 + 4610 ], "removed_reason": [ 82 ], "status": [ - 1273 + 1275 ], "team_season": [ - 2169 + 2171 ], "__typename": [ 80 @@ -36259,7 +36287,7 @@ export default { "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -36267,28 +36295,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 ], "status": [ - 1272 + 1274 ], "team_season": [ - 2178 + 2180 ], "__typename": [ 80 @@ -36296,16 +36324,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 @@ -36316,19 +36344,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "removed_at": [ - 3006 + 3035 ], "removed_reason": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36336,16 +36364,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 @@ -36356,19 +36384,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "removed_at": [ - 3006 + 3035 ], "removed_reason": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36379,7 +36407,7 @@ export default { 40 ], "returning": [ - 2119 + 2121 ], "__typename": [ 80 @@ -36387,13 +36415,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 2129 + 2131 ], "update_columns": [ - 2152 + 2154 ], "where": [ - 2128 + 2130 ], "__typename": [ 80 @@ -36401,28 +36429,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "removed_at": [ - 3006 + 3035 ], "removed_reason": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "team_season": [ - 2180 + 2182 ], "__typename": [ 80 @@ -36430,10 +36458,10 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -36442,22 +36470,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 ], "status": [ - 1272 + 1274 ], "__typename": [ 80 @@ -36473,7 +36501,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36489,7 +36517,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36505,7 +36533,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36513,10 +36541,10 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2149 + 2151 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -36524,22 +36552,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4553 + 4609 ], "league_team_season_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "removed_at": [ - 4553 + 4609 ], "removed_reason": [ 80 ], "status": [ - 1272 + 1274 ], "__typename": [ 80 @@ -36547,7 +36575,7 @@ export default { }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -36555,7 +36583,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36564,13 +36592,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2130 + 2132 ], "_set": [ - 2141 + 2143 ], "where": [ - 2128 + 2130 ], "__typename": [ 80 @@ -36586,7 +36614,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36602,7 +36630,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36618,7 +36646,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36626,55 +36654,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1869 + 1871 ], "assigned_division_id": [ - 5053 + 5109 ], "captain": [ - 3964 + 3993 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "e_registration_status": [ - 818 + 820 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2202 + 2204 ], "league_team_id": [ - 5053 + 5109 ], "registered_by": [ - 3964 + 3993 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division": [ - 1869 + 1871 ], "requested_division_id": [ - 5053 + 5109 ], "roster": [ - 2119, + 2121, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -36684,19 +36712,19 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "roster_aggregate": [ - 2120, + 2122, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -36706,28 +36734,28 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "season": [ - 2045 + 2047 ], "seed": [ 40 ], "status": [ - 823 + 825 ], "tournament_team": [ - 4947 + 5003 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -36735,10 +36763,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 2164 + 2166 ], "nodes": [ - 2160 + 2162 ], "__typename": [ 80 @@ -36746,7 +36774,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2163 + 2165 ], "__typename": [ 80 @@ -36754,13 +36782,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2182 + 2184 ], "distinct": [ 5 ], "filter": [ - 2169 + 2171 ], "predicate": [ 41 @@ -36771,13 +36799,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 2167 + 2169 ], "count": [ 40, { "columns": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -36786,31 +36814,31 @@ export default { } ], "max": [ - 2173 + 2175 ], "min": [ - 2175 + 2177 ], "stddev": [ - 2184 + 2186 ], "stddev_pop": [ - 2186 + 2188 ], "stddev_samp": [ - 2188 + 2190 ], "sum": [ - 2192 + 2194 ], "var_pop": [ - 2196 + 2198 ], "var_samp": [ - 2198 + 2200 ], "variance": [ - 2200 + 2202 ], "__typename": [ 80 @@ -36818,37 +36846,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2168 + 2170 ], "count": [ - 3006 + 3035 ], "max": [ - 2174 + 2176 ], "min": [ - 2176 + 2178 ], "stddev": [ - 2185 + 2187 ], "stddev_pop": [ - 2187 + 2189 ], "stddev_samp": [ - 2189 + 2191 ], "sum": [ - 2193 + 2195 ], "var_pop": [ - 2197 + 2199 ], "var_samp": [ - 2199 + 2201 ], "variance": [ - 2201 + 2203 ], "__typename": [ 80 @@ -36856,10 +36884,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2172 + 2174 ], "on_conflict": [ - 2179 + 2181 ], "__typename": [ 80 @@ -36881,13 +36909,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -36895,79 +36923,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 2169 + 2171 ], "_not": [ - 2169 + 2171 ], "_or": [ - 2169 + 2171 ], "assigned_division": [ - 1873 + 1875 ], "assigned_division_id": [ - 5055 + 5111 ], "captain": [ - 3968 + 3997 ], "captain_steam_id": [ - 259 + 261 ], "created_at": [ - 4554 + 4610 ], "decline_reason": [ 82 ], "e_registration_status": [ - 821 + 823 ], "id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "league_team": [ - 2205 + 2207 ], "league_team_id": [ - 5055 + 5111 ], "registered_by": [ - 3968 + 3997 ], "registered_by_steam_id": [ - 259 + 261 ], "requested_division": [ - 1873 + 1875 ], "requested_division_id": [ - 5055 + 5111 ], "roster": [ - 2128 + 2130 ], "roster_aggregate": [ - 2121 + 2123 ], "season": [ - 2050 + 2052 ], "seed": [ 41 ], "status": [ - 824 + 826 ], "tournament_team": [ - 4956 + 5012 ], "tournament_team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -36976,10 +37004,10 @@ export default { "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 257 + 259 ], "registered_by_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -36990,67 +37018,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1880 + 1882 ], "assigned_division_id": [ - 5053 + 5109 ], "captain": [ - 3975 + 4004 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "e_registration_status": [ - 829 + 831 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2211 + 2213 ], "league_team_id": [ - 5053 + 5109 ], "registered_by": [ - 3975 + 4004 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division": [ - 1880 + 1882 ], "requested_division_id": [ - 5053 + 5109 ], "roster": [ - 2125 + 2127 ], "season": [ - 2060 + 2062 ], "seed": [ 40 ], "status": [ - 823 + 825 ], "tournament_team": [ - 4965 + 5021 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37058,37 +37086,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5053 + 5109 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division_id": [ - 5053 + 5109 ], "seed": [ 40 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37096,37 +37124,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3006 + 3035 ], "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "decline_reason": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "requested_division_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37134,37 +37162,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5053 + 5109 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division_id": [ - 5053 + 5109 ], "seed": [ 40 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37172,37 +37200,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3006 + 3035 ], "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "decline_reason": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "requested_division_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37213,7 +37241,7 @@ export default { 40 ], "returning": [ - 2160 + 2162 ], "__typename": [ 80 @@ -37221,10 +37249,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2172 + 2174 ], "on_conflict": [ - 2179 + 2181 ], "__typename": [ 80 @@ -37232,13 +37260,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 2170 + 2172 ], "update_columns": [ - 2194 + 2196 ], "where": [ - 2169 + 2171 ], "__typename": [ 80 @@ -37246,67 +37274,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1882 + 1884 ], "assigned_division_id": [ - 3006 + 3035 ], "captain": [ - 3977 + 4006 ], "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "decline_reason": [ - 3006 + 3035 ], "e_registration_status": [ - 831 + 833 ], "id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team": [ - 2213 + 2215 ], "league_team_id": [ - 3006 + 3035 ], "registered_by": [ - 3977 + 4006 ], "registered_by_steam_id": [ - 3006 + 3035 ], "requested_division": [ - 1882 + 1884 ], "requested_division_id": [ - 3006 + 3035 ], "roster_aggregate": [ - 2124 + 2126 ], "season": [ - 2062 + 2064 ], "seed": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "tournament_team": [ - 4967 + 5023 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37314,7 +37342,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37323,40 +37351,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5053 + 5109 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division_id": [ - 5053 + 5109 ], "seed": [ 40 ], "status": [ - 823 + 825 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37378,13 +37406,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37406,13 +37434,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37434,13 +37462,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37448,10 +37476,10 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2191 + 2193 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -37459,40 +37487,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5053 + 5109 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "decline_reason": [ 80 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "registered_by_steam_id": [ - 257 + 259 ], "requested_division_id": [ - 5053 + 5109 ], "seed": [ 40 ], "status": [ - 823 + 825 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37500,10 +37528,10 @@ export default { }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 257 + 259 ], "registered_by_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -37514,13 +37542,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37529,13 +37557,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2171 + 2173 ], "_set": [ - 2183 + 2185 ], "where": [ - 2169 + 2171 ], "__typename": [ 80 @@ -37557,13 +37585,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37585,13 +37613,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37613,13 +37641,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "registered_by_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -37627,16 +37655,16 @@ export default { }, "league_teams": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "movements": [ - 2078, + 2080, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -37646,19 +37674,19 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "movements_aggregate": [ - 2079, + 2081, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -37668,25 +37696,25 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "team_seasons": [ - 2160, + 2162, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -37696,19 +37724,19 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "team_seasons_aggregate": [ - 2161, + 2163, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -37718,11 +37746,11 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], @@ -37732,10 +37760,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 2204 + 2206 ], "nodes": [ - 2202 + 2204 ], "__typename": [ 80 @@ -37746,7 +37774,7 @@ export default { 40, { "columns": [ - 2215, + 2217, "[league_teams_select_column!]" ], "distinct": [ @@ -37755,10 +37783,10 @@ export default { } ], "max": [ - 2208 + 2210 ], "min": [ - 2209 + 2211 ], "__typename": [ 80 @@ -37766,37 +37794,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 2205 + 2207 ], "_not": [ - 2205 + 2207 ], "_or": [ - 2205 + 2207 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "movements": [ - 2087 + 2089 ], "movements_aggregate": [ - 2080 + 2082 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "team_seasons": [ - 2169 + 2171 ], "team_seasons_aggregate": [ - 2162 + 2164 ], "__typename": [ 80 @@ -37805,22 +37833,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "movements": [ - 2084 + 2086 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "team_seasons": [ - 2166 + 2168 ], "__typename": [ 80 @@ -37828,13 +37856,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37842,13 +37870,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37859,7 +37887,7 @@ export default { 40 ], "returning": [ - 2202 + 2204 ], "__typename": [ 80 @@ -37867,10 +37895,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 2207 + 2209 ], "on_conflict": [ - 2212 + 2214 ], "__typename": [ 80 @@ -37878,13 +37906,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 2206 + 2208 ], "update_columns": [ - 2219 + 2221 ], "where": [ - 2205 + 2207 ], "__typename": [ 80 @@ -37892,22 +37920,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "movements_aggregate": [ - 2083 + 2085 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "team_seasons_aggregate": [ - 2165 + 2167 ], "__typename": [ 80 @@ -37915,7 +37943,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37924,13 +37952,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37938,10 +37966,10 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2218 + 2220 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -37949,13 +37977,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -37964,10 +37992,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2216 + 2218 ], "where": [ - 2205 + 2207 ], "__typename": [ 80 @@ -37975,22 +38003,22 @@ export default { }, "lobbies": { "access": [ - 865 + 867 ], "created_at": [ - 4553 + 4609 ], "e_lobby_access": [ - 860 + 862 ], "id": [ - 5053 + 5109 ], "players": [ - 2240, + 2242, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -38000,19 +38028,19 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "players_aggregate": [ - 2241, + 2243, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -38022,11 +38050,11 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], @@ -38036,10 +38064,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2223 + 2225 ], "nodes": [ - 2221 + 2223 ], "__typename": [ 80 @@ -38050,7 +38078,7 @@ export default { 40, { "columns": [ - 2234, + 2236, "[lobbies_select_column!]" ], "distinct": [ @@ -38059,10 +38087,10 @@ export default { } ], "max": [ - 2227 + 2229 ], "min": [ - 2228 + 2230 ], "__typename": [ 80 @@ -38070,31 +38098,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2224 + 2226 ], "_not": [ - 2224 + 2226 ], "_or": [ - 2224 + 2226 ], "access": [ - 866 + 868 ], "created_at": [ - 4554 + 4610 ], "e_lobby_access": [ - 863 + 865 ], "id": [ - 5055 + 5111 ], "players": [ - 2251 + 2253 ], "players_aggregate": [ - 2242 + 2244 ], "__typename": [ 80 @@ -38103,19 +38131,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 865 + 867 ], "created_at": [ - 4553 + 4609 ], "e_lobby_access": [ - 871 + 873 ], "id": [ - 5053 + 5109 ], "players": [ - 2248 + 2250 ], "__typename": [ 80 @@ -38123,10 +38151,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -38134,10 +38162,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -38148,7 +38176,7 @@ export default { 40 ], "returning": [ - 2221 + 2223 ], "__typename": [ 80 @@ -38156,10 +38184,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2226 + 2228 ], "on_conflict": [ - 2231 + 2233 ], "__typename": [ 80 @@ -38167,13 +38195,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2225 + 2227 ], "update_columns": [ - 2238 + 2240 ], "where": [ - 2224 + 2226 ], "__typename": [ 80 @@ -38181,19 +38209,19 @@ export default { }, "lobbies_order_by": { "access": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "e_lobby_access": [ - 873 + 875 ], "id": [ - 3006 + 3035 ], "players_aggregate": [ - 2247 + 2249 ], "__typename": [ 80 @@ -38201,7 +38229,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -38210,13 +38238,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 865 + 867 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -38224,10 +38252,10 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2237 + 2239 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -38235,13 +38263,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 865 + 867 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -38250,10 +38278,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2235 + 2237 ], "where": [ - 2224 + 2226 ], "__typename": [ 80 @@ -38264,22 +38292,22 @@ export default { 5 ], "invited_by_steam_id": [ - 257 + 259 ], "lobby": [ - 2221 + 2223 ], "lobby_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "status": [ - 886 + 888 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38287,10 +38315,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2246 + 2248 ], "nodes": [ - 2240 + 2242 ], "__typename": [ 80 @@ -38298,13 +38326,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2243 + 2245 ], "bool_or": [ - 2244 + 2246 ], "count": [ - 2245 + 2247 ], "__typename": [ 80 @@ -38312,13 +38340,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2264 + 2266 ], "distinct": [ 5 ], "filter": [ - 2251 + 2253 ], "predicate": [ 6 @@ -38329,13 +38357,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2265 + 2267 ], "distinct": [ 5 ], "filter": [ - 2251 + 2253 ], "predicate": [ 6 @@ -38346,13 +38374,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2263 + 2265 ], "distinct": [ 5 ], "filter": [ - 2251 + 2253 ], "predicate": [ 41 @@ -38363,13 +38391,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2249 + 2251 ], "count": [ 40, { "columns": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "distinct": [ @@ -38378,31 +38406,31 @@ export default { } ], "max": [ - 2255 + 2257 ], "min": [ - 2257 + 2259 ], "stddev": [ - 2267 + 2269 ], "stddev_pop": [ - 2269 + 2271 ], "stddev_samp": [ - 2271 + 2273 ], "sum": [ - 2275 + 2277 ], "var_pop": [ - 2279 + 2281 ], "var_samp": [ - 2281 + 2283 ], "variance": [ - 2283 + 2285 ], "__typename": [ 80 @@ -38410,37 +38438,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 2250 + 2252 ], "count": [ - 3006 + 3035 ], "max": [ - 2256 + 2258 ], "min": [ - 2258 + 2260 ], "stddev": [ - 2268 + 2270 ], "stddev_pop": [ - 2270 + 2272 ], "stddev_samp": [ - 2272 + 2274 ], "sum": [ - 2276 + 2278 ], "var_pop": [ - 2280 + 2282 ], "var_samp": [ - 2282 + 2284 ], "variance": [ - 2284 + 2286 ], "__typename": [ 80 @@ -38448,10 +38476,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 2254 + 2256 ], "on_conflict": [ - 2260 + 2262 ], "__typename": [ 80 @@ -38470,10 +38498,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38481,34 +38509,34 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2251 + 2253 ], "_not": [ - 2251 + 2253 ], "_or": [ - 2251 + 2253 ], "captain": [ 6 ], "invited_by_steam_id": [ - 259 + 261 ], "lobby": [ - 2224 + 2226 ], "lobby_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "status": [ - 887 + 889 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -38517,10 +38545,10 @@ export default { "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38531,22 +38559,22 @@ export default { 5 ], "invited_by_steam_id": [ - 257 + 259 ], "lobby": [ - 2230 + 2232 ], "lobby_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "status": [ - 886 + 888 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38554,13 +38582,13 @@ export default { }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 257 + 259 ], "lobby_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38568,13 +38596,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "lobby_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38582,13 +38610,13 @@ export default { }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 257 + 259 ], "lobby_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38596,13 +38624,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "lobby_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38613,7 +38641,7 @@ export default { 40 ], "returning": [ - 2240 + 2242 ], "__typename": [ 80 @@ -38621,13 +38649,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2252 + 2254 ], "update_columns": [ - 2277 + 2279 ], "where": [ - 2251 + 2253 ], "__typename": [ 80 @@ -38635,25 +38663,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "lobby": [ - 2232 + 2234 ], "lobby_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "status": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38661,10 +38689,10 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38678,16 +38706,16 @@ export default { 5 ], "invited_by_steam_id": [ - 257 + 259 ], "lobby_id": [ - 5053 + 5109 ], "status": [ - 886 + 888 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38706,10 +38734,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38728,10 +38756,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38750,10 +38778,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38761,10 +38789,10 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2274 + 2276 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -38775,16 +38803,16 @@ export default { 5 ], "invited_by_steam_id": [ - 257 + 259 ], "lobby_id": [ - 5053 + 5109 ], "status": [ - 886 + 888 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38792,10 +38820,10 @@ export default { }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -38803,10 +38831,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38815,13 +38843,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2253 + 2255 ], "_set": [ - 2266 + 2268 ], "where": [ - 2251 + 2253 ], "__typename": [ 80 @@ -38840,10 +38868,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38862,10 +38890,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38884,10 +38912,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -38895,19 +38923,19 @@ export default { }, "map_pools": { "e_type": [ - 901 + 903 ], "enabled": [ 5 ], "id": [ - 5053 + 5109 ], "maps": [ - 5713, + 5769, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38917,19 +38945,19 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], "maps_aggregate": [ - 5714, + 5770, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38939,11 +38967,11 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], @@ -38951,7 +38979,7 @@ export default { 5 ], "type": [ - 906 + 908 ], "__typename": [ 80 @@ -38959,10 +38987,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2287 + 2289 ], "nodes": [ - 2285 + 2287 ], "__typename": [ 80 @@ -38973,7 +39001,7 @@ export default { 40, { "columns": [ - 2298, + 2300, "[map_pools_select_column!]" ], "distinct": [ @@ -38982,10 +39010,10 @@ export default { } ], "max": [ - 2291 + 2293 ], "min": [ - 2292 + 2294 ], "__typename": [ 80 @@ -38993,34 +39021,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2288 + 2290 ], "_not": [ - 2288 + 2290 ], "_or": [ - 2288 + 2290 ], "e_type": [ - 904 + 906 ], "enabled": [ 6 ], "id": [ - 5055 + 5111 ], "maps": [ - 5722 + 5778 ], "maps_aggregate": [ - 5715 + 5771 ], "seed": [ 6 ], "type": [ - 907 + 909 ], "__typename": [ 80 @@ -39029,22 +39057,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 912 + 914 ], "enabled": [ 5 ], "id": [ - 5053 + 5109 ], "maps": [ - 5721 + 5777 ], "seed": [ 5 ], "type": [ - 906 + 908 ], "__typename": [ 80 @@ -39052,7 +39080,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39060,7 +39088,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39071,7 +39099,7 @@ export default { 40 ], "returning": [ - 2285 + 2287 ], "__typename": [ 80 @@ -39079,10 +39107,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2290 + 2292 ], "on_conflict": [ - 2295 + 2297 ], "__typename": [ 80 @@ -39090,13 +39118,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2289 + 2291 ], "update_columns": [ - 2302 + 2304 ], "where": [ - 2288 + 2290 ], "__typename": [ 80 @@ -39104,22 +39132,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 914 + 916 ], "enabled": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "maps_aggregate": [ - 5720 + 5776 ], "seed": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -39127,7 +39155,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39139,13 +39167,13 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "seed": [ 5 ], "type": [ - 906 + 908 ], "__typename": [ 80 @@ -39153,10 +39181,10 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2301 + 2303 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -39167,13 +39195,13 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "seed": [ 5 ], "type": [ - 906 + 908 ], "__typename": [ 80 @@ -39182,10 +39210,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2299 + 2301 ], "where": [ - 2288 + 2290 ], "__typename": [ 80 @@ -39196,22 +39224,22 @@ export default { 5 ], "e_match_type": [ - 1024 + 1026 ], "enabled": [ 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "match_maps": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -39221,19 +39249,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -39243,19 +39271,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39265,19 +39293,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39287,11 +39315,11 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], @@ -39305,7 +39333,7 @@ export default { 80 ], "type": [ - 1029 + 1031 ], "workshop_map_id": [ 80 @@ -39316,10 +39344,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2310 + 2312 ], "nodes": [ - 2304 + 2306 ], "__typename": [ 80 @@ -39327,13 +39355,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2307 + 2309 ], "bool_or": [ - 2308 + 2310 ], "count": [ - 2309 + 2311 ], "__typename": [ 80 @@ -39341,13 +39369,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2326 + 2328 ], "distinct": [ 5 ], "filter": [ - 2313 + 2315 ], "predicate": [ 6 @@ -39358,13 +39386,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2327 + 2329 ], "distinct": [ 5 ], "filter": [ - 2313 + 2315 ], "predicate": [ 6 @@ -39375,13 +39403,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2325 + 2327 ], "distinct": [ 5 ], "filter": [ - 2313 + 2315 ], "predicate": [ 41 @@ -39395,7 +39423,7 @@ export default { 40, { "columns": [ - 2325, + 2327, "[maps_select_column!]" ], "distinct": [ @@ -39404,10 +39432,10 @@ export default { } ], "max": [ - 2316 + 2318 ], "min": [ - 2318 + 2320 ], "__typename": [ 80 @@ -39415,13 +39443,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 2317 + 2319 ], "min": [ - 2319 + 2321 ], "__typename": [ 80 @@ -39429,10 +39457,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2315 + 2317 ], "on_conflict": [ - 2322 + 2324 ], "__typename": [ 80 @@ -39440,40 +39468,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2313 + 2315 ], "_not": [ - 2313 + 2315 ], "_or": [ - 2313 + 2315 ], "active_pool": [ 6 ], "e_match_type": [ - 1027 + 1029 ], "enabled": [ 6 ], "id": [ - 5055 + 5111 ], "label": [ 82 ], "match_maps": [ - 2664 + 2666 ], "match_maps_aggregate": [ - 2657 + 2659 ], "match_veto_picks": [ - 2636 + 2638 ], "match_veto_picks_aggregate": [ - 2629 + 2631 ], "name": [ 82 @@ -39485,7 +39513,7 @@ export default { 82 ], "type": [ - 1030 + 1032 ], "workshop_map_id": [ 82 @@ -39500,22 +39528,22 @@ export default { 5 ], "e_match_type": [ - 1035 + 1037 ], "enabled": [ 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "match_maps": [ - 2661 + 2663 ], "match_veto_picks": [ - 2635 + 2637 ], "name": [ 80 @@ -39527,7 +39555,7 @@ export default { 80 ], "type": [ - 1029 + 1031 ], "workshop_map_id": [ 80 @@ -39538,7 +39566,7 @@ export default { }, "maps_max_fields": { "id": [ - 5053 + 5109 ], "label": [ 80 @@ -39561,22 +39589,22 @@ export default { }, "maps_max_order_by": { "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -39584,7 +39612,7 @@ export default { }, "maps_min_fields": { "id": [ - 5053 + 5109 ], "label": [ 80 @@ -39607,22 +39635,22 @@ export default { }, "maps_min_order_by": { "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -39633,7 +39661,7 @@ export default { 40 ], "returning": [ - 2304 + 2306 ], "__typename": [ 80 @@ -39641,10 +39669,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2315 + 2317 ], "on_conflict": [ - 2322 + 2324 ], "__typename": [ 80 @@ -39652,13 +39680,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2314 + 2316 ], "update_columns": [ - 2331 + 2333 ], "where": [ - 2313 + 2315 ], "__typename": [ 80 @@ -39666,40 +39694,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 3006 + 3035 ], "e_match_type": [ - 1037 + 1039 ], "enabled": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "match_maps_aggregate": [ - 2660 + 2662 ], "match_veto_picks_aggregate": [ - 2634 + 2636 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -39707,7 +39735,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39724,7 +39752,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 @@ -39739,7 +39767,7 @@ export default { 80 ], "type": [ - 1029 + 1031 ], "workshop_map_id": [ 80 @@ -39750,10 +39778,10 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2330 + 2332 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -39767,7 +39795,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 @@ -39782,7 +39810,7 @@ export default { 80 ], "type": [ - 1029 + 1031 ], "workshop_map_id": [ 80 @@ -39794,10 +39822,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2328 + 2330 ], "where": [ - 2313 + 2315 ], "__typename": [ 80 @@ -39805,22 +39833,22 @@ export default { }, "match_camera_tokens": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39828,10 +39856,10 @@ export default { }, "match_camera_tokens_aggregate": { "aggregate": [ - 2335 + 2337 ], "nodes": [ - 2333 + 2335 ], "__typename": [ 80 @@ -39839,13 +39867,13 @@ export default { }, "match_camera_tokens_aggregate_fields": { "avg": [ - 2336 + 2338 ], "count": [ 40, { "columns": [ - 2347, + 2349, "[match_camera_tokens_select_column!]" ], "distinct": [ @@ -39854,31 +39882,31 @@ export default { } ], "max": [ - 2341 + 2343 ], "min": [ - 2342 + 2344 ], "stddev": [ - 2349 + 2351 ], "stddev_pop": [ - 2350 + 2352 ], "stddev_samp": [ - 2351 + 2353 ], "sum": [ - 2354 + 2356 ], "var_pop": [ - 2357 + 2359 ], "var_samp": [ - 2358 + 2360 ], "variance": [ - 2359 + 2361 ], "__typename": [ 80 @@ -39894,31 +39922,31 @@ export default { }, "match_camera_tokens_bool_exp": { "_and": [ - 2337 + 2339 ], "_not": [ - 2337 + 2339 ], "_or": [ - 2337 + 2339 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "steam_id": [ - 259 + 261 ], "token": [ - 5055 + 5111 ], "__typename": [ 80 @@ -39927,7 +39955,7 @@ export default { "match_camera_tokens_constraint": {}, "match_camera_tokens_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -39935,22 +39963,22 @@ export default { }, "match_camera_tokens_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39958,19 +39986,19 @@ export default { }, "match_camera_tokens_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -39978,19 +40006,19 @@ export default { }, "match_camera_tokens_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -40001,7 +40029,7 @@ export default { 40 ], "returning": [ - 2333 + 2335 ], "__typename": [ 80 @@ -40009,13 +40037,13 @@ export default { }, "match_camera_tokens_on_conflict": { "constraint": [ - 2338 + 2340 ], "update_columns": [ - 2355 + 2357 ], "where": [ - 2337 + 2339 ], "__typename": [ 80 @@ -40023,22 +40051,22 @@ export default { }, "match_camera_tokens_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "token": [ - 3006 + 3035 ], "__typename": [ 80 @@ -40046,7 +40074,7 @@ export default { }, "match_camera_tokens_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -40055,19 +40083,19 @@ export default { "match_camera_tokens_select_column": {}, "match_camera_tokens_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -40099,10 +40127,10 @@ export default { }, "match_camera_tokens_stream_cursor_input": { "initial_value": [ - 2353 + 2355 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -40110,19 +40138,19 @@ export default { }, "match_camera_tokens_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "token": [ - 5053 + 5109 ], "__typename": [ 80 @@ -40130,7 +40158,7 @@ export default { }, "match_camera_tokens_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -40139,13 +40167,13 @@ export default { "match_camera_tokens_update_column": {}, "match_camera_tokens_updates": { "_inc": [ - 2339 + 2341 ], "_set": [ - 2348 + 2350 ], "where": [ - 2337 + 2339 ], "__typename": [ 80 @@ -40177,7 +40205,7 @@ export default { }, "match_clips": { "created_at": [ - 4553 + 4609 ], "download_url": [ 80 @@ -40189,28 +40217,28 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map": [ - 2655 + 2657 ], "match_map_demo": [ - 2535 + 2537 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "render_jobs": [ - 262, + 264, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -40220,19 +40248,19 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "render_jobs_aggregate": [ - 263, + 265, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -40242,11 +40270,11 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], @@ -40254,13 +40282,13 @@ export default { 40 ], "size": [ - 257 + 259 ], "target": [ - 3964 + 3993 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_download_url": [ 80 @@ -40272,16 +40300,16 @@ export default { 80 ], "user": [ - 3964 + 3993 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 ], "visibility": [ - 927 + 929 ], "__typename": [ 80 @@ -40289,10 +40317,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2364 + 2366 ], "nodes": [ - 2360 + 2362 ], "__typename": [ 80 @@ -40300,7 +40328,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2363 + 2365 ], "__typename": [ 80 @@ -40308,13 +40336,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2382 + 2384 ], "distinct": [ 5 ], "filter": [ - 2369 + 2371 ], "predicate": [ 41 @@ -40325,13 +40353,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2367 + 2369 ], "count": [ 40, { "columns": [ - 2382, + 2384, "[match_clips_select_column!]" ], "distinct": [ @@ -40340,31 +40368,31 @@ export default { } ], "max": [ - 2373 + 2375 ], "min": [ - 2375 + 2377 ], "stddev": [ - 2384 + 2386 ], "stddev_pop": [ - 2386 + 2388 ], "stddev_samp": [ - 2388 + 2390 ], "sum": [ - 2392 + 2394 ], "var_pop": [ - 2396 + 2398 ], "var_samp": [ - 2398 + 2400 ], "variance": [ - 2400 + 2402 ], "__typename": [ 80 @@ -40372,37 +40400,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2368 + 2370 ], "count": [ - 3006 + 3035 ], "max": [ - 2374 + 2376 ], "min": [ - 2376 + 2378 ], "stddev": [ - 2385 + 2387 ], "stddev_pop": [ - 2387 + 2389 ], "stddev_samp": [ - 2389 + 2391 ], "sum": [ - 2393 + 2395 ], "var_pop": [ - 2397 + 2399 ], "var_samp": [ - 2399 + 2401 ], "variance": [ - 2401 + 2403 ], "__typename": [ 80 @@ -40410,10 +40438,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2372 + 2374 ], "on_conflict": [ - 2379 + 2381 ], "__typename": [ 80 @@ -40447,25 +40475,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -40473,16 +40501,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2369 + 2371 ], "_not": [ - 2369 + 2371 ], "_or": [ - 2369 + 2371 ], "created_at": [ - 4554 + 4610 ], "download_url": [ 82 @@ -40494,40 +40522,40 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "kills_count": [ 41 ], "match_map": [ - 2664 + 2666 ], "match_map_demo": [ - 2547 + 2549 ], "match_map_demo_id": [ - 5055 + 5111 ], "match_map_id": [ - 5055 + 5111 ], "render_jobs": [ - 274 + 276 ], "render_jobs_aggregate": [ - 264 + 266 ], "round": [ 41 ], "size": [ - 259 + 261 ], "target": [ - 3968 + 3997 ], "target_steam_id": [ - 259 + 261 ], "thumbnail_download_url": [ 82 @@ -40539,16 +40567,16 @@ export default { 82 ], "user": [ - 3968 + 3997 ], "user_steam_id": [ - 259 + 261 ], "views_count": [ 41 ], "visibility": [ - 928 + 930 ], "__typename": [ 80 @@ -40566,13 +40594,13 @@ export default { 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 @@ -40583,7 +40611,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4553 + 4609 ], "duration_ms": [ 40 @@ -40592,37 +40620,37 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map": [ - 2673 + 2675 ], "match_map_demo": [ - 2559 + 2561 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "render_jobs": [ - 271 + 273 ], "round": [ 40 ], "size": [ - 257 + 259 ], "target": [ - 3975 + 4004 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_url": [ 80 @@ -40631,16 +40659,16 @@ export default { 80 ], "user": [ - 3975 + 4004 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 ], "visibility": [ - 927 + 929 ], "__typename": [ 80 @@ -40648,7 +40676,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4553 + 4609 ], "download_url": [ 80 @@ -40660,25 +40688,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_download_url": [ 80 @@ -40690,7 +40718,7 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 @@ -40701,46 +40729,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 3006 + 3035 ], "duration_ms": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "thumbnail_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -40748,7 +40776,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4553 + 4609 ], "download_url": [ 80 @@ -40760,25 +40788,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_download_url": [ 80 @@ -40790,7 +40818,7 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 @@ -40801,46 +40829,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 3006 + 3035 ], "duration_ms": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "thumbnail_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -40851,7 +40879,7 @@ export default { 40 ], "returning": [ - 2360 + 2362 ], "__typename": [ 80 @@ -40859,10 +40887,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2372 + 2374 ], "on_conflict": [ - 2379 + 2381 ], "__typename": [ 80 @@ -40870,13 +40898,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2370 + 2372 ], "update_columns": [ - 2394 + 2396 ], "where": [ - 2369 + 2371 ], "__typename": [ 80 @@ -40884,70 +40912,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 3006 + 3035 ], "download_url": [ - 3006 + 3035 ], "duration_ms": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_demo": [ - 2561 + 2563 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "render_jobs_aggregate": [ - 269 + 271 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target": [ - 3977 + 4006 ], "target_steam_id": [ - 3006 + 3035 ], "thumbnail_download_url": [ - 3006 + 3035 ], "thumbnail_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "user": [ - 3977 + 4006 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "visibility": [ - 3006 + 3035 ], "__typename": [ 80 @@ -40955,7 +40983,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -40964,7 +40992,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4553 + 4609 ], "duration_ms": [ 40 @@ -40973,25 +41001,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_url": [ 80 @@ -41000,13 +41028,13 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 ], "visibility": [ - 927 + 929 ], "__typename": [ 80 @@ -41040,25 +41068,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41092,25 +41120,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41144,25 +41172,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41170,10 +41198,10 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2391 + 2393 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -41181,7 +41209,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "duration_ms": [ 40 @@ -41190,25 +41218,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "thumbnail_url": [ 80 @@ -41217,13 +41245,13 @@ export default { 80 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 ], "visibility": [ - 927 + 929 ], "__typename": [ 80 @@ -41240,13 +41268,13 @@ export default { 40 ], "size": [ - 257 + 259 ], "target_steam_id": [ - 257 + 259 ], "user_steam_id": [ - 257 + 259 ], "views_count": [ 40 @@ -41257,25 +41285,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41284,13 +41312,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2371 + 2373 ], "_set": [ - 2383 + 2385 ], "where": [ - 2369 + 2371 ], "__typename": [ 80 @@ -41324,25 +41352,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41376,25 +41404,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41428,25 +41456,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 3006 + 3035 ], "kills_count": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "target_steam_id": [ - 3006 + 3035 ], "user_steam_id": [ - 3006 + 3035 ], "views_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41454,52 +41482,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 ], "game_server_node": [ - 1718 + 1720 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_demo": [ - 2535 + 2537 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 ], "status_history": [ - 1842, + 1844, { "path": [ 80 @@ -41510,10 +41538,10 @@ export default { 80 ], "watcher": [ - 3964 + 3993 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -41521,10 +41549,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2406 + 2408 ], "nodes": [ - 2402 + 2404 ], "__typename": [ 80 @@ -41532,7 +41560,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2405 + 2407 ], "__typename": [ 80 @@ -41540,13 +41568,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2428 + 2430 ], "distinct": [ 5 ], "filter": [ - 2412 + 2414 ], "predicate": [ 41 @@ -41557,13 +41585,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2410 + 2412 ], "count": [ 40, { "columns": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -41572,31 +41600,31 @@ export default { } ], "max": [ - 2419 + 2421 ], "min": [ - 2421 + 2423 ], "stddev": [ - 2430 + 2432 ], "stddev_pop": [ - 2432 + 2434 ], "stddev_samp": [ - 2434 + 2436 ], "sum": [ - 2438 + 2440 ], "var_pop": [ - 2442 + 2444 ], "var_samp": [ - 2444 + 2446 ], "variance": [ - 2446 + 2448 ], "__typename": [ 80 @@ -41604,37 +41632,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2411 + 2413 ], "count": [ - 3006 + 3035 ], "max": [ - 2420 + 2422 ], "min": [ - 2422 + 2424 ], "stddev": [ - 2431 + 2433 ], "stddev_pop": [ - 2433 + 2435 ], "stddev_samp": [ - 2435 + 2437 ], "sum": [ - 2439 + 2441 ], "var_pop": [ - 2443 + 2445 ], "var_samp": [ - 2445 + 2447 ], "variance": [ - 2447 + 2449 ], "__typename": [ 80 @@ -41642,7 +41670,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -41650,10 +41678,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2418 + 2420 ], "on_conflict": [ - 2424 + 2426 ], "__typename": [ 80 @@ -41669,7 +41697,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41677,70 +41705,70 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2412 + 2414 ], "_not": [ - 2412 + 2414 ], "_or": [ - 2412 + 2414 ], "created_at": [ - 4554 + 4610 ], "error_message": [ 82 ], "game_server_node": [ - 1730 + 1732 ], "game_server_node_id": [ 82 ], "id": [ - 5055 + 5111 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4554 + 4610 ], "last_status_at": [ - 4554 + 4610 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_demo": [ - 2547 + 2549 ], "match_map_demo_id": [ - 5055 + 5111 ], "match_map_id": [ - 5055 + 5111 ], "status": [ 82 ], "status_history": [ - 1844 + 1846 ], "stream_url": [ 82 ], "watcher": [ - 3968 + 3997 ], "watcher_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -41773,7 +41801,7 @@ export default { }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -41781,61 +41809,61 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 ], "game_server_node": [ - 1742 + 1744 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_demo": [ - 2559 + 2561 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 ], "watcher": [ - 3975 + 4004 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -41843,7 +41871,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -41852,25 +41880,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 @@ -41879,7 +41907,7 @@ export default { 80 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -41887,43 +41915,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_activity_at": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -41931,7 +41959,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -41940,25 +41968,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 @@ -41967,7 +41995,7 @@ export default { 80 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -41975,43 +42003,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_activity_at": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42022,7 +42050,7 @@ export default { 40 ], "returning": [ - 2402 + 2404 ], "__typename": [ 80 @@ -42030,13 +42058,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2413 + 2415 ], "update_columns": [ - 2440 + 2442 ], "where": [ - 2412 + 2414 ], "__typename": [ 80 @@ -42044,61 +42072,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node": [ - 1744 + 1746 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "last_activity_at": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_demo": [ - 2561 + 2563 ], "match_map_demo_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "status_history": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "watcher": [ - 3977 + 4006 ], "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42106,7 +42134,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -42114,7 +42142,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -42123,7 +42151,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -42132,37 +42160,37 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42178,7 +42206,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42194,7 +42222,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42210,7 +42238,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42218,10 +42246,10 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2437 + 2439 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -42229,7 +42257,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "error_message": [ 80 @@ -42238,37 +42266,37 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4553 + 4609 ], "last_status_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "status": [ 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 ], "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42276,7 +42304,7 @@ export default { }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42284,7 +42312,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42293,28 +42321,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2408 + 2410 ], "_delete_at_path": [ - 2414 + 2416 ], "_delete_elem": [ - 2415 + 2417 ], "_delete_key": [ - 2416 + 2418 ], "_inc": [ - 2417 + 2419 ], "_prepend": [ - 2427 + 2429 ], "_set": [ - 2429 + 2431 ], "where": [ - 2412 + 2414 ], "__typename": [ 80 @@ -42330,7 +42358,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42346,7 +42374,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42362,7 +42390,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42379,31 +42407,31 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_connected": [ 5 ], "lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "party_source": [ - 988 + 990 ], "placeholder_name": [ 80 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42411,10 +42439,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2454 + 2456 ], "nodes": [ - 2448 + 2450 ], "__typename": [ 80 @@ -42422,13 +42450,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2451 + 2453 ], "bool_or": [ - 2452 + 2454 ], "count": [ - 2453 + 2455 ], "__typename": [ 80 @@ -42436,13 +42464,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2472 + 2474 ], "distinct": [ 5 ], "filter": [ - 2459 + 2461 ], "predicate": [ 6 @@ -42453,13 +42481,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2473 + 2475 ], "distinct": [ 5 ], "filter": [ - 2459 + 2461 ], "predicate": [ 6 @@ -42470,13 +42498,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2471 + 2473 ], "distinct": [ 5 ], "filter": [ - 2459 + 2461 ], "predicate": [ 41 @@ -42487,13 +42515,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2457 + 2459 ], "count": [ 40, { "columns": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -42502,31 +42530,31 @@ export default { } ], "max": [ - 2463 + 2465 ], "min": [ - 2465 + 2467 ], "stddev": [ - 2475 + 2477 ], "stddev_pop": [ - 2477 + 2479 ], "stddev_samp": [ - 2479 + 2481 ], "sum": [ - 2483 + 2485 ], "var_pop": [ - 2487 + 2489 ], "var_samp": [ - 2489 + 2491 ], "variance": [ - 2491 + 2493 ], "__typename": [ 80 @@ -42534,37 +42562,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2458 + 2460 ], "count": [ - 3006 + 3035 ], "max": [ - 2464 + 2466 ], "min": [ - 2466 + 2468 ], "stddev": [ - 2476 + 2478 ], "stddev_pop": [ - 2478 + 2480 ], "stddev_samp": [ - 2480 + 2482 ], "sum": [ - 2484 + 2486 ], "var_pop": [ - 2488 + 2490 ], "var_samp": [ - 2490 + 2492 ], "variance": [ - 2492 + 2494 ], "__typename": [ 80 @@ -42572,10 +42600,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2462 + 2464 ], "on_conflict": [ - 2468 + 2470 ], "__typename": [ 80 @@ -42591,7 +42619,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42599,13 +42627,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2459 + 2461 ], "_not": [ - 2459 + 2461 ], "_or": [ - 2459 + 2461 ], "captain": [ 6 @@ -42617,31 +42645,31 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "is_connected": [ 6 ], "lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "party_id": [ - 5055 + 5111 ], "party_source": [ - 989 + 991 ], "placeholder_name": [ 82 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -42650,7 +42678,7 @@ export default { "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42667,31 +42695,31 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_connected": [ 5 ], "lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "party_source": [ - 988 + 990 ], "placeholder_name": [ 80 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42702,19 +42730,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42722,22 +42750,22 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "party_id": [ - 3006 + 3035 ], "placeholder_name": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42748,19 +42776,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42768,22 +42796,22 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "party_id": [ - 3006 + 3035 ], "placeholder_name": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42794,7 +42822,7 @@ export default { 40 ], "returning": [ - 2448 + 2450 ], "__typename": [ 80 @@ -42802,13 +42830,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2460 + 2462 ], "update_columns": [ - 2485 + 2487 ], "where": [ - 2459 + 2461 ], "__typename": [ 80 @@ -42816,40 +42844,40 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 3006 + 3035 ], "checked_in": [ - 3006 + 3035 ], "discord_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_connected": [ - 3006 + 3035 ], "lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "party_id": [ - 3006 + 3035 ], "party_source": [ - 3006 + 3035 ], "placeholder_name": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42857,7 +42885,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -42877,25 +42905,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "party_source": [ - 988 + 990 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42911,7 +42939,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42927,7 +42955,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42943,7 +42971,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -42951,10 +42979,10 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2482 + 2484 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -42971,25 +42999,25 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5053 + 5109 ], "party_id": [ - 5053 + 5109 ], "party_source": [ - 988 + 990 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -42997,7 +43025,7 @@ export default { }, "match_lineup_players_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -43005,7 +43033,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43014,13 +43042,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2461 + 2463 ], "_set": [ - 2474 + 2476 ], "where": [ - 2459 + 2461 ], "__typename": [ 80 @@ -43036,7 +43064,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43052,7 +43080,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43068,7 +43096,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43085,16 +43113,16 @@ export default { 5 ], "captain": [ - 5209 + 5265 ], "coach": [ - 3964 + 3993 ], "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "is_on_lineup": [ 5 @@ -43109,10 +43137,10 @@ export default { 5 ], "lineup_players": [ - 2448, + 2450, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -43122,19 +43150,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "lineup_players_aggregate": [ - 2449, + 2451, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -43144,25 +43172,25 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43172,19 +43200,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43194,11 +43222,11 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], @@ -43206,10 +43234,10 @@ export default { 80 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43220,10 +43248,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2497 + 2499 ], "nodes": [ - 2493 + 2495 ], "__typename": [ 80 @@ -43231,7 +43259,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2496 + 2498 ], "__typename": [ 80 @@ -43239,13 +43267,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2515 + 2517 ], "distinct": [ 5 ], "filter": [ - 2502 + 2504 ], "predicate": [ 41 @@ -43256,13 +43284,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2500 + 2502 ], "count": [ 40, { "columns": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "distinct": [ @@ -43271,31 +43299,31 @@ export default { } ], "max": [ - 2506 + 2508 ], "min": [ - 2508 + 2510 ], "stddev": [ - 2517 + 2519 ], "stddev_pop": [ - 2519 + 2521 ], "stddev_samp": [ - 2521 + 2523 ], "sum": [ - 2525 + 2527 ], "var_pop": [ - 2529 + 2531 ], "var_samp": [ - 2531 + 2533 ], "variance": [ - 2533 + 2535 ], "__typename": [ 80 @@ -43303,37 +43331,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2501 + 2503 ], "count": [ - 3006 + 3035 ], "max": [ - 2507 + 2509 ], "min": [ - 2509 + 2511 ], "stddev": [ - 2518 + 2520 ], "stddev_pop": [ - 2520 + 2522 ], "stddev_samp": [ - 2522 + 2524 ], "sum": [ - 2526 + 2528 ], "var_pop": [ - 2530 + 2532 ], "var_samp": [ - 2532 + 2534 ], "variance": [ - 2534 + 2536 ], "__typename": [ 80 @@ -43341,10 +43369,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2505 + 2507 ], "on_conflict": [ - 2512 + 2514 ], "__typename": [ 80 @@ -43360,7 +43388,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43368,13 +43396,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2502 + 2504 ], "_not": [ - 2502 + 2504 ], "_or": [ - 2502 + 2504 ], "can_pick_map_veto": [ 6 @@ -43386,16 +43414,16 @@ export default { 6 ], "captain": [ - 5213 + 5269 ], "coach": [ - 3968 + 3997 ], "coach_steam_id": [ - 259 + 261 ], "id": [ - 5055 + 5111 ], "is_on_lineup": [ 6 @@ -43410,31 +43438,31 @@ export default { 6 ], "lineup_players": [ - 2459 + 2461 ], "lineup_players_aggregate": [ - 2450 + 2452 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_veto_picks": [ - 2636 + 2638 ], "match_veto_picks_aggregate": [ - 2629 + 2631 ], "name": [ 82 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "team_name": [ 82 @@ -43446,7 +43474,7 @@ export default { "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -43454,34 +43482,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5219 + 5275 ], "coach": [ - 3975 + 4004 ], "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "lineup_players": [ - 2456 + 2458 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_veto_picks": [ - 2635 + 2637 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43492,19 +43520,19 @@ export default { }, "match_lineups_max_fields": { "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "name": [ 80 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43515,19 +43543,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "team_name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43535,19 +43563,19 @@ export default { }, "match_lineups_min_fields": { "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "name": [ 80 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43558,19 +43586,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "team_name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43581,7 +43609,7 @@ export default { 40 ], "returning": [ - 2493 + 2495 ], "__typename": [ 80 @@ -43589,10 +43617,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2505 + 2507 ], "on_conflict": [ - 2512 + 2514 ], "__typename": [ 80 @@ -43600,13 +43628,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2503 + 2505 ], "update_columns": [ - 2527 + 2529 ], "where": [ - 2502 + 2504 ], "__typename": [ 80 @@ -43614,61 +43642,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3006 + 3035 ], "can_pick_region_veto": [ - 3006 + 3035 ], "can_update_lineup": [ - 3006 + 3035 ], "captain": [ - 5220 + 5276 ], "coach": [ - 3977 + 4006 ], "coach_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_on_lineup": [ - 3006 + 3035 ], "is_picking_map_veto": [ - 3006 + 3035 ], "is_picking_region_veto": [ - 3006 + 3035 ], "is_ready": [ - 3006 + 3035 ], "lineup_players_aggregate": [ - 2455 + 2457 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_veto_picks_aggregate": [ - 2634 + 2636 ], "name": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "team_name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43676,7 +43704,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -43685,16 +43713,16 @@ export default { "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43713,7 +43741,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43729,7 +43757,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43745,7 +43773,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43753,10 +43781,10 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2524 + 2526 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -43764,16 +43792,16 @@ export default { }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "team_name": [ 80 @@ -43784,7 +43812,7 @@ export default { }, "match_lineups_sum_fields": { "coach_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -43792,7 +43820,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43801,13 +43829,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2504 + 2506 ], "_set": [ - 2516 + 2518 ], "where": [ - 2502 + 2504 ], "__typename": [ 80 @@ -43823,7 +43851,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43839,7 +43867,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43855,7 +43883,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -43863,7 +43891,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1842, + 1844, { "path": [ 80 @@ -43871,10 +43899,10 @@ export default { } ], "clip_render_jobs": [ - 262, + 264, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -43884,19 +43912,19 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "clip_render_jobs_aggregate": [ - 263, + 265, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -43906,25 +43934,25 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2402, + 2404, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43934,19 +43962,19 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], "demo_sessions_aggregate": [ - 2403, + 2405, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43956,11 +43984,11 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], @@ -43977,10 +44005,10 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "kills": [ - 1842, + 1844, { "path": [ 80 @@ -43991,13 +44019,13 @@ export default { 80 ], "match": [ - 2821 + 2823 ], "match_clips": [ - 2360, + 2362, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -44007,19 +44035,19 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_aggregate": [ - 2361, + 2363, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -44029,25 +44057,25 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -44059,7 +44087,7 @@ export default { 80 ], "players": [ - 1842, + 1844, { "path": [ 80 @@ -44067,7 +44095,7 @@ export default { } ], "round_ticks": [ - 1842, + 1844, { "path": [ 80 @@ -44092,10 +44120,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2541 + 2543 ], "nodes": [ - 2535 + 2537 ], "__typename": [ 80 @@ -44103,13 +44131,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2538 + 2540 ], "bool_or": [ - 2539 + 2541 ], "count": [ - 2540 + 2542 ], "__typename": [ 80 @@ -44117,13 +44145,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2565 + 2567 ], "distinct": [ 5 ], "filter": [ - 2547 + 2549 ], "predicate": [ 6 @@ -44134,13 +44162,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2566 + 2568 ], "distinct": [ 5 ], "filter": [ - 2547 + 2549 ], "predicate": [ 6 @@ -44151,13 +44179,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2564 + 2566 ], "distinct": [ 5 ], "filter": [ - 2547 + 2549 ], "predicate": [ 41 @@ -44168,13 +44196,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2545 + 2547 ], "count": [ 40, { "columns": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "distinct": [ @@ -44183,31 +44211,31 @@ export default { } ], "max": [ - 2554 + 2556 ], "min": [ - 2556 + 2558 ], "stddev": [ - 2568 + 2570 ], "stddev_pop": [ - 2570 + 2572 ], "stddev_samp": [ - 2572 + 2574 ], "sum": [ - 2576 + 2578 ], "var_pop": [ - 2580 + 2582 ], "var_samp": [ - 2582 + 2584 ], "variance": [ - 2584 + 2586 ], "__typename": [ 80 @@ -44215,37 +44243,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2546 + 2548 ], "count": [ - 3006 + 3035 ], "max": [ - 2555 + 2557 ], "min": [ - 2557 + 2559 ], "stddev": [ - 2569 + 2571 ], "stddev_pop": [ - 2571 + 2573 ], "stddev_samp": [ - 2573 + 2575 ], "sum": [ - 2577 + 2579 ], "var_pop": [ - 2581 + 2583 ], "var_samp": [ - 2583 + 2585 ], "variance": [ - 2585 + 2587 ], "__typename": [ 80 @@ -44253,16 +44281,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1842 + 1844 ], "kills": [ - 1842 + 1844 ], "players": [ - 1842 + 1844 ], "round_ticks": [ - 1842 + 1844 ], "__typename": [ 80 @@ -44270,10 +44298,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2553 + 2555 ], "on_conflict": [ - 2560 + 2562 ], "__typename": [ 80 @@ -44301,19 +44329,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -44321,34 +44349,34 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2547 + 2549 ], "_not": [ - 2547 + 2549 ], "_or": [ - 2547 + 2549 ], "bombs": [ - 1844 + 1846 ], "clip_render_jobs": [ - 274 + 276 ], "clip_render_jobs_aggregate": [ - 264 + 266 ], "created_at": [ - 4554 + 4610 ], "cs2_build": [ 82 ], "demo_sessions": [ - 2412 + 2414 ], "demo_sessions_aggregate": [ - 2404 + 2406 ], "download_url": [ 82 @@ -44363,34 +44391,34 @@ export default { 6 ], "id": [ - 5055 + 5111 ], "kills": [ - 1844 + 1846 ], "map_name": [ 82 ], "match": [ - 2830 + 2832 ], "match_clips": [ - 2369 + 2371 ], "match_clips_aggregate": [ - 2362 + 2364 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "metadata_parsed_at": [ - 4554 + 4610 ], "playback_file": [ 82 @@ -44402,10 +44430,10 @@ export default { 82 ], "players": [ - 1844 + 1846 ], "round_ticks": [ - 1844 + 1846 ], "size": [ 41 @@ -44494,19 +44522,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1842 + 1844 ], "clip_render_jobs": [ - 271 + 273 ], "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2409 + 2411 ], "file": [ 80 @@ -44515,31 +44543,31 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "kills": [ - 1842 + 1844 ], "map_name": [ 80 ], "match": [ - 2839 + 2841 ], "match_clips": [ - 2366 + 2368 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -44548,10 +44576,10 @@ export default { 40 ], "players": [ - 1842 + 1844 ], "round_ticks": [ - 1842 + 1844 ], "size": [ 40 @@ -44571,7 +44599,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 @@ -44586,19 +44614,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "map_name": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -44627,49 +44655,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 3006 + 3035 ], "cs2_build": [ - 3006 + 3035 ], "duration_seconds": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map_name": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "metadata_parsed_at": [ - 3006 + 3035 ], "playback_file": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "workshop_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -44677,7 +44705,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 @@ -44692,19 +44720,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "map_name": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -44733,49 +44761,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 3006 + 3035 ], "cs2_build": [ - 3006 + 3035 ], "duration_seconds": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map_name": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "metadata_parsed_at": [ - 3006 + 3035 ], "playback_file": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "workshop_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -44786,7 +44814,7 @@ export default { 40 ], "returning": [ - 2535 + 2537 ], "__typename": [ 80 @@ -44794,10 +44822,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2553 + 2555 ], "on_conflict": [ - 2560 + 2562 ], "__typename": [ 80 @@ -44805,13 +44833,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2548 + 2550 ], "update_columns": [ - 2578 + 2580 ], "where": [ - 2547 + 2549 ], "__typename": [ 80 @@ -44819,85 +44847,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 3006 + 3035 ], "clip_render_jobs_aggregate": [ - 269 + 271 ], "created_at": [ - 3006 + 3035 ], "cs2_build": [ - 3006 + 3035 ], "demo_sessions_aggregate": [ - 2407 + 2409 ], "download_url": [ - 3006 + 3035 ], "duration_seconds": [ - 3006 + 3035 ], "file": [ - 3006 + 3035 ], "geometry_validated": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_name": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_clips_aggregate": [ - 2365 + 2367 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "metadata_parsed_at": [ - 3006 + 3035 ], "playback_file": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "playback_url": [ - 3006 + 3035 ], "players": [ - 3006 + 3035 ], "round_ticks": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "workshop_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -44905,7 +44933,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -44913,16 +44941,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1842 + 1844 ], "kills": [ - 1842 + 1844 ], "players": [ - 1842 + 1844 ], "round_ticks": [ - 1842 + 1844 ], "__typename": [ 80 @@ -44933,10 +44961,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1842 + 1844 ], "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 @@ -44948,22 +44976,22 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "kills": [ - 1842 + 1844 ], "map_name": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -44972,10 +45000,10 @@ export default { 40 ], "players": [ - 1842 + 1844 ], "round_ticks": [ - 1842 + 1844 ], "size": [ 40 @@ -45015,19 +45043,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45055,19 +45083,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45095,19 +45123,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45115,10 +45143,10 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2575 + 2577 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -45126,10 +45154,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1842 + 1844 ], "created_at": [ - 4553 + 4609 ], "cs2_build": [ 80 @@ -45144,22 +45172,22 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "kills": [ - 1842 + 1844 ], "map_name": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "metadata_parsed_at": [ - 4553 + 4609 ], "playback_file": [ 80 @@ -45168,10 +45196,10 @@ export default { 40 ], "players": [ - 1842 + 1844 ], "round_ticks": [ - 1842 + 1844 ], "size": [ 40 @@ -45211,19 +45239,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45232,28 +45260,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2543 + 2545 ], "_delete_at_path": [ - 2549 + 2551 ], "_delete_elem": [ - 2550 + 2552 ], "_delete_key": [ - 2551 + 2553 ], "_inc": [ - 2552 + 2554 ], "_prepend": [ - 2563 + 2565 ], "_set": [ - 2567 + 2569 ], "where": [ - 2547 + 2549 ], "__typename": [ 80 @@ -45281,19 +45309,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45321,19 +45349,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45361,19 +45389,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3006 + 3035 ], "playback_size": [ - 3006 + 3035 ], "size": [ - 3006 + 3035 ], "tick_rate": [ - 3006 + 3035 ], "total_ticks": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45381,10 +45409,10 @@ export default { }, "match_map_rounds": { "assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -45394,19 +45422,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -45416,11 +45444,11 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], @@ -45428,22 +45456,22 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "has_backup_file": [ 5 ], "id": [ - 5053 + 5109 ], "kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -45453,19 +45481,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -45475,11 +45503,11 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], @@ -45490,7 +45518,7 @@ export default { 40 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 @@ -45502,25 +45530,25 @@ export default { 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_reason": [ - 1415 + 1417 ], "winning_side": [ 80 @@ -45531,10 +45559,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2590 + 2592 ], "nodes": [ - 2586 + 2588 ], "__typename": [ 80 @@ -45542,7 +45570,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2589 + 2591 ], "__typename": [ 80 @@ -45550,13 +45578,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2607 + 2609 ], "distinct": [ 5 ], "filter": [ - 2595 + 2597 ], "predicate": [ 41 @@ -45567,13 +45595,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2593 + 2595 ], "count": [ 40, { "columns": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -45582,31 +45610,31 @@ export default { } ], "max": [ - 2599 + 2601 ], "min": [ - 2601 + 2603 ], "stddev": [ - 2609 + 2611 ], "stddev_pop": [ - 2611 + 2613 ], "stddev_samp": [ - 2613 + 2615 ], "sum": [ - 2617 + 2619 ], "var_pop": [ - 2621 + 2623 ], "var_samp": [ - 2623 + 2625 ], "variance": [ - 2625 + 2627 ], "__typename": [ 80 @@ -45614,37 +45642,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2594 + 2596 ], "count": [ - 3006 + 3035 ], "max": [ - 2600 + 2602 ], "min": [ - 2602 + 2604 ], "stddev": [ - 2610 + 2612 ], "stddev_pop": [ - 2612 + 2614 ], "stddev_samp": [ - 2614 + 2616 ], "sum": [ - 2618 + 2620 ], "var_pop": [ - 2622 + 2624 ], "var_samp": [ - 2624 + 2626 ], "variance": [ - 2626 + 2628 ], "__typename": [ 80 @@ -45652,10 +45680,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2598 + 2600 ], "on_conflict": [ - 2604 + 2606 ], "__typename": [ 80 @@ -45689,25 +45717,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45715,40 +45743,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2595 + 2597 ], "_not": [ - 2595 + 2597 ], "_or": [ - 2595 + 2597 ], "assists": [ - 3155 + 3184 ], "assists_aggregate": [ - 3146 + 3175 ], "backup_file": [ 82 ], "created_at": [ - 4554 + 4610 ], "deleted_at": [ - 4554 + 4610 ], "has_backup_file": [ 6 ], "id": [ - 5055 + 5111 ], "kills": [ - 3372 + 3401 ], "kills_aggregate": [ - 3363 + 3392 ], "lineup_1_money": [ 41 @@ -45757,7 +45785,7 @@ export default { 41 ], "lineup_1_side": [ - 1212 + 1214 ], "lineup_1_timeouts_available": [ 41 @@ -45769,25 +45797,25 @@ export default { 41 ], "lineup_2_side": [ - 1212 + 1214 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "round": [ 41 ], "time": [ - 4554 + 4610 ], "winning_reason": [ - 1416 + 1418 ], "winning_side": [ 82 @@ -45825,22 +45853,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 3152 + 3181 ], "backup_file": [ 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "kills": [ - 3369 + 3398 ], "lineup_1_money": [ 40 @@ -45849,7 +45877,7 @@ export default { 40 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 @@ -45861,25 +45889,25 @@ export default { 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_reason": [ - 1415 + 1417 ], "winning_side": [ 80 @@ -45893,13 +45921,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "lineup_1_money": [ 40 @@ -45920,13 +45948,13 @@ export default { 40 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_side": [ 80 @@ -45937,46 +45965,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "winning_side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -45987,13 +46015,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "lineup_1_money": [ 40 @@ -46014,13 +46042,13 @@ export default { 40 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_side": [ 80 @@ -46031,46 +46059,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "winning_side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46081,7 +46109,7 @@ export default { 40 ], "returning": [ - 2586 + 2588 ], "__typename": [ 80 @@ -46089,13 +46117,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2596 + 2598 ], "update_columns": [ - 2619 + 2621 ], "where": [ - 2595 + 2597 ], "__typename": [ 80 @@ -46103,67 +46131,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3151 + 3180 ], "backup_file": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "has_backup_file": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "kills_aggregate": [ - 3368 + 3397 ], "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_side": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_side": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "winning_reason": [ - 3006 + 3035 ], "winning_side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46171,7 +46199,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -46183,13 +46211,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "lineup_1_money": [ 40 @@ -46198,7 +46226,7 @@ export default { 40 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 @@ -46210,22 +46238,22 @@ export default { 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_reason": [ - 1415 + 1417 ], "winning_side": [ 80 @@ -46262,25 +46290,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46314,25 +46342,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46366,25 +46394,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46392,10 +46420,10 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2616 + 2618 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -46406,13 +46434,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "lineup_1_money": [ 40 @@ -46421,7 +46449,7 @@ export default { 40 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 @@ -46433,22 +46461,22 @@ export default { 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "winning_reason": [ - 1415 + 1417 ], "winning_side": [ 80 @@ -46485,25 +46513,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46512,13 +46540,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2597 + 2599 ], "_set": [ - 2608 + 2610 ], "where": [ - 2595 + 2597 ], "__typename": [ 80 @@ -46552,25 +46580,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46604,25 +46632,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46656,25 +46684,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_money": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46685,34 +46713,34 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -46720,10 +46748,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2633 + 2635 ], "nodes": [ - 2627 + 2629 ], "__typename": [ 80 @@ -46731,13 +46759,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2630 + 2632 ], "bool_or": [ - 2631 + 2633 ], "count": [ - 2632 + 2634 ], "__typename": [ 80 @@ -46745,13 +46773,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2648 + 2650 ], "distinct": [ 5 ], "filter": [ - 2636 + 2638 ], "predicate": [ 6 @@ -46762,13 +46790,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2649 + 2651 ], "distinct": [ 5 ], "filter": [ - 2636 + 2638 ], "predicate": [ 6 @@ -46779,13 +46807,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2647 + 2649 ], "distinct": [ 5 ], "filter": [ - 2636 + 2638 ], "predicate": [ 41 @@ -46799,7 +46827,7 @@ export default { 40, { "columns": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -46808,10 +46836,10 @@ export default { } ], "max": [ - 2639 + 2641 ], "min": [ - 2641 + 2643 ], "__typename": [ 80 @@ -46819,13 +46847,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 2640 + 2642 ], "min": [ - 2642 + 2644 ], "__typename": [ 80 @@ -46833,10 +46861,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2638 + 2640 ], "on_conflict": [ - 2644 + 2646 ], "__typename": [ 80 @@ -46844,46 +46872,46 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2636 + 2638 ], "_not": [ - 2636 + 2638 ], "_or": [ - 2636 + 2638 ], "auto_picked": [ 6 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "side": [ 82 ], "type": [ - 1396 + 1398 ], "__typename": [ 80 @@ -46895,34 +46923,34 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map": [ - 2321 + 2323 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -46930,19 +46958,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 @@ -46953,22 +46981,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -46976,19 +47004,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 @@ -46999,22 +47027,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -47025,7 +47053,7 @@ export default { 40 ], "returning": [ - 2627 + 2629 ], "__typename": [ 80 @@ -47033,13 +47061,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2637 + 2639 ], "update_columns": [ - 2653 + 2655 ], "where": [ - 2636 + 2638 ], "__typename": [ 80 @@ -47047,37 +47075,37 @@ export default { }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -47085,7 +47113,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -47099,25 +47127,25 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -47125,10 +47153,10 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2652 + 2654 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -47139,25 +47167,25 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "side": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -47166,10 +47194,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2650 + 2652 ], "where": [ - 2636 + 2638 ], "__typename": [ 80 @@ -47180,16 +47208,16 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "demos": [ - 2535, + 2537, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -47199,19 +47227,19 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "demos_aggregate": [ - 2536, + 2538, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -47221,11 +47249,11 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], @@ -47236,16 +47264,16 @@ export default { 40 ], "e_match_map_status": [ - 942 + 944 ], "ended_at": [ - 4553 + 4609 ], "flashes": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -47255,19 +47283,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "flashes_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -47277,28 +47305,28 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "id": [ - 5053 + 5109 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_score": [ 40 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 @@ -47307,25 +47335,25 @@ export default { 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_clips": [ - 2360, + 2362, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -47335,19 +47363,19 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_aggregate": [ - 2361, + 2363, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -47357,22 +47385,22 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_id": [ - 5053 + 5109 ], "objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -47382,19 +47410,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -47404,11 +47432,11 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], @@ -47416,10 +47444,10 @@ export default { 40 ], "player_assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -47429,19 +47457,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -47451,19 +47479,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_damages": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -47473,19 +47501,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -47495,19 +47523,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -47517,19 +47545,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -47539,19 +47567,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_unused_utilities": [ - 3849, + 3878, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47561,19 +47589,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utilities_aggregate": [ - 3850, + 3879, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47583,11 +47611,11 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], @@ -47595,13 +47623,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "rounds": [ - 2586, + 2588, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47611,19 +47639,19 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "rounds_aggregate": [ - 2587, + 2589, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47633,25 +47661,25 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "started_at": [ - 4553 + 4609 ], "status": [ - 947 + 949 ], "utility": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -47661,19 +47689,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "utility_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -47683,19 +47711,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "vetos": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47705,19 +47733,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "vetos_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47727,16 +47755,16 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -47744,10 +47772,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2659 + 2661 ], "nodes": [ - 2655 + 2657 ], "__typename": [ 80 @@ -47755,7 +47783,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2658 + 2660 ], "__typename": [ 80 @@ -47763,13 +47791,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2677 + 2679 ], "distinct": [ 5 ], "filter": [ - 2664 + 2666 ], "predicate": [ 41 @@ -47780,13 +47808,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2662 + 2664 ], "count": [ 40, { "columns": [ - 2677, + 2679, "[match_maps_select_column!]" ], "distinct": [ @@ -47795,31 +47823,31 @@ export default { } ], "max": [ - 2668 + 2670 ], "min": [ - 2670 + 2672 ], "stddev": [ - 2679 + 2681 ], "stddev_pop": [ - 2681 + 2683 ], "stddev_samp": [ - 2683 + 2685 ], "sum": [ - 2687 + 2689 ], "var_pop": [ - 2691 + 2693 ], "var_samp": [ - 2693 + 2695 ], "variance": [ - 2695 + 2697 ], "__typename": [ 80 @@ -47827,37 +47855,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2663 + 2665 ], "count": [ - 3006 + 3035 ], "max": [ - 2669 + 2671 ], "min": [ - 2671 + 2673 ], "stddev": [ - 2680 + 2682 ], "stddev_pop": [ - 2682 + 2684 ], "stddev_samp": [ - 2684 + 2686 ], "sum": [ - 2688 + 2690 ], "var_pop": [ - 2692 + 2694 ], "var_samp": [ - 2694 + 2696 ], "variance": [ - 2696 + 2698 ], "__typename": [ 80 @@ -47865,10 +47893,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2667 + 2669 ], "on_conflict": [ - 2674 + 2676 ], "__typename": [ 80 @@ -47905,19 +47933,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -47925,28 +47953,28 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2664 + 2666 ], "_not": [ - 2664 + 2666 ], "_or": [ - 2664 + 2666 ], "clips_count": [ 41 ], "created_at": [ - 4554 + 4610 ], "demo_processing_started_at": [ - 4554 + 4610 ], "demos": [ - 2547 + 2549 ], "demos_aggregate": [ - 2537 + 2539 ], "demos_download_url": [ 82 @@ -47955,31 +47983,31 @@ export default { 41 ], "e_match_map_status": [ - 945 + 947 ], "ended_at": [ - 4554 + 4610 ], "flashes": [ - 3327 + 3356 ], "flashes_aggregate": [ - 3318 + 3347 ], "id": [ - 5055 + 5111 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4554 + 4610 ], "lineup_1_score": [ 41 ], "lineup_1_side": [ - 1212 + 1214 ], "lineup_1_timeouts_available": [ 41 @@ -47988,94 +48016,94 @@ export default { 41 ], "lineup_2_side": [ - 1212 + 1214 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_clips": [ - 2369 + 2371 ], "match_clips_aggregate": [ - 2362 + 2364 ], "match_id": [ - 5055 + 5111 ], "objectives": [ - 3571 + 3600 ], "objectives_aggregate": [ - 3564 + 3593 ], "order": [ 41 ], "player_assists": [ - 3155 + 3184 ], "player_assists_aggregate": [ - 3146 + 3175 ], "player_damages": [ - 3216 + 3245 ], "player_damages_aggregate": [ - 3209 + 3238 ], "player_kills": [ - 3372 + 3401 ], "player_kills_aggregate": [ - 3363 + 3392 ], "player_unused_utilities": [ - 3858 + 3887 ], "player_unused_utilities_aggregate": [ - 3851 + 3880 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4554 + 4610 ], "rounds": [ - 2595 + 2597 ], "rounds_aggregate": [ - 2588 + 2590 ], "started_at": [ - 4554 + 4610 ], "status": [ - 948 + 950 ], "utility": [ - 3899 + 3928 ], "utility_aggregate": [ - 3892 + 3921 ], "vetos": [ - 2636 + 2638 ], "vetos_aggregate": [ - 2629 + 2631 ], "winning_lineup_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -48107,97 +48135,97 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "demos": [ - 2544 + 2546 ], "e_match_map_status": [ - 953 + 955 ], "ended_at": [ - 4553 + 4609 ], "flashes": [ - 3324 + 3353 ], "id": [ - 5053 + 5109 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2321 + 2323 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_clips": [ - 2366 + 2368 ], "match_id": [ - 5053 + 5109 ], "objectives": [ - 3568 + 3597 ], "order": [ 40 ], "player_assists": [ - 3152 + 3181 ], "player_damages": [ - 3213 + 3242 ], "player_kills": [ - 3369 + 3398 ], "player_unused_utilities": [ - 3855 + 3884 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "rounds": [ - 2592 + 2594 ], "started_at": [ - 4553 + 4609 ], "status": [ - 947 + 949 ], "utility": [ - 3896 + 3925 ], "vetos": [ - 2635 + 2637 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48208,10 +48236,10 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "demos_download_url": [ 80 @@ -48220,13 +48248,13 @@ export default { 40 ], "ended_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_score": [ 40 @@ -48241,10 +48269,10 @@ export default { 40 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "order": [ 40 @@ -48253,13 +48281,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "started_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48267,49 +48295,49 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "demo_processing_started_at": [ - 3006 + 3035 ], "ended_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "latest_clip_at": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "public_latest_clip_at": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48320,10 +48348,10 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "demos_download_url": [ 80 @@ -48332,13 +48360,13 @@ export default { 40 ], "ended_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_score": [ 40 @@ -48353,10 +48381,10 @@ export default { 40 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "order": [ 40 @@ -48365,13 +48393,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "started_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48379,49 +48407,49 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "demo_processing_started_at": [ - 3006 + 3035 ], "ended_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "latest_clip_at": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "public_latest_clip_at": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48432,7 +48460,7 @@ export default { 40 ], "returning": [ - 2655 + 2657 ], "__typename": [ 80 @@ -48440,10 +48468,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2667 + 2669 ], "on_conflict": [ - 2674 + 2676 ], "__typename": [ 80 @@ -48451,13 +48479,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2665 + 2667 ], "update_columns": [ - 2689 + 2691 ], "where": [ - 2664 + 2666 ], "__typename": [ 80 @@ -48465,115 +48493,115 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "demo_processing_started_at": [ - 3006 + 3035 ], "demos_aggregate": [ - 2542 + 2544 ], "demos_download_url": [ - 3006 + 3035 ], "demos_total_size": [ - 3006 + 3035 ], "e_match_map_status": [ - 955 + 957 ], "ended_at": [ - 3006 + 3035 ], "flashes_aggregate": [ - 3323 + 3352 ], "id": [ - 3006 + 3035 ], "is_current_map": [ - 3006 + 3035 ], "latest_clip_at": [ - 3006 + 3035 ], "lineup_1_score": [ - 3006 + 3035 ], "lineup_1_side": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_score": [ - 3006 + 3035 ], "lineup_2_side": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_clips_aggregate": [ - 2365 + 2367 ], "match_id": [ - 3006 + 3035 ], "objectives_aggregate": [ - 3567 + 3596 ], "order": [ - 3006 + 3035 ], "player_assists_aggregate": [ - 3151 + 3180 ], "player_damages_aggregate": [ - 3212 + 3241 ], "player_kills_aggregate": [ - 3368 + 3397 ], "player_unused_utilities_aggregate": [ - 3854 + 3883 ], "public_clips_count": [ - 3006 + 3035 ], "public_latest_clip_at": [ - 3006 + 3035 ], "rounds_aggregate": [ - 2591 + 2593 ], "started_at": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "utility_aggregate": [ - 3895 + 3924 ], "vetos_aggregate": [ - 2634 + 2636 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48581,7 +48609,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48593,37 +48621,37 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "order": [ 40 @@ -48632,16 +48660,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "started_at": [ - 4553 + 4609 ], "status": [ - 947 + 949 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48678,19 +48706,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48727,19 +48755,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48776,19 +48804,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48796,10 +48824,10 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2686 + 2688 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -48810,37 +48838,37 @@ export default { 40 ], "created_at": [ - 4553 + 4609 ], "demo_processing_started_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "latest_clip_at": [ - 4553 + 4609 ], "lineup_1_side": [ - 1211 + 1213 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1211 + 1213 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "order": [ 40 @@ -48849,16 +48877,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4553 + 4609 ], "started_at": [ - 4553 + 4609 ], "status": [ - 947 + 949 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -48895,19 +48923,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -48916,13 +48944,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2666 + 2668 ], "_set": [ - 2678 + 2680 ], "where": [ - 2664 + 2666 ], "__typename": [ 80 @@ -48959,19 +48987,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -49008,19 +49036,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -49057,19 +49085,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 3006 + 3035 ], "lineup_1_timeouts_available": [ - 3006 + 3035 ], "lineup_2_timeouts_available": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "public_clips_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -49092,7 +49120,7 @@ export default { 5 ], "check_in_setting": [ - 554 + 556 ], "coaches": [ 5 @@ -49107,7 +49135,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -49119,22 +49147,22 @@ export default { 40 ], "map_pool": [ - 2285 + 2287 ], "map_pool_id": [ - 5053 + 5109 ], "map_veto": [ 5 ], "match_mode": [ - 968 + 970 ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -49144,19 +49172,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_aggregate": [ - 2822, + 2824, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -49166,11 +49194,11 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], @@ -49187,7 +49215,7 @@ export default { 5 ], "ready_setting": [ - 1130 + 1132 ], "region_veto": [ 5 @@ -49199,25 +49227,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1292 + 1294 ], "timeout_setting": [ - 1292 + 1294 ], "tournament": [ - 4989 + 5045 ], "tournament_bracket": [ - 4597 + 4653 ], "tournament_stage": [ - 4814 + 4870 ], "tv_delay": [ 40 ], "type": [ - 1029 + 1031 ], "veto_pick_timeout": [ 40 @@ -49228,10 +49256,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2699 + 2701 ], "nodes": [ - 2697 + 2699 ], "__typename": [ 80 @@ -49239,13 +49267,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2700 + 2702 ], "count": [ 40, { "columns": [ - 2712, + 2714, "[match_options_select_column!]" ], "distinct": [ @@ -49254,31 +49282,31 @@ export default { } ], "max": [ - 2705 + 2707 ], "min": [ - 2706 + 2708 ], "stddev": [ - 2714 + 2716 ], "stddev_pop": [ - 2715 + 2717 ], "stddev_samp": [ - 2716 + 2718 ], "sum": [ - 2719 + 2721 ], "var_pop": [ - 2722 + 2724 ], "var_samp": [ - 2723 + 2725 ], "variance": [ - 2724 + 2726 ], "__typename": [ 80 @@ -49315,13 +49343,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2701 + 2703 ], "_not": [ - 2701 + 2703 ], "_or": [ - 2701 + 2703 ], "auto_cancel_duration": [ 41 @@ -49339,7 +49367,7 @@ export default { 6 ], "check_in_setting": [ - 555 + 557 ], "coaches": [ 6 @@ -49354,7 +49382,7 @@ export default { 6 ], "id": [ - 5055 + 5111 ], "invite_code": [ 82 @@ -49366,22 +49394,22 @@ export default { 41 ], "map_pool": [ - 2288 + 2290 ], "map_pool_id": [ - 5055 + 5111 ], "map_veto": [ 6 ], "match_mode": [ - 969 + 971 ], "matches": [ - 2830 + 2832 ], "matches_aggregate": [ - 2823 + 2825 ], "mr": [ 41 @@ -49396,7 +49424,7 @@ export default { 6 ], "ready_setting": [ - 1131 + 1133 ], "region_veto": [ 6 @@ -49408,25 +49436,25 @@ export default { 41 ], "tech_timeout_setting": [ - 1293 + 1295 ], "timeout_setting": [ - 1293 + 1295 ], "tournament": [ - 5010 + 5066 ], "tournament_bracket": [ - 4608 + 4664 ], "tournament_stage": [ - 4826 + 4882 ], "tv_delay": [ 41 ], "type": [ - 1030 + 1032 ], "veto_pick_timeout": [ 41 @@ -49482,7 +49510,7 @@ export default { 5 ], "check_in_setting": [ - 554 + 556 ], "coaches": [ 5 @@ -49494,7 +49522,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -49506,19 +49534,19 @@ export default { 40 ], "map_pool": [ - 2294 + 2296 ], "map_pool_id": [ - 5053 + 5109 ], "map_veto": [ 5 ], "match_mode": [ - 968 + 970 ], "matches": [ - 2827 + 2829 ], "mr": [ 40 @@ -49533,7 +49561,7 @@ export default { 5 ], "ready_setting": [ - 1130 + 1132 ], "region_veto": [ 5 @@ -49545,25 +49573,25 @@ export default { 40 ], "tech_timeout_setting": [ - 1292 + 1294 ], "timeout_setting": [ - 1292 + 1294 ], "tournament": [ - 5019 + 5075 ], "tournament_bracket": [ - 4617 + 4673 ], "tournament_stage": [ - 4838 + 4894 ], "tv_delay": [ 40 ], "type": [ - 1029 + 1031 ], "veto_pick_timeout": [ 40 @@ -49580,7 +49608,7 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -49589,7 +49617,7 @@ export default { 40 ], "map_pool_id": [ - 5053 + 5109 ], "mr": [ 40 @@ -49621,7 +49649,7 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -49630,7 +49658,7 @@ export default { 40 ], "map_pool_id": [ - 5053 + 5109 ], "mr": [ 40 @@ -49659,7 +49687,7 @@ export default { 40 ], "returning": [ - 2697 + 2699 ], "__typename": [ 80 @@ -49667,10 +49695,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2704 + 2706 ], "on_conflict": [ - 2709 + 2711 ], "__typename": [ 80 @@ -49678,13 +49706,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2702 + 2704 ], "update_columns": [ - 2720 + 2722 ], "where": [ - 2701 + 2703 ], "__typename": [ 80 @@ -49692,109 +49720,109 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 3006 + 3035 ], "auto_cancellation": [ - 3006 + 3035 ], "best_of": [ - 3006 + 3035 ], "camera_allow_teammates": [ - 3006 + 3035 ], "camera_required": [ - 3006 + 3035 ], "check_in_setting": [ - 3006 + 3035 ], "coaches": [ - 3006 + 3035 ], "default_models": [ - 3006 + 3035 ], "halftime_pausematch": [ - 3006 + 3035 ], "has_active_matches": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invite_code": [ - 3006 + 3035 ], "knife_round": [ - 3006 + 3035 ], "live_match_timeout": [ - 3006 + 3035 ], "map_pool": [ - 2296 + 2298 ], "map_pool_id": [ - 3006 + 3035 ], "map_veto": [ - 3006 + 3035 ], "match_mode": [ - 3006 + 3035 ], "matches_aggregate": [ - 2826 + 2828 ], "mr": [ - 3006 + 3035 ], "number_of_substitutes": [ - 3006 + 3035 ], "overtime": [ - 3006 + 3035 ], "prefer_dedicated_server": [ - 3006 + 3035 ], "ready_setting": [ - 3006 + 3035 ], "region_veto": [ - 3006 + 3035 ], "regions": [ - 3006 + 3035 ], "round_restart_delay": [ - 3006 + 3035 ], "tech_timeout_setting": [ - 3006 + 3035 ], "timeout_setting": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_bracket": [ - 4619 + 4675 ], "tournament_stage": [ - 4840 + 4896 ], "tv_delay": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "veto_pick_timeout": [ - 3006 + 3035 ], "__typename": [ 80 @@ -49802,7 +49830,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -49826,7 +49854,7 @@ export default { 5 ], "check_in_setting": [ - 554 + 556 ], "coaches": [ 5 @@ -49838,7 +49866,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -49850,13 +49878,13 @@ export default { 40 ], "map_pool_id": [ - 5053 + 5109 ], "map_veto": [ 5 ], "match_mode": [ - 968 + 970 ], "mr": [ 40 @@ -49871,7 +49899,7 @@ export default { 5 ], "ready_setting": [ - 1130 + 1132 ], "region_veto": [ 5 @@ -49883,16 +49911,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1292 + 1294 ], "timeout_setting": [ - 1292 + 1294 ], "tv_delay": [ 40 ], "type": [ - 1029 + 1031 ], "veto_pick_timeout": [ 40 @@ -49990,10 +50018,10 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2718 + 2720 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -50016,7 +50044,7 @@ export default { 5 ], "check_in_setting": [ - 554 + 556 ], "coaches": [ 5 @@ -50028,7 +50056,7 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -50040,13 +50068,13 @@ export default { 40 ], "map_pool_id": [ - 5053 + 5109 ], "map_veto": [ 5 ], "match_mode": [ - 968 + 970 ], "mr": [ 40 @@ -50061,7 +50089,7 @@ export default { 5 ], "ready_setting": [ - 1130 + 1132 ], "region_veto": [ 5 @@ -50073,16 +50101,16 @@ export default { 40 ], "tech_timeout_setting": [ - 1292 + 1294 ], "timeout_setting": [ - 1292 + 1294 ], "tv_delay": [ 40 ], "type": [ - 1029 + 1031 ], "veto_pick_timeout": [ 40 @@ -50123,13 +50151,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2703 + 2705 ], "_set": [ - 2713 + 2715 ], "where": [ - 2701 + 2703 ], "__typename": [ 80 @@ -50227,28 +50255,28 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -50256,10 +50284,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2731 + 2733 ], "nodes": [ - 2725 + 2727 ], "__typename": [ 80 @@ -50267,13 +50295,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2728 + 2730 ], "bool_or": [ - 2729 + 2731 ], "count": [ - 2730 + 2732 ], "__typename": [ 80 @@ -50281,13 +50309,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2746 + 2748 ], "distinct": [ 5 ], "filter": [ - 2734 + 2736 ], "predicate": [ 6 @@ -50298,13 +50326,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2747 + 2749 ], "distinct": [ 5 ], "filter": [ - 2734 + 2736 ], "predicate": [ 6 @@ -50315,13 +50343,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2745 + 2747 ], "distinct": [ 5 ], "filter": [ - 2734 + 2736 ], "predicate": [ 41 @@ -50335,7 +50363,7 @@ export default { 40, { "columns": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -50344,10 +50372,10 @@ export default { } ], "max": [ - 2737 + 2739 ], "min": [ - 2739 + 2741 ], "__typename": [ 80 @@ -50355,13 +50383,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 2738 + 2740 ], "min": [ - 2740 + 2742 ], "__typename": [ 80 @@ -50369,10 +50397,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2736 + 2738 ], "on_conflict": [ - 2742 + 2744 ], "__typename": [ 80 @@ -50380,40 +50408,40 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2734 + 2736 ], "_not": [ - 2734 + 2736 ], "_or": [ - 2734 + 2736 ], "auto_picked": [ 6 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "region": [ 82 ], "type": [ - 1396 + 1398 ], "__typename": [ 80 @@ -50425,28 +50453,28 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -50454,16 +50482,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 @@ -50474,19 +50502,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "__typename": [ 80 @@ -50494,16 +50522,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 @@ -50514,19 +50542,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "__typename": [ 80 @@ -50537,7 +50565,7 @@ export default { 40 ], "returning": [ - 2725 + 2727 ], "__typename": [ 80 @@ -50545,13 +50573,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2735 + 2737 ], "update_columns": [ - 2751 + 2753 ], "where": [ - 2734 + 2736 ], "__typename": [ 80 @@ -50559,31 +50587,31 @@ export default { }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -50591,7 +50619,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -50605,22 +50633,22 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -50628,10 +50656,10 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2750 + 2752 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -50642,22 +50670,22 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "region": [ 80 ], "type": [ - 1395 + 1397 ], "__typename": [ 80 @@ -50666,10 +50694,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2748 + 2750 ], "where": [ - 2734 + 2736 ], "__typename": [ 80 @@ -50683,13 +50711,13 @@ export default { 80 ], "game_server_node": [ - 1718 + 1720 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_game_streamer": [ 5 @@ -50701,16 +50729,16 @@ export default { 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -50722,7 +50750,7 @@ export default { 80 ], "status_history": [ - 1842, + 1844, { "path": [ 80 @@ -50741,10 +50769,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2759 + 2761 ], "nodes": [ - 2753 + 2755 ], "__typename": [ 80 @@ -50752,13 +50780,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2756 + 2758 ], "bool_or": [ - 2757 + 2759 ], "count": [ - 2758 + 2760 ], "__typename": [ 80 @@ -50766,13 +50794,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2782 + 2784 ], "distinct": [ 5 ], "filter": [ - 2765 + 2767 ], "predicate": [ 6 @@ -50783,13 +50811,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2783 + 2785 ], "distinct": [ 5 ], "filter": [ - 2765 + 2767 ], "predicate": [ 6 @@ -50800,13 +50828,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2781 + 2783 ], "distinct": [ 5 ], "filter": [ - 2765 + 2767 ], "predicate": [ 41 @@ -50817,13 +50845,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2763 + 2765 ], "count": [ 40, { "columns": [ - 2781, + 2783, "[match_streams_select_column!]" ], "distinct": [ @@ -50832,31 +50860,31 @@ export default { } ], "max": [ - 2772 + 2774 ], "min": [ - 2774 + 2776 ], "stddev": [ - 2785 + 2787 ], "stddev_pop": [ - 2787 + 2789 ], "stddev_samp": [ - 2789 + 2791 ], "sum": [ - 2793 + 2795 ], "var_pop": [ - 2797 + 2799 ], "var_samp": [ - 2799 + 2801 ], "variance": [ - 2801 + 2803 ], "__typename": [ 80 @@ -50864,37 +50892,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2764 + 2766 ], "count": [ - 3006 + 3035 ], "max": [ - 2773 + 2775 ], "min": [ - 2775 + 2777 ], "stddev": [ - 2786 + 2788 ], "stddev_pop": [ - 2788 + 2790 ], "stddev_samp": [ - 2790 + 2792 ], "sum": [ - 2794 + 2796 ], "var_pop": [ - 2798 + 2800 ], "var_samp": [ - 2800 + 2802 ], "variance": [ - 2802 + 2804 ], "__typename": [ 80 @@ -50902,7 +50930,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -50910,10 +50938,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2771 + 2773 ], "on_conflict": [ - 2777 + 2779 ], "__typename": [ 80 @@ -50929,7 +50957,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -50937,13 +50965,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2765 + 2767 ], "_not": [ - 2765 + 2767 ], "_or": [ - 2765 + 2767 ], "autodirector": [ 6 @@ -50952,13 +50980,13 @@ export default { 82 ], "game_server_node": [ - 1730 + 1732 ], "game_server_node_id": [ 82 ], "id": [ - 5055 + 5111 ], "is_game_streamer": [ 6 @@ -50970,16 +50998,16 @@ export default { 82 ], "last_status_at": [ - 4554 + 4610 ], "link": [ 82 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "mode": [ 82 @@ -50991,7 +51019,7 @@ export default { 82 ], "status_history": [ - 1844 + 1846 ], "stream_url": [ 82 @@ -51044,13 +51072,13 @@ export default { 80 ], "game_server_node": [ - 1742 + 1744 ], "game_server_node_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_game_streamer": [ 5 @@ -51062,16 +51090,16 @@ export default { 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -51083,7 +51111,7 @@ export default { 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 @@ -51103,19 +51131,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -51138,40 +51166,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_service_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "link": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "mode": [ - 3006 + 3035 ], "priority": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51185,19 +51213,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -51220,40 +51248,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_service_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "link": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "mode": [ - 3006 + 3035 ], "priority": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51264,7 +51292,7 @@ export default { 40 ], "returning": [ - 2753 + 2755 ], "__typename": [ 80 @@ -51272,13 +51300,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2766 + 2768 ], "update_columns": [ - 2795 + 2797 ], "where": [ - 2765 + 2767 ], "__typename": [ 80 @@ -51286,58 +51314,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 3006 + 3035 ], "error_message": [ - 3006 + 3035 ], "game_server_node": [ - 1744 + 1746 ], "game_server_node_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_game_streamer": [ - 3006 + 3035 ], "is_live": [ - 3006 + 3035 ], "k8s_service_name": [ - 3006 + 3035 ], "last_status_at": [ - 3006 + 3035 ], "link": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "mode": [ - 3006 + 3035 ], "priority": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "status_history": [ - 3006 + 3035 ], "stream_url": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51345,7 +51373,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -51353,7 +51381,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1842 + 1844 ], "__typename": [ 80 @@ -51373,7 +51401,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_game_streamer": [ 5 @@ -51385,13 +51413,13 @@ export default { 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -51403,7 +51431,7 @@ export default { 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 @@ -51425,7 +51453,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51441,7 +51469,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51457,7 +51485,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51465,10 +51493,10 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2792 + 2794 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -51485,7 +51513,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_game_streamer": [ 5 @@ -51497,13 +51525,13 @@ export default { 80 ], "last_status_at": [ - 4553 + 4609 ], "link": [ 80 ], "match_id": [ - 5053 + 5109 ], "mode": [ 80 @@ -51515,7 +51543,7 @@ export default { 80 ], "status_history": [ - 1842 + 1844 ], "stream_url": [ 80 @@ -51537,7 +51565,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51546,28 +51574,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2761 + 2763 ], "_delete_at_path": [ - 2767 + 2769 ], "_delete_elem": [ - 2768 + 2770 ], "_delete_key": [ - 2769 + 2771 ], "_inc": [ - 2770 + 2772 ], "_prepend": [ - 2780 + 2782 ], "_set": [ - 2784 + 2786 ], "where": [ - 2765 + 2767 ], "__typename": [ 80 @@ -51583,7 +51611,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51599,7 +51627,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51615,7 +51643,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51626,7 +51654,7 @@ export default { 80 ], "type": [ - 740 + 742 ], "__typename": [ 80 @@ -51634,10 +51662,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2805 + 2807 ], "nodes": [ - 2803 + 2805 ], "__typename": [ 80 @@ -51648,7 +51676,7 @@ export default { 40, { "columns": [ - 2815, + 2817, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -51657,10 +51685,10 @@ export default { } ], "max": [ - 2809 + 2811 ], "min": [ - 2810 + 2812 ], "__typename": [ 80 @@ -51668,19 +51696,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2806 + 2808 ], "_not": [ - 2806 + 2808 ], "_or": [ - 2806 + 2808 ], "cfg": [ 82 ], "type": [ - 741 + 743 ], "__typename": [ 80 @@ -51692,7 +51720,7 @@ export default { 80 ], "type": [ - 740 + 742 ], "__typename": [ 80 @@ -51719,7 +51747,7 @@ export default { 40 ], "returning": [ - 2803 + 2805 ], "__typename": [ 80 @@ -51727,13 +51755,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2807 + 2809 ], "update_columns": [ - 2819 + 2821 ], "where": [ - 2806 + 2808 ], "__typename": [ 80 @@ -51741,10 +51769,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -51752,7 +51780,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 740 + 742 ], "__typename": [ 80 @@ -51764,7 +51792,7 @@ export default { 80 ], "type": [ - 740 + 742 ], "__typename": [ 80 @@ -51772,10 +51800,10 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2818 + 2820 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -51786,7 +51814,7 @@ export default { 80 ], "type": [ - 740 + 742 ], "__typename": [ 80 @@ -51795,10 +51823,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2816 + 2818 ], "where": [ - 2806 + 2808 ], "__typename": [ 80 @@ -51830,13 +51858,13 @@ export default { 5 ], "cancels_at": [ - 4553 + 4609 ], "clutches": [ - 5233, + 5289, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51846,19 +51874,19 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], "clutches_aggregate": [ - 5234, + 5290, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51868,11 +51896,11 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], @@ -51883,16 +51911,16 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "current_match_map_id": [ - 5053 + 5109 ], "demos": [ - 2535, + 2537, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -51902,19 +51930,19 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "demos_aggregate": [ - 2536, + 2538, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -51924,19 +51952,19 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "draft_games": [ - 463, + 465, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -51946,19 +51974,19 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "draft_games_aggregate": [ - 464, + 466, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -51968,28 +51996,28 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "e_match_status": [ - 1003 + 1005 ], "e_region": [ - 4051 + 4107 ], "effective_at": [ - 4553 + 4609 ], "elo_changes": [ - 5430, + 5486, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -51999,19 +52027,19 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "elo_changes_aggregate": [ - 5431, + 5487, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -52021,22 +52049,22 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -52069,19 +52097,19 @@ export default { 80 ], "lineup_1": [ - 2493 + 2495 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2": [ - 2493 + 2495 ], "lineup_2_id": [ - 5053 + 5109 ], "lineup_counts": [ - 1840, + 1842, { "path": [ 80 @@ -52089,13 +52117,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 5053 + 5109 ], "map_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -52105,19 +52133,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "map_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -52127,11 +52155,11 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], @@ -52139,10 +52167,10 @@ export default { 80 ], "match_maps": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -52152,19 +52180,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -52174,16 +52202,16 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -52192,10 +52220,10 @@ export default { 40 ], "opening_duels": [ - 5361, + 5417, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52205,19 +52233,19 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "opening_duels_aggregate": [ - 5362, + 5418, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52227,31 +52255,31 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "options": [ - 2697 + 2699 ], "organizer": [ - 3964 + 3993 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 ], "player_assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -52261,19 +52289,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -52283,19 +52311,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_damages": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -52305,19 +52333,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -52327,19 +52355,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_flashes": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -52349,19 +52377,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_flashes_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -52371,19 +52399,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -52393,19 +52421,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -52415,19 +52443,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -52437,19 +52465,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -52459,19 +52487,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_unused_utilities": [ - 3849, + 3878, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52481,19 +52509,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utilities_aggregate": [ - 3850, + 3879, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52503,19 +52531,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_utility": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -52525,19 +52553,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utility_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -52547,11 +52575,11 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], @@ -52559,13 +52587,13 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5053 + 5109 ], "region_veto_picks": [ - 2725, + 2727, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52575,19 +52603,19 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], "region_veto_picks_aggregate": [ - 2726, + 2728, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52597,11 +52625,11 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], @@ -52609,16 +52637,16 @@ export default { 5 ], "scheduled_at": [ - 4553 + 4609 ], "server": [ - 4078 + 4134 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "server_plugin_runtime": [ 80 @@ -52636,16 +52664,16 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "status": [ - 1008 + 1010 ], "streams": [ - 2753, + 2755, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -52655,19 +52683,19 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "streams_aggregate": [ - 2754, + 2756, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -52677,19 +52705,19 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "teams": [ - 4506, + 4562, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -52699,19 +52727,19 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "tournament_brackets": [ - 4597, + 4653, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52721,19 +52749,19 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "tournament_brackets_aggregate": [ - 4598, + 4654, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52743,11 +52771,11 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], @@ -52755,13 +52783,13 @@ export default { 80 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winner": [ - 2493 + 2495 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -52769,10 +52797,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2825 + 2827 ], "nodes": [ - 2821 + 2823 ], "__typename": [ 80 @@ -52780,7 +52808,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2824 + 2826 ], "__typename": [ 80 @@ -52788,13 +52816,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2843 + 2845 ], "distinct": [ 5 ], "filter": [ - 2830 + 2832 ], "predicate": [ 41 @@ -52805,13 +52833,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2828 + 2830 ], "count": [ 40, { "columns": [ - 2843, + 2845, "[matches_select_column!]" ], "distinct": [ @@ -52820,31 +52848,31 @@ export default { } ], "max": [ - 2834 + 2836 ], "min": [ - 2836 + 2838 ], "stddev": [ - 2845 + 2847 ], "stddev_pop": [ - 2847 + 2849 ], "stddev_samp": [ - 2849 + 2851 ], "sum": [ - 2853 + 2855 ], "var_pop": [ - 2857 + 2859 ], "var_samp": [ - 2859 + 2861 ], "variance": [ - 2861 + 2863 ], "__typename": [ 80 @@ -52852,37 +52880,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2829 + 2831 ], "count": [ - 3006 + 3035 ], "max": [ - 2835 + 2837 ], "min": [ - 2837 + 2839 ], "stddev": [ - 2846 + 2848 ], "stddev_pop": [ - 2848 + 2850 ], "stddev_samp": [ - 2850 + 2852 ], "sum": [ - 2854 + 2856 ], "var_pop": [ - 2858 + 2860 ], "var_samp": [ - 2860 + 2862 ], "variance": [ - 2862 + 2864 ], "__typename": [ 80 @@ -52890,10 +52918,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2833 + 2835 ], "on_conflict": [ - 2840 + 2842 ], "__typename": [ 80 @@ -52915,7 +52943,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -52923,13 +52951,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2830 + 2832 ], "_not": [ - 2830 + 2832 ], "_or": [ - 2830 + 2832 ], "can_assign_server": [ 6 @@ -52956,13 +52984,13 @@ export default { 6 ], "cancels_at": [ - 4554 + 4610 ], "clutches": [ - 5242 + 5298 ], "clutches_aggregate": [ - 5235 + 5291 ], "connection_link": [ 82 @@ -52971,46 +52999,46 @@ export default { 82 ], "created_at": [ - 4554 + 4610 ], "current_match_map_id": [ - 5055 + 5111 ], "demos": [ - 2547 + 2549 ], "demos_aggregate": [ - 2537 + 2539 ], "draft_games": [ - 474 + 476 ], "draft_games_aggregate": [ - 465 + 467 ], "e_match_status": [ - 1006 + 1008 ], "e_region": [ - 4055 + 4111 ], "effective_at": [ - 4554 + 4610 ], "elo_changes": [ - 5449 + 5505 ], "elo_changes_aggregate": [ - 5432 + 5488 ], "ended_at": [ - 4554 + 4610 ], "external_id": [ 82 ], "id": [ - 5055 + 5111 ], "invite_code": [ 82 @@ -53043,40 +53071,40 @@ export default { 82 ], "lineup_1": [ - 2502 + 2504 ], "lineup_1_id": [ - 5055 + 5111 ], "lineup_2": [ - 2502 + 2504 ], "lineup_2_id": [ - 5055 + 5111 ], "lineup_counts": [ - 1841 + 1843 ], "map_veto_picking_lineup_id": [ - 5055 + 5111 ], "map_veto_picks": [ - 2636 + 2638 ], "map_veto_picks_aggregate": [ - 2629 + 2631 ], "map_veto_type": [ 82 ], "match_maps": [ - 2664 + 2666 ], "match_maps_aggregate": [ - 2657 + 2659 ], "match_options_id": [ - 5055 + 5111 ], "max_players_per_lineup": [ 41 @@ -53085,91 +53113,91 @@ export default { 41 ], "opening_duels": [ - 5370 + 5426 ], "opening_duels_aggregate": [ - 5363 + 5419 ], "options": [ - 2701 + 2703 ], "organizer": [ - 3968 + 3997 ], "organizer_steam_id": [ - 259 + 261 ], "password": [ 82 ], "player_assists": [ - 3155 + 3184 ], "player_assists_aggregate": [ - 3146 + 3175 ], "player_damages": [ - 3216 + 3245 ], "player_damages_aggregate": [ - 3209 + 3238 ], "player_flashes": [ - 3327 + 3356 ], "player_flashes_aggregate": [ - 3318 + 3347 ], "player_kills": [ - 3372 + 3401 ], "player_kills_aggregate": [ - 3363 + 3392 ], "player_objectives": [ - 3571 + 3600 ], "player_objectives_aggregate": [ - 3564 + 3593 ], "player_unused_utilities": [ - 3858 + 3887 ], "player_unused_utilities_aggregate": [ - 3851 + 3880 ], "player_utility": [ - 3899 + 3928 ], "player_utility_aggregate": [ - 3892 + 3921 ], "region": [ 82 ], "region_veto_picking_lineup_id": [ - 5055 + 5111 ], "region_veto_picks": [ - 2734 + 2736 ], "region_veto_picks_aggregate": [ - 2727 + 2729 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4554 + 4610 ], "server": [ - 4089 + 4145 ], "server_error": [ 82 ], "server_id": [ - 5055 + 5111 ], "server_plugin_runtime": [ 82 @@ -53187,37 +53215,37 @@ export default { 82 ], "started_at": [ - 4554 + 4610 ], "status": [ - 1009 + 1011 ], "streams": [ - 2765 + 2767 ], "streams_aggregate": [ - 2755 + 2757 ], "teams": [ - 4517 + 4573 ], "tournament_brackets": [ - 4608 + 4664 ], "tournament_brackets_aggregate": [ - 4599 + 4655 ], "tv_connection_string": [ 82 ], "veto_pick_expires_at": [ - 4554 + 4610 ], "winner": [ - 2502 + 2504 ], "winning_lineup_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -53226,7 +53254,7 @@ export default { "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -53234,115 +53262,115 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4553 + 4609 ], "clutches": [ - 5239 + 5295 ], "created_at": [ - 4553 + 4609 ], "demos": [ - 2544 + 2546 ], "draft_games": [ - 471 + 473 ], "e_match_status": [ - 1014 + 1016 ], "e_region": [ - 4061 + 4117 ], "elo_changes": [ - 5446 + 5502 ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "lineup_1": [ - 2511 + 2513 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2": [ - 2511 + 2513 ], "lineup_2_id": [ - 5053 + 5109 ], "map_veto_picks": [ - 2635 + 2637 ], "match_maps": [ - 2661 + 2663 ], "match_options_id": [ - 5053 + 5109 ], "opening_duels": [ - 5367 + 5423 ], "options": [ - 2708 + 2710 ], "organizer": [ - 3975 + 4004 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 ], "player_assists": [ - 3152 + 3181 ], "player_damages": [ - 3213 + 3242 ], "player_flashes": [ - 3324 + 3353 ], "player_kills": [ - 3369 + 3398 ], "player_objectives": [ - 3568 + 3597 ], "player_unused_utilities": [ - 3855 + 3884 ], "player_utility": [ - 3896 + 3925 ], "region": [ 80 ], "region_veto_picks": [ - 2733 + 2735 ], "scheduled_at": [ - 4553 + 4609 ], "server": [ - 4098 + 4154 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "share_code": [ 80 @@ -53351,25 +53379,25 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "status": [ - 1008 + 1010 ], "streams": [ - 2762 + 2764 ], "tournament_brackets": [ - 4605 + 4661 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winner": [ - 2511 + 2513 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -53377,7 +53405,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4553 + 4609 ], "connection_link": [ 80 @@ -53386,22 +53414,22 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "current_match_map_id": [ - 5053 + 5109 ], "effective_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -53410,19 +53438,19 @@ export default { 80 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2_id": [ - 5053 + 5109 ], "map_veto_picking_lineup_id": [ - 5053 + 5109 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -53431,7 +53459,7 @@ export default { 40 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 @@ -53440,16 +53468,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5053 + 5109 ], "scheduled_at": [ - 4553 + 4609 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "server_plugin_runtime": [ 80 @@ -53467,16 +53495,16 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -53484,67 +53512,67 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "effective_at": [ - 3006 + 3035 ], "ended_at": [ - 3006 + 3035 ], "external_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "lineup_1_id": [ - 3006 + 3035 ], "lineup_2_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "password": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "server_error": [ - 3006 + 3035 ], "server_id": [ - 3006 + 3035 ], "share_code": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "veto_pick_expires_at": [ - 3006 + 3035 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -53552,7 +53580,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4553 + 4609 ], "connection_link": [ 80 @@ -53561,22 +53589,22 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "current_match_map_id": [ - 5053 + 5109 ], "effective_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "invite_code": [ 80 @@ -53585,19 +53613,19 @@ export default { 80 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2_id": [ - 5053 + 5109 ], "map_veto_picking_lineup_id": [ - 5053 + 5109 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -53606,7 +53634,7 @@ export default { 40 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 @@ -53615,16 +53643,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5053 + 5109 ], "scheduled_at": [ - 4553 + 4609 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "server_plugin_runtime": [ 80 @@ -53642,16 +53670,16 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -53659,67 +53687,67 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "effective_at": [ - 3006 + 3035 ], "ended_at": [ - 3006 + 3035 ], "external_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "lineup_1_id": [ - 3006 + 3035 ], "lineup_2_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "password": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "server_error": [ - 3006 + 3035 ], "server_id": [ - 3006 + 3035 ], "share_code": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "veto_pick_expires_at": [ - 3006 + 3035 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -53730,7 +53758,7 @@ export default { 40 ], "returning": [ - 2821 + 2823 ], "__typename": [ 80 @@ -53738,10 +53766,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2833 + 2835 ], "on_conflict": [ - 2840 + 2842 ], "__typename": [ 80 @@ -53749,13 +53777,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2831 + 2833 ], "update_columns": [ - 2855 + 2857 ], "where": [ - 2830 + 2832 ], "__typename": [ 80 @@ -53763,241 +53791,241 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 3006 + 3035 ], "can_cancel": [ - 3006 + 3035 ], "can_check_in": [ - 3006 + 3035 ], "can_reassign_winner": [ - 3006 + 3035 ], "can_schedule": [ - 3006 + 3035 ], "can_start": [ - 3006 + 3035 ], "can_stream_live": [ - 3006 + 3035 ], "can_stream_tv": [ - 3006 + 3035 ], "cancels_at": [ - 3006 + 3035 ], "clutches_aggregate": [ - 5238 + 5294 ], "connection_link": [ - 3006 + 3035 ], "connection_string": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current_match_map_id": [ - 3006 + 3035 ], "demos_aggregate": [ - 2542 + 2544 ], "draft_games_aggregate": [ - 470 + 472 ], "e_match_status": [ - 1016 + 1018 ], "e_region": [ - 4063 + 4119 ], "effective_at": [ - 3006 + 3035 ], "elo_changes_aggregate": [ - 5445 + 5501 ], "ended_at": [ - 3006 + 3035 ], "external_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invite_code": [ - 3006 + 3035 ], "is_captain": [ - 3006 + 3035 ], "is_coach": [ - 3006 + 3035 ], "is_friend_in_match_lineup": [ - 3006 + 3035 ], "is_in_lineup": [ - 3006 + 3035 ], "is_match_server_available": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "is_server_online": [ - 3006 + 3035 ], "is_tournament_match": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "lineup_1": [ - 2513 + 2515 ], "lineup_1_id": [ - 3006 + 3035 ], "lineup_2": [ - 2513 + 2515 ], "lineup_2_id": [ - 3006 + 3035 ], "lineup_counts": [ - 3006 + 3035 ], "map_veto_picking_lineup_id": [ - 3006 + 3035 ], "map_veto_picks_aggregate": [ - 2634 + 2636 ], "map_veto_type": [ - 3006 + 3035 ], "match_maps_aggregate": [ - 2660 + 2662 ], "match_options_id": [ - 3006 + 3035 ], "max_players_per_lineup": [ - 3006 + 3035 ], "min_players_per_lineup": [ - 3006 + 3035 ], "opening_duels_aggregate": [ - 5366 + 5422 ], "options": [ - 2710 + 2712 ], "organizer": [ - 3977 + 4006 ], "organizer_steam_id": [ - 3006 + 3035 ], "password": [ - 3006 + 3035 ], "player_assists_aggregate": [ - 3151 + 3180 ], "player_damages_aggregate": [ - 3212 + 3241 ], "player_flashes_aggregate": [ - 3323 + 3352 ], "player_kills_aggregate": [ - 3368 + 3397 ], "player_objectives_aggregate": [ - 3567 + 3596 ], "player_unused_utilities_aggregate": [ - 3854 + 3883 ], "player_utility_aggregate": [ - 3895 + 3924 ], "region": [ - 3006 + 3035 ], "region_veto_picking_lineup_id": [ - 3006 + 3035 ], "region_veto_picks_aggregate": [ - 2732 + 2734 ], "requested_organizer": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "server": [ - 4100 + 4156 ], "server_error": [ - 3006 + 3035 ], "server_id": [ - 3006 + 3035 ], "server_plugin_runtime": [ - 3006 + 3035 ], "server_region": [ - 3006 + 3035 ], "server_type": [ - 3006 + 3035 ], "share_code": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "streams_aggregate": [ - 2760 + 2762 ], "teams_aggregate": [ - 4513 + 4569 ], "tournament_brackets_aggregate": [ - 4604 + 4660 ], "tv_connection_string": [ - 3006 + 3035 ], "veto_pick_expires_at": [ - 3006 + 3035 ], "winner": [ - 2513 + 2515 ], "winning_lineup_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54005,7 +54033,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -54014,34 +54042,34 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 @@ -54050,13 +54078,13 @@ export default { 80 ], "scheduled_at": [ - 4553 + 4609 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "share_code": [ 80 @@ -54065,16 +54093,16 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "status": [ - 1008 + 1010 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -54096,7 +54124,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54118,7 +54146,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54140,7 +54168,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54148,10 +54176,10 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2852 + 2854 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -54159,37 +54187,37 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "effective_at": [ - 4553 + 4609 ], "ended_at": [ - 4553 + 4609 ], "external_id": [ 80 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "lineup_1_id": [ - 5053 + 5109 ], "lineup_2_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "organizer_steam_id": [ - 257 + 259 ], "password": [ 80 @@ -54198,13 +54226,13 @@ export default { 80 ], "scheduled_at": [ - 4553 + 4609 ], "server_error": [ 80 ], "server_id": [ - 5053 + 5109 ], "share_code": [ 80 @@ -54213,16 +54241,16 @@ export default { 80 ], "started_at": [ - 4553 + 4609 ], "status": [ - 1008 + 1010 ], "veto_pick_expires_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -54236,7 +54264,7 @@ export default { 40 ], "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -54244,7 +54272,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54253,13 +54281,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2832 + 2834 ], "_set": [ - 2844 + 2846 ], "where": [ - 2830 + 2832 ], "__typename": [ 80 @@ -54281,7 +54309,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54303,7 +54331,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54325,7 +54353,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54344,10 +54372,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2865 + 2867 ], "nodes": [ - 2863 + 2865 ], "__typename": [ 80 @@ -54358,7 +54386,7 @@ export default { 40, { "columns": [ - 2875, + 2877, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -54367,10 +54395,10 @@ export default { } ], "max": [ - 2869 + 2871 ], "min": [ - 2870 + 2872 ], "__typename": [ 80 @@ -54378,13 +54406,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2866 + 2868 ], "_not": [ - 2866 + 2868 ], "_or": [ - 2866 + 2868 ], "hash": [ 82 @@ -54435,7 +54463,7 @@ export default { 40 ], "returning": [ - 2863 + 2865 ], "__typename": [ 80 @@ -54443,13 +54471,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2867 + 2869 ], "update_columns": [ - 2879 + 2881 ], "where": [ - 2866 + 2868 ], "__typename": [ 80 @@ -54457,10 +54485,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54488,10 +54516,10 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2878 + 2880 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -54511,10 +54539,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2876 + 2878 ], "where": [ - 2866 + 2868 ], "__typename": [ 80 @@ -54528,7 +54556,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -54540,7 +54568,7 @@ export default { 80 ], "elo": [ - 1842, + 1844, { "path": [ 80 @@ -54560,25 +54588,25 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_presence_state": [ - 1842, + 1844, { "path": [ 80 @@ -54586,10 +54614,10 @@ export default { } ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -54598,16 +54626,16 @@ export default { 5 ], "player": [ - 3964 + 3993 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -54625,10 +54653,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -54642,10 +54670,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2887 + 2889 ], "nodes": [ - 2881 + 2883 ], "__typename": [ 80 @@ -54653,13 +54681,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2884 + 2886 ], "bool_or": [ - 2885 + 2887 ], "count": [ - 2886 + 2888 ], "__typename": [ 80 @@ -54667,13 +54695,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2907 + 2909 ], "distinct": [ 5 ], "filter": [ - 2893 + 2895 ], "predicate": [ 6 @@ -54684,13 +54712,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2908 + 2910 ], "distinct": [ 5 ], "filter": [ - 2893 + 2895 ], "predicate": [ 6 @@ -54701,13 +54729,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2906 + 2908 ], "distinct": [ 5 ], "filter": [ - 2893 + 2895 ], "predicate": [ 41 @@ -54718,13 +54746,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2891 + 2893 ], "count": [ 40, { "columns": [ - 2906, + 2908, "[my_friends_select_column!]" ], "distinct": [ @@ -54733,31 +54761,31 @@ export default { } ], "max": [ - 2899 + 2901 ], "min": [ - 2901 + 2903 ], "stddev": [ - 2910 + 2912 ], "stddev_pop": [ - 2912 + 2914 ], "stddev_samp": [ - 2914 + 2916 ], "sum": [ - 2918 + 2920 ], "var_pop": [ - 2921 + 2923 ], "var_samp": [ - 2923 + 2925 ], "variance": [ - 2925 + 2927 ], "__typename": [ 80 @@ -54765,37 +54793,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2892 + 2894 ], "count": [ - 3006 + 3035 ], "max": [ - 2900 + 2902 ], "min": [ - 2902 + 2904 ], "stddev": [ - 2911 + 2913 ], "stddev_pop": [ - 2913 + 2915 ], "stddev_samp": [ - 2915 + 2917 ], "sum": [ - 2919 + 2921 ], "var_pop": [ - 2922 + 2924 ], "var_samp": [ - 2924 + 2926 ], "variance": [ - 2926 + 2928 ], "__typename": [ 80 @@ -54803,10 +54831,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1842 + 1844 ], "last_presence_state": [ - 1842 + 1844 ], "__typename": [ 80 @@ -54814,7 +54842,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2898 + 2900 ], "__typename": [ 80 @@ -54854,31 +54882,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -54886,13 +54914,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2893 + 2895 ], "_not": [ - 2893 + 2895 ], "_or": [ - 2893 + 2895 ], "avatar_url": [ 82 @@ -54901,7 +54929,7 @@ export default { 82 ], "created_at": [ - 4554 + 4610 ], "custom_avatar_url": [ 82 @@ -54913,7 +54941,7 @@ export default { 82 ], "elo": [ - 1844 + 1846 ], "faceit_elo": [ 41 @@ -54928,31 +54956,31 @@ export default { 41 ], "faceit_updated_at": [ - 4554 + 4610 ], "faceit_url": [ 82 ], "friend_steam_id": [ - 259 + 261 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 259 + 261 ], "language": [ 82 ], "last_presence_state": [ - 1844 + 1846 ], "last_read_news_at": [ - 4554 + 4610 ], "last_sign_in_at": [ - 4554 + 4610 ], "name": [ 82 @@ -54961,16 +54989,16 @@ export default { 6 ], "player": [ - 3968 + 3997 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4554 + 4610 ], "presence_updated_at": [ - 4554 + 4610 ], "profile_url": [ 82 @@ -54988,10 +55016,10 @@ export default { 82 ], "steam_bans_checked_at": [ - 4554 + 4610 ], "steam_id": [ - 259 + 261 ], "vac_ban_count": [ 41 @@ -55047,19 +55075,19 @@ export default { 40 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "premier_rank": [ 40 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -55076,7 +55104,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -55088,7 +55116,7 @@ export default { 80 ], "elo": [ - 1842 + 1844 ], "faceit_elo": [ 40 @@ -55103,31 +55131,31 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_presence_state": [ - 1842 + 1844 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -55136,16 +55164,16 @@ export default { 5 ], "player": [ - 3975 + 4004 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -55163,10 +55191,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -55186,7 +55214,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -55210,28 +55238,28 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -55240,10 +55268,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -55258,10 +55286,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -55272,91 +55300,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 3006 + 3035 ], "country": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_avatar_url": [ - 3006 + 3035 ], "days_since_last_ban": [ - 3006 + 3035 ], "discord_id": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_nickname": [ - 3006 + 3035 ], "faceit_player_id": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "faceit_updated_at": [ - 3006 + 3035 ], "faceit_url": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "language": [ - 3006 + 3035 ], "last_read_news_at": [ - 3006 + 3035 ], "last_sign_in_at": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "premier_rank_updated_at": [ - 3006 + 3035 ], "presence_updated_at": [ - 3006 + 3035 ], "profile_url": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "steam_bans_checked_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55370,7 +55398,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -55394,28 +55422,28 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -55424,10 +55452,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -55442,10 +55470,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -55456,91 +55484,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 3006 + 3035 ], "country": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_avatar_url": [ - 3006 + 3035 ], "days_since_last_ban": [ - 3006 + 3035 ], "discord_id": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_nickname": [ - 3006 + 3035 ], "faceit_player_id": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "faceit_updated_at": [ - 3006 + 3035 ], "faceit_url": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "language": [ - 3006 + 3035 ], "last_read_news_at": [ - 3006 + 3035 ], "last_sign_in_at": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "premier_rank_updated_at": [ - 3006 + 3035 ], "presence_updated_at": [ - 3006 + 3035 ], "profile_url": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "steam_bans_checked_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55551,7 +55579,7 @@ export default { 40 ], "returning": [ - 2881 + 2883 ], "__typename": [ 80 @@ -55559,109 +55587,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 3006 + 3035 ], "country": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_avatar_url": [ - 3006 + 3035 ], "days_since_last_ban": [ - 3006 + 3035 ], "discord_id": [ - 3006 + 3035 ], "elo": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_nickname": [ - 3006 + 3035 ], "faceit_player_id": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "faceit_updated_at": [ - 3006 + 3035 ], "faceit_url": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "language": [ - 3006 + 3035 ], "last_presence_state": [ - 3006 + 3035 ], "last_read_news_at": [ - 3006 + 3035 ], "last_sign_in_at": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "name_registered": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "premier_rank": [ - 3006 + 3035 ], "premier_rank_updated_at": [ - 3006 + 3035 ], "presence_updated_at": [ - 3006 + 3035 ], "profile_url": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "show_match_ready_modal": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "steam_bans_checked_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "vac_banned": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55669,10 +55697,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1842 + 1844 ], "last_presence_state": [ - 1842 + 1844 ], "__typename": [ 80 @@ -55689,7 +55717,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -55701,7 +55729,7 @@ export default { 80 ], "elo": [ - 1842 + 1844 ], "faceit_elo": [ 40 @@ -55716,31 +55744,31 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_presence_state": [ - 1842 + 1844 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -55752,10 +55780,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -55773,10 +55801,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -55822,31 +55850,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55886,31 +55914,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55950,31 +55978,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -55982,10 +56010,10 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2917 + 2919 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -55999,7 +56027,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -56011,7 +56039,7 @@ export default { 80 ], "elo": [ - 1842 + 1844 ], "faceit_elo": [ 40 @@ -56026,31 +56054,31 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "language": [ 80 ], "last_presence_state": [ - 1842 + 1844 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -56062,10 +56090,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "presence_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -56083,10 +56111,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -56109,19 +56137,19 @@ export default { 40 ], "friend_steam_id": [ - 257 + 259 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 257 + 259 ], "premier_rank": [ 40 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -56132,31 +56160,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -56164,28 +56192,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2889 + 2891 ], "_delete_at_path": [ - 2894 + 2896 ], "_delete_elem": [ - 2895 + 2897 ], "_delete_key": [ - 2896 + 2898 ], "_inc": [ - 2897 + 2899 ], "_prepend": [ - 2905 + 2907 ], "_set": [ - 2909 + 2911 ], "where": [ - 2893 + 2895 ], "__typename": [ 80 @@ -56225,31 +56253,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -56289,31 +56317,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -56353,31 +56381,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3006 + 3035 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_skill_level": [ - 3006 + 3035 ], "friend_steam_id": [ - 3006 + 3035 ], "game_ban_count": [ - 3006 + 3035 ], "invited_by_steam_id": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "vac_ban_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -56385,10 +56413,10 @@ export default { }, "news_articles": { "author": [ - 3964 + 3993 ], "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56397,13 +56425,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56418,10 +56446,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56429,10 +56457,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2929 + 2931 ], "nodes": [ - 2927 + 2929 ], "__typename": [ 80 @@ -56440,13 +56468,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2930 + 2932 ], "count": [ 40, { "columns": [ - 2941, + 2943, "[news_articles_select_column!]" ], "distinct": [ @@ -56455,31 +56483,31 @@ export default { } ], "max": [ - 2935 + 2937 ], "min": [ - 2936 + 2938 ], "stddev": [ - 2943 + 2945 ], "stddev_pop": [ - 2944 + 2946 ], "stddev_samp": [ - 2945 + 2947 ], "sum": [ - 2948 + 2950 ], "var_pop": [ - 2951 + 2953 ], "var_samp": [ - 2952 + 2954 ], "variance": [ - 2953 + 2955 ], "__typename": [ 80 @@ -56498,19 +56526,19 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2931 + 2933 ], "_not": [ - 2931 + 2933 ], "_or": [ - 2931 + 2933 ], "author": [ - 3968 + 3997 ], "author_steam_id": [ - 259 + 261 ], "content_markdown": [ 82 @@ -56519,13 +56547,13 @@ export default { 82 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "published_at": [ - 4554 + 4610 ], "slug": [ 82 @@ -56540,10 +56568,10 @@ export default { 82 ], "updated_at": [ - 4554 + 4610 ], "view_count": [ - 259 + 261 ], "__typename": [ 80 @@ -56552,10 +56580,10 @@ export default { "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 257 + 259 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56563,10 +56591,10 @@ export default { }, "news_articles_insert_input": { "author": [ - 3975 + 4004 ], "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56575,13 +56603,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56596,10 +56624,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56607,7 +56635,7 @@ export default { }, "news_articles_max_fields": { "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56616,13 +56644,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56637,10 +56665,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56648,7 +56676,7 @@ export default { }, "news_articles_min_fields": { "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56657,13 +56685,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56678,10 +56706,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56692,7 +56720,7 @@ export default { 40 ], "returning": [ - 2927 + 2929 ], "__typename": [ 80 @@ -56700,13 +56728,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2932 + 2934 ], "update_columns": [ - 2949 + 2951 ], "where": [ - 2931 + 2933 ], "__typename": [ 80 @@ -56714,43 +56742,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3977 + 4006 ], "author_steam_id": [ - 3006 + 3035 ], "content_markdown": [ - 3006 + 3035 ], "cover_image_url": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "published_at": [ - 3006 + 3035 ], "slug": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "teaser": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "view_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -56758,7 +56786,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -56767,7 +56795,7 @@ export default { "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56776,13 +56804,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56797,10 +56825,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56841,10 +56869,10 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2947 + 2949 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -56852,7 +56880,7 @@ export default { }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 257 + 259 ], "content_markdown": [ 80 @@ -56861,13 +56889,13 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "published_at": [ - 4553 + 4609 ], "slug": [ 80 @@ -56882,10 +56910,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56893,10 +56921,10 @@ export default { }, "news_articles_sum_fields": { "author_steam_id": [ - 257 + 259 ], "view_count": [ - 257 + 259 ], "__typename": [ 80 @@ -56905,13 +56933,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2933 + 2935 ], "_set": [ - 2942 + 2944 ], "where": [ - 2931 + 2933 ], "__typename": [ 80 @@ -56950,9 +56978,369 @@ export default { 80 ] }, + "notification_preferences": { + "channel": [ + 80 + ], + "enabled": [ + 5 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_aggregate": { + "aggregate": [ + 2958 + ], + "nodes": [ + 2956 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_aggregate_fields": { + "avg": [ + 2959 + ], + "count": [ + 40, + { + "columns": [ + 2970, + "[notification_preferences_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 2964 + ], + "min": [ + 2965 + ], + "stddev": [ + 2972 + ], + "stddev_pop": [ + 2973 + ], + "stddev_samp": [ + 2974 + ], + "sum": [ + 2977 + ], + "var_pop": [ + 2980 + ], + "var_samp": [ + 2981 + ], + "variance": [ + 2982 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_avg_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_bool_exp": { + "_and": [ + 2960 + ], + "_not": [ + 2960 + ], + "_or": [ + 2960 + ], + "channel": [ + 82 + ], + "enabled": [ + 6 + ], + "key": [ + 82 + ], + "steam_id": [ + 261 + ], + "updated_at": [ + 4610 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_constraint": {}, + "notification_preferences_inc_input": { + "steam_id": [ + 259 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_insert_input": { + "channel": [ + 80 + ], + "enabled": [ + 5 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_max_fields": { + "channel": [ + 80 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_min_fields": { + "channel": [ + 80 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 2956 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_on_conflict": { + "constraint": [ + 2961 + ], + "update_columns": [ + 2978 + ], + "where": [ + 2960 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_order_by": { + "channel": [ + 3035 + ], + "enabled": [ + 3035 + ], + "key": [ + 3035 + ], + "steam_id": [ + 3035 + ], + "updated_at": [ + 3035 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_pk_columns_input": { + "channel": [ + 80 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_select_column": {}, + "notification_preferences_set_input": { + "channel": [ + 80 + ], + "enabled": [ + 5 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_stddev_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_stddev_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_stddev_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_stream_cursor_input": { + "initial_value": [ + 2976 + ], + "ordering": [ + 315 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_stream_cursor_value_input": { + "channel": [ + 80 + ], + "enabled": [ + 5 + ], + "key": [ + 80 + ], + "steam_id": [ + 259 + ], + "updated_at": [ + 4609 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_sum_fields": { + "steam_id": [ + 259 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_update_column": {}, + "notification_preferences_updates": { + "_inc": [ + 2962 + ], + "_set": [ + 2971 + ], + "where": [ + 2960 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_var_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_var_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "notification_preferences_variance_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, "notifications": { "actions": [ - 1842, + 1844, { "path": [ 80 @@ -56960,19 +57348,19 @@ export default { } ], "created_at": [ - 4553 + 4609 ], "deletable": [ 5 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_read": [ 5 @@ -56981,19 +57369,19 @@ export default { 80 ], "player": [ - 3964 + 3993 ], "role": [ - 1090 + 1092 ], "steam_id": [ - 257 + 259 ], "title": [ 80 ], "type": [ - 1050 + 1052 ], "__typename": [ 80 @@ -57001,10 +57389,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2960 + 2989 ], "nodes": [ - 2954 + 2983 ], "__typename": [ 80 @@ -57012,13 +57400,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2957 + 2986 ], "bool_or": [ - 2958 + 2987 ], "count": [ - 2959 + 2988 ], "__typename": [ 80 @@ -57026,13 +57414,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2983 + 3012 ], "distinct": [ 5 ], "filter": [ - 2966 + 2995 ], "predicate": [ 6 @@ -57043,13 +57431,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2984 + 3013 ], "distinct": [ 5 ], "filter": [ - 2966 + 2995 ], "predicate": [ 6 @@ -57060,13 +57448,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2982 + 3011 ], "distinct": [ 5 ], "filter": [ - 2966 + 2995 ], "predicate": [ 41 @@ -57077,13 +57465,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2964 + 2993 ], "count": [ 40, { "columns": [ - 2982, + 3011, "[notifications_select_column!]" ], "distinct": [ @@ -57092,31 +57480,31 @@ export default { } ], "max": [ - 2973 + 3002 ], "min": [ - 2975 + 3004 ], "stddev": [ - 2986 + 3015 ], "stddev_pop": [ - 2988 + 3017 ], "stddev_samp": [ - 2990 + 3019 ], "sum": [ - 2994 + 3023 ], "var_pop": [ - 2998 + 3027 ], "var_samp": [ - 3000 + 3029 ], "variance": [ - 3002 + 3031 ], "__typename": [ 80 @@ -57124,37 +57512,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2965 + 2994 ], "count": [ - 3006 + 3035 ], "max": [ - 2974 + 3003 ], "min": [ - 2976 + 3005 ], "stddev": [ - 2987 + 3016 ], "stddev_pop": [ - 2989 + 3018 ], "stddev_samp": [ - 2991 + 3020 ], "sum": [ - 2995 + 3024 ], "var_pop": [ - 2999 + 3028 ], "var_samp": [ - 3001 + 3030 ], "variance": [ - 3003 + 3032 ], "__typename": [ 80 @@ -57162,7 +57550,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1842 + 1844 ], "__typename": [ 80 @@ -57170,10 +57558,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2972 + 3001 ], "on_conflict": [ - 2978 + 3007 ], "__typename": [ 80 @@ -57189,7 +57577,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57197,31 +57585,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2966 + 2995 ], "_not": [ - 2966 + 2995 ], "_or": [ - 2966 + 2995 ], "actions": [ - 1844 + 1846 ], "created_at": [ - 4554 + 4610 ], "deletable": [ 6 ], "deleted_at": [ - 4554 + 4610 ], "entity_id": [ 82 ], "id": [ - 5055 + 5111 ], "is_read": [ 6 @@ -57230,19 +57618,19 @@ export default { 82 ], "player": [ - 3968 + 3997 ], "role": [ - 1091 + 1093 ], "steam_id": [ - 259 + 261 ], "title": [ 82 ], "type": [ - 1051 + 1053 ], "__typename": [ 80 @@ -57275,7 +57663,7 @@ export default { }, "notifications_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -57283,22 +57671,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1842 + 1844 ], "created_at": [ - 4553 + 4609 ], "deletable": [ 5 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_read": [ 5 @@ -57307,19 +57695,19 @@ export default { 80 ], "player": [ - 3975 + 4004 ], "role": [ - 1090 + 1092 ], "steam_id": [ - 257 + 259 ], "title": [ 80 ], "type": [ - 1050 + 1052 ], "__typename": [ 80 @@ -57327,22 +57715,22 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "steam_id": [ - 257 + 259 ], "title": [ 80 @@ -57353,25 +57741,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "entity_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57379,22 +57767,22 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "message": [ 80 ], "steam_id": [ - 257 + 259 ], "title": [ 80 @@ -57405,25 +57793,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "entity_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57434,7 +57822,7 @@ export default { 40 ], "returning": [ - 2954 + 2983 ], "__typename": [ 80 @@ -57442,13 +57830,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2967 + 2996 ], "update_columns": [ - 2996 + 3025 ], "where": [ - 2966 + 2995 ], "__typename": [ 80 @@ -57456,43 +57844,43 @@ export default { }, "notifications_order_by": { "actions": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "deletable": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "entity_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_read": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "role": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57500,7 +57888,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -57508,7 +57896,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1842 + 1844 ], "__typename": [ 80 @@ -57519,22 +57907,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1842 + 1844 ], "created_at": [ - 4553 + 4609 ], "deletable": [ 5 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_read": [ 5 @@ -57543,16 +57931,16 @@ export default { 80 ], "role": [ - 1090 + 1092 ], "steam_id": [ - 257 + 259 ], "title": [ 80 ], "type": [ - 1050 + 1052 ], "__typename": [ 80 @@ -57568,7 +57956,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57584,7 +57972,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57600,7 +57988,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57608,10 +57996,10 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2993 + 3022 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -57619,22 +58007,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1842 + 1844 ], "created_at": [ - 4553 + 4609 ], "deletable": [ 5 ], "deleted_at": [ - 4553 + 4609 ], "entity_id": [ 80 ], "id": [ - 5053 + 5109 ], "is_read": [ 5 @@ -57643,16 +58031,16 @@ export default { 80 ], "role": [ - 1090 + 1092 ], "steam_id": [ - 257 + 259 ], "title": [ 80 ], "type": [ - 1050 + 1052 ], "__typename": [ 80 @@ -57660,7 +58048,7 @@ export default { }, "notifications_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -57668,7 +58056,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57677,28 +58065,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2962 + 2991 ], "_delete_at_path": [ - 2968 + 2997 ], "_delete_elem": [ - 2969 + 2998 ], "_delete_key": [ - 2970 + 2999 ], "_inc": [ - 2971 + 3000 ], "_prepend": [ - 2981 + 3010 ], "_set": [ - 2985 + 3014 ], "where": [ - 2966 + 2995 ], "__typename": [ 80 @@ -57714,7 +58102,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57730,7 +58118,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57746,7 +58134,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57755,31 +58143,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3004 + 3033 ], "_gt": [ - 3004 + 3033 ], "_gte": [ - 3004 + 3033 ], "_in": [ - 3004 + 3033 ], "_is_null": [ 5 ], "_lt": [ - 3004 + 3033 ], "_lte": [ - 3004 + 3033 ], "_neq": [ - 3004 + 3033 ], "_nin": [ - 3004 + 3033 ], "__typename": [ 80 @@ -57788,19 +58176,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4553 + 4609 ], "pending_match_import": [ - 3048 + 3077 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -57808,10 +58196,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 3011 + 3040 ], "nodes": [ - 3007 + 3036 ], "__typename": [ 80 @@ -57819,7 +58207,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3010 + 3039 ], "__typename": [ 80 @@ -57827,13 +58215,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3028 + 3057 ], "distinct": [ 5 ], "filter": [ - 3016 + 3045 ], "predicate": [ 41 @@ -57844,13 +58232,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3014 + 3043 ], "count": [ 40, { "columns": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -57859,31 +58247,31 @@ export default { } ], "max": [ - 3020 + 3049 ], "min": [ - 3022 + 3051 ], "stddev": [ - 3030 + 3059 ], "stddev_pop": [ - 3032 + 3061 ], "stddev_samp": [ - 3034 + 3063 ], "sum": [ - 3038 + 3067 ], "var_pop": [ - 3042 + 3071 ], "var_samp": [ - 3044 + 3073 ], "variance": [ - 3046 + 3075 ], "__typename": [ 80 @@ -57891,37 +58279,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3015 + 3044 ], "count": [ - 3006 + 3035 ], "max": [ - 3021 + 3050 ], "min": [ - 3023 + 3052 ], "stddev": [ - 3031 + 3060 ], "stddev_pop": [ - 3033 + 3062 ], "stddev_samp": [ - 3035 + 3064 ], "sum": [ - 3039 + 3068 ], "var_pop": [ - 3043 + 3072 ], "var_samp": [ - 3045 + 3074 ], "variance": [ - 3047 + 3076 ], "__typename": [ 80 @@ -57929,10 +58317,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3019 + 3048 ], "on_conflict": [ - 3025 + 3054 ], "__typename": [ 80 @@ -57951,10 +58339,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -57962,28 +58350,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 3016 + 3045 ], "_not": [ - 3016 + 3045 ], "_or": [ - 3016 + 3045 ], "created_at": [ - 4554 + 4610 ], "pending_match_import": [ - 3052 + 3081 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "valve_match_id": [ - 3005 + 3034 ], "__typename": [ 80 @@ -57992,10 +58380,10 @@ export default { "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58003,19 +58391,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4553 + 4609 ], "pending_match_import": [ - 3059 + 3088 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58023,13 +58411,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58037,13 +58425,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58051,13 +58439,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58065,13 +58453,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58082,7 +58470,7 @@ export default { 40 ], "returning": [ - 3007 + 3036 ], "__typename": [ 80 @@ -58090,13 +58478,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 3017 + 3046 ], "update_columns": [ - 3040 + 3069 ], "where": [ - 3016 + 3045 ], "__typename": [ 80 @@ -58104,19 +58492,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 3006 + 3035 ], "pending_match_import": [ - 3061 + 3090 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58124,10 +58512,10 @@ export default { }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58136,13 +58524,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58161,10 +58549,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58183,10 +58571,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58205,10 +58593,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58216,10 +58604,10 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3037 + 3066 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -58227,13 +58615,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58241,10 +58629,10 @@ export default { }, "pending_match_import_players_sum_fields": { "steam_id": [ - 257 + 259 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58252,10 +58640,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58264,13 +58652,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3018 + 3047 ], "_set": [ - 3029 + 3058 ], "where": [ - 3016 + 3045 ], "__typename": [ 80 @@ -58289,10 +58677,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58311,10 +58699,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58333,10 +58721,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58344,7 +58732,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58356,13 +58744,13 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "players": [ - 3007, + 3036, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -58372,19 +58760,19 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "players_aggregate": [ - 3008, + 3037, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -58394,11 +58782,11 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], @@ -58409,10 +58797,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58420,10 +58808,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 3050 + 3079 ], "nodes": [ - 3048 + 3077 ], "__typename": [ 80 @@ -58431,13 +58819,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 3051 + 3080 ], "count": [ 40, { "columns": [ - 3063, + 3092, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -58446,31 +58834,31 @@ export default { } ], "max": [ - 3056 + 3085 ], "min": [ - 3057 + 3086 ], "stddev": [ - 3065 + 3094 ], "stddev_pop": [ - 3066 + 3095 ], "stddev_samp": [ - 3067 + 3096 ], "sum": [ - 3070 + 3099 ], "var_pop": [ - 3073 + 3102 ], "var_samp": [ - 3074 + 3103 ], "variance": [ - 3075 + 3104 ], "__typename": [ 80 @@ -58486,16 +58874,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 3052 + 3081 ], "_not": [ - 3052 + 3081 ], "_or": [ - 3052 + 3081 ], "created_at": [ - 4554 + 4610 ], "demo_url": [ 82 @@ -58507,13 +58895,13 @@ export default { 82 ], "match_start_time": [ - 4554 + 4610 ], "players": [ - 3016 + 3045 ], "players_aggregate": [ - 3009 + 3038 ], "share_code": [ 82 @@ -58522,10 +58910,10 @@ export default { 82 ], "updated_at": [ - 4554 + 4610 ], "valve_match_id": [ - 3005 + 3034 ], "__typename": [ 80 @@ -58534,7 +58922,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58542,7 +58930,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58554,10 +58942,10 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "players": [ - 3013 + 3042 ], "share_code": [ 80 @@ -58566,10 +58954,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58577,7 +58965,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58589,7 +58977,7 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "share_code": [ 80 @@ -58598,10 +58986,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58609,7 +58997,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58621,7 +59009,7 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "share_code": [ 80 @@ -58630,10 +59018,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58644,7 +59032,7 @@ export default { 40 ], "returning": [ - 3048 + 3077 ], "__typename": [ 80 @@ -58652,10 +59040,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3055 + 3084 ], "on_conflict": [ - 3060 + 3089 ], "__typename": [ 80 @@ -58663,13 +59051,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 3053 + 3082 ], "update_columns": [ - 3071 + 3100 ], "where": [ - 3052 + 3081 ], "__typename": [ 80 @@ -58677,34 +59065,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 3006 + 3035 ], "demo_url": [ - 3006 + 3035 ], "error": [ - 3006 + 3035 ], "map_name": [ - 3006 + 3035 ], "match_start_time": [ - 3006 + 3035 ], "players_aggregate": [ - 3012 + 3041 ], "share_code": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "valve_match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -58712,7 +59100,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58721,7 +59109,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58733,7 +59121,7 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "share_code": [ 80 @@ -58742,10 +59130,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58777,10 +59165,10 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3069 + 3098 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -58788,7 +59176,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "demo_url": [ 80 @@ -58800,7 +59188,7 @@ export default { 80 ], "match_start_time": [ - 4553 + 4609 ], "share_code": [ 80 @@ -58809,10 +59197,10 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58820,7 +59208,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3004 + 3033 ], "__typename": [ 80 @@ -58829,13 +59217,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3054 + 3083 ], "_set": [ - 3064 + 3093 ], "where": [ - 3052 + 3081 ], "__typename": [ 80 @@ -58867,10 +59255,10 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3964 + 3993 ], "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -58882,7 +59270,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -58900,16 +59288,16 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -58930,7 +59318,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -58941,10 +59329,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3078 + 3107 ], "nodes": [ - 3076 + 3105 ], "__typename": [ 80 @@ -58952,13 +59340,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3079 + 3108 ], "count": [ 40, { "columns": [ - 3090, + 3119, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -58967,31 +59355,31 @@ export default { } ], "max": [ - 3084 + 3113 ], "min": [ - 3085 + 3114 ], "stddev": [ - 3092 + 3121 ], "stddev_pop": [ - 3093 + 3122 ], "stddev_samp": [ - 3094 + 3123 ], "sum": [ - 3097 + 3126 ], "var_pop": [ - 3100 + 3129 ], "var_samp": [ - 3101 + 3130 ], "variance": [ - 3102 + 3131 ], "__typename": [ 80 @@ -59058,19 +59446,19 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3080 + 3109 ], "_not": [ - 3080 + 3109 ], "_or": [ - 3080 + 3109 ], "attacker": [ - 3968 + 3997 ], "attacker_steam_id": [ - 259 + 261 ], "counter_strafe_eligible_shots": [ 41 @@ -59082,7 +59470,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3005 + 3034 ], "first_bullet_hits": [ 41 @@ -59100,16 +59488,16 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "non_awp_hits": [ 41 @@ -59130,7 +59518,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3005 + 3034 ], "total_engagement_frames": [ 41 @@ -59142,7 +59530,7 @@ export default { "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59154,7 +59542,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59190,7 +59578,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59201,10 +59589,10 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3975 + 4004 ], "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59216,7 +59604,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59234,16 +59622,16 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -59264,7 +59652,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59275,7 +59663,7 @@ export default { }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59287,7 +59675,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59305,10 +59693,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -59329,7 +59717,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59340,7 +59728,7 @@ export default { }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59352,7 +59740,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59370,10 +59758,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -59394,7 +59782,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59408,7 +59796,7 @@ export default { 40 ], "returning": [ - 3076 + 3105 ], "__typename": [ 80 @@ -59416,13 +59804,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3081 + 3110 ], "update_columns": [ - 3098 + 3127 ], "where": [ - 3080 + 3109 ], "__typename": [ 80 @@ -59430,73 +59818,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3977 + 4006 ], "attacker_steam_id": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "__typename": [ 80 @@ -59504,10 +59892,10 @@ export default { }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 257 + 259 ], "match_map_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -59516,7 +59904,7 @@ export default { "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59528,7 +59916,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59546,10 +59934,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -59570,7 +59958,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59758,10 +60146,10 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3096 + 3125 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -59769,7 +60157,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59781,7 +60169,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59799,10 +60187,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "non_awp_hits": [ 40 @@ -59823,7 +60211,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59834,7 +60222,7 @@ export default { }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 257 + 259 ], "counter_strafe_eligible_shots": [ 40 @@ -59846,7 +60234,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "first_bullet_hits": [ 40 @@ -59882,7 +60270,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -59894,13 +60282,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3082 + 3111 ], "_set": [ - 3091 + 3120 ], "where": [ - 3080 + 3109 ], "__typename": [ 80 @@ -60097,19 +60485,19 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "shots": [ 40 @@ -60118,7 +60506,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60129,10 +60517,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3107 + 3136 ], "nodes": [ - 3103 + 3132 ], "__typename": [ 80 @@ -60140,7 +60528,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3106 + 3135 ], "__typename": [ 80 @@ -60148,13 +60536,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3124 + 3153 ], "distinct": [ 5 ], "filter": [ - 3112 + 3141 ], "predicate": [ 41 @@ -60165,13 +60553,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3110 + 3139 ], "count": [ 40, { "columns": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -60180,31 +60568,31 @@ export default { } ], "max": [ - 3116 + 3145 ], "min": [ - 3118 + 3147 ], "stddev": [ - 3126 + 3155 ], "stddev_pop": [ - 3128 + 3157 ], "stddev_samp": [ - 3130 + 3159 ], "sum": [ - 3134 + 3163 ], "var_pop": [ - 3138 + 3167 ], "var_samp": [ - 3140 + 3169 ], "variance": [ - 3142 + 3171 ], "__typename": [ 80 @@ -60212,37 +60600,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3111 + 3140 ], "count": [ - 3006 + 3035 ], "max": [ - 3117 + 3146 ], "min": [ - 3119 + 3148 ], "stddev": [ - 3127 + 3156 ], "stddev_pop": [ - 3129 + 3158 ], "stddev_samp": [ - 3131 + 3160 ], "sum": [ - 3135 + 3164 ], "var_pop": [ - 3139 + 3168 ], "var_samp": [ - 3141 + 3170 ], "variance": [ - 3143 + 3172 ], "__typename": [ 80 @@ -60250,10 +60638,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3115 + 3144 ], "on_conflict": [ - 3121 + 3150 ], "__typename": [ 80 @@ -60287,25 +60675,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60313,13 +60701,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3112 + 3141 ], "_not": [ - 3112 + 3141 ], "_or": [ - 3112 + 3141 ], "first_bullet_hits": [ 41 @@ -60334,19 +60722,19 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "shots": [ 41 @@ -60355,7 +60743,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "weapon_class": [ 82 @@ -60385,7 +60773,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -60405,19 +60793,19 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "shots": [ 40 @@ -60426,7 +60814,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60449,10 +60837,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -60461,7 +60849,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60472,34 +60860,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60519,10 +60907,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -60531,7 +60919,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60542,34 +60930,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60580,7 +60968,7 @@ export default { 40 ], "returning": [ - 3103 + 3132 ], "__typename": [ 80 @@ -60588,13 +60976,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3113 + 3142 ], "update_columns": [ - 3136 + 3165 ], "where": [ - 3112 + 3141 ], "__typename": [ 80 @@ -60602,43 +60990,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60646,10 +61034,10 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60673,10 +61061,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -60685,7 +61073,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60722,25 +61110,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60774,25 +61162,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60826,25 +61214,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60852,10 +61240,10 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3133 + 3162 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -60875,10 +61263,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -60887,7 +61275,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -60916,7 +61304,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -60924,25 +61312,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -60951,13 +61339,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3114 + 3143 ], "_set": [ - 3125 + 3154 ], "where": [ - 3112 + 3141 ], "__typename": [ 80 @@ -60991,25 +61379,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61043,25 +61431,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61095,25 +61483,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61121,22 +61509,22 @@ export default { }, "player_assists": { "attacked_player": [ - 3964 + 3993 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "flash": [ 5 @@ -61145,25 +61533,25 @@ export default { 5 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61171,10 +61559,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 3150 + 3179 ], "nodes": [ - 3144 + 3173 ], "__typename": [ 80 @@ -61182,13 +61570,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3147 + 3176 ], "bool_or": [ - 3148 + 3177 ], "count": [ - 3149 + 3178 ], "__typename": [ 80 @@ -61196,13 +61584,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3168 + 3197 ], "distinct": [ 5 ], "filter": [ - 3155 + 3184 ], "predicate": [ 6 @@ -61213,13 +61601,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3169 + 3198 ], "distinct": [ 5 ], "filter": [ - 3155 + 3184 ], "predicate": [ 6 @@ -61230,13 +61618,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3167 + 3196 ], "distinct": [ 5 ], "filter": [ - 3155 + 3184 ], "predicate": [ 41 @@ -61247,13 +61635,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 3153 + 3182 ], "count": [ 40, { "columns": [ - 3167, + 3196, "[player_assists_select_column!]" ], "distinct": [ @@ -61262,31 +61650,31 @@ export default { } ], "max": [ - 3159 + 3188 ], "min": [ - 3161 + 3190 ], "stddev": [ - 3171 + 3200 ], "stddev_pop": [ - 3173 + 3202 ], "stddev_samp": [ - 3175 + 3204 ], "sum": [ - 3179 + 3208 ], "var_pop": [ - 3183 + 3212 ], "var_samp": [ - 3185 + 3214 ], "variance": [ - 3187 + 3216 ], "__typename": [ 80 @@ -61294,37 +61682,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 3154 + 3183 ], "count": [ - 3006 + 3035 ], "max": [ - 3160 + 3189 ], "min": [ - 3162 + 3191 ], "stddev": [ - 3172 + 3201 ], "stddev_pop": [ - 3174 + 3203 ], "stddev_samp": [ - 3176 + 3205 ], "sum": [ - 3180 + 3209 ], "var_pop": [ - 3184 + 3213 ], "var_samp": [ - 3186 + 3215 ], "variance": [ - 3188 + 3217 ], "__typename": [ 80 @@ -61332,10 +61720,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 3158 + 3187 ], "on_conflict": [ - 3164 + 3193 ], "__typename": [ 80 @@ -61357,13 +61745,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61371,31 +61759,31 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 3155 + 3184 ], "_not": [ - 3155 + 3184 ], "_or": [ - 3155 + 3184 ], "attacked_player": [ - 3968 + 3997 ], "attacked_steam_id": [ - 259 + 261 ], "attacked_team": [ 82 ], "attacker_steam_id": [ - 259 + 261 ], "attacker_team": [ 82 ], "deleted_at": [ - 4554 + 4610 ], "flash": [ 6 @@ -61404,25 +61792,25 @@ export default { 6 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "round": [ 41 ], "time": [ - 4554 + 4610 ], "__typename": [ 80 @@ -61431,10 +61819,10 @@ export default { "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -61445,46 +61833,46 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3975 + 4004 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "flash": [ 5 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61492,31 +61880,31 @@ export default { }, "player_assists_max_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61524,31 +61912,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61556,31 +61944,31 @@ export default { }, "player_assists_min_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61588,31 +61976,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61623,7 +62011,7 @@ export default { 40 ], "returning": [ - 3144 + 3173 ], "__typename": [ 80 @@ -61631,13 +62019,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 3156 + 3185 ], "update_columns": [ - 3181 + 3210 ], "where": [ - 3155 + 3184 ], "__typename": [ 80 @@ -61645,49 +62033,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3977 + 4006 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "flash": [ - 3006 + 3035 ], "is_team_assist": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61695,16 +62083,16 @@ export default { }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "match_map_id": [ - 5053 + 5109 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61715,34 +62103,34 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "flash": [ 5 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61764,13 +62152,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61792,13 +62180,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61820,13 +62208,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61834,10 +62222,10 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 3178 + 3207 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -61845,34 +62233,34 @@ export default { }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "flash": [ 5 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -61880,10 +62268,10 @@ export default { }, "player_assists_sum_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -61894,13 +62282,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61909,13 +62297,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3157 + 3186 ], "_set": [ - 3170 + 3199 ], "where": [ - 3155 + 3184 ], "__typename": [ 80 @@ -61937,13 +62325,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61965,13 +62353,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -61993,13 +62381,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -62007,28 +62395,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "counter_strafe_pct": [ - 3004 + 3033 ], "crosshair_deg": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "maps": [ 40 @@ -62040,19 +62428,19 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "time_to_damage_s": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "__typename": [ 80 @@ -62060,10 +62448,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 3191 + 3220 ], "nodes": [ - 3189 + 3218 ], "__typename": [ 80 @@ -62071,13 +62459,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3192 + 3221 ], "count": [ 40, { "columns": [ - 3197, + 3226, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -62086,31 +62474,31 @@ export default { } ], "max": [ - 3194 + 3223 ], "min": [ - 3195 + 3224 ], "stddev": [ - 3198 + 3227 ], "stddev_pop": [ - 3199 + 3228 ], "stddev_samp": [ - 3200 + 3229 ], "sum": [ - 3203 + 3232 ], "var_pop": [ - 3204 + 3233 ], "var_samp": [ - 3205 + 3234 ], "variance": [ - 3206 + 3235 ], "__typename": [ 80 @@ -62171,37 +62559,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 3193 + 3222 ], "_not": [ - 3193 + 3222 ], "_or": [ - 3193 + 3222 ], "accuracy": [ - 3005 + 3034 ], "accuracy_spotted": [ - 3005 + 3034 ], "counter_strafe_pct": [ - 3005 + 3034 ], "crosshair_deg": [ - 3005 + 3034 ], "enemy_blind_pr": [ - 3005 + 3034 ], "flash_assists_pr": [ - 3005 + 3034 ], "hs_pct": [ - 3005 + 3034 ], "kast_pct": [ - 3005 + 3034 ], "maps": [ 41 @@ -62213,19 +62601,19 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "survival_pct": [ - 3005 + 3034 ], "time_to_damage_s": [ - 3005 + 3034 ], "traded_death_pct": [ - 3005 + 3034 ], "util_efficiency": [ - 3005 + 3034 ], "__typename": [ 80 @@ -62233,28 +62621,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "counter_strafe_pct": [ - 3004 + 3033 ], "crosshair_deg": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "maps": [ 40 @@ -62266,19 +62654,19 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "time_to_damage_s": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "__typename": [ 80 @@ -62286,28 +62674,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "counter_strafe_pct": [ - 3004 + 3033 ], "crosshair_deg": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "maps": [ 40 @@ -62319,19 +62707,19 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "time_to_damage_s": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "__typename": [ 80 @@ -62339,52 +62727,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 3006 + 3035 ], "accuracy_spotted": [ - 3006 + 3035 ], "counter_strafe_pct": [ - 3006 + 3035 ], "crosshair_deg": [ - 3006 + 3035 ], "enemy_blind_pr": [ - 3006 + 3035 ], "flash_assists_pr": [ - 3006 + 3035 ], "hs_pct": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "maps": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "survival_pct": [ - 3006 + 3035 ], "time_to_damage_s": [ - 3006 + 3035 ], "traded_death_pct": [ - 3006 + 3035 ], "util_efficiency": [ - 3006 + 3035 ], "__typename": [ 80 @@ -62552,10 +62940,10 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3202 + 3231 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -62563,28 +62951,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "counter_strafe_pct": [ - 3004 + 3033 ], "crosshair_deg": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "maps": [ 40 @@ -62596,19 +62984,19 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "time_to_damage_s": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "__typename": [ 80 @@ -62616,28 +63004,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "counter_strafe_pct": [ - 3004 + 3033 ], "crosshair_deg": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "maps": [ 40 @@ -62649,19 +63037,19 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "time_to_damage_s": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "__typename": [ 80 @@ -62837,10 +63225,10 @@ export default { 80 ], "attacked_player": [ - 3964 + 3993 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -62852,7 +63240,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -62864,7 +63252,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -62873,31 +63261,31 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "round": [ - 3004 + 3033 ], "team_damage": [ 5 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -62908,10 +63296,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 3211 + 3240 ], "nodes": [ - 3207 + 3236 ], "__typename": [ 80 @@ -62919,7 +63307,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 3210 + 3239 ], "__typename": [ 80 @@ -62927,13 +63315,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3228 + 3257 ], "distinct": [ 5 ], "filter": [ - 3216 + 3245 ], "predicate": [ 41 @@ -62944,13 +63332,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 3214 + 3243 ], "count": [ 40, { "columns": [ - 3228, + 3257, "[player_damages_select_column!]" ], "distinct": [ @@ -62959,31 +63347,31 @@ export default { } ], "max": [ - 3220 + 3249 ], "min": [ - 3222 + 3251 ], "stddev": [ - 3230 + 3259 ], "stddev_pop": [ - 3232 + 3261 ], "stddev_samp": [ - 3234 + 3263 ], "sum": [ - 3238 + 3267 ], "var_pop": [ - 3242 + 3271 ], "var_samp": [ - 3244 + 3273 ], "variance": [ - 3246 + 3275 ], "__typename": [ 80 @@ -62991,37 +63379,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 3215 + 3244 ], "count": [ - 3006 + 3035 ], "max": [ - 3221 + 3250 ], "min": [ - 3223 + 3252 ], "stddev": [ - 3231 + 3260 ], "stddev_pop": [ - 3233 + 3262 ], "stddev_samp": [ - 3235 + 3264 ], "sum": [ - 3239 + 3268 ], "var_pop": [ - 3243 + 3272 ], "var_samp": [ - 3245 + 3274 ], "variance": [ - 3247 + 3276 ], "__typename": [ 80 @@ -63029,10 +63417,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 3219 + 3248 ], "on_conflict": [ - 3225 + 3254 ], "__typename": [ 80 @@ -63066,25 +63454,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63092,13 +63480,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 3216 + 3245 ], "_not": [ - 3216 + 3245 ], "_or": [ - 3216 + 3245 ], "armor": [ 41 @@ -63110,10 +63498,10 @@ export default { 82 ], "attacked_player": [ - 3968 + 3997 ], "attacked_steam_id": [ - 259 + 261 ], "attacked_team": [ 82 @@ -63125,7 +63513,7 @@ export default { 82 ], "attacker_steam_id": [ - 259 + 261 ], "attacker_team": [ 82 @@ -63137,7 +63525,7 @@ export default { 41 ], "deleted_at": [ - 4554 + 4610 ], "health": [ 41 @@ -63146,31 +63534,31 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "round": [ - 3005 + 3034 ], "team_damage": [ 6 ], "time": [ - 4554 + 4610 ], "with": [ 82 @@ -63185,10 +63573,10 @@ export default { 40 ], "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage": [ 40 @@ -63200,7 +63588,7 @@ export default { 40 ], "round": [ - 3004 + 3033 ], "__typename": [ 80 @@ -63217,10 +63605,10 @@ export default { 80 ], "attacked_player": [ - 3975 + 4004 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -63232,7 +63620,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -63244,7 +63632,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -63253,28 +63641,28 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "round": [ - 3004 + 3033 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -63294,7 +63682,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -63306,7 +63694,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -63318,7 +63706,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -63327,19 +63715,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ - 3004 + 3033 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -63350,64 +63738,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 3006 + 3035 ], "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63424,7 +63812,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -63436,7 +63824,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -63448,7 +63836,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -63457,19 +63845,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ - 3004 + 3033 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -63480,64 +63868,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 3006 + 3035 ], "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63548,7 +63936,7 @@ export default { 40 ], "returning": [ - 3207 + 3236 ], "__typename": [ 80 @@ -63556,13 +63944,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 3217 + 3246 ], "update_columns": [ - 3240 + 3269 ], "where": [ - 3216 + 3245 ], "__typename": [ 80 @@ -63570,79 +63958,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 3006 + 3035 ], "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_player": [ - 3977 + 4006 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "round": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63650,13 +64038,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -63674,7 +64062,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -63686,7 +64074,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -63698,7 +64086,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -63707,19 +64095,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ - 3004 + 3033 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -63756,25 +64144,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63808,25 +64196,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63860,25 +64248,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -63886,10 +64274,10 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3237 + 3266 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -63906,7 +64294,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -63918,7 +64306,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -63930,7 +64318,7 @@ export default { 40 ], "deleted_at": [ - 4553 + 4609 ], "health": [ 40 @@ -63939,19 +64327,19 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ - 3004 + 3033 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -63965,10 +64353,10 @@ export default { 40 ], "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage": [ 40 @@ -63980,7 +64368,7 @@ export default { 40 ], "round": [ - 3004 + 3033 ], "__typename": [ 80 @@ -63988,25 +64376,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -64015,13 +64403,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3218 + 3247 ], "_set": [ - 3229 + 3258 ], "where": [ - 3216 + 3245 ], "__typename": [ 80 @@ -64055,25 +64443,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -64107,25 +64495,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -64159,25 +64547,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_armor": [ - 3006 + 3035 ], "health": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -64185,40 +64573,40 @@ export default { }, "player_elo": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64230,43 +64618,43 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player": [ - 3964 + 3993 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season": [ - 4023 + 4079 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ - 1029 + 1031 ], "__typename": [ 80 @@ -64274,10 +64662,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3250 + 3279 ], "nodes": [ - 3248 + 3277 ], "__typename": [ 80 @@ -64285,13 +64673,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3251 + 3280 ], "count": [ 40, { "columns": [ - 3262, + 3291, "[player_elo_select_column!]" ], "distinct": [ @@ -64300,31 +64688,31 @@ export default { } ], "max": [ - 3256 + 3285 ], "min": [ - 3257 + 3286 ], "stddev": [ - 3264 + 3293 ], "stddev_pop": [ - 3265 + 3294 ], "stddev_samp": [ - 3266 + 3295 ], "sum": [ - 3269 + 3298 ], "var_pop": [ - 3272 + 3301 ], "var_samp": [ - 3273 + 3302 ], "variance": [ - 3274 + 3303 ], "__typename": [ 80 @@ -64400,49 +64788,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3252 + 3281 ], "_not": [ - 3252 + 3281 ], "_or": [ - 3252 + 3281 ], "actual_score": [ - 1690 + 1692 ], "assists": [ 41 ], "change": [ - 3005 + 3034 ], "created_at": [ - 4554 + 4610 ], "current": [ - 3005 + 3034 ], "damage": [ 41 ], "damage_percent": [ - 1690 + 1692 ], "deaths": [ 41 ], "expected_score": [ - 1690 + 1692 ], "impact": [ - 3005 + 3034 ], "k_factor": [ 41 ], "kda": [ - 1690 + 1692 ], "kills": [ 41 @@ -64454,43 +64842,43 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "opponent_team_elo_avg": [ - 1690 + 1692 ], "performance_multiplier": [ - 1690 + 1692 ], "player": [ - 3968 + 3997 ], "player_team_elo_avg": [ - 1690 + 1692 ], "rating_for_expected": [ - 1690 + 1692 ], "season": [ - 4027 + 4083 ], "season_id": [ - 5055 + 5111 ], "series_multiplier": [ 41 ], "steam_id": [ - 259 + 261 ], "team_avg_kda": [ - 1690 + 1692 ], "type": [ - 1030 + 1032 ], "__typename": [ 80 @@ -64499,37 +64887,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64541,25 +64929,25 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "__typename": [ 80 @@ -64567,40 +64955,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64612,43 +65000,43 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player": [ - 3975 + 4004 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season": [ - 4034 + 4090 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ - 1029 + 1031 ], "__typename": [ 80 @@ -64656,40 +65044,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64701,31 +65089,31 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "__typename": [ 80 @@ -64733,40 +65121,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64778,31 +65166,31 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "__typename": [ 80 @@ -64813,7 +65201,7 @@ export default { 40 ], "returning": [ - 3248 + 3277 ], "__typename": [ 80 @@ -64821,13 +65209,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3253 + 3282 ], "update_columns": [ - 3270 + 3299 ], "where": [ - 3252 + 3281 ], "__typename": [ 80 @@ -64835,88 +65223,88 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "change": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "season": [ - 4036 + 4092 ], "season_id": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -64924,13 +65312,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "type": [ - 1029 + 1031 ], "__typename": [ 80 @@ -64939,40 +65327,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -64984,34 +65372,34 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ - 1029 + 1031 ], "__typename": [ 80 @@ -65223,10 +65611,10 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3268 + 3297 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -65234,40 +65622,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "created_at": [ - 4553 + 4609 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -65279,34 +65667,34 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ - 1029 + 1031 ], "__typename": [ 80 @@ -65314,37 +65702,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 ], "change": [ - 3004 + 3033 ], "current": [ - 3004 + 3033 ], "damage": [ 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 3004 + 3033 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -65356,25 +65744,25 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "series_multiplier": [ 40 ], "steam_id": [ - 257 + 259 ], "team_avg_kda": [ - 1689 + 1691 ], "__typename": [ 80 @@ -65383,13 +65771,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3254 + 3283 ], "_set": [ - 3263 + 3292 ], "where": [ - 3252 + 3281 ], "__typename": [ 80 @@ -65604,19 +65992,19 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "player": [ - 3964 + 3993 ], "previous_rank": [ 40 @@ -65625,7 +66013,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -65633,10 +66021,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3279 + 3308 ], "nodes": [ - 3275 + 3304 ], "__typename": [ 80 @@ -65644,7 +66032,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3278 + 3307 ], "__typename": [ 80 @@ -65652,13 +66040,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3296 + 3325 ], "distinct": [ 5 ], "filter": [ - 3284 + 3313 ], "predicate": [ 41 @@ -65669,13 +66057,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3282 + 3311 ], "count": [ 40, { "columns": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -65684,31 +66072,31 @@ export default { } ], "max": [ - 3288 + 3317 ], "min": [ - 3290 + 3319 ], "stddev": [ - 3298 + 3327 ], "stddev_pop": [ - 3300 + 3329 ], "stddev_samp": [ - 3302 + 3331 ], "sum": [ - 3306 + 3335 ], "var_pop": [ - 3310 + 3339 ], "var_samp": [ - 3312 + 3341 ], "variance": [ - 3314 + 3343 ], "__typename": [ 80 @@ -65716,37 +66104,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3283 + 3312 ], "count": [ - 3006 + 3035 ], "max": [ - 3289 + 3318 ], "min": [ - 3291 + 3320 ], "stddev": [ - 3299 + 3328 ], "stddev_pop": [ - 3301 + 3330 ], "stddev_samp": [ - 3303 + 3332 ], "sum": [ - 3307 + 3336 ], "var_pop": [ - 3311 + 3340 ], "var_samp": [ - 3313 + 3342 ], "variance": [ - 3315 + 3344 ], "__typename": [ 80 @@ -65754,10 +66142,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3287 + 3316 ], "on_conflict": [ - 3293 + 3322 ], "__typename": [ 80 @@ -65782,16 +66170,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -65799,31 +66187,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3284 + 3313 ], "_not": [ - 3284 + 3313 ], "_or": [ - 3284 + 3313 ], "elo": [ 41 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "observed_at": [ - 4554 + 4610 ], "player": [ - 3968 + 3997 ], "previous_rank": [ 41 @@ -65832,7 +66220,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -65850,7 +66238,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -65861,19 +66249,19 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "player": [ - 3975 + 4004 ], "previous_rank": [ 40 @@ -65882,7 +66270,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -65893,13 +66281,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -65908,7 +66296,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -65916,25 +66304,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -65945,13 +66333,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -65960,7 +66348,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -65968,25 +66356,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -65997,7 +66385,7 @@ export default { 40 ], "returning": [ - 3275 + 3304 ], "__typename": [ 80 @@ -66005,13 +66393,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3285 + 3314 ], "update_columns": [ - 3308 + 3337 ], "where": [ - 3284 + 3313 ], "__typename": [ 80 @@ -66019,31 +66407,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66051,7 +66439,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -66063,13 +66451,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -66078,7 +66466,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -66103,16 +66491,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66137,16 +66525,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66171,16 +66559,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66188,10 +66576,10 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3305 + 3334 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -66202,13 +66590,13 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -66217,7 +66605,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -66234,7 +66622,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -66242,16 +66630,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66260,13 +66648,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3286 + 3315 ], "_set": [ - 3297 + 3326 ], "where": [ - 3284 + 3313 ], "__typename": [ 80 @@ -66291,16 +66679,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66325,16 +66713,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66359,16 +66747,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "skill_level": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66376,31 +66764,31 @@ export default { }, "player_flashes": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "blinded": [ - 3964 + 3993 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -66409,10 +66797,10 @@ export default { 5 ], "thrown_by": [ - 3964 + 3993 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66420,10 +66808,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3322 + 3351 ], "nodes": [ - 3316 + 3345 ], "__typename": [ 80 @@ -66431,13 +66819,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3319 + 3348 ], "bool_or": [ - 3320 + 3349 ], "count": [ - 3321 + 3350 ], "__typename": [ 80 @@ -66445,13 +66833,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3340 + 3369 ], "distinct": [ 5 ], "filter": [ - 3327 + 3356 ], "predicate": [ 6 @@ -66462,13 +66850,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3341 + 3370 ], "distinct": [ 5 ], "filter": [ - 3327 + 3356 ], "predicate": [ 6 @@ -66479,13 +66867,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3339 + 3368 ], "distinct": [ 5 ], "filter": [ - 3327 + 3356 ], "predicate": [ 41 @@ -66496,13 +66884,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3325 + 3354 ], "count": [ 40, { "columns": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "distinct": [ @@ -66511,31 +66899,31 @@ export default { } ], "max": [ - 3331 + 3360 ], "min": [ - 3333 + 3362 ], "stddev": [ - 3343 + 3372 ], "stddev_pop": [ - 3345 + 3374 ], "stddev_samp": [ - 3347 + 3376 ], "sum": [ - 3351 + 3380 ], "var_pop": [ - 3355 + 3384 ], "var_samp": [ - 3357 + 3386 ], "variance": [ - 3359 + 3388 ], "__typename": [ 80 @@ -66543,37 +66931,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3326 + 3355 ], "count": [ - 3006 + 3035 ], "max": [ - 3332 + 3361 ], "min": [ - 3334 + 3363 ], "stddev": [ - 3344 + 3373 ], "stddev_pop": [ - 3346 + 3375 ], "stddev_samp": [ - 3348 + 3377 ], "sum": [ - 3352 + 3381 ], "var_pop": [ - 3356 + 3385 ], "var_samp": [ - 3358 + 3387 ], "variance": [ - 3360 + 3389 ], "__typename": [ 80 @@ -66581,10 +66969,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3330 + 3359 ], "on_conflict": [ - 3336 + 3365 ], "__typename": [ 80 @@ -66609,16 +66997,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66626,40 +67014,40 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3327 + 3356 ], "_not": [ - 3327 + 3356 ], "_or": [ - 3327 + 3356 ], "attacked_steam_id": [ - 259 + 261 ], "attacker_steam_id": [ - 259 + 261 ], "blinded": [ - 3968 + 3997 ], "deleted_at": [ - 4554 + 4610 ], "duration": [ - 3005 + 3034 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "round": [ 41 @@ -66668,10 +67056,10 @@ export default { 6 ], "thrown_by": [ - 3968 + 3997 ], "time": [ - 4554 + 4610 ], "__typename": [ 80 @@ -66680,13 +67068,13 @@ export default { "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "duration": [ - 3004 + 3033 ], "round": [ 40 @@ -66697,31 +67085,31 @@ export default { }, "player_flashes_insert_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "blinded": [ - 3975 + 4004 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -66730,10 +67118,10 @@ export default { 5 ], "thrown_by": [ - 3975 + 4004 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66741,28 +67129,28 @@ export default { }, "player_flashes_max_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66770,28 +67158,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66799,28 +67187,28 @@ export default { }, "player_flashes_min_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66828,28 +67216,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66860,7 +67248,7 @@ export default { 40 ], "returning": [ - 3316 + 3345 ], "__typename": [ 80 @@ -66868,13 +67256,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3328 + 3357 ], "update_columns": [ - 3353 + 3382 ], "where": [ - 3327 + 3356 ], "__typename": [ 80 @@ -66882,43 +67270,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "blinded": [ - 3977 + 4006 ], "deleted_at": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_flash": [ - 3006 + 3035 ], "thrown_by": [ - 3977 + 4006 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -66926,16 +67314,16 @@ export default { }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "match_map_id": [ - 5053 + 5109 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66946,22 +67334,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -66970,7 +67358,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -66995,16 +67383,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67029,16 +67417,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67063,16 +67451,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67080,10 +67468,10 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3350 + 3379 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -67091,22 +67479,22 @@ export default { }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "duration": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -67115,7 +67503,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -67123,13 +67511,13 @@ export default { }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "duration": [ - 3004 + 3033 ], "round": [ 40 @@ -67140,16 +67528,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67158,13 +67546,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3329 + 3358 ], "_set": [ - 3342 + 3371 ], "where": [ - 3327 + 3356 ], "__typename": [ 80 @@ -67189,16 +67577,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67223,16 +67611,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67257,16 +67645,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "duration": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67283,10 +67671,10 @@ export default { 80 ], "attacked_player": [ - 3964 + 3993 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -67298,7 +67686,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -67307,7 +67695,7 @@ export default { 5 ], "deleted_at": [ - 4553 + 4609 ], "headshot": [ 5 @@ -67322,22 +67710,22 @@ export default { 5 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "no_scope": [ 5 ], "player": [ - 3964 + 3993 ], "round": [ 40 @@ -67352,7 +67740,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -67363,10 +67751,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3367 + 3396 ], "nodes": [ - 3361 + 3390 ], "__typename": [ 80 @@ -67374,13 +67762,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3364 + 3393 ], "bool_or": [ - 3365 + 3394 ], "count": [ - 3366 + 3395 ], "__typename": [ 80 @@ -67388,13 +67776,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3426 + 3455 ], "distinct": [ 5 ], "filter": [ - 3372 + 3401 ], "predicate": [ 6 @@ -67405,13 +67793,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3427 + 3456 ], "distinct": [ 5 ], "filter": [ - 3372 + 3401 ], "predicate": [ 6 @@ -67422,13 +67810,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3425 + 3454 ], "distinct": [ 5 ], "filter": [ - 3372 + 3401 ], "predicate": [ 41 @@ -67439,13 +67827,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3370 + 3399 ], "count": [ 40, { "columns": [ - 3425, + 3454, "[player_kills_select_column!]" ], "distinct": [ @@ -67454,31 +67842,31 @@ export default { } ], "max": [ - 3417 + 3446 ], "min": [ - 3419 + 3448 ], "stddev": [ - 3429 + 3458 ], "stddev_pop": [ - 3431 + 3460 ], "stddev_samp": [ - 3433 + 3462 ], "sum": [ - 3437 + 3466 ], "var_pop": [ - 3441 + 3470 ], "var_samp": [ - 3443 + 3472 ], "variance": [ - 3445 + 3474 ], "__typename": [ 80 @@ -67486,37 +67874,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3371 + 3400 ], "count": [ - 3006 + 3035 ], "max": [ - 3418 + 3447 ], "min": [ - 3420 + 3449 ], "stddev": [ - 3430 + 3459 ], "stddev_pop": [ - 3432 + 3461 ], "stddev_samp": [ - 3434 + 3463 ], "sum": [ - 3438 + 3467 ], "var_pop": [ - 3442 + 3471 ], "var_samp": [ - 3444 + 3473 ], "variance": [ - 3446 + 3475 ], "__typename": [ 80 @@ -67524,10 +67912,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3416 + 3445 ], "on_conflict": [ - 3422 + 3451 ], "__typename": [ 80 @@ -67549,13 +67937,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67563,13 +67951,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3372 + 3401 ], "_not": [ - 3372 + 3401 ], "_or": [ - 3372 + 3401 ], "assisted": [ 6 @@ -67581,10 +67969,10 @@ export default { 82 ], "attacked_player": [ - 3968 + 3997 ], "attacked_steam_id": [ - 259 + 261 ], "attacked_team": [ 82 @@ -67596,7 +67984,7 @@ export default { 82 ], "attacker_steam_id": [ - 259 + 261 ], "attacker_team": [ 82 @@ -67605,7 +67993,7 @@ export default { 6 ], "deleted_at": [ - 4554 + 4610 ], "headshot": [ 6 @@ -67620,22 +68008,22 @@ export default { 6 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "no_scope": [ 6 ], "player": [ - 3968 + 3997 ], "round": [ 41 @@ -67650,7 +68038,7 @@ export default { 6 ], "time": [ - 4554 + 4610 ], "with": [ 82 @@ -67661,13 +68049,13 @@ export default { }, "player_kills_by_weapon": { "kill_count": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -67678,10 +68066,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3377 + 3406 ], "nodes": [ - 3373 + 3402 ], "__typename": [ 80 @@ -67689,7 +68077,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3376 + 3405 ], "__typename": [ 80 @@ -67697,13 +68085,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3394 + 3423 ], "distinct": [ 5 ], "filter": [ - 3382 + 3411 ], "predicate": [ 41 @@ -67714,13 +68102,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3380 + 3409 ], "count": [ 40, { "columns": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -67729,31 +68117,31 @@ export default { } ], "max": [ - 3386 + 3415 ], "min": [ - 3388 + 3417 ], "stddev": [ - 3396 + 3425 ], "stddev_pop": [ - 3398 + 3427 ], "stddev_samp": [ - 3400 + 3429 ], "sum": [ - 3404 + 3433 ], "var_pop": [ - 3408 + 3437 ], "var_samp": [ - 3410 + 3439 ], "variance": [ - 3412 + 3441 ], "__typename": [ 80 @@ -67761,37 +68149,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3381 + 3410 ], "count": [ - 3006 + 3035 ], "max": [ - 3387 + 3416 ], "min": [ - 3389 + 3418 ], "stddev": [ - 3397 + 3426 ], "stddev_pop": [ - 3399 + 3428 ], "stddev_samp": [ - 3401 + 3430 ], "sum": [ - 3405 + 3434 ], "var_pop": [ - 3409 + 3438 ], "var_samp": [ - 3411 + 3440 ], "variance": [ - 3413 + 3442 ], "__typename": [ 80 @@ -67799,10 +68187,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3385 + 3414 ], "on_conflict": [ - 3391 + 3420 ], "__typename": [ 80 @@ -67821,10 +68209,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67832,22 +68220,22 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3382 + 3411 ], "_not": [ - 3382 + 3411 ], "_or": [ - 3382 + 3411 ], "kill_count": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "with": [ 82 @@ -67859,10 +68247,10 @@ export default { "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -67870,13 +68258,13 @@ export default { }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 257 + 259 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -67887,10 +68275,10 @@ export default { }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -67901,13 +68289,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67915,10 +68303,10 @@ export default { }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -67929,13 +68317,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67946,7 +68334,7 @@ export default { 40 ], "returning": [ - 3373 + 3402 ], "__typename": [ 80 @@ -67954,13 +68342,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3383 + 3412 ], "update_columns": [ - 3406 + 3435 ], "where": [ - 3382 + 3411 ], "__typename": [ 80 @@ -67968,16 +68356,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -67985,7 +68373,7 @@ export default { }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -67997,10 +68385,10 @@ export default { "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -68022,10 +68410,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68044,10 +68432,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68066,10 +68454,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68077,10 +68465,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3403 + 3432 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -68088,10 +68476,10 @@ export default { }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "with": [ 80 @@ -68102,10 +68490,10 @@ export default { }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -68113,10 +68501,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68125,13 +68513,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3384 + 3413 ], "_set": [ - 3395 + 3424 ], "where": [ - 3382 + 3411 ], "__typename": [ 80 @@ -68150,10 +68538,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68172,10 +68560,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68194,10 +68582,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68206,10 +68594,10 @@ export default { "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -68229,10 +68617,10 @@ export default { 80 ], "attacked_player": [ - 3975 + 4004 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -68244,7 +68632,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -68253,7 +68641,7 @@ export default { 5 ], "deleted_at": [ - 4553 + 4609 ], "headshot": [ 5 @@ -68265,22 +68653,22 @@ export default { 5 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "no_scope": [ 5 ], "player": [ - 3975 + 4004 ], "round": [ 40 @@ -68292,7 +68680,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -68309,7 +68697,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -68321,28 +68709,28 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "hitgroup": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -68353,49 +68741,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68409,7 +68797,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -68421,28 +68809,28 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 ], "deleted_at": [ - 4553 + 4609 ], "hitgroup": [ 80 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -68453,49 +68841,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68506,7 +68894,7 @@ export default { 40 ], "returning": [ - 3361 + 3390 ], "__typename": [ 80 @@ -68514,13 +68902,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3414 + 3443 ], "update_columns": [ - 3439 + 3468 ], "where": [ - 3372 + 3401 ], "__typename": [ 80 @@ -68528,88 +68916,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 3006 + 3035 ], "attacked_location": [ - 3006 + 3035 ], "attacked_location_coordinates": [ - 3006 + 3035 ], "attacked_player": [ - 3977 + 4006 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacked_team": [ - 3006 + 3035 ], "attacker_location": [ - 3006 + 3035 ], "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "attacker_team": [ - 3006 + 3035 ], "blinded": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "headshot": [ - 3006 + 3035 ], "hitgroup": [ - 3006 + 3035 ], "in_air": [ - 3006 + 3035 ], "is_suicide": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "no_scope": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "round": [ - 3006 + 3035 ], "team_kill": [ - 3006 + 3035 ], "thru_smoke": [ - 3006 + 3035 ], "thru_wall": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68617,16 +69005,16 @@ export default { }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "match_map_id": [ - 5053 + 5109 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -68646,7 +69034,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -68658,7 +69046,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -68667,7 +69055,7 @@ export default { 5 ], "deleted_at": [ - 4553 + 4609 ], "headshot": [ 5 @@ -68679,10 +69067,10 @@ export default { 5 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "no_scope": [ 5 @@ -68697,7 +69085,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -68722,13 +69110,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68750,13 +69138,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68778,13 +69166,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68792,10 +69180,10 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3436 + 3465 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -68812,7 +69200,7 @@ export default { 80 ], "attacked_steam_id": [ - 257 + 259 ], "attacked_team": [ 80 @@ -68824,7 +69212,7 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "attacker_team": [ 80 @@ -68833,7 +69221,7 @@ export default { 5 ], "deleted_at": [ - 4553 + 4609 ], "headshot": [ 5 @@ -68845,10 +69233,10 @@ export default { 5 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "no_scope": [ 5 @@ -68863,7 +69251,7 @@ export default { 5 ], "time": [ - 4553 + 4609 ], "with": [ 80 @@ -68874,10 +69262,10 @@ export default { }, "player_kills_sum_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -68888,13 +69276,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68903,13 +69291,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3415 + 3444 ], "_set": [ - 3428 + 3457 ], "where": [ - 3372 + 3401 ], "__typename": [ 80 @@ -68931,13 +69319,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68959,13 +69347,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -68987,13 +69375,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -69010,7 +69398,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69018,10 +69406,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3449 + 3478 ], "nodes": [ - 3447 + 3476 ], "__typename": [ 80 @@ -69029,13 +69417,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3450 + 3479 ], "count": [ 40, { "columns": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -69044,31 +69432,31 @@ export default { } ], "max": [ - 3454 + 3483 ], "min": [ - 3455 + 3484 ], "stddev": [ - 3460 + 3489 ], "stddev_pop": [ - 3461 + 3490 ], "stddev_samp": [ - 3462 + 3491 ], "sum": [ - 3465 + 3494 ], "var_pop": [ - 3467 + 3496 ], "var_samp": [ - 3468 + 3497 ], "variance": [ - 3469 + 3498 ], "__typename": [ 80 @@ -69090,13 +69478,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3451 + 3480 ], "_not": [ - 3451 + 3480 ], "_or": [ - 3451 + 3480 ], "player_steam_id": [ 82 @@ -69108,7 +69496,7 @@ export default { 41 ], "value": [ - 1690 + 1692 ], "__typename": [ 80 @@ -69122,7 +69510,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69139,7 +69527,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69156,7 +69544,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69173,7 +69561,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69184,7 +69572,7 @@ export default { 40 ], "returning": [ - 3447 + 3476 ], "__typename": [ 80 @@ -69192,16 +69580,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "total": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -69219,7 +69607,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69269,10 +69657,10 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3464 + 3493 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -69289,7 +69677,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69303,7 +69691,7 @@ export default { 40 ], "value": [ - 1689 + 1691 ], "__typename": [ 80 @@ -69311,13 +69699,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3452 + 3481 ], "_set": [ - 3459 + 3488 ], "where": [ - 3451 + 3480 ], "__typename": [ 80 @@ -69385,7 +69773,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -69427,7 +69815,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -69481,16 +69869,16 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -69505,7 +69893,7 @@ export default { 40 ], "player": [ - 3964 + 3993 ], "rounds_ct": [ 40 @@ -69538,7 +69926,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -69553,7 +69941,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -69583,7 +69971,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -69603,10 +69991,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3474 + 3503 ], "nodes": [ - 3470 + 3499 ], "__typename": [ 80 @@ -69614,7 +70002,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3473 + 3502 ], "__typename": [ 80 @@ -69622,13 +70010,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3491 + 3520 ], "distinct": [ 5 ], "filter": [ - 3479 + 3508 ], "predicate": [ 41 @@ -69639,13 +70027,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3477 + 3506 ], "count": [ 40, { "columns": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -69654,31 +70042,31 @@ export default { } ], "max": [ - 3483 + 3512 ], "min": [ - 3485 + 3514 ], "stddev": [ - 3493 + 3522 ], "stddev_pop": [ - 3495 + 3524 ], "stddev_samp": [ - 3497 + 3526 ], "sum": [ - 3501 + 3530 ], "var_pop": [ - 3505 + 3534 ], "var_samp": [ - 3507 + 3536 ], "variance": [ - 3509 + 3538 ], "__typename": [ 80 @@ -69686,37 +70074,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3478 + 3507 ], "count": [ - 3006 + 3035 ], "max": [ - 3484 + 3513 ], "min": [ - 3486 + 3515 ], "stddev": [ - 3494 + 3523 ], "stddev_pop": [ - 3496 + 3525 ], "stddev_samp": [ - 3498 + 3527 ], "sum": [ - 3502 + 3531 ], "var_pop": [ - 3506 + 3535 ], "var_samp": [ - 3508 + 3537 ], "variance": [ - 3510 + 3539 ], "__typename": [ 80 @@ -69724,10 +70112,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3482 + 3511 ], "on_conflict": [ - 3488 + 3517 ], "__typename": [ 80 @@ -69953,217 +70341,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -70171,13 +70559,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3479 + 3508 ], "_not": [ - 3479 + 3508 ], "_or": [ - 3479 + 3508 ], "assists": [ 41 @@ -70198,7 +70586,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3005 + 3034 ], "damage": [ 41 @@ -70240,7 +70628,7 @@ export default { 41 ], "flash_duration_sum": [ - 3005 + 3034 ], "flashes_thrown": [ 41 @@ -70294,16 +70682,16 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "molotov_damage": [ 41 @@ -70318,7 +70706,7 @@ export default { 41 ], "player": [ - 3968 + 3997 ], "rounds_ct": [ 41 @@ -70351,7 +70739,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "team_damage": [ 41 @@ -70366,7 +70754,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3005 + 3034 ], "total_engagement_frames": [ 41 @@ -70396,7 +70784,7 @@ export default { 41 ], "updated_at": [ - 4554 + 4610 ], "util_on_death_count": [ 41 @@ -70435,7 +70823,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -70477,7 +70865,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -70573,7 +70961,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -70588,7 +70976,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -70653,7 +71041,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -70695,7 +71083,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -70749,16 +71137,16 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -70773,7 +71161,7 @@ export default { 40 ], "player": [ - 3975 + 4004 ], "rounds_ct": [ 40 @@ -70806,7 +71194,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -70821,7 +71209,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -70851,7 +71239,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -70889,7 +71277,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -70931,7 +71319,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -70985,10 +71373,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -71033,7 +71421,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -71048,7 +71436,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -71078,7 +71466,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -71098,226 +71486,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -71343,7 +71731,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -71385,7 +71773,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -71439,10 +71827,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -71487,7 +71875,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -71502,7 +71890,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -71532,7 +71920,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -71552,226 +71940,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -71782,7 +72170,7 @@ export default { 40 ], "returning": [ - 3470 + 3499 ], "__typename": [ 80 @@ -71790,13 +72178,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3480 + 3509 ], "update_columns": [ - 3503 + 3532 ], "where": [ - 3479 + 3508 ], "__typename": [ 80 @@ -71804,235 +72192,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -72040,10 +72428,10 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -72070,7 +72458,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -72112,7 +72500,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -72166,10 +72554,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -72214,7 +72602,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -72229,7 +72617,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -72259,7 +72647,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -72497,217 +72885,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -72933,217 +73321,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -73369,217 +73757,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -73587,10 +73975,10 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3500 + 3529 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -73616,7 +74004,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -73658,7 +74046,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -73712,10 +74100,10 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -73760,7 +74148,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -73775,7 +74163,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -73805,7 +74193,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "util_on_death_count": [ 40 @@ -73843,7 +74231,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3004 + 3033 ], "damage": [ 40 @@ -73885,7 +74273,7 @@ export default { 40 ], "flash_duration_sum": [ - 3004 + 3033 ], "flashes_thrown": [ 40 @@ -73981,7 +74369,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -73996,7 +74384,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3004 + 3033 ], "total_engagement_frames": [ 40 @@ -74043,217 +74431,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -74262,13 +74650,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3481 + 3510 ], "_set": [ - 3492 + 3521 ], "where": [ - 3479 + 3508 ], "__typename": [ 80 @@ -74494,217 +74882,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -74930,217 +75318,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -75366,217 +75754,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "crosshair_angle_count": [ - 3006 + 3035 ], "crosshair_angle_sum_deg": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flash_duration_count": [ - 3006 + 3035 ], "flash_duration_sum": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kast_rounds": [ - 3006 + 3035 ], "kast_total_rounds": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "time_to_damage_count": [ - 3006 + 3035 ], "time_to_damage_sum_s": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "util_on_death_count": [ - 3006 + 3035 ], "util_on_death_sum": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -75584,40 +75972,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "aim_rating": [ - 1689 + 1691 ], "counter_strafe_pct": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "overall_rating": [ - 1689 + 1691 ], "played_at": [ - 4553 + 4609 ], "positioning_rating": [ - 1689 + 1691 ], "rounds": [ 40 @@ -75626,19 +76014,19 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -75646,10 +76034,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3513 + 3542 ], "nodes": [ - 3511 + 3540 ], "__typename": [ 80 @@ -75657,13 +76045,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3514 + 3543 ], "count": [ 40, { "columns": [ - 3519, + 3548, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -75672,31 +76060,31 @@ export default { } ], "max": [ - 3516 + 3545 ], "min": [ - 3517 + 3546 ], "stddev": [ - 3520 + 3549 ], "stddev_pop": [ - 3521 + 3550 ], "stddev_samp": [ - 3522 + 3551 ], "sum": [ - 3525 + 3554 ], "var_pop": [ - 3526 + 3555 ], "var_samp": [ - 3527 + 3556 ], "variance": [ - 3528 + 3557 ], "__typename": [ 80 @@ -75757,49 +76145,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3515 + 3544 ], "_not": [ - 3515 + 3544 ], "_or": [ - 3515 + 3544 ], "accuracy": [ - 3005 + 3034 ], "accuracy_spotted": [ - 3005 + 3034 ], "aim_rating": [ - 1690 + 1692 ], "counter_strafe_pct": [ - 3005 + 3034 ], "enemy_blind_pr": [ - 3005 + 3034 ], "flash_assists_pr": [ - 3005 + 3034 ], "hs_pct": [ - 3005 + 3034 ], "kast_pct": [ - 3005 + 3034 ], "match_id": [ - 5055 + 5111 ], "overall_rating": [ - 1690 + 1692 ], "played_at": [ - 4554 + 4610 ], "positioning_rating": [ - 1690 + 1692 ], "rounds": [ 41 @@ -75808,19 +76196,19 @@ export default { 82 ], "steam_id": [ - 259 + 261 ], "survival_pct": [ - 3005 + 3034 ], "traded_death_pct": [ - 3005 + 3034 ], "util_efficiency": [ - 3005 + 3034 ], "utility_rating": [ - 1690 + 1692 ], "__typename": [ 80 @@ -75828,40 +76216,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "aim_rating": [ - 1689 + 1691 ], "counter_strafe_pct": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "overall_rating": [ - 1689 + 1691 ], "played_at": [ - 4553 + 4609 ], "positioning_rating": [ - 1689 + 1691 ], "rounds": [ 40 @@ -75870,19 +76258,19 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -75890,40 +76278,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "aim_rating": [ - 1689 + 1691 ], "counter_strafe_pct": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "overall_rating": [ - 1689 + 1691 ], "played_at": [ - 4553 + 4609 ], "positioning_rating": [ - 1689 + 1691 ], "rounds": [ 40 @@ -75932,19 +76320,19 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -75952,61 +76340,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 3006 + 3035 ], "accuracy_spotted": [ - 3006 + 3035 ], "aim_rating": [ - 3006 + 3035 ], "counter_strafe_pct": [ - 3006 + 3035 ], "enemy_blind_pr": [ - 3006 + 3035 ], "flash_assists_pr": [ - 3006 + 3035 ], "hs_pct": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "overall_rating": [ - 3006 + 3035 ], "played_at": [ - 3006 + 3035 ], "positioning_rating": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "survival_pct": [ - 3006 + 3035 ], "traded_death_pct": [ - 3006 + 3035 ], "util_efficiency": [ - 3006 + 3035 ], "utility_rating": [ - 3006 + 3035 ], "__typename": [ 80 @@ -76174,10 +76562,10 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3524 + 3553 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -76185,40 +76573,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "aim_rating": [ - 1689 + 1691 ], "counter_strafe_pct": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "overall_rating": [ - 1689 + 1691 ], "played_at": [ - 4553 + 4609 ], "positioning_rating": [ - 1689 + 1691 ], "rounds": [ 40 @@ -76227,19 +76615,19 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -76247,52 +76635,52 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3004 + 3033 ], "accuracy_spotted": [ - 3004 + 3033 ], "aim_rating": [ - 1689 + 1691 ], "counter_strafe_pct": [ - 3004 + 3033 ], "enemy_blind_pr": [ - 3004 + 3033 ], "flash_assists_pr": [ - 3004 + 3033 ], "hs_pct": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "overall_rating": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "rounds": [ 40 ], "steam_id": [ - 257 + 259 ], "survival_pct": [ - 3004 + 3033 ], "traded_death_pct": [ - 3004 + 3033 ], "util_efficiency": [ - 3004 + 3033 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -76468,13 +76856,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -76564,7 +76952,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -76609,7 +76997,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -76648,7 +77036,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -76662,10 +77050,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3533 + 3562 ], "nodes": [ - 3529 + 3558 ], "__typename": [ 80 @@ -76673,7 +77061,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3532 + 3561 ], "__typename": [ 80 @@ -76681,13 +77069,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3545 + 3574 ], "distinct": [ 5 ], "filter": [ - 3538 + 3567 ], "predicate": [ 41 @@ -76698,13 +77086,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3536 + 3565 ], "count": [ 40, { "columns": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -76713,31 +77101,31 @@ export default { } ], "max": [ - 3540 + 3569 ], "min": [ - 3542 + 3571 ], "stddev": [ - 3546 + 3575 ], "stddev_pop": [ - 3548 + 3577 ], "stddev_samp": [ - 3550 + 3579 ], "sum": [ - 3554 + 3583 ], "var_pop": [ - 3556 + 3585 ], "var_samp": [ - 3558 + 3587 ], "variance": [ - 3560 + 3589 ], "__typename": [ 80 @@ -76745,37 +77133,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3537 + 3566 ], "count": [ - 3006 + 3035 ], "max": [ - 3541 + 3570 ], "min": [ - 3543 + 3572 ], "stddev": [ - 3547 + 3576 ], "stddev_pop": [ - 3549 + 3578 ], "stddev_samp": [ - 3551 + 3580 ], "sum": [ - 3555 + 3584 ], "var_pop": [ - 3557 + 3586 ], "var_samp": [ - 3559 + 3588 ], "variance": [ - 3561 + 3590 ], "__typename": [ 80 @@ -76783,7 +77171,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3539 + 3568 ], "__typename": [ 80 @@ -76991,199 +77379,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -77191,13 +77579,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3538 + 3567 ], "_not": [ - 3538 + 3567 ], "_or": [ - 3538 + 3567 ], "assists": [ 41 @@ -77209,13 +77597,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3005 + 3034 ], "avg_flash_duration": [ - 3005 + 3034 ], "avg_time_to_damage_s": [ - 3005 + 3034 ], "counter_strafe_eligible_shots": [ 41 @@ -77305,7 +77693,7 @@ export default { 41 ], "match_id": [ - 5055 + 5111 ], "molotov_damage": [ 41 @@ -77350,7 +77738,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "team_damage": [ 41 @@ -77389,7 +77777,7 @@ export default { 41 ], "utility_on_death": [ - 3005 + 3034 ], "wasted_magazine_shots": [ 41 @@ -77412,13 +77800,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -77508,7 +77896,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -77553,7 +77941,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -77592,7 +77980,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -77615,13 +78003,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -77711,7 +78099,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -77756,7 +78144,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -77795,7 +78183,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -77809,202 +78197,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -78021,13 +78409,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -78117,7 +78505,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -78162,7 +78550,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -78201,7 +78589,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -78215,202 +78603,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -78418,202 +78806,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -78822,199 +79210,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -79222,199 +79610,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -79622,199 +80010,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -79822,10 +80210,10 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3553 + 3582 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -79842,13 +80230,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -79938,7 +80326,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "molotov_damage": [ 40 @@ -79983,7 +80371,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -80022,7 +80410,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -80045,13 +80433,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3004 + 3033 ], "avg_flash_duration": [ - 3004 + 3033 ], "avg_time_to_damage_s": [ - 3004 + 3033 ], "counter_strafe_eligible_shots": [ 40 @@ -80183,7 +80571,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "team_damage": [ 40 @@ -80222,7 +80610,7 @@ export default { 40 ], "utility_on_death": [ - 3004 + 3033 ], "wasted_magazine_shots": [ 40 @@ -80236,199 +80624,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -80636,199 +81024,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -81036,199 +81424,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -81436,199 +81824,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 3006 + 3035 ], "assists_ct": [ - 3006 + 3035 ], "assists_t": [ - 3006 + 3035 ], "avg_crosshair_angle_deg": [ - 3006 + 3035 ], "avg_flash_duration": [ - 3006 + 3035 ], "avg_time_to_damage_s": [ - 3006 + 3035 ], "counter_strafe_eligible_shots": [ - 3006 + 3035 ], "counter_strafed_shots": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_ct": [ - 3006 + 3035 ], "damage_t": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "deaths_ct": [ - 3006 + 3035 ], "deaths_t": [ - 3006 + 3035 ], "decoy_throws": [ - 3006 + 3035 ], "enemies_flashed": [ - 3006 + 3035 ], "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "five_kill_rounds": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "flashes_thrown": [ - 3006 + 3035 ], "four_kill_rounds": [ - 3006 + 3035 ], "he_damage": [ - 3006 + 3035 ], "he_team_damage": [ - 3006 + 3035 ], "he_throws": [ - 3006 + 3035 ], "headshot_hits": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_at_spotted": [ - 3006 + 3035 ], "hs_kills": [ - 3006 + 3035 ], "hs_kills_ct": [ - 3006 + 3035 ], "hs_kills_t": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kills_ct": [ - 3006 + 3035 ], "kills_t": [ - 3006 + 3035 ], "knife_kills": [ - 3006 + 3035 ], "molotov_damage": [ - 3006 + 3035 ], "molotov_throws": [ - 3006 + 3035 ], "non_awp_hits": [ - 3006 + 3035 ], "on_target_frames": [ - 3006 + 3035 ], "rounds_ct": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "rounds_t": [ - 3006 + 3035 ], "shots_at_spotted": [ - 3006 + 3035 ], "shots_fired": [ - 3006 + 3035 ], "smoke_throws": [ - 3006 + 3035 ], "spotted_count": [ - 3006 + 3035 ], "spotted_with_damage_count": [ - 3006 + 3035 ], "spray_hits": [ - 3006 + 3035 ], "spray_shots": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_damage": [ - 3006 + 3035 ], "team_flashed": [ - 3006 + 3035 ], "three_kill_rounds": [ - 3006 + 3035 ], "total_engagement_frames": [ - 3006 + 3035 ], "trade_kill_attempts": [ - 3006 + 3035 ], "trade_kill_opportunities": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_attempts": [ - 3006 + 3035 ], "traded_death_opportunities": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "two_kill_rounds": [ - 3006 + 3035 ], "unused_utility_value": [ - 3006 + 3035 ], "utility_on_death": [ - 3006 + 3035 ], "wasted_magazine_shots": [ - 3006 + 3035 ], "zeus_kills": [ - 3006 + 3035 ], "__typename": [ 80 @@ -81636,34 +82024,34 @@ export default { }, "player_objectives": { "deleted_at": [ - 4553 + 4609 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1070 + 1072 ], "__typename": [ 80 @@ -81671,10 +82059,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3566 + 3595 ], "nodes": [ - 3562 + 3591 ], "__typename": [ 80 @@ -81682,7 +82070,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3565 + 3594 ], "__typename": [ 80 @@ -81690,13 +82078,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3583 + 3612 ], "distinct": [ 5 ], "filter": [ - 3571 + 3600 ], "predicate": [ 41 @@ -81707,13 +82095,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3569 + 3598 ], "count": [ 40, { "columns": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "distinct": [ @@ -81722,31 +82110,31 @@ export default { } ], "max": [ - 3575 + 3604 ], "min": [ - 3577 + 3606 ], "stddev": [ - 3585 + 3614 ], "stddev_pop": [ - 3587 + 3616 ], "stddev_samp": [ - 3589 + 3618 ], "sum": [ - 3593 + 3622 ], "var_pop": [ - 3597 + 3626 ], "var_samp": [ - 3599 + 3628 ], "variance": [ - 3601 + 3630 ], "__typename": [ 80 @@ -81754,37 +82142,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3570 + 3599 ], "count": [ - 3006 + 3035 ], "max": [ - 3576 + 3605 ], "min": [ - 3578 + 3607 ], "stddev": [ - 3586 + 3615 ], "stddev_pop": [ - 3588 + 3617 ], "stddev_samp": [ - 3590 + 3619 ], "sum": [ - 3594 + 3623 ], "var_pop": [ - 3598 + 3627 ], "var_samp": [ - 3600 + 3629 ], "variance": [ - 3602 + 3631 ], "__typename": [ 80 @@ -81792,10 +82180,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3574 + 3603 ], "on_conflict": [ - 3580 + 3609 ], "__typename": [ 80 @@ -81814,10 +82202,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -81825,43 +82213,43 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3571 + 3600 ], "_not": [ - 3571 + 3600 ], "_or": [ - 3571 + 3600 ], "deleted_at": [ - 4554 + 4610 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "round": [ 41 ], "time": [ - 4554 + 4610 ], "type": [ - 1071 + 1073 ], "__typename": [ 80 @@ -81870,7 +82258,7 @@ export default { "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -81881,34 +82269,34 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4553 + 4609 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1070 + 1072 ], "__typename": [ 80 @@ -81916,22 +82304,22 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -81939,22 +82327,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -81962,22 +82350,22 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -81985,22 +82373,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82011,7 +82399,7 @@ export default { 40 ], "returning": [ - 3562 + 3591 ], "__typename": [ 80 @@ -82019,13 +82407,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3572 + 3601 ], "update_columns": [ - 3595 + 3624 ], "where": [ - 3571 + 3600 ], "__typename": [ 80 @@ -82033,34 +82421,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82068,13 +82456,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -82083,25 +82471,25 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1070 + 1072 ], "__typename": [ 80 @@ -82120,10 +82508,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82142,10 +82530,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82164,10 +82552,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82175,10 +82563,10 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3592 + 3621 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -82186,25 +82574,25 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1070 + 1072 ], "__typename": [ 80 @@ -82212,7 +82600,7 @@ export default { }, "player_objectives_sum_fields": { "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -82223,10 +82611,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82235,13 +82623,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3573 + 3602 ], "_set": [ - 3584 + 3613 ], "where": [ - 3571 + 3600 ], "__typename": [ 80 @@ -82260,10 +82648,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82282,10 +82670,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82304,10 +82692,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -82315,46 +82703,46 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1689 + 1691 ], "aim_goal": [ - 1689 + 1691 ], "aim_rating": [ - 1689 + 1691 ], "band": [ 40 ], "band_sample": [ - 257 + 259 ], "blind_score": [ - 1689 + 1691 ], "counter_strafe_score": [ - 1689 + 1691 ], "crosshair_score": [ - 1689 + 1691 ], "flash_assists_score": [ - 1689 + 1691 ], "hs_score": [ - 1689 + 1691 ], "kast_score": [ - 1689 + 1691 ], "maps": [ 40 ], "positioning_goal": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "premier_rank": [ 40 @@ -82363,28 +82751,28 @@ export default { 40 ], "spotted_score": [ - 1689 + 1691 ], "steam_id": [ - 257 + 259 ], "survival_score": [ - 1689 + 1691 ], "traded_score": [ - 1689 + 1691 ], "ttd_score": [ - 1689 + 1691 ], "util_eff_score": [ - 1689 + 1691 ], "utility_goal": [ - 1689 + 1691 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -82392,10 +82780,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3605 + 3634 ], "nodes": [ - 3603 + 3632 ], "__typename": [ 80 @@ -82403,13 +82791,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3606 + 3635 ], "count": [ 40, { "columns": [ - 3611, + 3640, "[player_performance_v_select_column!]" ], "distinct": [ @@ -82418,31 +82806,31 @@ export default { } ], "max": [ - 3608 + 3637 ], "min": [ - 3609 + 3638 ], "stddev": [ - 3612 + 3641 ], "stddev_pop": [ - 3613 + 3642 ], "stddev_samp": [ - 3614 + 3643 ], "sum": [ - 3617 + 3646 ], "var_pop": [ - 3618 + 3647 ], "var_samp": [ - 3619 + 3648 ], "variance": [ - 3620 + 3649 ], "__typename": [ 80 @@ -82527,55 +82915,55 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3607 + 3636 ], "_not": [ - 3607 + 3636 ], "_or": [ - 3607 + 3636 ], "accuracy_score": [ - 1690 + 1692 ], "aim_goal": [ - 1690 + 1692 ], "aim_rating": [ - 1690 + 1692 ], "band": [ 41 ], "band_sample": [ - 259 + 261 ], "blind_score": [ - 1690 + 1692 ], "counter_strafe_score": [ - 1690 + 1692 ], "crosshair_score": [ - 1690 + 1692 ], "flash_assists_score": [ - 1690 + 1692 ], "hs_score": [ - 1690 + 1692 ], "kast_score": [ - 1690 + 1692 ], "maps": [ 41 ], "positioning_goal": [ - 1690 + 1692 ], "positioning_rating": [ - 1690 + 1692 ], "premier_rank": [ 41 @@ -82584,28 +82972,28 @@ export default { 41 ], "spotted_score": [ - 1690 + 1692 ], "steam_id": [ - 259 + 261 ], "survival_score": [ - 1690 + 1692 ], "traded_score": [ - 1690 + 1692 ], "ttd_score": [ - 1690 + 1692 ], "util_eff_score": [ - 1690 + 1692 ], "utility_goal": [ - 1690 + 1692 ], "utility_rating": [ - 1690 + 1692 ], "__typename": [ 80 @@ -82613,46 +83001,46 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1689 + 1691 ], "aim_goal": [ - 1689 + 1691 ], "aim_rating": [ - 1689 + 1691 ], "band": [ 40 ], "band_sample": [ - 257 + 259 ], "blind_score": [ - 1689 + 1691 ], "counter_strafe_score": [ - 1689 + 1691 ], "crosshair_score": [ - 1689 + 1691 ], "flash_assists_score": [ - 1689 + 1691 ], "hs_score": [ - 1689 + 1691 ], "kast_score": [ - 1689 + 1691 ], "maps": [ 40 ], "positioning_goal": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "premier_rank": [ 40 @@ -82661,28 +83049,28 @@ export default { 40 ], "spotted_score": [ - 1689 + 1691 ], "steam_id": [ - 257 + 259 ], "survival_score": [ - 1689 + 1691 ], "traded_score": [ - 1689 + 1691 ], "ttd_score": [ - 1689 + 1691 ], "util_eff_score": [ - 1689 + 1691 ], "utility_goal": [ - 1689 + 1691 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -82690,46 +83078,46 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1689 + 1691 ], "aim_goal": [ - 1689 + 1691 ], "aim_rating": [ - 1689 + 1691 ], "band": [ 40 ], "band_sample": [ - 257 + 259 ], "blind_score": [ - 1689 + 1691 ], "counter_strafe_score": [ - 1689 + 1691 ], "crosshair_score": [ - 1689 + 1691 ], "flash_assists_score": [ - 1689 + 1691 ], "hs_score": [ - 1689 + 1691 ], "kast_score": [ - 1689 + 1691 ], "maps": [ 40 ], "positioning_goal": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "premier_rank": [ 40 @@ -82738,28 +83126,28 @@ export default { 40 ], "spotted_score": [ - 1689 + 1691 ], "steam_id": [ - 257 + 259 ], "survival_score": [ - 1689 + 1691 ], "traded_score": [ - 1689 + 1691 ], "ttd_score": [ - 1689 + 1691 ], "util_eff_score": [ - 1689 + 1691 ], "utility_goal": [ - 1689 + 1691 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -82767,76 +83155,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 3006 + 3035 ], "aim_goal": [ - 3006 + 3035 ], "aim_rating": [ - 3006 + 3035 ], "band": [ - 3006 + 3035 ], "band_sample": [ - 3006 + 3035 ], "blind_score": [ - 3006 + 3035 ], "counter_strafe_score": [ - 3006 + 3035 ], "crosshair_score": [ - 3006 + 3035 ], "flash_assists_score": [ - 3006 + 3035 ], "hs_score": [ - 3006 + 3035 ], "kast_score": [ - 3006 + 3035 ], "maps": [ - 3006 + 3035 ], "positioning_goal": [ - 3006 + 3035 ], "positioning_rating": [ - 3006 + 3035 ], "premier_rank": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "spotted_score": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "survival_score": [ - 3006 + 3035 ], "traded_score": [ - 3006 + 3035 ], "ttd_score": [ - 3006 + 3035 ], "util_eff_score": [ - 3006 + 3035 ], "utility_goal": [ - 3006 + 3035 ], "utility_rating": [ - 3006 + 3035 ], "__typename": [ 80 @@ -83076,10 +83464,10 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3616 + 3645 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -83087,46 +83475,46 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1689 + 1691 ], "aim_goal": [ - 1689 + 1691 ], "aim_rating": [ - 1689 + 1691 ], "band": [ 40 ], "band_sample": [ - 257 + 259 ], "blind_score": [ - 1689 + 1691 ], "counter_strafe_score": [ - 1689 + 1691 ], "crosshair_score": [ - 1689 + 1691 ], "flash_assists_score": [ - 1689 + 1691 ], "hs_score": [ - 1689 + 1691 ], "kast_score": [ - 1689 + 1691 ], "maps": [ 40 ], "positioning_goal": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "premier_rank": [ 40 @@ -83135,28 +83523,28 @@ export default { 40 ], "spotted_score": [ - 1689 + 1691 ], "steam_id": [ - 257 + 259 ], "survival_score": [ - 1689 + 1691 ], "traded_score": [ - 1689 + 1691 ], "ttd_score": [ - 1689 + 1691 ], "util_eff_score": [ - 1689 + 1691 ], "utility_goal": [ - 1689 + 1691 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -83164,46 +83552,46 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1689 + 1691 ], "aim_goal": [ - 1689 + 1691 ], "aim_rating": [ - 1689 + 1691 ], "band": [ 40 ], "band_sample": [ - 257 + 259 ], "blind_score": [ - 1689 + 1691 ], "counter_strafe_score": [ - 1689 + 1691 ], "crosshair_score": [ - 1689 + 1691 ], "flash_assists_score": [ - 1689 + 1691 ], "hs_score": [ - 1689 + 1691 ], "kast_score": [ - 1689 + 1691 ], "maps": [ 40 ], "positioning_goal": [ - 1689 + 1691 ], "positioning_rating": [ - 1689 + 1691 ], "premier_rank": [ 40 @@ -83212,28 +83600,28 @@ export default { 40 ], "spotted_score": [ - 1689 + 1691 ], "steam_id": [ - 257 + 259 ], "survival_score": [ - 1689 + 1691 ], "traded_score": [ - 1689 + 1691 ], "ttd_score": [ - 1689 + 1691 ], "util_eff_score": [ - 1689 + 1691 ], "utility_goal": [ - 1689 + 1691 ], "utility_rating": [ - 1689 + 1691 ], "__typename": [ 80 @@ -83472,25 +83860,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 5053 + 5109 ], "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "player": [ - 3964 + 3993 ], "previous_rank": [ 40 @@ -83502,7 +83890,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -83510,10 +83898,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3625 + 3654 ], "nodes": [ - 3621 + 3650 ], "__typename": [ 80 @@ -83521,7 +83909,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3624 + 3653 ], "__typename": [ 80 @@ -83529,13 +83917,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3642 + 3671 ], "distinct": [ 5 ], "filter": [ - 3630 + 3659 ], "predicate": [ 41 @@ -83546,13 +83934,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3628 + 3657 ], "count": [ 40, { "columns": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -83561,31 +83949,31 @@ export default { } ], "max": [ - 3634 + 3663 ], "min": [ - 3636 + 3665 ], "stddev": [ - 3644 + 3673 ], "stddev_pop": [ - 3646 + 3675 ], "stddev_samp": [ - 3648 + 3677 ], "sum": [ - 3652 + 3681 ], "var_pop": [ - 3656 + 3685 ], "var_samp": [ - 3658 + 3687 ], "variance": [ - 3660 + 3689 ], "__typename": [ 80 @@ -83593,37 +83981,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3629 + 3658 ], "count": [ - 3006 + 3035 ], "max": [ - 3635 + 3664 ], "min": [ - 3637 + 3666 ], "stddev": [ - 3645 + 3674 ], "stddev_pop": [ - 3647 + 3676 ], "stddev_samp": [ - 3649 + 3678 ], "sum": [ - 3653 + 3682 ], "var_pop": [ - 3657 + 3686 ], "var_samp": [ - 3659 + 3688 ], "variance": [ - 3661 + 3690 ], "__typename": [ 80 @@ -83631,10 +84019,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3633 + 3662 ], "on_conflict": [ - 3639 + 3668 ], "__typename": [ 80 @@ -83659,16 +84047,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -83676,34 +84064,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3630 + 3659 ], "_not": [ - 3630 + 3659 ], "_or": [ - 3630 + 3659 ], "id": [ - 5055 + 5111 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "observed_at": [ - 4554 + 4610 ], "player": [ - 3968 + 3997 ], "previous_rank": [ 41 @@ -83715,7 +84103,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -83733,7 +84121,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -83741,25 +84129,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 5053 + 5109 ], "map": [ - 2321 + 2323 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "player": [ - 3975 + 4004 ], "previous_rank": [ 40 @@ -83771,7 +84159,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -83779,16 +84167,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -83800,7 +84188,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -83808,28 +84196,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -83837,16 +84225,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -83858,7 +84246,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -83866,28 +84254,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 3006 + 3035 ], "map_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -83898,7 +84286,7 @@ export default { 40 ], "returning": [ - 3621 + 3650 ], "__typename": [ 80 @@ -83906,13 +84294,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3631 + 3660 ], "update_columns": [ - 3654 + 3683 ], "where": [ - 3630 + 3659 ], "__typename": [ 80 @@ -83920,37 +84308,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 3006 + 3035 ], "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "observed_at": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -83958,7 +84346,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -83967,16 +84355,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -83988,7 +84376,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84013,16 +84401,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84047,16 +84435,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84081,16 +84469,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84098,10 +84486,10 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3651 + 3680 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -84109,16 +84497,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5053 + 5109 ], "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "observed_at": [ - 4553 + 4609 ], "previous_rank": [ 40 @@ -84130,7 +84518,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84147,7 +84535,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84155,16 +84543,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84173,13 +84561,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3632 + 3661 ], "_set": [ - 3643 + 3672 ], "where": [ - 3630 + 3659 ], "__typename": [ 80 @@ -84204,16 +84592,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84238,16 +84626,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84272,16 +84660,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rank_type": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84289,37 +84677,37 @@ export default { }, "player_sanctions": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "e_sanction_type": [ - 1145 + 1147 ], "id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by": [ - 3964 + 3993 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "type": [ - 1150 + 1152 ], "__typename": [ 80 @@ -84327,10 +84715,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3666 + 3695 ], "nodes": [ - 3662 + 3691 ], "__typename": [ 80 @@ -84338,7 +84726,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3665 + 3694 ], "__typename": [ 80 @@ -84346,13 +84734,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3683 + 3712 ], "distinct": [ 5 ], "filter": [ - 3671 + 3700 ], "predicate": [ 41 @@ -84363,13 +84751,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3669 + 3698 ], "count": [ 40, { "columns": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "distinct": [ @@ -84378,31 +84766,31 @@ export default { } ], "max": [ - 3675 + 3704 ], "min": [ - 3677 + 3706 ], "stddev": [ - 3685 + 3714 ], "stddev_pop": [ - 3687 + 3716 ], "stddev_samp": [ - 3689 + 3718 ], "sum": [ - 3693 + 3722 ], "var_pop": [ - 3697 + 3726 ], "var_samp": [ - 3699 + 3728 ], "variance": [ - 3701 + 3730 ], "__typename": [ 80 @@ -84410,37 +84798,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3670 + 3699 ], "count": [ - 3006 + 3035 ], "max": [ - 3676 + 3705 ], "min": [ - 3678 + 3707 ], "stddev": [ - 3686 + 3715 ], "stddev_pop": [ - 3688 + 3717 ], "stddev_samp": [ - 3690 + 3719 ], "sum": [ - 3694 + 3723 ], "var_pop": [ - 3698 + 3727 ], "var_samp": [ - 3700 + 3729 ], "variance": [ - 3702 + 3731 ], "__typename": [ 80 @@ -84448,10 +84836,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3674 + 3703 ], "on_conflict": [ - 3680 + 3709 ], "__typename": [ 80 @@ -84470,10 +84858,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84481,46 +84869,46 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3671 + 3700 ], "_not": [ - 3671 + 3700 ], "_or": [ - 3671 + 3700 ], "created_at": [ - 4554 + 4610 ], "deleted_at": [ - 4554 + 4610 ], "e_sanction_type": [ - 1148 + 1150 ], "id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "reason": [ 82 ], "remove_sanction_date": [ - 4554 + 4610 ], "sanctioned_by": [ - 3968 + 3997 ], "sanctioned_by_steam_id": [ - 259 + 261 ], "type": [ - 1151 + 1153 ], "__typename": [ 80 @@ -84529,10 +84917,10 @@ export default { "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 257 + 259 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84540,37 +84928,37 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "e_sanction_type": [ - 1156 + 1158 ], "id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by": [ - 3975 + 4004 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "type": [ - 1150 + 1152 ], "__typename": [ 80 @@ -84578,25 +84966,25 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84604,25 +84992,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "reason": [ - 3006 + 3035 ], "remove_sanction_date": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84630,25 +85018,25 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84656,25 +85044,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "reason": [ - 3006 + 3035 ], "remove_sanction_date": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84685,7 +85073,7 @@ export default { 40 ], "returning": [ - 3662 + 3691 ], "__typename": [ 80 @@ -84693,13 +85081,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3672 + 3701 ], "update_columns": [ - 3695 + 3724 ], "where": [ - 3671 + 3700 ], "__typename": [ 80 @@ -84707,37 +85095,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "e_sanction_type": [ - 1158 + 1160 ], "id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "reason": [ - 3006 + 3035 ], "remove_sanction_date": [ - 3006 + 3035 ], "sanctioned_by": [ - 3977 + 4006 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84745,10 +85133,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -84757,28 +85145,28 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "type": [ - 1150 + 1152 ], "__typename": [ 80 @@ -84797,10 +85185,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84819,10 +85207,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84841,10 +85229,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84852,10 +85240,10 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3692 + 3721 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -84863,28 +85251,28 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "deleted_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "reason": [ 80 ], "remove_sanction_date": [ - 4553 + 4609 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "type": [ - 1150 + 1152 ], "__typename": [ 80 @@ -84892,10 +85280,10 @@ export default { }, "player_sanctions_sum_fields": { "player_steam_id": [ - 257 + 259 ], "sanctioned_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -84903,10 +85291,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84915,13 +85303,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3673 + 3702 ], "_set": [ - 3684 + 3713 ], "where": [ - 3671 + 3700 ], "__typename": [ 80 @@ -84940,10 +85328,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84962,10 +85350,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84984,10 +85372,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "sanctioned_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -84995,31 +85383,31 @@ export default { }, "player_season_stats": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "season": [ - 4023 + 4079 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85027,10 +85415,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3717 + 3746 ], "nodes": [ - 3703 + 3732 ], "__typename": [ 80 @@ -85038,31 +85426,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3706 + 3735 ], "corr": [ - 3707 + 3736 ], "count": [ - 3709 + 3738 ], "covar_samp": [ - 3710 + 3739 ], "max": [ - 3712 + 3741 ], "min": [ - 3713 + 3742 ], "stddev_samp": [ - 3714 + 3743 ], "sum": [ - 3715 + 3744 ], "var_samp": [ - 3716 + 3745 ], "__typename": [ 80 @@ -85070,16 +85458,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3735 + 3764 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85087,16 +85475,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3708 + 3737 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85104,10 +85492,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3736 + 3765 ], "Y": [ - 3736 + 3765 ], "__typename": [ 80 @@ -85115,13 +85503,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3734 + 3763 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ 41 @@ -85132,16 +85520,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3711 + 3740 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85149,10 +85537,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3737 + 3766 ], "Y": [ - 3737 + 3766 ], "__typename": [ 80 @@ -85160,16 +85548,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3738 + 3767 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85177,16 +85565,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3739 + 3768 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85194,16 +85582,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3740 + 3769 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85211,16 +85599,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3741 + 3770 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85228,16 +85616,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3742 + 3771 ], "distinct": [ 5 ], "filter": [ - 3722 + 3751 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -85245,13 +85633,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3720 + 3749 ], "count": [ 40, { "columns": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "distinct": [ @@ -85260,31 +85648,31 @@ export default { } ], "max": [ - 3726 + 3755 ], "min": [ - 3728 + 3757 ], "stddev": [ - 3744 + 3773 ], "stddev_pop": [ - 3746 + 3775 ], "stddev_samp": [ - 3748 + 3777 ], "sum": [ - 3752 + 3781 ], "var_pop": [ - 3756 + 3785 ], "var_samp": [ - 3758 + 3787 ], "variance": [ - 3760 + 3789 ], "__typename": [ 80 @@ -85292,37 +85680,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3721 + 3750 ], "count": [ - 3006 + 3035 ], "max": [ - 3727 + 3756 ], "min": [ - 3729 + 3758 ], "stddev": [ - 3745 + 3774 ], "stddev_pop": [ - 3747 + 3776 ], "stddev_samp": [ - 3749 + 3778 ], "sum": [ - 3753 + 3782 ], "var_pop": [ - 3757 + 3786 ], "var_samp": [ - 3759 + 3788 ], "variance": [ - 3761 + 3790 ], "__typename": [ 80 @@ -85330,10 +85718,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3725 + 3754 ], "on_conflict": [ - 3731 + 3760 ], "__typename": [ 80 @@ -85364,22 +85752,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85387,40 +85775,40 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3722 + 3751 ], "_not": [ - 3722 + 3751 ], "_or": [ - 3722 + 3751 ], "assists": [ - 259 + 261 ], "deaths": [ - 259 + 261 ], "headshot_percentage": [ - 1690 + 1692 ], "headshots": [ - 259 + 261 ], "kills": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "season": [ - 4027 + 4083 ], "season_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -85429,22 +85817,22 @@ export default { "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -85452,31 +85840,31 @@ export default { }, "player_season_stats_insert_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "season": [ - 4034 + 4090 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85484,25 +85872,25 @@ export default { }, "player_season_stats_max_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85510,25 +85898,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85536,25 +85924,25 @@ export default { }, "player_season_stats_min_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85562,25 +85950,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85591,7 +85979,7 @@ export default { 40 ], "returning": [ - 3703 + 3732 ], "__typename": [ 80 @@ -85599,13 +85987,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3723 + 3752 ], "update_columns": [ - 3754 + 3783 ], "where": [ - 3722 + 3751 ], "__typename": [ 80 @@ -85613,31 +86001,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "season": [ - 4036 + 4092 ], "season_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85645,10 +86033,10 @@ export default { }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85665,25 +86053,25 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85714,22 +86102,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85760,22 +86148,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85806,22 +86194,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85829,10 +86217,10 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3751 + 3780 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -85840,25 +86228,25 @@ export default { }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -85866,22 +86254,22 @@ export default { }, "player_season_stats_sum_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -85889,22 +86277,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85913,13 +86301,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3724 + 3753 ], "_set": [ - 3743 + 3772 ], "where": [ - 3722 + 3751 ], "__typename": [ 80 @@ -85950,22 +86338,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -85996,22 +86384,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -86042,22 +86430,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -86065,25 +86453,25 @@ export default { }, "player_stats": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86091,10 +86479,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3764 + 3793 ], "nodes": [ - 3762 + 3791 ], "__typename": [ 80 @@ -86102,13 +86490,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3765 + 3794 ], "count": [ 40, { "columns": [ - 3777, + 3806, "[player_stats_select_column!]" ], "distinct": [ @@ -86117,31 +86505,31 @@ export default { } ], "max": [ - 3770 + 3799 ], "min": [ - 3771 + 3800 ], "stddev": [ - 3779 + 3808 ], "stddev_pop": [ - 3780 + 3809 ], "stddev_samp": [ - 3781 + 3810 ], "sum": [ - 3784 + 3813 ], "var_pop": [ - 3787 + 3816 ], "var_samp": [ - 3788 + 3817 ], "variance": [ - 3789 + 3818 ], "__typename": [ 80 @@ -86172,34 +86560,34 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3766 + 3795 ], "_not": [ - 3766 + 3795 ], "_or": [ - 3766 + 3795 ], "assists": [ - 259 + 261 ], "deaths": [ - 259 + 261 ], "headshot_percentage": [ - 1690 + 1692 ], "headshots": [ - 259 + 261 ], "kills": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -86208,22 +86596,22 @@ export default { "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86231,25 +86619,25 @@ export default { }, "player_stats_insert_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86257,22 +86645,22 @@ export default { }, "player_stats_max_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86280,22 +86668,22 @@ export default { }, "player_stats_min_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86306,7 +86694,7 @@ export default { 40 ], "returning": [ - 3762 + 3791 ], "__typename": [ 80 @@ -86314,10 +86702,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3769 + 3798 ], "on_conflict": [ - 3774 + 3803 ], "__typename": [ 80 @@ -86325,13 +86713,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3767 + 3796 ], "update_columns": [ - 3785 + 3814 ], "where": [ - 3766 + 3795 ], "__typename": [ 80 @@ -86339,25 +86727,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -86365,7 +86753,7 @@ export default { }, "player_stats_pk_columns_input": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86374,22 +86762,22 @@ export default { "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86466,10 +86854,10 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3783 + 3812 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -86477,22 +86865,22 @@ export default { }, "player_stats_stream_cursor_value_input": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86500,22 +86888,22 @@ export default { }, "player_stats_sum_fields": { "assists": [ - 257 + 259 ], "deaths": [ - 257 + 259 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86524,13 +86912,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3768 + 3797 ], "_set": [ - 3778 + 3807 ], "where": [ - 3766 + 3795 ], "__typename": [ 80 @@ -86607,19 +86995,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "last_presence_state": [ - 1842, + 1844, { "path": [ 80 @@ -86627,16 +87015,16 @@ export default { } ], "player": [ - 3964 + 3993 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -86644,10 +87032,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3792 + 3821 ], "nodes": [ - 3790 + 3819 ], "__typename": [ 80 @@ -86655,13 +87043,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3794 + 3823 ], "count": [ 40, { "columns": [ - 3809, + 3838, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -86670,31 +87058,31 @@ export default { } ], "max": [ - 3802 + 3831 ], "min": [ - 3803 + 3832 ], "stddev": [ - 3811 + 3840 ], "stddev_pop": [ - 3812 + 3841 ], "stddev_samp": [ - 3813 + 3842 ], "sum": [ - 3816 + 3845 ], "var_pop": [ - 3819 + 3848 ], "var_samp": [ - 3820 + 3849 ], "variance": [ - 3821 + 3850 ], "__typename": [ 80 @@ -86702,7 +87090,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1842 + 1844 ], "__typename": [ 80 @@ -86721,40 +87109,40 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3795 + 3824 ], "_not": [ - 3795 + 3824 ], "_or": [ - 3795 + 3824 ], "bot_steam_account_id": [ - 5055 + 5111 ], "bot_steamid64": [ - 259 + 261 ], "created_at": [ - 4554 + 4610 ], "friended_at": [ - 4554 + 4610 ], "last_presence_state": [ - 1844 + 1846 ], "player": [ - 3968 + 3997 ], "status": [ 82 ], "steam_id": [ - 259 + 261 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -86787,10 +87175,10 @@ export default { }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86798,31 +87186,31 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "last_presence_state": [ - 1842 + 1844 ], "player": [ - 3975 + 4004 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -86830,25 +87218,25 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -86856,25 +87244,25 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -86885,7 +87273,7 @@ export default { 40 ], "returning": [ - 3790 + 3819 ], "__typename": [ 80 @@ -86893,13 +87281,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3796 + 3825 ], "update_columns": [ - 3817 + 3846 ], "where": [ - 3795 + 3824 ], "__typename": [ 80 @@ -86907,31 +87295,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3006 + 3035 ], "bot_steamid64": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "friended_at": [ - 3006 + 3035 ], "last_presence_state": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "status": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -86939,7 +87327,7 @@ export default { }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -86947,7 +87335,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1842 + 1844 ], "__typename": [ 80 @@ -86956,28 +87344,28 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "last_presence_state": [ - 1842 + 1844 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87018,10 +87406,10 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3815 + 3844 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -87029,28 +87417,28 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5053 + 5109 ], "bot_steamid64": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "friended_at": [ - 4553 + 4609 ], "last_presence_state": [ - 1842 + 1844 ], "status": [ 80 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87058,10 +87446,10 @@ export default { }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -87070,28 +87458,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3793 + 3822 ], "_delete_at_path": [ - 3797 + 3826 ], "_delete_elem": [ - 3798 + 3827 ], "_delete_key": [ - 3799 + 3828 ], "_inc": [ - 3800 + 3829 ], "_prepend": [ - 3808 + 3837 ], "_set": [ - 3810 + 3839 ], "where": [ - 3795 + 3824 ], "__typename": [ 80 @@ -87135,7 +87523,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87144,16 +87532,16 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87161,10 +87549,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3824 + 3853 ], "nodes": [ - 3822 + 3851 ], "__typename": [ 80 @@ -87172,13 +87560,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3825 + 3854 ], "count": [ 40, { "columns": [ - 3836, + 3865, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -87187,31 +87575,31 @@ export default { } ], "max": [ - 3830 + 3859 ], "min": [ - 3831 + 3860 ], "stddev": [ - 3838 + 3867 ], "stddev_pop": [ - 3839 + 3868 ], "stddev_samp": [ - 3840 + 3869 ], "sum": [ - 3843 + 3872 ], "var_pop": [ - 3846 + 3875 ], "var_samp": [ - 3847 + 3876 ], "variance": [ - 3848 + 3877 ], "__typename": [ 80 @@ -87227,19 +87615,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3826 + 3855 ], "_not": [ - 3826 + 3855 ], "_or": [ - 3826 + 3855 ], "auth_code": [ 82 ], "created_at": [ - 4554 + 4610 ], "last_error": [ 82 @@ -87248,16 +87636,16 @@ export default { 82 ], "last_polled_at": [ - 4554 + 4610 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -87266,7 +87654,7 @@ export default { "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -87277,7 +87665,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87286,16 +87674,16 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87306,7 +87694,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87315,13 +87703,13 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87332,7 +87720,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87341,13 +87729,13 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87358,7 +87746,7 @@ export default { 40 ], "returning": [ - 3822 + 3851 ], "__typename": [ 80 @@ -87366,13 +87754,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3827 + 3856 ], "update_columns": [ - 3844 + 3873 ], "where": [ - 3826 + 3855 ], "__typename": [ 80 @@ -87380,28 +87768,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "last_error": [ - 3006 + 3035 ], "last_known_share_code": [ - 3006 + 3035 ], "last_polled_at": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -87409,7 +87797,7 @@ export default { }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -87421,7 +87809,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87430,13 +87818,13 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87468,10 +87856,10 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3842 + 3871 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -87482,7 +87870,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "last_error": [ 80 @@ -87491,13 +87879,13 @@ export default { 80 ], "last_polled_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -87505,7 +87893,7 @@ export default { }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -87514,13 +87902,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3828 + 3857 ], "_set": [ - 3837 + 3866 ], "where": [ - 3826 + 3855 ], "__typename": [ 80 @@ -87552,25 +87940,25 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4553 + 4609 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -87584,10 +87972,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3853 + 3882 ], "nodes": [ - 3849 + 3878 ], "__typename": [ 80 @@ -87595,7 +87983,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3852 + 3881 ], "__typename": [ 80 @@ -87603,13 +87991,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3870 + 3899 ], "distinct": [ 5 ], "filter": [ - 3858 + 3887 ], "predicate": [ 41 @@ -87620,13 +88008,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3856 + 3885 ], "count": [ 40, { "columns": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -87635,31 +88023,31 @@ export default { } ], "max": [ - 3862 + 3891 ], "min": [ - 3864 + 3893 ], "stddev": [ - 3872 + 3901 ], "stddev_pop": [ - 3874 + 3903 ], "stddev_samp": [ - 3876 + 3905 ], "sum": [ - 3880 + 3909 ], "var_pop": [ - 3884 + 3913 ], "var_samp": [ - 3886 + 3915 ], "variance": [ - 3888 + 3917 ], "__typename": [ 80 @@ -87667,37 +88055,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3857 + 3886 ], "count": [ - 3006 + 3035 ], "max": [ - 3863 + 3892 ], "min": [ - 3865 + 3894 ], "stddev": [ - 3873 + 3902 ], "stddev_pop": [ - 3875 + 3904 ], "stddev_samp": [ - 3877 + 3906 ], "sum": [ - 3881 + 3910 ], "var_pop": [ - 3885 + 3914 ], "var_samp": [ - 3887 + 3916 ], "variance": [ - 3889 + 3918 ], "__typename": [ 80 @@ -87705,10 +88093,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3861 + 3890 ], "on_conflict": [ - 3867 + 3896 ], "__typename": [ 80 @@ -87730,13 +88118,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -87744,34 +88132,34 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3858 + 3887 ], "_not": [ - 3858 + 3887 ], "_or": [ - 3858 + 3887 ], "deleted_at": [ - 4554 + 4610 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "round": [ 41 @@ -87786,7 +88174,7 @@ export default { "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -87800,25 +88188,25 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4553 + 4609 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -87832,16 +88220,16 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -87855,22 +88243,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -87878,16 +88266,16 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -87901,22 +88289,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -87927,7 +88315,7 @@ export default { 40 ], "returning": [ - 3849 + 3878 ], "__typename": [ 80 @@ -87935,13 +88323,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3859 + 3888 ], "update_columns": [ - 3882 + 3911 ], "where": [ - 3858 + 3887 ], "__typename": [ 80 @@ -87949,31 +88337,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -87981,10 +88369,10 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -87993,16 +88381,16 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -88030,13 +88418,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88058,13 +88446,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88086,13 +88474,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88100,10 +88488,10 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3879 + 3908 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -88111,16 +88499,16 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -88134,7 +88522,7 @@ export default { }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -88148,13 +88536,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88163,13 +88551,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3860 + 3889 ], "_set": [ - 3871 + 3900 ], "where": [ - 3858 + 3887 ], "__typename": [ 80 @@ -88191,13 +88579,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88219,13 +88607,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88247,13 +88635,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "unused": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88264,34 +88652,34 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1375 + 1377 ], "__typename": [ 80 @@ -88299,10 +88687,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3894 + 3923 ], "nodes": [ - 3890 + 3919 ], "__typename": [ 80 @@ -88310,7 +88698,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3893 + 3922 ], "__typename": [ 80 @@ -88318,13 +88706,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3911 + 3940 ], "distinct": [ 5 ], "filter": [ - 3899 + 3928 ], "predicate": [ 41 @@ -88335,13 +88723,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3897 + 3926 ], "count": [ 40, { "columns": [ - 3911, + 3940, "[player_utility_select_column!]" ], "distinct": [ @@ -88350,31 +88738,31 @@ export default { } ], "max": [ - 3903 + 3932 ], "min": [ - 3905 + 3934 ], "stddev": [ - 3913 + 3942 ], "stddev_pop": [ - 3915 + 3944 ], "stddev_samp": [ - 3917 + 3946 ], "sum": [ - 3921 + 3950 ], "var_pop": [ - 3925 + 3954 ], "var_samp": [ - 3927 + 3956 ], "variance": [ - 3929 + 3958 ], "__typename": [ 80 @@ -88382,37 +88770,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3898 + 3927 ], "count": [ - 3006 + 3035 ], "max": [ - 3904 + 3933 ], "min": [ - 3906 + 3935 ], "stddev": [ - 3914 + 3943 ], "stddev_pop": [ - 3916 + 3945 ], "stddev_samp": [ - 3918 + 3947 ], "sum": [ - 3922 + 3951 ], "var_pop": [ - 3926 + 3955 ], "var_samp": [ - 3928 + 3957 ], "variance": [ - 3930 + 3959 ], "__typename": [ 80 @@ -88420,10 +88808,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3902 + 3931 ], "on_conflict": [ - 3908 + 3937 ], "__typename": [ 80 @@ -88442,10 +88830,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88453,46 +88841,46 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3899 + 3928 ], "_not": [ - 3899 + 3928 ], "_or": [ - 3899 + 3928 ], "attacker_location_coordinates": [ 82 ], "attacker_steam_id": [ - 259 + 261 ], "deleted_at": [ - 4554 + 4610 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "round": [ 41 ], "time": [ - 4554 + 4610 ], "type": [ - 1376 + 1378 ], "__typename": [ 80 @@ -88501,7 +88889,7 @@ export default { "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -88515,34 +88903,34 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1375 + 1377 ], "__typename": [ 80 @@ -88553,22 +88941,22 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -88576,25 +88964,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88605,22 +88993,22 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -88628,25 +89016,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88657,7 +89045,7 @@ export default { 40 ], "returning": [ - 3890 + 3919 ], "__typename": [ 80 @@ -88665,13 +89053,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3900 + 3929 ], "update_columns": [ - 3923 + 3952 ], "where": [ - 3899 + 3928 ], "__typename": [ 80 @@ -88679,37 +89067,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3006 + 3035 ], "attacker_steam_id": [ - 3006 + 3035 ], "deleted_at": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "round": [ - 3006 + 3035 ], "time": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88717,13 +89105,13 @@ export default { }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 257 + 259 ], "match_map_id": [ - 5053 + 5109 ], "time": [ - 4553 + 4609 ], "__typename": [ 80 @@ -88735,25 +89123,25 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1375 + 1377 ], "__typename": [ 80 @@ -88772,10 +89160,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88794,10 +89182,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88816,10 +89204,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88827,10 +89215,10 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3920 + 3949 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -88841,25 +89229,25 @@ export default { 80 ], "attacker_steam_id": [ - 257 + 259 ], "deleted_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 ], "time": [ - 4553 + 4609 ], "type": [ - 1375 + 1377 ], "__typename": [ 80 @@ -88867,7 +89255,7 @@ export default { }, "player_utility_sum_fields": { "attacker_steam_id": [ - 257 + 259 ], "round": [ 40 @@ -88878,10 +89266,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88890,13 +89278,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3901 + 3930 ], "_set": [ - 3912 + 3941 ], "where": [ - 3899 + 3928 ], "__typename": [ 80 @@ -88915,10 +89303,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88937,10 +89325,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88959,10 +89347,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -88982,7 +89370,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -88991,7 +89379,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -89002,10 +89390,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3935 + 3964 ], "nodes": [ - 3931 + 3960 ], "__typename": [ 80 @@ -89013,7 +89401,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3934 + 3963 ], "__typename": [ 80 @@ -89021,13 +89409,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3947 + 3976 ], "distinct": [ 5 ], "filter": [ - 3940 + 3969 ], "predicate": [ 41 @@ -89038,13 +89426,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3938 + 3967 ], "count": [ 40, { "columns": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -89053,31 +89441,31 @@ export default { } ], "max": [ - 3942 + 3971 ], "min": [ - 3944 + 3973 ], "stddev": [ - 3948 + 3977 ], "stddev_pop": [ - 3950 + 3979 ], "stddev_samp": [ - 3952 + 3981 ], "sum": [ - 3956 + 3985 ], "var_pop": [ - 3958 + 3987 ], "var_samp": [ - 3960 + 3989 ], "variance": [ - 3962 + 3991 ], "__typename": [ 80 @@ -89085,37 +89473,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3939 + 3968 ], "count": [ - 3006 + 3035 ], "max": [ - 3943 + 3972 ], "min": [ - 3945 + 3974 ], "stddev": [ - 3949 + 3978 ], "stddev_pop": [ - 3951 + 3980 ], "stddev_samp": [ - 3953 + 3982 ], "sum": [ - 3957 + 3986 ], "var_pop": [ - 3959 + 3988 ], "var_samp": [ - 3961 + 3990 ], "variance": [ - 3963 + 3992 ], "__typename": [ 80 @@ -89123,7 +89511,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3941 + 3970 ], "__typename": [ 80 @@ -89157,25 +89545,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89183,13 +89571,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3940 + 3969 ], "_not": [ - 3940 + 3969 ], "_or": [ - 3940 + 3969 ], "first_bullet_hits": [ 41 @@ -89204,7 +89592,7 @@ export default { 41 ], "match_id": [ - 5055 + 5111 ], "shots": [ 41 @@ -89213,7 +89601,7 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "weapon_class": [ 82 @@ -89236,7 +89624,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -89245,7 +89633,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -89268,7 +89656,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -89277,7 +89665,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -89288,31 +89676,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89332,7 +89720,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -89341,7 +89729,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -89352,31 +89740,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89384,31 +89772,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "weapon_class": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89443,25 +89831,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89495,25 +89883,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89547,25 +89935,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89573,10 +89961,10 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3955 + 3984 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -89596,7 +89984,7 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "shots": [ 40 @@ -89605,7 +89993,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "weapon_class": [ 80 @@ -89634,7 +90022,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -89642,25 +90030,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89694,25 +90082,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89746,25 +90134,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89798,25 +90186,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3006 + 3035 ], "first_bullet_shots": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "hits_spotted": [ - 3006 + 3035 ], "shots": [ - 3006 + 3035 ], "shots_spotted": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -89824,10 +90212,10 @@ export default { }, "players": { "abandoned_matches": [ - 119, + 121, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -89837,19 +90225,19 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "abandoned_matches_aggregate": [ - 120, + 122, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -89859,19 +90247,19 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "aim_weapon_stats": [ - 3103, + 3132, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -89881,19 +90269,19 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "aim_weapon_stats_aggregate": [ - 3104, + 3133, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -89903,19 +90291,19 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -89925,19 +90313,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -89947,19 +90335,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "assited_by_players": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -89969,19 +90357,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "assited_by_players_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -89991,11 +90379,11 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], @@ -90003,10 +90391,10 @@ export default { 80 ], "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -90016,19 +90404,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -90038,22 +90426,22 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "banned_until": [ - 4553 + 4609 ], "coach_lineups": [ - 2493, + 2495, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -90063,19 +90451,19 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "coach_lineups_aggregate": [ - 2494, + 2496, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -90085,11 +90473,11 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], @@ -90097,19 +90485,19 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "current_lobby_id": [ - 5053 + 5109 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -90119,19 +90507,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "damage_dealt_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -90141,19 +90529,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "damage_taken": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -90163,19 +90551,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "damage_taken_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -90185,11 +90573,11 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], @@ -90197,10 +90585,10 @@ export default { 40 ], "deaths": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -90210,19 +90598,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "deaths_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -90232,11 +90620,11 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], @@ -90244,10 +90632,10 @@ export default { 80 ], "draft_game_players": [ - 418, + 420, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -90257,19 +90645,19 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "draft_game_players_aggregate": [ - 419, + 421, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -90279,16 +90667,16 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "elo": [ - 1842, + 1844, { "path": [ 80 @@ -90296,10 +90684,10 @@ export default { } ], "elo_history": [ - 5430, + 5486, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -90309,19 +90697,19 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "elo_history_aggregate": [ - 5431, + 5487, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -90331,11 +90719,11 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], @@ -90349,10 +90737,10 @@ export default { 80 ], "faceit_rank_history": [ - 3275, + 3304, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -90362,19 +90750,19 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], "faceit_rank_history_aggregate": [ - 3276, + 3305, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -90384,11 +90772,11 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], @@ -90396,16 +90784,16 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -90415,19 +90803,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "flashed_by_players_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -90437,19 +90825,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "flashed_players": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -90459,19 +90847,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "flashed_players_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -90481,19 +90869,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "friends": [ - 2881, + 2883, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -90503,19 +90891,19 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], "friends_aggregate": [ - 2882, + 2884, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -90525,11 +90913,11 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], @@ -90537,10 +90925,10 @@ export default { 40 ], "invited_players": [ - 4223, + 4279, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -90550,19 +90938,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "invited_players_aggregate": [ - 4224, + 4280, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -90572,11 +90960,11 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], @@ -90605,10 +90993,10 @@ export default { 5 ], "kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -90618,19 +91006,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -90640,19 +91028,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "kills_by_weapons": [ - 3373, + 3402, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -90662,19 +91050,19 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], "kills_by_weapons_aggregate": [ - 3374, + 3403, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -90684,11 +91072,11 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], @@ -90696,16 +91084,16 @@ export default { 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "lobby_players": [ - 2240, + 2242, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -90715,19 +91103,19 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "lobby_players_aggregate": [ - 2241, + 2243, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -90737,11 +91125,11 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], @@ -90758,10 +91146,10 @@ export default { 40 ], "match_map_hltv": [ - 5535, + 5591, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -90771,19 +91159,19 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "match_map_hltv_aggregate": [ - 5536, + 5592, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -90793,19 +91181,19 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "match_map_stats": [ - 3470, + 3499, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -90815,19 +91203,19 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "match_map_stats_aggregate": [ - 3471, + 3500, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -90837,19 +91225,19 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "match_stats": [ - 3529, + 3558, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -90859,19 +91247,19 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "match_stats_aggregate": [ - 3530, + 3559, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -90881,19 +91269,19 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -90903,22 +91291,22 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matchmaking_cooldown": [ - 4553 + 4609 ], "multi_kills": [ - 5626, + 5682, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -90928,19 +91316,19 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], "multi_kills_aggregate": [ - 5627, + 5683, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -90950,11 +91338,11 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], @@ -90965,10 +91353,10 @@ export default { 5 ], "notifications": [ - 2954, + 2983, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -90978,19 +91366,19 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "notifications_aggregate": [ - 2955, + 2984, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -91000,19 +91388,19 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -91022,19 +91410,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -91044,19 +91432,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "owned_teams": [ - 4506, + 4562, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -91066,19 +91454,19 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "owned_teams_aggregate": [ - 4507, + 4563, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -91088,16 +91476,16 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "peak_elo": [ - 1842, + 1844, { "path": [ 80 @@ -91105,10 +91493,10 @@ export default { } ], "pending_match_imports": [ - 3007, + 3036, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -91118,19 +91506,19 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "pending_match_imports_aggregate": [ - 3008, + 3037, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -91140,19 +91528,19 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "player_lineup": [ - 2448, + 2450, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -91162,19 +91550,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "player_lineup_aggregate": [ - 2449, + 2451, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -91184,19 +91572,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "player_unused_utilities": [ - 3849, + 3878, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -91206,19 +91594,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utilities_aggregate": [ - 3850, + 3879, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -91228,11 +91616,11 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], @@ -91240,10 +91628,10 @@ export default { 40 ], "premier_rank_history": [ - 3621, + 3650, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -91253,19 +91641,19 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "premier_rank_history_aggregate": [ - 3622, + 3651, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -91275,31 +91663,31 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 ], "role": [ - 1090 + 1092 ], "roster_image_url": [ 80 ], "sanctions": [ - 3662, + 3691, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -91309,19 +91697,19 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "sanctions_aggregate": [ - 3663, + 3692, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -91331,19 +91719,19 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "season_stats": [ - 3703, + 3732, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -91353,19 +91741,19 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "season_stats_aggregate": [ - 3704, + 3733, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -91375,11 +91763,11 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], @@ -91387,19 +91775,19 @@ export default { 5 ], "stats": [ - 3762 + 3791 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "team_invites": [ - 4223, + 4279, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -91409,19 +91797,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_invites_aggregate": [ - 4224, + 4280, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -91431,19 +91819,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_members": [ - 4264, + 4320, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -91453,19 +91841,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_members_aggregate": [ - 4265, + 4321, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -91475,19 +91863,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "teams": [ - 4506, + 4562, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -91497,11 +91885,11 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], @@ -91509,10 +91897,10 @@ export default { 40 ], "tournament_organizers": [ - 4691, + 4747, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91522,19 +91910,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_organizers_aggregate": [ - 4692, + 4748, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91544,19 +91932,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_rosters": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91566,19 +91954,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_rosters_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91588,19 +91976,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournaments": [ - 4989, + 5045, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -91610,19 +91998,19 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_aggregate": [ - 4990, + 5046, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -91632,19 +92020,19 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "utility_thrown": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -91654,19 +92042,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "utility_thrown_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -91676,11 +92064,11 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], @@ -91691,10 +92079,10 @@ export default { 5 ], "weapon_stats": [ - 3931, + 3960, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -91704,19 +92092,19 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], "weapon_stats_aggregate": [ - 3932, + 3961, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -91726,11 +92114,11 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], @@ -91752,10 +92140,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3966 + 3995 ], "nodes": [ - 3964 + 3993 ], "__typename": [ 80 @@ -91763,13 +92151,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3967 + 3996 ], "count": [ 40, { "columns": [ - 3979, + 4008, "[players_select_column!]" ], "distinct": [ @@ -91778,31 +92166,31 @@ export default { } ], "max": [ - 3972 + 4001 ], "min": [ - 3973 + 4002 ], "stddev": [ - 3981 + 4010 ], "stddev_pop": [ - 3982 + 4011 ], "stddev_samp": [ - 3983 + 4012 ], "sum": [ - 3986 + 4015 ], "var_pop": [ - 3989 + 4018 ], "var_samp": [ - 3990 + 4019 ], "variance": [ - 3991 + 4020 ], "__typename": [ 80 @@ -91863,106 +92251,106 @@ export default { }, "players_bool_exp": { "_and": [ - 3968 + 3997 ], "_not": [ - 3968 + 3997 ], "_or": [ - 3968 + 3997 ], "abandoned_matches": [ - 128 + 130 ], "abandoned_matches_aggregate": [ - 121 + 123 ], "aim_weapon_stats": [ - 3112 + 3141 ], "aim_weapon_stats_aggregate": [ - 3105 + 3134 ], "assists": [ - 3155 + 3184 ], "assists_aggregate": [ - 3146 + 3175 ], "assited_by_players": [ - 3155 + 3184 ], "assited_by_players_aggregate": [ - 3146 + 3175 ], "avatar_url": [ 82 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "banned_until": [ - 4554 + 4610 ], "coach_lineups": [ - 2502 + 2504 ], "coach_lineups_aggregate": [ - 2495 + 2497 ], "country": [ 82 ], "created_at": [ - 4554 + 4610 ], "current_lobby_id": [ - 5055 + 5111 ], "custom_avatar_url": [ 82 ], "damage_dealt": [ - 3216 + 3245 ], "damage_dealt_aggregate": [ - 3209 + 3238 ], "damage_taken": [ - 3216 + 3245 ], "damage_taken_aggregate": [ - 3209 + 3238 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3372 + 3401 ], "deaths_aggregate": [ - 3363 + 3392 ], "discord_id": [ 82 ], "draft_game_players": [ - 429 + 431 ], "draft_game_players_aggregate": [ - 420 + 422 ], "elo": [ - 1844 + 1846 ], "elo_history": [ - 5449 + 5505 ], "elo_history_aggregate": [ - 5432 + 5488 ], "faceit_elo": [ 41 @@ -91974,46 +92362,46 @@ export default { 82 ], "faceit_rank_history": [ - 3284 + 3313 ], "faceit_rank_history_aggregate": [ - 3277 + 3306 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4554 + 4610 ], "faceit_url": [ 82 ], "flashed_by_players": [ - 3327 + 3356 ], "flashed_by_players_aggregate": [ - 3318 + 3347 ], "flashed_players": [ - 3327 + 3356 ], "flashed_players_aggregate": [ - 3318 + 3347 ], "friends": [ - 2893 + 2895 ], "friends_aggregate": [ - 2883 + 2885 ], "game_ban_count": [ 41 ], "invited_players": [ - 4232 + 4288 ], "invited_players_aggregate": [ - 4225 + 4281 ], "is_admin_sanctioned": [ 6 @@ -92040,31 +92428,31 @@ export default { 6 ], "kills": [ - 3372 + 3401 ], "kills_aggregate": [ - 3363 + 3392 ], "kills_by_weapons": [ - 3382 + 3411 ], "kills_by_weapons_aggregate": [ - 3375 + 3404 ], "language": [ 82 ], "last_read_news_at": [ - 4554 + 4610 ], "last_sign_in_at": [ - 4554 + 4610 ], "lobby_players": [ - 2251 + 2253 ], "lobby_players_aggregate": [ - 2242 + 2244 ], "losses": [ 41 @@ -92079,34 +92467,34 @@ export default { 41 ], "match_map_hltv": [ - 5544 + 5600 ], "match_map_hltv_aggregate": [ - 5537 + 5593 ], "match_map_stats": [ - 3479 + 3508 ], "match_map_stats_aggregate": [ - 3472 + 3501 ], "match_stats": [ - 3538 + 3567 ], "match_stats_aggregate": [ - 3531 + 3560 ], "matches": [ - 2830 + 2832 ], "matchmaking_cooldown": [ - 4554 + 4610 ], "multi_kills": [ - 5635 + 5691 ], "multi_kills_aggregate": [ - 5628 + 5684 ], "name": [ 82 @@ -92115,130 +92503,130 @@ export default { 6 ], "notifications": [ - 2966 + 2995 ], "notifications_aggregate": [ - 2956 + 2985 ], "objectives": [ - 3571 + 3600 ], "objectives_aggregate": [ - 3564 + 3593 ], "owned_teams": [ - 4517 + 4573 ], "owned_teams_aggregate": [ - 4508 + 4564 ], "peak_elo": [ - 1844 + 1846 ], "pending_match_imports": [ - 3016 + 3045 ], "pending_match_imports_aggregate": [ - 3009 + 3038 ], "player_lineup": [ - 2459 + 2461 ], "player_lineup_aggregate": [ - 2450 + 2452 ], "player_unused_utilities": [ - 3858 + 3887 ], "player_unused_utilities_aggregate": [ - 3851 + 3880 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3630 + 3659 ], "premier_rank_history_aggregate": [ - 3623 + 3652 ], "premier_rank_updated_at": [ - 4554 + 4610 ], "profile_url": [ 82 ], "role": [ - 1091 + 1093 ], "roster_image_url": [ 82 ], "sanctions": [ - 3671 + 3700 ], "sanctions_aggregate": [ - 3664 + 3693 ], "season_stats": [ - 3722 + 3751 ], "season_stats_aggregate": [ - 3705 + 3734 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3766 + 3795 ], "steam_bans_checked_at": [ - 4554 + 4610 ], "steam_id": [ - 259 + 261 ], "team_invites": [ - 4232 + 4288 ], "team_invites_aggregate": [ - 4225 + 4281 ], "team_members": [ - 4275 + 4331 ], "team_members_aggregate": [ - 4266 + 4322 ], "teams": [ - 4517 + 4573 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4700 + 4756 ], "tournament_organizers_aggregate": [ - 4693 + 4749 ], "tournament_rosters": [ - 4915 + 4971 ], "tournament_rosters_aggregate": [ - 4908 + 4964 ], "tournaments": [ - 5010 + 5066 ], "tournaments_aggregate": [ - 4991 + 5047 ], "utility_thrown": [ - 3899 + 3928 ], "utility_thrown_aggregate": [ - 3892 + 3921 ], "vac_ban_count": [ 41 @@ -92247,10 +92635,10 @@ export default { 6 ], "weapon_stats": [ - 3940 + 3969 ], "weapon_stats_aggregate": [ - 3933 + 3962 ], "wins": [ 41 @@ -92286,7 +92674,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -92297,55 +92685,55 @@ export default { }, "players_insert_input": { "abandoned_matches": [ - 125 + 127 ], "aim_weapon_stats": [ - 3109 + 3138 ], "assists": [ - 3152 + 3181 ], "assited_by_players": [ - 3152 + 3181 ], "avatar_url": [ 80 ], "awards": [ - 194 + 196 ], "coach_lineups": [ - 2499 + 2501 ], "country": [ 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3213 + 3242 ], "damage_taken": [ - 3213 + 3242 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3369 + 3398 ], "discord_id": [ 80 ], "draft_game_players": [ - 426 + 428 ], "elo_history": [ - 5446 + 5502 ], "faceit_elo": [ 40 @@ -92357,61 +92745,61 @@ export default { 80 ], "faceit_rank_history": [ - 3281 + 3310 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3324 + 3353 ], "flashed_players": [ - 3324 + 3353 ], "friends": [ - 2890 + 2892 ], "game_ban_count": [ 40 ], "invited_players": [ - 4229 + 4285 ], "kills": [ - 3369 + 3398 ], "kills_by_weapons": [ - 3379 + 3408 ], "language": [ 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "lobby_players": [ - 2248 + 2250 ], "match_map_hltv": [ - 5541 + 5597 ], "match_map_stats": [ - 3476 + 3505 ], "match_stats": [ - 3535 + 3564 ], "multi_kills": [ - 5632 + 5688 ], "name": [ 80 @@ -92420,76 +92808,76 @@ export default { 5 ], "notifications": [ - 2963 + 2992 ], "objectives": [ - 3568 + 3597 ], "owned_teams": [ - 4514 + 4570 ], "pending_match_imports": [ - 3013 + 3042 ], "player_lineup": [ - 2456 + 2458 ], "player_unused_utilities": [ - 3855 + 3884 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3627 + 3656 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 ], "role": [ - 1090 + 1092 ], "roster_image_url": [ 80 ], "sanctions": [ - 3668 + 3697 ], "season_stats": [ - 3719 + 3748 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3773 + 3802 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "team_invites": [ - 4229 + 4285 ], "team_members": [ - 4272 + 4328 ], "tournament_organizers": [ - 4697 + 4753 ], "tournament_rosters": [ - 4912 + 4968 ], "tournaments": [ - 5007 + 5063 ], "utility_thrown": [ - 3896 + 3925 ], "vac_ban_count": [ 40 @@ -92498,7 +92886,7 @@ export default { 5 ], "weapon_stats": [ - 3937 + 3966 ], "__typename": [ 80 @@ -92509,16 +92897,16 @@ export default { 80 ], "banned_until": [ - 4553 + 4609 ], "country": [ 80 ], "created_at": [ - 4553 + 4609 ], "current_lobby_id": [ - 5053 + 5109 ], "custom_avatar_url": [ 80 @@ -92542,7 +92930,7 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 @@ -92554,10 +92942,10 @@ export default { 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "losses": [ 40 @@ -92572,7 +92960,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4553 + 4609 ], "name": [ 80 @@ -92581,7 +92969,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -92590,10 +92978,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "total_matches": [ 40 @@ -92622,16 +93010,16 @@ export default { 80 ], "banned_until": [ - 4553 + 4609 ], "country": [ 80 ], "created_at": [ - 4553 + 4609 ], "current_lobby_id": [ - 5053 + 5109 ], "custom_avatar_url": [ 80 @@ -92655,7 +93043,7 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 @@ -92667,10 +93055,10 @@ export default { 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "losses": [ 40 @@ -92685,7 +93073,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4553 + 4609 ], "name": [ 80 @@ -92694,7 +93082,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 @@ -92703,10 +93091,10 @@ export default { 80 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "total_matches": [ 40 @@ -92735,7 +93123,7 @@ export default { 40 ], "returning": [ - 3964 + 3993 ], "__typename": [ 80 @@ -92743,10 +93131,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3971 + 4000 ], "on_conflict": [ - 3976 + 4005 ], "__typename": [ 80 @@ -92754,13 +93142,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3969 + 3998 ], "update_columns": [ - 3987 + 4016 ], "where": [ - 3968 + 3997 ], "__typename": [ 80 @@ -92768,280 +93156,280 @@ export default { }, "players_order_by": { "abandoned_matches_aggregate": [ - 124 + 126 ], "aim_weapon_stats_aggregate": [ - 3108 + 3137 ], "assists_aggregate": [ - 3151 + 3180 ], "assited_by_players_aggregate": [ - 3151 + 3180 ], "avatar_url": [ - 3006 + 3035 ], "awards_aggregate": [ - 193 + 195 ], "banned_until": [ - 3006 + 3035 ], "coach_lineups_aggregate": [ - 2498 + 2500 ], "country": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "current_lobby_id": [ - 3006 + 3035 ], "custom_avatar_url": [ - 3006 + 3035 ], "damage_dealt_aggregate": [ - 3212 + 3241 ], "damage_taken_aggregate": [ - 3212 + 3241 ], "days_since_last_ban": [ - 3006 + 3035 ], "deaths_aggregate": [ - 3368 + 3397 ], "discord_id": [ - 3006 + 3035 ], "draft_game_players_aggregate": [ - 425 + 427 ], "elo": [ - 3006 + 3035 ], "elo_history_aggregate": [ - 5445 + 5501 ], "faceit_elo": [ - 3006 + 3035 ], "faceit_nickname": [ - 3006 + 3035 ], "faceit_player_id": [ - 3006 + 3035 ], "faceit_rank_history_aggregate": [ - 3280 + 3309 ], "faceit_skill_level": [ - 3006 + 3035 ], "faceit_updated_at": [ - 3006 + 3035 ], "faceit_url": [ - 3006 + 3035 ], "flashed_by_players_aggregate": [ - 3323 + 3352 ], "flashed_players_aggregate": [ - 3323 + 3352 ], "friends_aggregate": [ - 2888 + 2890 ], "game_ban_count": [ - 3006 + 3035 ], "invited_players_aggregate": [ - 4228 + 4284 ], "is_admin_sanctioned": [ - 3006 + 3035 ], "is_banned": [ - 3006 + 3035 ], "is_gagged": [ - 3006 + 3035 ], "is_in_another_match": [ - 3006 + 3035 ], "is_in_draft": [ - 3006 + 3035 ], "is_in_lobby": [ - 3006 + 3035 ], "is_muted": [ - 3006 + 3035 ], "is_registered": [ - 3006 + 3035 ], "kills_aggregate": [ - 3368 + 3397 ], "kills_by_weapons_aggregate": [ - 3378 + 3407 ], "language": [ - 3006 + 3035 ], "last_read_news_at": [ - 3006 + 3035 ], "last_sign_in_at": [ - 3006 + 3035 ], "lobby_players_aggregate": [ - 2247 + 2249 ], "losses": [ - 3006 + 3035 ], "losses_competitive": [ - 3006 + 3035 ], "losses_duel": [ - 3006 + 3035 ], "losses_wingman": [ - 3006 + 3035 ], "match_map_hltv_aggregate": [ - 5540 + 5596 ], "match_map_stats_aggregate": [ - 3475 + 3504 ], "match_stats_aggregate": [ - 3534 + 3563 ], "matches_aggregate": [ - 2826 + 2828 ], "matchmaking_cooldown": [ - 3006 + 3035 ], "multi_kills_aggregate": [ - 5631 + 5687 ], "name": [ - 3006 + 3035 ], "name_registered": [ - 3006 + 3035 ], "notifications_aggregate": [ - 2961 + 2990 ], "objectives_aggregate": [ - 3567 + 3596 ], "owned_teams_aggregate": [ - 4513 + 4569 ], "peak_elo": [ - 3006 + 3035 ], "pending_match_imports_aggregate": [ - 3012 + 3041 ], "player_lineup_aggregate": [ - 2455 + 2457 ], "player_unused_utilities_aggregate": [ - 3854 + 3883 ], "premier_rank": [ - 3006 + 3035 ], "premier_rank_history_aggregate": [ - 3626 + 3655 ], "premier_rank_updated_at": [ - 3006 + 3035 ], "profile_url": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "sanctions_aggregate": [ - 3667 + 3696 ], "season_stats_aggregate": [ - 3718 + 3747 ], "show_match_ready_modal": [ - 3006 + 3035 ], "stats": [ - 3775 + 3804 ], "steam_bans_checked_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_invites_aggregate": [ - 4228 + 4284 ], "team_members_aggregate": [ - 4271 + 4327 ], "teams_aggregate": [ - 4513 + 4569 ], "total_matches": [ - 3006 + 3035 ], "tournament_organizers_aggregate": [ - 4696 + 4752 ], "tournament_rosters_aggregate": [ - 4911 + 4967 ], "tournaments_aggregate": [ - 5006 + 5062 ], "utility_thrown_aggregate": [ - 3895 + 3924 ], "vac_ban_count": [ - 3006 + 3035 ], "vac_banned": [ - 3006 + 3035 ], "weapon_stats_aggregate": [ - 3936 + 3965 ], "wins": [ - 3006 + 3035 ], "wins_competitive": [ - 3006 + 3035 ], "wins_duel": [ - 3006 + 3035 ], "wins_wingman": [ - 3006 + 3035 ], "__typename": [ 80 @@ -93049,7 +93437,7 @@ export default { }, "players_pk_columns_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -93064,7 +93452,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -93088,7 +93476,7 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 @@ -93100,10 +93488,10 @@ export default { 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -93115,13 +93503,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 ], "role": [ - 1090 + 1092 ], "roster_image_url": [ 80 @@ -93130,10 +93518,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -93306,10 +93694,10 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3985 + 4014 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -93323,7 +93711,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "custom_avatar_url": [ 80 @@ -93347,7 +93735,7 @@ export default { 40 ], "faceit_updated_at": [ - 4553 + 4609 ], "faceit_url": [ 80 @@ -93359,10 +93747,10 @@ export default { 80 ], "last_read_news_at": [ - 4553 + 4609 ], "last_sign_in_at": [ - 4553 + 4609 ], "name": [ 80 @@ -93374,13 +93762,13 @@ export default { 40 ], "premier_rank_updated_at": [ - 4553 + 4609 ], "profile_url": [ 80 ], "role": [ - 1090 + 1092 ], "roster_image_url": [ 80 @@ -93389,10 +93777,10 @@ export default { 5 ], "steam_bans_checked_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "vac_ban_count": [ 40 @@ -93433,7 +93821,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "total_matches": [ 40 @@ -93460,13 +93848,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3970 + 3999 ], "_set": [ - 3980 + 4009 ], "where": [ - 3968 + 3997 ], "__typename": [ 80 @@ -93636,10 +94024,10 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "runtime": [ - 1110 + 1112 ], "version": [ 80 @@ -93650,10 +94038,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3994 + 4023 ], "nodes": [ - 3992 + 4021 ], "__typename": [ 80 @@ -93661,13 +94049,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3995 + 4024 ], "count": [ 40, { "columns": [ - 4006, + 4035, "[plugin_versions_select_column!]" ], "distinct": [ @@ -93676,31 +94064,31 @@ export default { } ], "max": [ - 4000 + 4029 ], "min": [ - 4001 + 4030 ], "stddev": [ - 4008 + 4037 ], "stddev_pop": [ - 4009 + 4038 ], "stddev_samp": [ - 4010 + 4039 ], "sum": [ - 4013 + 4042 ], "var_pop": [ - 4016 + 4045 ], "var_samp": [ - 4017 + 4046 ], "variance": [ - 4018 + 4047 ], "__typename": [ 80 @@ -93716,22 +94104,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3996 + 4025 ], "_not": [ - 3996 + 4025 ], "_or": [ - 3996 + 4025 ], "min_game_build_id": [ 41 ], "published_at": [ - 4554 + 4610 ], "runtime": [ - 1111 + 1113 ], "version": [ 82 @@ -93754,10 +94142,10 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "runtime": [ - 1110 + 1112 ], "version": [ 80 @@ -93771,7 +94159,7 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "version": [ 80 @@ -93785,7 +94173,7 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "version": [ 80 @@ -93799,7 +94187,7 @@ export default { 40 ], "returning": [ - 3992 + 4021 ], "__typename": [ 80 @@ -93807,13 +94195,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3997 + 4026 ], "update_columns": [ - 4014 + 4043 ], "where": [ - 3996 + 4025 ], "__typename": [ 80 @@ -93821,16 +94209,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 3006 + 3035 ], "published_at": [ - 3006 + 3035 ], "runtime": [ - 3006 + 3035 ], "version": [ - 3006 + 3035 ], "__typename": [ 80 @@ -93838,7 +94226,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 1110 + 1112 ], "version": [ 80 @@ -93853,10 +94241,10 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "runtime": [ - 1110 + 1112 ], "version": [ 80 @@ -93891,10 +94279,10 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4012 + 4041 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -93905,10 +94293,10 @@ export default { 40 ], "published_at": [ - 4553 + 4609 ], "runtime": [ - 1110 + 1112 ], "version": [ 80 @@ -93928,13 +94316,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3998 + 4027 ], "_set": [ - 4007 + 4036 ], "where": [ - 3996 + 4025 ], "__typename": [ 80 @@ -93964,9 +94352,441 @@ export default { 80 ] }, + "push_subscriptions": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_aggregate": { + "aggregate": [ + 4050 + ], + "nodes": [ + 4048 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_aggregate_fields": { + "avg": [ + 4051 + ], + "count": [ + 40, + { + "columns": [ + 4062, + "[push_subscriptions_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 4056 + ], + "min": [ + 4057 + ], + "stddev": [ + 4064 + ], + "stddev_pop": [ + 4065 + ], + "stddev_samp": [ + 4066 + ], + "sum": [ + 4069 + ], + "var_pop": [ + 4072 + ], + "var_samp": [ + 4073 + ], + "variance": [ + 4074 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_avg_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_bool_exp": { + "_and": [ + 4052 + ], + "_not": [ + 4052 + ], + "_or": [ + 4052 + ], + "auth": [ + 82 + ], + "created_at": [ + 4610 + ], + "endpoint": [ + 82 + ], + "id": [ + 5111 + ], + "last_used_at": [ + 4610 + ], + "p256dh": [ + 82 + ], + "steam_id": [ + 261 + ], + "user_agent": [ + 82 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_constraint": {}, + "push_subscriptions_inc_input": { + "steam_id": [ + 259 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_insert_input": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_max_fields": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_min_fields": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 4048 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_on_conflict": { + "constraint": [ + 4053 + ], + "update_columns": [ + 4070 + ], + "where": [ + 4052 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_order_by": { + "auth": [ + 3035 + ], + "created_at": [ + 3035 + ], + "endpoint": [ + 3035 + ], + "id": [ + 3035 + ], + "last_used_at": [ + 3035 + ], + "p256dh": [ + 3035 + ], + "steam_id": [ + 3035 + ], + "user_agent": [ + 3035 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_pk_columns_input": { + "id": [ + 5109 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_select_column": {}, + "push_subscriptions_set_input": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_stddev_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_stddev_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_stddev_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_stream_cursor_input": { + "initial_value": [ + 4068 + ], + "ordering": [ + 315 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_stream_cursor_value_input": { + "auth": [ + 80 + ], + "created_at": [ + 4609 + ], + "endpoint": [ + 80 + ], + "id": [ + 5109 + ], + "last_used_at": [ + 4609 + ], + "p256dh": [ + 80 + ], + "steam_id": [ + 259 + ], + "user_agent": [ + 80 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_sum_fields": { + "steam_id": [ + 259 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_update_column": {}, + "push_subscriptions_updates": { + "_inc": [ + 4054 + ], + "_set": [ + 4063 + ], + "where": [ + 4052 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_var_pop_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_var_samp_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, + "push_subscriptions_variance_fields": { + "steam_id": [ + 31 + ], + "__typename": [ + 80 + ] + }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -93974,7 +94794,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -93982,7 +94802,7 @@ export default { }, "reorder_league_divisions_args": { "_division_ids": [ - 118 + 120 ], "__typename": [ 80 @@ -93990,7 +94810,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -93998,10 +94818,10 @@ export default { }, "seasons": { "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -94011,19 +94831,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -94033,25 +94853,25 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "needs_rebuild": [ 5 @@ -94060,10 +94880,10 @@ export default { 40 ], "player_season_stats": [ - 3703, + 3732, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -94073,19 +94893,19 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "player_season_stats_aggregate": [ - 3704, + 3733, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -94095,16 +94915,16 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94112,10 +94932,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 4025 + 4081 ], "nodes": [ - 4023 + 4079 ], "__typename": [ 80 @@ -94123,13 +94943,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 4026 + 4082 ], "count": [ 40, { "columns": [ - 4038, + 4094, "[seasons_select_column!]" ], "distinct": [ @@ -94138,31 +94958,31 @@ export default { } ], "max": [ - 4031 + 4087 ], "min": [ - 4032 + 4088 ], "stddev": [ - 4040 + 4096 ], "stddev_pop": [ - 4041 + 4097 ], "stddev_samp": [ - 4042 + 4098 ], "sum": [ - 4045 + 4101 ], "var_pop": [ - 4048 + 4104 ], "var_samp": [ - 4049 + 4105 ], "variance": [ - 4050 + 4106 ], "__typename": [ 80 @@ -94178,31 +94998,31 @@ export default { }, "seasons_bool_exp": { "_and": [ - 4027 + 4083 ], "_not": [ - 4027 + 4083 ], "_or": [ - 4027 + 4083 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "created_at": [ - 4554 + 4610 ], "description": [ 82 ], "ends_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "needs_rebuild": [ 6 @@ -94211,13 +95031,13 @@ export default { 41 ], "player_season_stats": [ - 3722 + 3751 ], "player_season_stats_aggregate": [ - 3705 + 3734 ], "starts_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -94234,19 +95054,19 @@ export default { }, "seasons_insert_input": { "awards": [ - 194 + 196 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "needs_rebuild": [ 5 @@ -94255,10 +95075,10 @@ export default { 40 ], "player_season_stats": [ - 3719 + 3748 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94266,22 +95086,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "number": [ 40 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94289,22 +95109,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "number": [ 40 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94315,7 +95135,7 @@ export default { 40 ], "returning": [ - 4023 + 4079 ], "__typename": [ 80 @@ -94323,10 +95143,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 4030 + 4086 ], "on_conflict": [ - 4035 + 4091 ], "__typename": [ 80 @@ -94334,13 +95154,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 4028 + 4084 ], "update_columns": [ - 4046 + 4102 ], "where": [ - 4027 + 4083 ], "__typename": [ 80 @@ -94348,31 +95168,31 @@ export default { }, "seasons_order_by": { "awards_aggregate": [ - 193 + 195 ], "created_at": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "ends_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "needs_rebuild": [ - 3006 + 3035 ], "number": [ - 3006 + 3035 ], "player_season_stats_aggregate": [ - 3718 + 3747 ], "starts_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -94380,7 +95200,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -94389,16 +95209,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "needs_rebuild": [ 5 @@ -94407,7 +95227,7 @@ export default { 40 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94439,10 +95259,10 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 4044 + 4100 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -94450,16 +95270,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "description": [ 80 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "needs_rebuild": [ 5 @@ -94468,7 +95288,7 @@ export default { 40 ], "starts_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -94485,13 +95305,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4029 + 4085 ], "_set": [ - 4039 + 4095 ], "where": [ - 4027 + 4083 ], "__typename": [ 80 @@ -94529,10 +95349,10 @@ export default { 80 ], "game_server_nodes": [ - 1718, + 1720, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -94542,19 +95362,19 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], "game_server_nodes_aggregate": [ - 1719, + 1721, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -94564,11 +95384,11 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], @@ -94596,10 +95416,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 4053 + 4109 ], "nodes": [ - 4051 + 4107 ], "__typename": [ 80 @@ -94607,13 +95427,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 4054 + 4110 ], "count": [ 40, { "columns": [ - 4065, + 4121, "[server_regions_select_column!]" ], "distinct": [ @@ -94622,31 +95442,31 @@ export default { } ], "max": [ - 4058 + 4114 ], "min": [ - 4059 + 4115 ], "stddev": [ - 4067 + 4123 ], "stddev_pop": [ - 4068 + 4124 ], "stddev_samp": [ - 4069 + 4125 ], "sum": [ - 4072 + 4128 ], "var_pop": [ - 4075 + 4131 ], "var_samp": [ - 4076 + 4132 ], "variance": [ - 4077 + 4133 ], "__typename": [ 80 @@ -94665,13 +95485,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 4055 + 4111 ], "_not": [ - 4055 + 4111 ], "_or": [ - 4055 + 4111 ], "available_server_count": [ 41 @@ -94680,10 +95500,10 @@ export default { 82 ], "game_server_nodes": [ - 1730 + 1732 ], "game_server_nodes_aggregate": [ - 1720 + 1722 ], "has_node": [ 6 @@ -94713,7 +95533,7 @@ export default { 80 ], "game_server_nodes": [ - 1727 + 1729 ], "is_lan": [ 5 @@ -94773,7 +95593,7 @@ export default { 40 ], "returning": [ - 4051 + 4107 ], "__typename": [ 80 @@ -94781,10 +95601,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 4057 + 4113 ], "on_conflict": [ - 4062 + 4118 ], "__typename": [ 80 @@ -94792,13 +95612,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 4056 + 4112 ], "update_columns": [ - 4073 + 4129 ], "where": [ - 4055 + 4111 ], "__typename": [ 80 @@ -94806,31 +95626,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "game_server_nodes_aggregate": [ - 1725 + 1727 ], "has_node": [ - 3006 + 3035 ], "is_lan": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "steam_relay": [ - 3006 + 3035 ], "total_server_count": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -94897,10 +95717,10 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 4071 + 4127 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -94937,10 +95757,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4066 + 4122 ], "where": [ - 4055 + 4111 ], "__typename": [ 80 @@ -94981,7 +95801,7 @@ export default { }, "servers": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -95002,7 +95822,7 @@ export default { 80 ], "current_match": [ - 2821 + 2823 ], "enabled": [ 5 @@ -95011,7 +95831,7 @@ export default { 80 ], "game_server_node": [ - 1718 + 1720 ], "game_server_node_id": [ 80 @@ -95020,7 +95840,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_dedicated": [ 5 @@ -95029,10 +95849,10 @@ export default { 80 ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -95042,19 +95862,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_aggregate": [ - 2822, + 2824, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -95064,11 +95884,11 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], @@ -95076,10 +95896,10 @@ export default { 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_runtime": [ - 1110 + 1112 ], "plugin_version": [ 80 @@ -95088,7 +95908,7 @@ export default { 40 ], "rcon_password": [ - 260 + 262 ], "rcon_status": [ 5 @@ -95097,10 +95917,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "server_region": [ - 4051 + 4107 ], "steam_relay": [ 80 @@ -95109,10 +95929,10 @@ export default { 40 ], "type": [ - 1191 + 1193 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -95120,10 +95940,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 4084 + 4140 ], "nodes": [ - 4078 + 4134 ], "__typename": [ 80 @@ -95131,13 +95951,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 4081 + 4137 ], "bool_or": [ - 4082 + 4138 ], "count": [ - 4083 + 4139 ], "__typename": [ 80 @@ -95145,13 +95965,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4103 + 4159 ], "distinct": [ 5 ], "filter": [ - 4089 + 4145 ], "predicate": [ 6 @@ -95162,13 +95982,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4104 + 4160 ], "distinct": [ 5 ], "filter": [ - 4089 + 4145 ], "predicate": [ 6 @@ -95179,13 +95999,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4102 + 4158 ], "distinct": [ 5 ], "filter": [ - 4089 + 4145 ], "predicate": [ 41 @@ -95196,13 +96016,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 4087 + 4143 ], "count": [ 40, { "columns": [ - 4102, + 4158, "[servers_select_column!]" ], "distinct": [ @@ -95211,31 +96031,31 @@ export default { } ], "max": [ - 4093 + 4149 ], "min": [ - 4095 + 4151 ], "stddev": [ - 4106 + 4162 ], "stddev_pop": [ - 4108 + 4164 ], "stddev_samp": [ - 4110 + 4166 ], "sum": [ - 4114 + 4170 ], "var_pop": [ - 4118 + 4174 ], "var_samp": [ - 4120 + 4176 ], "variance": [ - 4122 + 4178 ], "__typename": [ 80 @@ -95243,37 +96063,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 4088 + 4144 ], "count": [ - 3006 + 3035 ], "max": [ - 4094 + 4150 ], "min": [ - 4096 + 4152 ], "stddev": [ - 4107 + 4163 ], "stddev_pop": [ - 4109 + 4165 ], "stddev_samp": [ - 4111 + 4167 ], "sum": [ - 4115 + 4171 ], "var_pop": [ - 4119 + 4175 ], "var_samp": [ - 4121 + 4177 ], "variance": [ - 4123 + 4179 ], "__typename": [ 80 @@ -95281,10 +96101,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 4092 + 4148 ], "on_conflict": [ - 4099 + 4155 ], "__typename": [ 80 @@ -95306,13 +96126,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -95320,16 +96140,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 4089 + 4145 ], "_not": [ - 4089 + 4145 ], "_or": [ - 4089 + 4145 ], "api_password": [ - 5055 + 5111 ], "boot_status": [ 82 @@ -95350,7 +96170,7 @@ export default { 82 ], "current_match": [ - 2830 + 2832 ], "enabled": [ 6 @@ -95359,7 +96179,7 @@ export default { 82 ], "game_server_node": [ - 1730 + 1732 ], "game_server_node_id": [ 82 @@ -95368,7 +96188,7 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "is_dedicated": [ 6 @@ -95377,19 +96197,19 @@ export default { 82 ], "matches": [ - 2830 + 2832 ], "matches_aggregate": [ - 2823 + 2825 ], "max_players": [ 41 ], "offline_at": [ - 4554 + 4610 ], "plugin_runtime": [ - 1111 + 1113 ], "plugin_version": [ 82 @@ -95398,7 +96218,7 @@ export default { 41 ], "rcon_password": [ - 261 + 263 ], "rcon_status": [ 6 @@ -95407,10 +96227,10 @@ export default { 82 ], "reserved_by_match_id": [ - 5055 + 5111 ], "server_region": [ - 4055 + 4111 ], "steam_relay": [ 82 @@ -95419,10 +96239,10 @@ export default { 41 ], "type": [ - 1192 + 1194 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -95445,7 +96265,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -95460,7 +96280,7 @@ export default { 5 ], "current_match": [ - 2839 + 2841 ], "enabled": [ 5 @@ -95469,7 +96289,7 @@ export default { 80 ], "game_server_node": [ - 1742 + 1744 ], "game_server_node_id": [ 80 @@ -95478,7 +96298,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_dedicated": [ 5 @@ -95487,16 +96307,16 @@ export default { 80 ], "matches": [ - 2827 + 2829 ], "max_players": [ 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_runtime": [ - 1110 + 1112 ], "plugin_version": [ 80 @@ -95505,7 +96325,7 @@ export default { 40 ], "rcon_password": [ - 260 + 262 ], "rcon_status": [ 5 @@ -95514,10 +96334,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "server_region": [ - 4061 + 4117 ], "steam_relay": [ 80 @@ -95526,10 +96346,10 @@ export default { 40 ], "type": [ - 1191 + 1193 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -95537,7 +96357,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -95564,7 +96384,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "label": [ 80 @@ -95573,7 +96393,7 @@ export default { 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_version": [ 80 @@ -95585,7 +96405,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "steam_relay": [ 80 @@ -95594,7 +96414,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -95602,58 +96422,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 3006 + 3035 ], "boot_status": [ - 3006 + 3035 ], "boot_status_detail": [ - 3006 + 3035 ], "connect_password": [ - 3006 + 3035 ], "game": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "host": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "max_players": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "plugin_version": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "reserved_by_match_id": [ - 3006 + 3035 ], "steam_relay": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -95661,7 +96481,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -95688,7 +96508,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "label": [ 80 @@ -95697,7 +96517,7 @@ export default { 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_version": [ 80 @@ -95709,7 +96529,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "steam_relay": [ 80 @@ -95718,7 +96538,7 @@ export default { 40 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -95726,58 +96546,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 3006 + 3035 ], "boot_status": [ - 3006 + 3035 ], "boot_status_detail": [ - 3006 + 3035 ], "connect_password": [ - 3006 + 3035 ], "game": [ - 3006 + 3035 ], "game_server_node_id": [ - 3006 + 3035 ], "host": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "max_players": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "plugin_version": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "reserved_by_match_id": [ - 3006 + 3035 ], "steam_relay": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -95788,7 +96608,7 @@ export default { 40 ], "returning": [ - 4078 + 4134 ], "__typename": [ 80 @@ -95796,10 +96616,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 4092 + 4148 ], "on_conflict": [ - 4099 + 4155 ], "__typename": [ 80 @@ -95807,13 +96627,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 4090 + 4146 ], "update_columns": [ - 4116 + 4172 ], "where": [ - 4089 + 4145 ], "__typename": [ 80 @@ -95821,97 +96641,97 @@ export default { }, "servers_order_by": { "api_password": [ - 3006 + 3035 ], "boot_status": [ - 3006 + 3035 ], "boot_status_detail": [ - 3006 + 3035 ], "connect_password": [ - 3006 + 3035 ], "connected": [ - 3006 + 3035 ], "connection_link": [ - 3006 + 3035 ], "connection_string": [ - 3006 + 3035 ], "current_match": [ - 2841 + 2843 ], "enabled": [ - 3006 + 3035 ], "game": [ - 3006 + 3035 ], "game_server_node": [ - 1744 + 1746 ], "game_server_node_id": [ - 3006 + 3035 ], "host": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_dedicated": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "matches_aggregate": [ - 2826 + 2828 ], "max_players": [ - 3006 + 3035 ], "offline_at": [ - 3006 + 3035 ], "plugin_runtime": [ - 3006 + 3035 ], "plugin_version": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "rcon_password": [ - 3006 + 3035 ], "rcon_status": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "reserved_by_match_id": [ - 3006 + 3035 ], "server_region": [ - 4063 + 4119 ], "steam_relay": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -95919,7 +96739,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -95930,7 +96750,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -95957,7 +96777,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_dedicated": [ 5 @@ -95969,10 +96789,10 @@ export default { 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_runtime": [ - 1110 + 1112 ], "plugin_version": [ 80 @@ -95981,7 +96801,7 @@ export default { 40 ], "rcon_password": [ - 260 + 262 ], "rcon_status": [ 5 @@ -95990,7 +96810,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "steam_relay": [ 80 @@ -95999,10 +96819,10 @@ export default { 40 ], "type": [ - 1191 + 1193 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -96024,13 +96844,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96052,13 +96872,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96080,13 +96900,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96094,10 +96914,10 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 4113 + 4169 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -96105,7 +96925,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 5053 + 5109 ], "boot_status": [ 80 @@ -96132,7 +96952,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_dedicated": [ 5 @@ -96144,10 +96964,10 @@ export default { 40 ], "offline_at": [ - 4553 + 4609 ], "plugin_runtime": [ - 1110 + 1112 ], "plugin_version": [ 80 @@ -96156,7 +96976,7 @@ export default { 40 ], "rcon_password": [ - 260 + 262 ], "rcon_status": [ 5 @@ -96165,7 +96985,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5053 + 5109 ], "steam_relay": [ 80 @@ -96174,10 +96994,10 @@ export default { 40 ], "type": [ - 1191 + 1193 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -96199,13 +97019,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96214,13 +97034,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 4091 + 4147 ], "_set": [ - 4105 + 4161 ], "where": [ - 4089 + 4145 ], "__typename": [ 80 @@ -96242,13 +97062,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96270,13 +97090,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96298,13 +97118,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 3006 + 3035 ], "port": [ - 3006 + 3035 ], "tv_port": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96323,10 +97143,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 4126 + 4182 ], "nodes": [ - 4124 + 4180 ], "__typename": [ 80 @@ -96337,7 +97157,7 @@ export default { 40, { "columns": [ - 4136, + 4192, "[settings_select_column!]" ], "distinct": [ @@ -96346,10 +97166,10 @@ export default { } ], "max": [ - 4130 + 4186 ], "min": [ - 4131 + 4187 ], "__typename": [ 80 @@ -96357,13 +97177,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 4127 + 4183 ], "_not": [ - 4127 + 4183 ], "_or": [ - 4127 + 4183 ], "name": [ 82 @@ -96414,7 +97234,7 @@ export default { 40 ], "returning": [ - 4124 + 4180 ], "__typename": [ 80 @@ -96422,13 +97242,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 4128 + 4184 ], "update_columns": [ - 4140 + 4196 ], "where": [ - 4127 + 4183 ], "__typename": [ 80 @@ -96436,10 +97256,10 @@ export default { }, "settings_order_by": { "name": [ - 3006 + 3035 ], "value": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96467,10 +97287,10 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 4139 + 4195 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -96490,10 +97310,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 4137 + 4193 ], "where": [ - 4127 + 4183 ], "__typename": [ 80 @@ -96502,31 +97322,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4142 + 4198 ], "_gt": [ - 4142 + 4198 ], "_gte": [ - 4142 + 4198 ], "_in": [ - 4142 + 4198 ], "_is_null": [ 5 ], "_lt": [ - 4142 + 4198 ], "_lte": [ - 4142 + 4198 ], "_neq": [ - 4142 + 4198 ], "_nin": [ - 4142 + 4198 ], "__typename": [ 80 @@ -96534,16 +97354,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "node": [ - 1718 + 1720 ], "node_id": [ 80 @@ -96552,10 +97372,10 @@ export default { 80 ], "steam_account": [ - 4168 + 4224 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96563,10 +97383,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 4148 + 4204 ], "nodes": [ - 4144 + 4200 ], "__typename": [ 80 @@ -96574,7 +97394,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4147 + 4203 ], "__typename": [ 80 @@ -96582,13 +97402,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4162 + 4218 ], "distinct": [ 5 ], "filter": [ - 4151 + 4207 ], "predicate": [ 41 @@ -96602,7 +97422,7 @@ export default { 40, { "columns": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -96611,10 +97431,10 @@ export default { } ], "max": [ - 4154 + 4210 ], "min": [ - 4156 + 4212 ], "__typename": [ 80 @@ -96622,13 +97442,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 4155 + 4211 ], "min": [ - 4157 + 4213 ], "__typename": [ 80 @@ -96636,10 +97456,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4153 + 4209 ], "on_conflict": [ - 4159 + 4215 ], "__typename": [ 80 @@ -96647,25 +97467,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 4151 + 4207 ], "_not": [ - 4151 + 4207 ], "_or": [ - 4151 + 4207 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "k8s_job_name": [ 82 ], "node": [ - 1730 + 1732 ], "node_id": [ 82 @@ -96674,10 +97494,10 @@ export default { 82 ], "steam_account": [ - 4172 + 4228 ], "steam_account_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -96686,16 +97506,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 ], "node": [ - 1742 + 1744 ], "node_id": [ 80 @@ -96704,10 +97524,10 @@ export default { 80 ], "steam_account": [ - 4179 + 4235 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96715,10 +97535,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 @@ -96730,7 +97550,7 @@ export default { 80 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96738,22 +97558,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "node_id": [ - 3006 + 3035 ], "purpose": [ - 3006 + 3035 ], "steam_account_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96761,10 +97581,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 @@ -96776,7 +97596,7 @@ export default { 80 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96784,22 +97604,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "node_id": [ - 3006 + 3035 ], "purpose": [ - 3006 + 3035 ], "steam_account_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96810,7 +97630,7 @@ export default { 40 ], "returning": [ - 4144 + 4200 ], "__typename": [ 80 @@ -96818,13 +97638,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 4152 + 4208 ], "update_columns": [ - 4166 + 4222 ], "where": [ - 4151 + 4207 ], "__typename": [ 80 @@ -96832,28 +97652,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "k8s_job_name": [ - 3006 + 3035 ], "node": [ - 1744 + 1746 ], "node_id": [ - 3006 + 3035 ], "purpose": [ - 3006 + 3035 ], "steam_account": [ - 4181 + 4237 ], "steam_account_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -96861,7 +97681,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96870,10 +97690,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 @@ -96885,7 +97705,7 @@ export default { 80 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96893,10 +97713,10 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4165 + 4221 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -96904,10 +97724,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "k8s_job_name": [ 80 @@ -96919,7 +97739,7 @@ export default { 80 ], "steam_account_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -96928,10 +97748,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4163 + 4219 ], "where": [ - 4151 + 4207 ], "__typename": [ 80 @@ -96939,10 +97759,10 @@ export default { }, "steam_accounts": { "claims": [ - 4144, + 4200, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -96952,19 +97772,19 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "claims_aggregate": [ - 4145, + 4201, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -96974,25 +97794,25 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node": [ - 1718 + 1720 ], "last_node_id": [ 80 @@ -97007,10 +97827,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97021,10 +97841,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 4170 + 4226 ], "nodes": [ - 4168 + 4224 ], "__typename": [ 80 @@ -97032,13 +97852,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 4171 + 4227 ], "count": [ 40, { "columns": [ - 4183, + 4239, "[steam_accounts_select_column!]" ], "distinct": [ @@ -97047,31 +97867,31 @@ export default { } ], "max": [ - 4176 + 4232 ], "min": [ - 4177 + 4233 ], "stddev": [ - 4185 + 4241 ], "stddev_pop": [ - 4186 + 4242 ], "stddev_samp": [ - 4187 + 4243 ], "sum": [ - 4190 + 4246 ], "var_pop": [ - 4193 + 4249 ], "var_samp": [ - 4194 + 4250 ], "variance": [ - 4195 + 4251 ], "__typename": [ 80 @@ -97093,31 +97913,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 4172 + 4228 ], "_not": [ - 4172 + 4228 ], "_or": [ - 4172 + 4228 ], "claims": [ - 4151 + 4207 ], "claims_aggregate": [ - 4146 + 4202 ], "created_at": [ - 4554 + 4610 ], "friend_capacity": [ 41 ], "id": [ - 5055 + 5111 ], "last_node": [ - 1730 + 1732 ], "last_node_id": [ 82 @@ -97132,10 +97952,10 @@ export default { 41 ], "steamid64": [ - 259 + 261 ], "updated_at": [ - 4554 + 4610 ], "username": [ 82 @@ -97153,7 +97973,7 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "__typename": [ 80 @@ -97161,19 +97981,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 4150 + 4206 ], "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node": [ - 1742 + 1744 ], "last_node_id": [ 80 @@ -97188,10 +98008,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97202,13 +98022,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node_id": [ 80 @@ -97223,10 +98043,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97237,13 +98057,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node_id": [ 80 @@ -97258,10 +98078,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97275,7 +98095,7 @@ export default { 40 ], "returning": [ - 4168 + 4224 ], "__typename": [ 80 @@ -97283,10 +98103,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4175 + 4231 ], "on_conflict": [ - 4180 + 4236 ], "__typename": [ 80 @@ -97294,13 +98114,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 4173 + 4229 ], "update_columns": [ - 4191 + 4247 ], "where": [ - 4172 + 4228 ], "__typename": [ 80 @@ -97308,40 +98128,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 4149 + 4205 ], "created_at": [ - 3006 + 3035 ], "friend_capacity": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "last_node": [ - 1744 + 1746 ], "last_node_id": [ - 3006 + 3035 ], "password": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "steam_level": [ - 3006 + 3035 ], "steamid64": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "username": [ - 3006 + 3035 ], "__typename": [ 80 @@ -97349,7 +98169,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -97358,13 +98178,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node_id": [ 80 @@ -97379,10 +98199,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97435,10 +98255,10 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4189 + 4245 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -97446,13 +98266,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "friend_capacity": [ 40 ], "id": [ - 5053 + 5109 ], "last_node_id": [ 80 @@ -97467,10 +98287,10 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "updated_at": [ - 4553 + 4609 ], "username": [ 80 @@ -97487,7 +98307,7 @@ export default { 40 ], "steamid64": [ - 257 + 259 ], "__typename": [ 80 @@ -97496,13 +98316,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4174 + 4230 ], "_set": [ - 4184 + 4240 ], "where": [ - 4172 + 4228 ], "__typename": [ 80 @@ -97552,19 +98372,19 @@ export default { }, "system_alerts": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "dismissible": [ 5 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "is_active": [ 5 @@ -97576,10 +98396,10 @@ export default { 80 ], "type": [ - 1231 + 1233 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97587,10 +98407,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 4198 + 4254 ], "nodes": [ - 4196 + 4252 ], "__typename": [ 80 @@ -97598,13 +98418,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 4199 + 4255 ], "count": [ 40, { "columns": [ - 4210, + 4266, "[system_alerts_select_column!]" ], "distinct": [ @@ -97613,31 +98433,31 @@ export default { } ], "max": [ - 4204 + 4260 ], "min": [ - 4205 + 4261 ], "stddev": [ - 4212 + 4268 ], "stddev_pop": [ - 4213 + 4269 ], "stddev_samp": [ - 4214 + 4270 ], "sum": [ - 4217 + 4273 ], "var_pop": [ - 4220 + 4276 ], "var_samp": [ - 4221 + 4277 ], "variance": [ - 4222 + 4278 ], "__typename": [ 80 @@ -97653,28 +98473,28 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 4200 + 4256 ], "_not": [ - 4200 + 4256 ], "_or": [ - 4200 + 4256 ], "created_at": [ - 4554 + 4610 ], "created_by": [ - 259 + 261 ], "dismissible": [ 6 ], "expires_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "is_active": [ 6 @@ -97686,10 +98506,10 @@ export default { 82 ], "type": [ - 1232 + 1234 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -97698,7 +98518,7 @@ export default { "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 257 + 259 ], "__typename": [ 80 @@ -97706,19 +98526,19 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "dismissible": [ 5 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "is_active": [ 5 @@ -97730,10 +98550,10 @@ export default { 80 ], "type": [ - 1231 + 1233 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97741,16 +98561,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 @@ -97759,7 +98579,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97767,16 +98587,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "message": [ 80 @@ -97785,7 +98605,7 @@ export default { 80 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97796,7 +98616,7 @@ export default { 40 ], "returning": [ - 4196 + 4252 ], "__typename": [ 80 @@ -97804,13 +98624,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 4201 + 4257 ], "update_columns": [ - 4218 + 4274 ], "where": [ - 4200 + 4256 ], "__typename": [ 80 @@ -97818,34 +98638,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 3006 + 3035 ], "created_by": [ - 3006 + 3035 ], "dismissible": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_active": [ - 3006 + 3035 ], "message": [ - 3006 + 3035 ], "title": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -97853,7 +98673,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -97862,19 +98682,19 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "dismissible": [ 5 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "is_active": [ 5 @@ -97886,10 +98706,10 @@ export default { 80 ], "type": [ - 1231 + 1233 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97921,10 +98741,10 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4216 + 4272 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -97932,19 +98752,19 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "created_by": [ - 257 + 259 ], "dismissible": [ 5 ], "expires_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "is_active": [ 5 @@ -97956,10 +98776,10 @@ export default { 80 ], "type": [ - 1231 + 1233 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -97967,7 +98787,7 @@ export default { }, "system_alerts_sum_fields": { "created_by": [ - 257 + 259 ], "__typename": [ 80 @@ -97976,13 +98796,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4202 + 4258 ], "_set": [ - 4211 + 4267 ], "where": [ - 4200 + 4256 ], "__typename": [ 80 @@ -98014,28 +98834,28 @@ export default { }, "team_invites": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by": [ - 3964 + 3993 ], "invited_by_player_steam_id": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98043,10 +98863,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4227 + 4283 ], "nodes": [ - 4223 + 4279 ], "__typename": [ 80 @@ -98054,7 +98874,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4226 + 4282 ], "__typename": [ 80 @@ -98062,13 +98882,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4244 + 4300 ], "distinct": [ 5 ], "filter": [ - 4232 + 4288 ], "predicate": [ 41 @@ -98079,13 +98899,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4230 + 4286 ], "count": [ 40, { "columns": [ - 4244, + 4300, "[team_invites_select_column!]" ], "distinct": [ @@ -98094,31 +98914,31 @@ export default { } ], "max": [ - 4236 + 4292 ], "min": [ - 4238 + 4294 ], "stddev": [ - 4246 + 4302 ], "stddev_pop": [ - 4248 + 4304 ], "stddev_samp": [ - 4250 + 4306 ], "sum": [ - 4254 + 4310 ], "var_pop": [ - 4258 + 4314 ], "var_samp": [ - 4260 + 4316 ], "variance": [ - 4262 + 4318 ], "__typename": [ 80 @@ -98126,37 +98946,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4231 + 4287 ], "count": [ - 3006 + 3035 ], "max": [ - 4237 + 4293 ], "min": [ - 4239 + 4295 ], "stddev": [ - 4247 + 4303 ], "stddev_pop": [ - 4249 + 4305 ], "stddev_samp": [ - 4251 + 4307 ], "sum": [ - 4255 + 4311 ], "var_pop": [ - 4259 + 4315 ], "var_samp": [ - 4261 + 4317 ], "variance": [ - 4263 + 4319 ], "__typename": [ 80 @@ -98164,10 +98984,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4235 + 4291 ], "on_conflict": [ - 4241 + 4297 ], "__typename": [ 80 @@ -98186,10 +99006,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98197,37 +99017,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4232 + 4288 ], "_not": [ - 4232 + 4288 ], "_or": [ - 4232 + 4288 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "invited_by": [ - 3968 + 3997 ], "invited_by_player_steam_id": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -98236,10 +99056,10 @@ export default { "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -98247,28 +99067,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by": [ - 3975 + 4004 ], "invited_by_player_steam_id": [ - 257 + 259 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98276,19 +99096,19 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98296,19 +99116,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98316,19 +99136,19 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98336,19 +99156,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98359,7 +99179,7 @@ export default { 40 ], "returning": [ - 4223 + 4279 ], "__typename": [ 80 @@ -98367,13 +99187,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4233 + 4289 ], "update_columns": [ - 4256 + 4312 ], "where": [ - 4232 + 4288 ], "__typename": [ 80 @@ -98381,28 +99201,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by": [ - 3977 + 4006 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98410,7 +99230,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98419,19 +99239,19 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98450,10 +99270,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98472,10 +99292,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98494,10 +99314,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98505,10 +99325,10 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4253 + 4309 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -98516,19 +99336,19 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98536,10 +99356,10 @@ export default { }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -98547,10 +99367,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98559,13 +99379,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4234 + 4290 ], "_set": [ - 4245 + 4301 ], "where": [ - 4232 + 4288 ], "__typename": [ 80 @@ -98584,10 +99404,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98606,10 +99426,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98628,10 +99448,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98642,25 +99462,25 @@ export default { 5 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "roster_image_url": [ 80 ], "status": [ - 1272 + 1274 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98668,10 +99488,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4270 + 4326 ], "nodes": [ - 4264 + 4320 ], "__typename": [ 80 @@ -98679,13 +99499,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4267 + 4323 ], "bool_or": [ - 4268 + 4324 ], "count": [ - 4269 + 4325 ], "__typename": [ 80 @@ -98693,13 +99513,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4288 + 4344 ], "distinct": [ 5 ], "filter": [ - 4275 + 4331 ], "predicate": [ 6 @@ -98710,13 +99530,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4289 + 4345 ], "distinct": [ 5 ], "filter": [ - 4275 + 4331 ], "predicate": [ 6 @@ -98727,13 +99547,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4287 + 4343 ], "distinct": [ 5 ], "filter": [ - 4275 + 4331 ], "predicate": [ 41 @@ -98744,13 +99564,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4273 + 4329 ], "count": [ 40, { "columns": [ - 4287, + 4343, "[team_roster_select_column!]" ], "distinct": [ @@ -98759,31 +99579,31 @@ export default { } ], "max": [ - 4279 + 4335 ], "min": [ - 4281 + 4337 ], "stddev": [ - 4291 + 4347 ], "stddev_pop": [ - 4293 + 4349 ], "stddev_samp": [ - 4295 + 4351 ], "sum": [ - 4299 + 4355 ], "var_pop": [ - 4303 + 4359 ], "var_samp": [ - 4305 + 4361 ], "variance": [ - 4307 + 4363 ], "__typename": [ 80 @@ -98791,37 +99611,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4274 + 4330 ], "count": [ - 3006 + 3035 ], "max": [ - 4280 + 4336 ], "min": [ - 4282 + 4338 ], "stddev": [ - 4292 + 4348 ], "stddev_pop": [ - 4294 + 4350 ], "stddev_samp": [ - 4296 + 4352 ], "sum": [ - 4300 + 4356 ], "var_pop": [ - 4304 + 4360 ], "var_samp": [ - 4306 + 4362 ], "variance": [ - 4308 + 4364 ], "__typename": [ 80 @@ -98829,10 +99649,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4278 + 4334 ], "on_conflict": [ - 4284 + 4340 ], "__typename": [ 80 @@ -98848,7 +99668,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98856,37 +99676,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4275 + 4331 ], "_not": [ - 4275 + 4331 ], "_or": [ - 4275 + 4331 ], "coach": [ 6 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "role": [ - 1252 + 1254 ], "roster_image_url": [ 82 ], "status": [ - 1273 + 1275 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -98895,7 +99715,7 @@ export default { "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -98906,25 +99726,25 @@ export default { 5 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "roster_image_url": [ 80 ], "status": [ - 1272 + 1274 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98932,13 +99752,13 @@ export default { }, "team_roster_max_fields": { "player_steam_id": [ - 257 + 259 ], "roster_image_url": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98946,13 +99766,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98960,13 +99780,13 @@ export default { }, "team_roster_min_fields": { "player_steam_id": [ - 257 + 259 ], "roster_image_url": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -98974,13 +99794,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -98991,7 +99811,7 @@ export default { 40 ], "returning": [ - 4264 + 4320 ], "__typename": [ 80 @@ -98999,13 +99819,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4276 + 4332 ], "update_columns": [ - 4301 + 4357 ], "where": [ - 4275 + 4331 ], "__typename": [ 80 @@ -99013,28 +99833,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "roster_image_url": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99042,10 +99862,10 @@ export default { }, "team_roster_pk_columns_input": { "player_steam_id": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99059,19 +99879,19 @@ export default { 5 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "roster_image_url": [ 80 ], "status": [ - 1272 + 1274 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99087,7 +99907,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99103,7 +99923,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99119,7 +99939,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99127,10 +99947,10 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4298 + 4354 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -99141,19 +99961,19 @@ export default { 5 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "roster_image_url": [ 80 ], "status": [ - 1272 + 1274 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99161,7 +99981,7 @@ export default { }, "team_roster_sum_fields": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -99169,7 +99989,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99178,13 +99998,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4277 + 4333 ], "_set": [ - 4290 + 4346 ], "where": [ - 4275 + 4331 ], "__typename": [ 80 @@ -99200,7 +100020,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99216,7 +100036,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99232,7 +100052,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99240,7 +100060,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99252,19 +100072,19 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99272,10 +100092,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4311 + 4367 ], "nodes": [ - 4309 + 4365 ], "__typename": [ 80 @@ -99283,13 +100103,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4312 + 4368 ], "count": [ 40, { "columns": [ - 4323, + 4379, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -99298,31 +100118,31 @@ export default { } ], "max": [ - 4317 + 4373 ], "min": [ - 4318 + 4374 ], "stddev": [ - 4325 + 4381 ], "stddev_pop": [ - 4326 + 4382 ], "stddev_samp": [ - 4327 + 4383 ], "sum": [ - 4330 + 4386 ], "var_pop": [ - 4333 + 4389 ], "var_samp": [ - 4334 + 4390 ], "variance": [ - 4335 + 4391 ], "__typename": [ 80 @@ -99341,16 +100161,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4313 + 4369 ], "_not": [ - 4313 + 4369 ], "_or": [ - 4313 + 4369 ], "created_at": [ - 4554 + 4610 ], "elo_max": [ 41 @@ -99362,19 +100182,19 @@ export default { 6 ], "id": [ - 5055 + 5111 ], "last_notified_at": [ - 4554 + 4610 ], "regions": [ 81 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -99394,7 +100214,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99406,19 +100226,19 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99426,7 +100246,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99435,16 +100255,16 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99452,7 +100272,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99461,16 +100281,16 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99481,7 +100301,7 @@ export default { 40 ], "returning": [ - 4309 + 4365 ], "__typename": [ 80 @@ -99489,13 +100309,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4314 + 4370 ], "update_columns": [ - 4331 + 4387 ], "where": [ - 4313 + 4369 ], "__typename": [ 80 @@ -99503,31 +100323,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 3006 + 3035 ], "elo_max": [ - 3006 + 3035 ], "elo_min": [ - 3006 + 3035 ], "enabled": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "last_notified_at": [ - 3006 + 3035 ], "regions": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99535,7 +100355,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99544,7 +100364,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99556,16 +100376,16 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99606,10 +100426,10 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4329 + 4385 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -99617,7 +100437,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -99629,16 +100449,16 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "regions": [ 80 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99658,13 +100478,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4315 + 4371 ], "_set": [ - 4324 + 4380 ], "where": [ - 4313 + 4369 ], "__typename": [ 80 @@ -99705,25 +100525,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4553 + 4609 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99731,10 +100551,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4342 + 4398 ], "nodes": [ - 4336 + 4392 ], "__typename": [ 80 @@ -99742,13 +100562,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4339 + 4395 ], "bool_or": [ - 4340 + 4396 ], "count": [ - 4341 + 4397 ], "__typename": [ 80 @@ -99756,13 +100576,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4357 + 4413 ], "distinct": [ 5 ], "filter": [ - 4345 + 4401 ], "predicate": [ 6 @@ -99773,13 +100593,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4358 + 4414 ], "distinct": [ 5 ], "filter": [ - 4345 + 4401 ], "predicate": [ 6 @@ -99790,13 +100610,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4356 + 4412 ], "distinct": [ 5 ], "filter": [ - 4345 + 4401 ], "predicate": [ 41 @@ -99810,7 +100630,7 @@ export default { 40, { "columns": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -99819,10 +100639,10 @@ export default { } ], "max": [ - 4348 + 4404 ], "min": [ - 4350 + 4406 ], "__typename": [ 80 @@ -99830,13 +100650,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 4349 + 4405 ], "min": [ - 4351 + 4407 ], "__typename": [ 80 @@ -99844,10 +100664,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4347 + 4403 ], "on_conflict": [ - 4353 + 4409 ], "__typename": [ 80 @@ -99855,34 +100675,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4345 + 4401 ], "_not": [ - 4345 + 4401 ], "_or": [ - 4345 + 4401 ], "created_at": [ - 4554 + 4610 ], "ends_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4554 + 4610 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -99891,25 +100711,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4553 + 4609 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99917,19 +100737,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "starts_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99937,19 +100757,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 3006 + 3035 ], "ends_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "starts_at": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -99957,19 +100777,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "starts_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -99977,19 +100797,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 3006 + 3035 ], "ends_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "starts_at": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100000,7 +100820,7 @@ export default { 40 ], "returning": [ - 4336 + 4392 ], "__typename": [ 80 @@ -100008,13 +100828,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4346 + 4402 ], "update_columns": [ - 4362 + 4418 ], "where": [ - 4345 + 4401 ], "__typename": [ 80 @@ -100022,25 +100842,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 3006 + 3035 ], "ends_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "recurring_weekly": [ - 3006 + 3035 ], "starts_at": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100048,7 +100868,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100059,22 +100879,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": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100082,10 +100902,10 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4361 + 4417 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -100093,22 +100913,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "ends_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100117,10 +100937,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4359 + 4415 ], "where": [ - 4345 + 4401 ], "__typename": [ 80 @@ -100128,31 +100948,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by": [ - 3964 + 3993 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team": [ - 4506 + 4562 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request": [ - 4405 + 4461 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100160,10 +100980,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4368 + 4424 ], "nodes": [ - 4364 + 4420 ], "__typename": [ 80 @@ -100171,7 +100991,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4367 + 4423 ], "__typename": [ 80 @@ -100179,13 +100999,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4385 + 4441 ], "distinct": [ 5 ], "filter": [ - 4373 + 4429 ], "predicate": [ 41 @@ -100196,13 +101016,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4371 + 4427 ], "count": [ 40, { "columns": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -100211,31 +101031,31 @@ export default { } ], "max": [ - 4377 + 4433 ], "min": [ - 4379 + 4435 ], "stddev": [ - 4387 + 4443 ], "stddev_pop": [ - 4389 + 4445 ], "stddev_samp": [ - 4391 + 4447 ], "sum": [ - 4395 + 4451 ], "var_pop": [ - 4399 + 4455 ], "var_samp": [ - 4401 + 4457 ], "variance": [ - 4403 + 4459 ], "__typename": [ 80 @@ -100243,37 +101063,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4372 + 4428 ], "count": [ - 3006 + 3035 ], "max": [ - 4378 + 4434 ], "min": [ - 4380 + 4436 ], "stddev": [ - 4388 + 4444 ], "stddev_pop": [ - 4390 + 4446 ], "stddev_samp": [ - 4392 + 4448 ], "sum": [ - 4396 + 4452 ], "var_pop": [ - 4400 + 4456 ], "var_samp": [ - 4402 + 4458 ], "variance": [ - 4404 + 4460 ], "__typename": [ 80 @@ -100281,10 +101101,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4376 + 4432 ], "on_conflict": [ - 4382 + 4438 ], "__typename": [ 80 @@ -100300,7 +101120,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100308,40 +101128,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4373 + 4429 ], "_not": [ - 4373 + 4429 ], "_or": [ - 4373 + 4429 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "proposed_by": [ - 3968 + 3997 ], "proposed_by_steam_id": [ - 259 + 261 ], "proposed_by_team": [ - 4517 + 4573 ], "proposed_by_team_id": [ - 5055 + 5111 ], "proposed_scheduled_at": [ - 4554 + 4610 ], "request": [ - 4416 + 4472 ], "request_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -100350,7 +101170,7 @@ export default { "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -100358,31 +101178,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by": [ - 3975 + 4004 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team": [ - 4526 + 4582 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request": [ - 4425 + 4481 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100390,22 +101210,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100413,22 +101233,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_by_team_id": [ - 3006 + 3035 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "request_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100436,22 +101256,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100459,22 +101279,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_by_team_id": [ - 3006 + 3035 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "request_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100485,7 +101305,7 @@ export default { 40 ], "returning": [ - 4364 + 4420 ], "__typename": [ 80 @@ -100493,13 +101313,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4374 + 4430 ], "update_columns": [ - 4397 + 4453 ], "where": [ - 4373 + 4429 ], "__typename": [ 80 @@ -100507,31 +101327,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "proposed_by": [ - 3977 + 4006 ], "proposed_by_steam_id": [ - 3006 + 3035 ], "proposed_by_team": [ - 4528 + 4584 ], "proposed_by_team_id": [ - 3006 + 3035 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "request": [ - 4427 + 4483 ], "request_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100539,7 +101359,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100548,22 +101368,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100579,7 +101399,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100595,7 +101415,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100611,7 +101431,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100619,10 +101439,10 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4394 + 4450 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -100630,22 +101450,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "proposed_by_steam_id": [ - 257 + 259 ], "proposed_by_team_id": [ - 5053 + 5109 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "request_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100653,7 +101473,7 @@ export default { }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -100661,7 +101481,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100670,13 +101490,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4375 + 4431 ], "_set": [ - 4386 + 4442 ], "where": [ - 4373 + 4429 ], "__typename": [ 80 @@ -100692,7 +101512,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100708,7 +101528,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100724,7 +101544,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -100735,55 +101555,55 @@ export default { 5 ], "awaiting_team": [ - 4506 + 4562 ], "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "canceled_late": [ 5 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team": [ - 4506 + 4562 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_options": [ - 2697 + 2699 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposals": [ - 4364, + 4420, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -100793,19 +101613,19 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "proposals_aggregate": [ - 4365, + 4421, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -100815,40 +101635,40 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by": [ - 3964 + 3993 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "status": [ - 1171 + 1173 ], "to_team": [ - 4506 + 4562 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -100856,10 +101676,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4411 + 4467 ], "nodes": [ - 4405 + 4461 ], "__typename": [ 80 @@ -100867,13 +101687,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4408 + 4464 ], "bool_or": [ - 4409 + 4465 ], "count": [ - 4410 + 4466 ], "__typename": [ 80 @@ -100881,13 +101701,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4430 + 4486 ], "distinct": [ 5 ], "filter": [ - 4416 + 4472 ], "predicate": [ 6 @@ -100898,13 +101718,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4431 + 4487 ], "distinct": [ 5 ], "filter": [ - 4416 + 4472 ], "predicate": [ 6 @@ -100915,13 +101735,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4429 + 4485 ], "distinct": [ 5 ], "filter": [ - 4416 + 4472 ], "predicate": [ 41 @@ -100932,13 +101752,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4414 + 4470 ], "count": [ 40, { "columns": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -100947,31 +101767,31 @@ export default { } ], "max": [ - 4420 + 4476 ], "min": [ - 4422 + 4478 ], "stddev": [ - 4433 + 4489 ], "stddev_pop": [ - 4435 + 4491 ], "stddev_samp": [ - 4437 + 4493 ], "sum": [ - 4441 + 4497 ], "var_pop": [ - 4445 + 4501 ], "var_samp": [ - 4447 + 4503 ], "variance": [ - 4449 + 4505 ], "__typename": [ 80 @@ -100979,37 +101799,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4415 + 4471 ], "count": [ - 3006 + 3035 ], "max": [ - 4421 + 4477 ], "min": [ - 4423 + 4479 ], "stddev": [ - 4434 + 4490 ], "stddev_pop": [ - 4436 + 4492 ], "stddev_samp": [ - 4438 + 4494 ], "sum": [ - 4442 + 4498 ], "var_pop": [ - 4446 + 4502 ], "var_samp": [ - 4448 + 4504 ], "variance": [ - 4450 + 4506 ], "__typename": [ 80 @@ -101017,10 +101837,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4419 + 4475 ], "on_conflict": [ - 4426 + 4482 ], "__typename": [ 80 @@ -101036,7 +101856,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101044,94 +101864,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4416 + 4472 ], "_not": [ - 4416 + 4472 ], "_or": [ - 4416 + 4472 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4517 + 4573 ], "awaiting_team_id": [ - 5055 + 5111 ], "canceled_by_team_id": [ - 5055 + 5111 ], "canceled_late": [ 6 ], "created_at": [ - 4554 + 4610 ], "expires_at": [ - 4554 + 4610 ], "from_team": [ - 4517 + 4573 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 5055 + 5111 ], "id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_options": [ - 2701 + 2703 ], "match_options_id": [ - 5055 + 5111 ], "match_outcome": [ 82 ], "proposals": [ - 4373 + 4429 ], "proposals_aggregate": [ - 4366 + 4422 ], "proposed_scheduled_at": [ - 4554 + 4610 ], "region": [ 82 ], "requested_by": [ - 3968 + 3997 ], "requested_by_steam_id": [ - 259 + 261 ], "responded_at": [ - 4554 + 4610 ], "status": [ - 1172 + 1174 ], "to_team": [ - 4517 + 4573 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -101140,7 +101960,7 @@ export default { "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -101151,79 +101971,79 @@ export default { 5 ], "awaiting_team": [ - 4526 + 4582 ], "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "canceled_late": [ 5 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team": [ - 4526 + 4582 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_options": [ - 2708 + 2710 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposals": [ - 4370 + 4426 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by": [ - 3975 + 4004 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "status": [ - 1171 + 1173 ], "to_team": [ - 4526 + 4582 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101231,46 +102051,46 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101278,46 +102098,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3006 + 3035 ], "canceled_by_team_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "from_team_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "match_outcome": [ - 3006 + 3035 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "requested_by_steam_id": [ - 3006 + 3035 ], "responded_at": [ - 3006 + 3035 ], "to_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101325,46 +102145,46 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101372,46 +102192,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3006 + 3035 ], "canceled_by_team_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "from_team_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "match_outcome": [ - 3006 + 3035 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "requested_by_steam_id": [ - 3006 + 3035 ], "responded_at": [ - 3006 + 3035 ], "to_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101422,7 +102242,7 @@ export default { 40 ], "returning": [ - 4405 + 4461 ], "__typename": [ 80 @@ -101430,10 +102250,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4419 + 4475 ], "on_conflict": [ - 4426 + 4482 ], "__typename": [ 80 @@ -101441,13 +102261,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4417 + 4473 ], "update_columns": [ - 4443 + 4499 ], "where": [ - 4416 + 4472 ], "__typename": [ 80 @@ -101455,82 +102275,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 3006 + 3035 ], "awaiting_team": [ - 4528 + 4584 ], "awaiting_team_id": [ - 3006 + 3035 ], "canceled_by_team_id": [ - 3006 + 3035 ], "canceled_late": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "expires_at": [ - 3006 + 3035 ], "from_team": [ - 4528 + 4584 ], "from_team_checked_in": [ - 3006 + 3035 ], "from_team_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_options": [ - 2710 + 2712 ], "match_options_id": [ - 3006 + 3035 ], "match_outcome": [ - 3006 + 3035 ], "proposals_aggregate": [ - 4369 + 4425 ], "proposed_scheduled_at": [ - 3006 + 3035 ], "region": [ - 3006 + 3035 ], "requested_by": [ - 3977 + 4006 ], "requested_by_steam_id": [ - 3006 + 3035 ], "responded_at": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "to_team": [ - 4528 + 4584 ], "to_team_checked_in": [ - 3006 + 3035 ], "to_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101538,7 +102358,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101552,58 +102372,58 @@ export default { 5 ], "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "canceled_late": [ 5 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "status": [ - 1171 + 1173 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101619,7 +102439,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101635,7 +102455,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101651,7 +102471,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101659,10 +102479,10 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4440 + 4496 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -101673,58 +102493,58 @@ export default { 5 ], "awaiting_team_id": [ - 5053 + 5109 ], "canceled_by_team_id": [ - 5053 + 5109 ], "canceled_late": [ 5 ], "created_at": [ - 4553 + 4609 ], "expires_at": [ - 4553 + 4609 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4553 + 4609 ], "region": [ 80 ], "requested_by_steam_id": [ - 257 + 259 ], "responded_at": [ - 4553 + 4609 ], "status": [ - 1171 + 1173 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -101732,7 +102552,7 @@ export default { }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -101740,7 +102560,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101749,13 +102569,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4418 + 4474 ], "_set": [ - 4432 + 4488 ], "where": [ - 4416 + 4472 ], "__typename": [ 80 @@ -101771,7 +102591,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101787,7 +102607,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101803,7 +102623,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -101814,7 +102634,7 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -101826,10 +102646,10 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -101838,13 +102658,13 @@ export default { 80 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -101852,10 +102672,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4453 + 4509 ], "nodes": [ - 4451 + 4507 ], "__typename": [ 80 @@ -101863,13 +102683,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4454 + 4510 ], "count": [ 40, { "columns": [ - 4466, + 4522, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -101878,31 +102698,31 @@ export default { } ], "max": [ - 4459 + 4515 ], "min": [ - 4460 + 4516 ], "stddev": [ - 4468 + 4524 ], "stddev_pop": [ - 4469 + 4525 ], "stddev_samp": [ - 4470 + 4526 ], "sum": [ - 4473 + 4529 ], "var_pop": [ - 4476 + 4532 ], "var_samp": [ - 4477 + 4533 ], "variance": [ - 4478 + 4534 ], "__typename": [ 80 @@ -101921,19 +102741,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4455 + 4511 ], "_not": [ - 4455 + 4511 ], "_or": [ - 4455 + 4511 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4554 + 4610 ], "elo_max": [ 41 @@ -101945,10 +102765,10 @@ export default { 6 ], "id": [ - 5055 + 5111 ], "map_ids": [ - 5054 + 5110 ], "notes": [ 82 @@ -101957,13 +102777,13 @@ export default { 81 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -101986,7 +102806,7 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -101998,10 +102818,10 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -102010,13 +102830,13 @@ export default { 80 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -102024,7 +102844,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -102033,10 +102853,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -102045,10 +102865,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -102056,7 +102876,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -102065,10 +102885,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -102077,10 +102897,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -102091,7 +102911,7 @@ export default { 40 ], "returning": [ - 4451 + 4507 ], "__typename": [ 80 @@ -102099,10 +102919,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4458 + 4514 ], "on_conflict": [ - 4463 + 4519 ], "__typename": [ 80 @@ -102110,13 +102930,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4456 + 4512 ], "update_columns": [ - 4474 + 4530 ], "where": [ - 4455 + 4511 ], "__typename": [ 80 @@ -102124,40 +102944,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "elo_max": [ - 3006 + 3035 ], "elo_min": [ - 3006 + 3035 ], "enabled": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "map_ids": [ - 3006 + 3035 ], "notes": [ - 3006 + 3035 ], "regions": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -102165,7 +102985,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -102177,7 +102997,7 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -102189,10 +103009,10 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -102201,10 +103021,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -102245,10 +103065,10 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4472 + 4528 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -102259,7 +103079,7 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "elo_max": [ 40 @@ -102271,10 +103091,10 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "map_ids": [ - 5053 + 5109 ], "notes": [ 80 @@ -102283,10 +103103,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -102306,13 +103126,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4457 + 4513 ], "_set": [ - 4467 + 4523 ], "where": [ - 4455 + 4511 ], "__typename": [ 80 @@ -102353,19 +103173,19 @@ export default { }, "team_suggestions": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102379,10 +103199,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4481 + 4537 ], "nodes": [ - 4479 + 4535 ], "__typename": [ 80 @@ -102390,13 +103210,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4482 + 4538 ], "count": [ 40, { "columns": [ - 4493, + 4549, "[team_suggestions_select_column!]" ], "distinct": [ @@ -102405,31 +103225,31 @@ export default { } ], "max": [ - 4487 + 4543 ], "min": [ - 4488 + 4544 ], "stddev": [ - 4495 + 4551 ], "stddev_pop": [ - 4496 + 4552 ], "stddev_samp": [ - 4497 + 4553 ], "sum": [ - 4500 + 4556 ], "var_pop": [ - 4503 + 4559 ], "var_samp": [ - 4504 + 4560 ], "variance": [ - 4505 + 4561 ], "__typename": [ 80 @@ -102445,28 +103265,28 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4483 + 4539 ], "_not": [ - 4483 + 4539 ], "_or": [ - 4483 + 4539 ], "created_at": [ - 4554 + 4610 ], "group_hash": [ 82 ], "id": [ - 5055 + 5111 ], "last_notified_at": [ - 4554 + 4610 ], "member_steam_ids": [ - 258 + 260 ], "status": [ 82 @@ -102489,19 +103309,19 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102515,19 +103335,19 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102541,19 +103361,19 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102570,7 +103390,7 @@ export default { 40 ], "returning": [ - 4479 + 4535 ], "__typename": [ 80 @@ -102578,13 +103398,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4484 + 4540 ], "update_columns": [ - 4501 + 4557 ], "where": [ - 4483 + 4539 ], "__typename": [ 80 @@ -102592,25 +103412,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 3006 + 3035 ], "group_hash": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "last_notified_at": [ - 3006 + 3035 ], "member_steam_ids": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "together_count": [ - 3006 + 3035 ], "__typename": [ 80 @@ -102618,7 +103438,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -102627,19 +103447,19 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102677,10 +103497,10 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4499 + 4555 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -102688,19 +103508,19 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "group_hash": [ 80 ], "id": [ - 5053 + 5109 ], "last_notified_at": [ - 4553 + 4609 ], "member_steam_ids": [ - 257 + 259 ], "status": [ 80 @@ -102723,13 +103543,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4485 + 4541 ], "_set": [ - 4494 + 4550 ], "where": [ - 4483 + 4539 ], "__typename": [ 80 @@ -102764,10 +103584,10 @@ export default { 80 ], "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -102777,19 +103597,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -102799,11 +103619,11 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], @@ -102820,19 +103640,19 @@ export default { 5 ], "captain": [ - 3964 + 3993 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "invites": [ - 4223, + 4279, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -102842,19 +103662,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "invites_aggregate": [ - 4224, + 4280, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -102864,11 +103684,11 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], @@ -102876,10 +103696,10 @@ export default { 5 ], "match_lineups": [ - 2493, + 2495, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -102889,19 +103709,19 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "match_lineups_aggregate": [ - 2494, + 2496, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -102911,19 +103731,19 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -102933,11 +103753,11 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], @@ -102945,25 +103765,25 @@ export default { 80 ], "owner": [ - 3964 + 3993 ], "owner_steam_id": [ - 257 + 259 ], "ranks": [ - 5755 + 5811 ], "reputation": [ - 5775 + 5831 ], "role": [ 80 ], "roster": [ - 4264, + 4320, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -102973,19 +103793,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "roster_aggregate": [ - 4265, + 4321, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -102995,19 +103815,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "scrim_availability": [ - 4336, + 4392, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -103017,19 +103837,19 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "scrim_availability_aggregate": [ - 4337, + 4393, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -103039,25 +103859,25 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "scrim_settings": [ - 4451 + 4507 ], "short_name": [ 80 ], "tournament_teams": [ - 4947, + 5003, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -103067,19 +103887,19 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "tournament_teams_aggregate": [ - 4948, + 5004, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -103089,11 +103909,11 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], @@ -103103,10 +103923,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4512 + 4568 ], "nodes": [ - 4506 + 4562 ], "__typename": [ 80 @@ -103114,13 +103934,13 @@ export default { }, "teams_aggregate_bool_exp": { "bool_and": [ - 4509 + 4565 ], "bool_or": [ - 4510 + 4566 ], "count": [ - 4511 + 4567 ], "__typename": [ 80 @@ -103128,13 +103948,13 @@ export default { }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4531 + 4587 ], "distinct": [ 5 ], "filter": [ - 4517 + 4573 ], "predicate": [ 6 @@ -103145,13 +103965,13 @@ export default { }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4532 + 4588 ], "distinct": [ 5 ], "filter": [ - 4517 + 4573 ], "predicate": [ 6 @@ -103162,13 +103982,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4530 + 4586 ], "distinct": [ 5 ], "filter": [ - 4517 + 4573 ], "predicate": [ 41 @@ -103179,13 +103999,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4515 + 4571 ], "count": [ 40, { "columns": [ - 4530, + 4586, "[teams_select_column!]" ], "distinct": [ @@ -103194,31 +104014,31 @@ export default { } ], "max": [ - 4521 + 4577 ], "min": [ - 4523 + 4579 ], "stddev": [ - 4534 + 4590 ], "stddev_pop": [ - 4536 + 4592 ], "stddev_samp": [ - 4538 + 4594 ], "sum": [ - 4542 + 4598 ], "var_pop": [ - 4546 + 4602 ], "var_samp": [ - 4548 + 4604 ], "variance": [ - 4550 + 4606 ], "__typename": [ 80 @@ -103226,37 +104046,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4516 + 4572 ], "count": [ - 3006 + 3035 ], "max": [ - 4522 + 4578 ], "min": [ - 4524 + 4580 ], "stddev": [ - 4535 + 4591 ], "stddev_pop": [ - 4537 + 4593 ], "stddev_samp": [ - 4539 + 4595 ], "sum": [ - 4543 + 4599 ], "var_pop": [ - 4547 + 4603 ], "var_samp": [ - 4549 + 4605 ], "variance": [ - 4551 + 4607 ], "__typename": [ 80 @@ -103264,10 +104084,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4520 + 4576 ], "on_conflict": [ - 4527 + 4583 ], "__typename": [ 80 @@ -103286,10 +104106,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103297,22 +104117,22 @@ export default { }, "teams_bool_exp": { "_and": [ - 4517 + 4573 ], "_not": [ - 4517 + 4573 ], "_or": [ - 4517 + 4573 ], "avatar_url": [ 82 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "can_change_role": [ 6 @@ -103327,73 +104147,73 @@ export default { 6 ], "captain": [ - 3968 + 3997 ], "captain_steam_id": [ - 259 + 261 ], "id": [ - 5055 + 5111 ], "invites": [ - 4232 + 4288 ], "invites_aggregate": [ - 4225 + 4281 ], "is_organization": [ 6 ], "match_lineups": [ - 2502 + 2504 ], "match_lineups_aggregate": [ - 2495 + 2497 ], "matches": [ - 2830 + 2832 ], "name": [ 82 ], "owner": [ - 3968 + 3997 ], "owner_steam_id": [ - 259 + 261 ], "ranks": [ - 5759 + 5815 ], "reputation": [ - 5779 + 5835 ], "role": [ 82 ], "roster": [ - 4275 + 4331 ], "roster_aggregate": [ - 4266 + 4322 ], "scrim_availability": [ - 4345 + 4401 ], "scrim_availability_aggregate": [ - 4338 + 4394 ], "scrim_settings": [ - 4455 + 4511 ], "short_name": [ 82 ], "tournament_teams": [ - 4956 + 5012 ], "tournament_teams_aggregate": [ - 4949 + 5005 ], "__typename": [ 80 @@ -103402,10 +104222,10 @@ export default { "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 257 + 259 ], "owner_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -103416,55 +104236,55 @@ export default { 80 ], "awards": [ - 194 + 196 ], "captain": [ - 3975 + 4004 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "invites": [ - 4229 + 4285 ], "is_organization": [ 5 ], "match_lineups": [ - 2499 + 2501 ], "name": [ 80 ], "owner": [ - 3975 + 4004 ], "owner_steam_id": [ - 257 + 259 ], "ranks": [ - 5763 + 5819 ], "reputation": [ - 5783 + 5839 ], "roster": [ - 4272 + 4328 ], "scrim_availability": [ - 4344 + 4400 ], "scrim_settings": [ - 4462 + 4518 ], "short_name": [ 80 ], "tournament_teams": [ - 4953 + 5009 ], "__typename": [ 80 @@ -103475,16 +104295,16 @@ export default { 80 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "role": [ 80 @@ -103498,22 +104318,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 3006 + 3035 ], "captain_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "short_name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103524,16 +104344,16 @@ export default { 80 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "role": [ 80 @@ -103547,22 +104367,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 3006 + 3035 ], "captain_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "short_name": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103573,7 +104393,7 @@ export default { 40 ], "returning": [ - 4506 + 4562 ], "__typename": [ 80 @@ -103581,10 +104401,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4520 + 4576 ], "on_conflict": [ - 4527 + 4583 ], "__typename": [ 80 @@ -103592,13 +104412,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4518 + 4574 ], "update_columns": [ - 4544 + 4600 ], "where": [ - 4517 + 4573 ], "__typename": [ 80 @@ -103606,76 +104426,76 @@ export default { }, "teams_order_by": { "avatar_url": [ - 3006 + 3035 ], "awards_aggregate": [ - 193 + 195 ], "can_change_role": [ - 3006 + 3035 ], "can_invite": [ - 3006 + 3035 ], "can_manage_scrims": [ - 3006 + 3035 ], "can_remove": [ - 3006 + 3035 ], "captain": [ - 3977 + 4006 ], "captain_steam_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invites_aggregate": [ - 4228 + 4284 ], "is_organization": [ - 3006 + 3035 ], "match_lineups_aggregate": [ - 2498 + 2500 ], "matches_aggregate": [ - 2826 + 2828 ], "name": [ - 3006 + 3035 ], "owner": [ - 3977 + 4006 ], "owner_steam_id": [ - 3006 + 3035 ], "ranks": [ - 5764 + 5820 ], "reputation": [ - 5784 + 5840 ], "role": [ - 3006 + 3035 ], "roster_aggregate": [ - 4271 + 4327 ], "scrim_availability_aggregate": [ - 4343 + 4399 ], "scrim_settings": [ - 4464 + 4520 ], "short_name": [ - 3006 + 3035 ], "tournament_teams_aggregate": [ - 4952 + 5008 ], "__typename": [ 80 @@ -103683,7 +104503,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -103697,10 +104517,10 @@ export default { 80 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "is_organization": [ 5 @@ -103709,7 +104529,7 @@ export default { 80 ], "owner_steam_id": [ - 257 + 259 ], "short_name": [ 80 @@ -103731,10 +104551,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103753,10 +104573,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103775,10 +104595,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103786,10 +104606,10 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4541 + 4597 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -103800,10 +104620,10 @@ export default { 80 ], "captain_steam_id": [ - 257 + 259 ], "id": [ - 5053 + 5109 ], "is_organization": [ 5 @@ -103812,7 +104632,7 @@ export default { 80 ], "owner_steam_id": [ - 257 + 259 ], "short_name": [ 80 @@ -103823,10 +104643,10 @@ export default { }, "teams_sum_fields": { "captain_steam_id": [ - 257 + 259 ], "owner_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -103834,10 +104654,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103846,13 +104666,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4519 + 4575 ], "_set": [ - 4533 + 4589 ], "where": [ - 4517 + 4573 ], "__typename": [ 80 @@ -103871,10 +104691,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103893,10 +104713,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103915,10 +104735,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -103928,31 +104748,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4553 + 4609 ], "_gt": [ - 4553 + 4609 ], "_gte": [ - 4553 + 4609 ], "_in": [ - 4553 + 4609 ], "_is_null": [ 5 ], "_lt": [ - 4553 + 4609 ], "_lte": [ - 4553 + 4609 ], "_neq": [ - 4553 + 4609 ], "_nin": [ - 4553 + 4609 ], "__typename": [ 80 @@ -103960,19 +104780,19 @@ export default { }, "tournament_awards": { "award": [ - 229 + 231 ], "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -103984,13 +104804,13 @@ export default { 40 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -103998,10 +104818,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4559 + 4615 ], "nodes": [ - 4555 + 4611 ], "__typename": [ 80 @@ -104009,7 +104829,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4558 + 4614 ], "__typename": [ 80 @@ -104017,13 +104837,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4577 + 4633 ], "distinct": [ 5 ], "filter": [ - 4564 + 4620 ], "predicate": [ 41 @@ -104034,13 +104854,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4562 + 4618 ], "count": [ 40, { "columns": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "distinct": [ @@ -104049,31 +104869,31 @@ export default { } ], "max": [ - 4568 + 4624 ], "min": [ - 4570 + 4626 ], "stddev": [ - 4579 + 4635 ], "stddev_pop": [ - 4581 + 4637 ], "stddev_samp": [ - 4583 + 4639 ], "sum": [ - 4587 + 4643 ], "var_pop": [ - 4591 + 4647 ], "var_samp": [ - 4593 + 4649 ], "variance": [ - 4595 + 4651 ], "__typename": [ 80 @@ -104081,37 +104901,37 @@ export default { }, "tournament_awards_aggregate_order_by": { "avg": [ - 4563 + 4619 ], "count": [ - 3006 + 3035 ], "max": [ - 4569 + 4625 ], "min": [ - 4571 + 4627 ], "stddev": [ - 4580 + 4636 ], "stddev_pop": [ - 4582 + 4638 ], "stddev_samp": [ - 4584 + 4640 ], "sum": [ - 4588 + 4644 ], "var_pop": [ - 4592 + 4648 ], "var_samp": [ - 4594 + 4650 ], "variance": [ - 4596 + 4652 ], "__typename": [ 80 @@ -104119,10 +104939,10 @@ export default { }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4567 + 4623 ], "on_conflict": [ - 4574 + 4630 ], "__typename": [ 80 @@ -104141,10 +104961,10 @@ export default { }, "tournament_awards_avg_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104152,28 +104972,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4564 + 4620 ], "_not": [ - 4564 + 4620 ], "_or": [ - 4564 + 4620 ], "award": [ - 233 + 235 ], "award_id": [ - 5055 + 5111 ], "created_at": [ - 4554 + 4610 ], "custom_name": [ 82 ], "id": [ - 5055 + 5111 ], "image_url": [ 82 @@ -104185,13 +105005,13 @@ export default { 41 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "updated_at": [ - 4554 + 4610 ], "__typename": [ 80 @@ -104211,19 +105031,19 @@ export default { }, "tournament_awards_insert_input": { "award": [ - 240 + 242 ], "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -104235,13 +105055,13 @@ export default { 40 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -104249,16 +105069,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -104270,10 +105090,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -104281,31 +105101,31 @@ export default { }, "tournament_awards_max_order_by": { "award_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_name": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "image_url": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104313,16 +105133,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -104334,10 +105154,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -104345,31 +105165,31 @@ export default { }, "tournament_awards_min_order_by": { "award_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_name": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "image_url": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104380,7 +105200,7 @@ export default { 40 ], "returning": [ - 4555 + 4611 ], "__typename": [ 80 @@ -104388,10 +105208,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4567 + 4623 ], "on_conflict": [ - 4574 + 4630 ], "__typename": [ 80 @@ -104399,13 +105219,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4565 + 4621 ], "update_columns": [ - 4589 + 4645 ], "where": [ - 4564 + 4620 ], "__typename": [ 80 @@ -104413,37 +105233,37 @@ export default { }, "tournament_awards_order_by": { "award": [ - 242 + 244 ], "award_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "custom_name": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "image_url": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "updated_at": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104451,7 +105271,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -104460,16 +105280,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -104481,10 +105301,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -104503,10 +105323,10 @@ export default { }, "tournament_awards_stddev_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104525,10 +105345,10 @@ export default { }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104547,10 +105367,10 @@ export default { }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104558,10 +105378,10 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4586 + 4642 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -104569,16 +105389,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5053 + 5109 ], "created_at": [ - 4553 + 4609 ], "custom_name": [ 80 ], "id": [ - 5053 + 5109 ], "image_url": [ 80 @@ -104590,10 +105410,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "updated_at": [ - 4553 + 4609 ], "__typename": [ 80 @@ -104612,10 +105432,10 @@ export default { }, "tournament_awards_sum_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104624,13 +105444,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4566 + 4622 ], "_set": [ - 4578 + 4634 ], "where": [ - 4564 + 4620 ], "__typename": [ 80 @@ -104649,10 +105469,10 @@ export default { }, "tournament_awards_var_pop_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104671,10 +105491,10 @@ export default { }, "tournament_awards_var_samp_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104693,10 +105513,10 @@ export default { }, "tournament_awards_variance_order_by": { "placement": [ - 3006 + 3035 ], "silhouette": [ - 3006 + 3035 ], "__typename": [ 80 @@ -104707,13 +105527,13 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "feeding_brackets": [ - 4597, + 4653, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -104723,11 +105543,11 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], @@ -104735,37 +105555,37 @@ export default { 5 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_bracket": [ - 4597 + 4653 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "options": [ - 2697 + 2699 ], "parent_bracket": [ - 4597 + 4653 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -104774,16 +105594,16 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "scheduling_proposals": [ - 1979, + 1981, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -104793,19 +105613,19 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "scheduling_proposals_aggregate": [ - 1980, + 1982, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -104815,37 +105635,37 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "stage": [ - 4814 + 4870 ], "team_1": [ - 4947 + 5003 ], "team_1_seed": [ 40 ], "team_2": [ - 4947 + 5003 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -104853,10 +105673,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4603 + 4659 ], "nodes": [ - 4597 + 4653 ], "__typename": [ 80 @@ -104864,13 +105684,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4600 + 4656 ], "bool_or": [ - 4601 + 4657 ], "count": [ - 4602 + 4658 ], "__typename": [ 80 @@ -104878,13 +105698,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4622 + 4678 ], "distinct": [ 5 ], "filter": [ - 4608 + 4664 ], "predicate": [ 6 @@ -104895,13 +105715,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4623 + 4679 ], "distinct": [ 5 ], "filter": [ - 4608 + 4664 ], "predicate": [ 6 @@ -104912,13 +105732,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4621 + 4677 ], "distinct": [ 5 ], "filter": [ - 4608 + 4664 ], "predicate": [ 41 @@ -104929,13 +105749,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4606 + 4662 ], "count": [ 40, { "columns": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -104944,31 +105764,31 @@ export default { } ], "max": [ - 4612 + 4668 ], "min": [ - 4614 + 4670 ], "stddev": [ - 4625 + 4681 ], "stddev_pop": [ - 4627 + 4683 ], "stddev_samp": [ - 4629 + 4685 ], "sum": [ - 4633 + 4689 ], "var_pop": [ - 4637 + 4693 ], "var_samp": [ - 4639 + 4695 ], "variance": [ - 4641 + 4697 ], "__typename": [ 80 @@ -104976,37 +105796,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4607 + 4663 ], "count": [ - 3006 + 3035 ], "max": [ - 4613 + 4669 ], "min": [ - 4615 + 4671 ], "stddev": [ - 4626 + 4682 ], "stddev_pop": [ - 4628 + 4684 ], "stddev_samp": [ - 4630 + 4686 ], "sum": [ - 4634 + 4690 ], "var_pop": [ - 4638 + 4694 ], "var_samp": [ - 4640 + 4696 ], "variance": [ - 4642 + 4698 ], "__typename": [ 80 @@ -105014,10 +105834,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4611 + 4667 ], "on_conflict": [ - 4618 + 4674 ], "__typename": [ 80 @@ -105045,19 +105865,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105065,58 +105885,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4608 + 4664 ], "_not": [ - 4608 + 4664 ], "_or": [ - 4608 + 4664 ], "bye": [ 6 ], "created_at": [ - 4554 + 4610 ], "feeding_brackets": [ - 4608 + 4664 ], "finished": [ 6 ], "group": [ - 3005 + 3034 ], "id": [ - 5055 + 5111 ], "loser_bracket": [ - 4608 + 4664 ], "loser_parent_bracket_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_number": [ 41 ], "match_options_id": [ - 5055 + 5111 ], "options": [ - 2701 + 2703 ], "parent_bracket": [ - 4608 + 4664 ], "parent_bracket_id": [ - 5055 + 5111 ], "path": [ 82 @@ -105125,40 +105945,40 @@ export default { 41 ], "scheduled_at": [ - 4554 + 4610 ], "scheduled_eta": [ - 4554 + 4610 ], "scheduling_proposals": [ - 1988 + 1990 ], "scheduling_proposals_aggregate": [ - 1981 + 1983 ], "stage": [ - 4826 + 4882 ], "team_1": [ - 4956 + 5012 ], "team_1_seed": [ 41 ], "team_2": [ - 4956 + 5012 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5055 + 5111 ], "tournament_team_id_1": [ - 5055 + 5111 ], "tournament_team_id_2": [ - 5055 + 5111 ], "__typename": [ 80 @@ -105167,7 +105987,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3004 + 3033 ], "match_number": [ 40 @@ -105190,43 +106010,43 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "finished": [ 5 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_bracket": [ - 4617 + 4673 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "options": [ - 2708 + 2710 ], "parent_bracket": [ - 4617 + 4673 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -105235,37 +106055,37 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "scheduling_proposals": [ - 1985 + 1987 ], "stage": [ - 4838 + 4894 ], "team_1": [ - 4965 + 5021 ], "team_1_seed": [ 40 ], "team_2": [ - 4965 + 5021 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105273,28 +106093,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4553 + 4609 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -105303,10 +106123,10 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "team_1_seed": [ 40 @@ -105315,13 +106135,13 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105329,55 +106149,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 3006 + 3035 ], "group": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "loser_parent_bracket_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "parent_bracket_id": [ - 3006 + 3035 ], "path": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "scheduled_eta": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id_1": [ - 3006 + 3035 ], "tournament_team_id_2": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105385,28 +106205,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4553 + 4609 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -105415,10 +106235,10 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "team_1_seed": [ 40 @@ -105427,13 +106247,13 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105441,55 +106261,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 3006 + 3035 ], "group": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "loser_parent_bracket_id": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "parent_bracket_id": [ - 3006 + 3035 ], "path": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "scheduled_eta": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id_1": [ - 3006 + 3035 ], "tournament_team_id_2": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105500,7 +106320,7 @@ export default { 40 ], "returning": [ - 4597 + 4653 ], "__typename": [ 80 @@ -105508,10 +106328,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4611 + 4667 ], "on_conflict": [ - 4618 + 4674 ], "__typename": [ 80 @@ -105519,13 +106339,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4609 + 4665 ], "update_columns": [ - 4635 + 4691 ], "where": [ - 4608 + 4664 ], "__typename": [ 80 @@ -105533,88 +106353,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "feeding_brackets_aggregate": [ - 4604 + 4660 ], "finished": [ - 3006 + 3035 ], "group": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "loser_bracket": [ - 4619 + 4675 ], "loser_parent_bracket_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "options": [ - 2710 + 2712 ], "parent_bracket": [ - 4619 + 4675 ], "parent_bracket_id": [ - 3006 + 3035 ], "path": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "scheduled_at": [ - 3006 + 3035 ], "scheduled_eta": [ - 3006 + 3035 ], "scheduling_proposals_aggregate": [ - 1984 + 1986 ], "stage": [ - 4840 + 4896 ], "team_1": [ - 4967 + 5023 ], "team_1_seed": [ - 3006 + 3035 ], "team_2": [ - 4967 + 5023 ], "team_2_seed": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id_1": [ - 3006 + 3035 ], "tournament_team_id_2": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105622,7 +106442,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105636,31 +106456,31 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "finished": [ 5 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -105669,10 +106489,10 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "team_1_seed": [ 40 @@ -105681,13 +106501,13 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105715,19 +106535,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105755,19 +106575,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105795,19 +106615,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105815,10 +106635,10 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4632 + 4688 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -105829,31 +106649,31 @@ export default { 5 ], "created_at": [ - 4553 + 4609 ], "finished": [ 5 ], "group": [ - 3004 + 3033 ], "id": [ - 5053 + 5109 ], "loser_parent_bracket_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_number": [ 40 ], "match_options_id": [ - 5053 + 5109 ], "parent_bracket_id": [ - 5053 + 5109 ], "path": [ 80 @@ -105862,10 +106682,10 @@ export default { 40 ], "scheduled_at": [ - 4553 + 4609 ], "scheduled_eta": [ - 4553 + 4609 ], "team_1_seed": [ 40 @@ -105874,13 +106694,13 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id_1": [ - 5053 + 5109 ], "tournament_team_id_2": [ - 5053 + 5109 ], "__typename": [ 80 @@ -105888,7 +106708,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 3004 + 3033 ], "match_number": [ 40 @@ -105908,19 +106728,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -105929,13 +106749,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4610 + 4666 ], "_set": [ - 4624 + 4680 ], "where": [ - 4608 + 4664 ], "__typename": [ 80 @@ -105963,19 +106783,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106003,19 +106823,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106043,19 +106863,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 3006 + 3035 ], "match_number": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "team_1_seed": [ - 3006 + 3035 ], "team_2_seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106063,16 +106883,16 @@ export default { }, "tournament_categories": { "category": [ - 1312 + 1314 ], "e_tournament_category": [ - 1307 + 1309 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106080,10 +106900,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4647 + 4703 ], "nodes": [ - 4643 + 4699 ], "__typename": [ 80 @@ -106091,7 +106911,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4646 + 4702 ], "__typename": [ 80 @@ -106099,13 +106919,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4661 + 4717 ], "distinct": [ 5 ], "filter": [ - 4650 + 4706 ], "predicate": [ 41 @@ -106119,7 +106939,7 @@ export default { 40, { "columns": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "distinct": [ @@ -106128,10 +106948,10 @@ export default { } ], "max": [ - 4653 + 4709 ], "min": [ - 4655 + 4711 ], "__typename": [ 80 @@ -106139,13 +106959,13 @@ export default { }, "tournament_categories_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 4654 + 4710 ], "min": [ - 4656 + 4712 ], "__typename": [ 80 @@ -106153,10 +106973,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4652 + 4708 ], "on_conflict": [ - 4658 + 4714 ], "__typename": [ 80 @@ -106164,25 +106984,25 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4650 + 4706 ], "_not": [ - 4650 + 4706 ], "_or": [ - 4650 + 4706 ], "category": [ - 1313 + 1315 ], "e_tournament_category": [ - 1310 + 1312 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -106191,16 +107011,16 @@ export default { "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1312 + 1314 ], "e_tournament_category": [ - 1318 + 1320 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106208,7 +107028,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106216,7 +107036,7 @@ export default { }, "tournament_categories_max_order_by": { "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106224,7 +107044,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106232,7 +107052,7 @@ export default { }, "tournament_categories_min_order_by": { "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106243,7 +107063,7 @@ export default { 40 ], "returning": [ - 4643 + 4699 ], "__typename": [ 80 @@ -106251,13 +107071,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4651 + 4707 ], "update_columns": [ - 4665 + 4721 ], "where": [ - 4650 + 4706 ], "__typename": [ 80 @@ -106265,16 +107085,16 @@ export default { }, "tournament_categories_order_by": { "category": [ - 3006 + 3035 ], "e_tournament_category": [ - 1320 + 1322 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106282,10 +107102,10 @@ export default { }, "tournament_categories_pk_columns_input": { "category": [ - 1312 + 1314 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106294,10 +107114,10 @@ export default { "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1312 + 1314 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106305,10 +107125,10 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4664 + 4720 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -106316,10 +107136,10 @@ export default { }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1312 + 1314 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106328,10 +107148,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4662 + 4718 ], "where": [ - 4650 + 4706 ], "__typename": [ 80 @@ -106339,19 +107159,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4553 + 4609 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106359,10 +107179,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4671 + 4727 ], "nodes": [ - 4667 + 4723 ], "__typename": [ 80 @@ -106370,7 +107190,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4670 + 4726 ], "__typename": [ 80 @@ -106378,13 +107198,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4685 + 4741 ], "distinct": [ 5 ], "filter": [ - 4674 + 4730 ], "predicate": [ 41 @@ -106398,7 +107218,7 @@ export default { 40, { "columns": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -106407,10 +107227,10 @@ export default { } ], "max": [ - 4677 + 4733 ], "min": [ - 4679 + 4735 ], "__typename": [ 80 @@ -106418,13 +107238,13 @@ export default { }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 4678 + 4734 ], "min": [ - 4680 + 4736 ], "__typename": [ 80 @@ -106432,10 +107252,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4676 + 4732 ], "on_conflict": [ - 4682 + 4738 ], "__typename": [ 80 @@ -106443,28 +107263,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4674 + 4730 ], "_not": [ - 4674 + 4730 ], "_or": [ - 4674 + 4730 ], "created_at": [ - 4554 + 4610 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -106473,19 +107293,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4553 + 4609 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106493,13 +107313,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106507,13 +107327,13 @@ export default { }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106521,13 +107341,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106535,13 +107355,13 @@ export default { }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106552,7 +107372,7 @@ export default { 40 ], "returning": [ - 4667 + 4723 ], "__typename": [ 80 @@ -106560,13 +107380,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4675 + 4731 ], "update_columns": [ - 4689 + 4745 ], "where": [ - 4674 + 4730 ], "__typename": [ 80 @@ -106574,19 +107394,19 @@ export default { }, "tournament_organizer_teams_order_by": { "created_at": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106594,10 +107414,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106606,13 +107426,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106620,10 +107440,10 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4688 + 4744 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -106631,13 +107451,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106646,10 +107466,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4686 + 4742 ], "where": [ - 4674 + 4730 ], "__typename": [ 80 @@ -106657,22 +107477,22 @@ export default { }, "tournament_organizers": { "organization_team": [ - 4506 + 4562 ], "organization_team_id": [ - 5053 + 5109 ], "organizer": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106680,10 +107500,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4695 + 4751 ], "nodes": [ - 4691 + 4747 ], "__typename": [ 80 @@ -106691,7 +107511,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4694 + 4750 ], "__typename": [ 80 @@ -106699,13 +107519,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4712 + 4768 ], "distinct": [ 5 ], "filter": [ - 4700 + 4756 ], "predicate": [ 41 @@ -106716,13 +107536,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4698 + 4754 ], "count": [ 40, { "columns": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -106731,31 +107551,31 @@ export default { } ], "max": [ - 4704 + 4760 ], "min": [ - 4706 + 4762 ], "stddev": [ - 4714 + 4770 ], "stddev_pop": [ - 4716 + 4772 ], "stddev_samp": [ - 4718 + 4774 ], "sum": [ - 4722 + 4778 ], "var_pop": [ - 4726 + 4782 ], "var_samp": [ - 4728 + 4784 ], "variance": [ - 4730 + 4786 ], "__typename": [ 80 @@ -106763,37 +107583,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4699 + 4755 ], "count": [ - 3006 + 3035 ], "max": [ - 4705 + 4761 ], "min": [ - 4707 + 4763 ], "stddev": [ - 4715 + 4771 ], "stddev_pop": [ - 4717 + 4773 ], "stddev_samp": [ - 4719 + 4775 ], "sum": [ - 4723 + 4779 ], "var_pop": [ - 4727 + 4783 ], "var_samp": [ - 4729 + 4785 ], "variance": [ - 4731 + 4787 ], "__typename": [ 80 @@ -106801,10 +107621,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4703 + 4759 ], "on_conflict": [ - 4709 + 4765 ], "__typename": [ 80 @@ -106820,7 +107640,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106828,31 +107648,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4700 + 4756 ], "_not": [ - 4700 + 4756 ], "_or": [ - 4700 + 4756 ], "organization_team": [ - 4517 + 4573 ], "organization_team_id": [ - 5055 + 5111 ], "organizer": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -106861,7 +107681,7 @@ export default { "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -106869,22 +107689,22 @@ export default { }, "tournament_organizers_insert_input": { "organization_team": [ - 4526 + 4582 ], "organization_team_id": [ - 5053 + 5109 ], "organizer": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106892,13 +107712,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106906,13 +107726,13 @@ export default { }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106920,13 +107740,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -106934,13 +107754,13 @@ export default { }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106951,7 +107771,7 @@ export default { 40 ], "returning": [ - 4691 + 4747 ], "__typename": [ 80 @@ -106959,13 +107779,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4701 + 4757 ], "update_columns": [ - 4724 + 4780 ], "where": [ - 4700 + 4756 ], "__typename": [ 80 @@ -106973,22 +107793,22 @@ export default { }, "tournament_organizers_order_by": { "organization_team": [ - 4528 + 4584 ], "organization_team_id": [ - 3006 + 3035 ], "organizer": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -106996,10 +107816,10 @@ export default { }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107008,13 +107828,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107030,7 +107850,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107046,7 +107866,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107062,7 +107882,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107070,10 +107890,10 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4721 + 4777 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -107081,13 +107901,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5053 + 5109 ], "steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107095,7 +107915,7 @@ export default { }, "tournament_organizers_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -107103,7 +107923,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107112,13 +107932,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4702 + 4758 ], "_set": [ - 4713 + 4769 ], "where": [ - 4700 + 4756 ], "__typename": [ 80 @@ -107134,7 +107954,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107150,7 +107970,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107166,7 +107986,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107174,10 +107994,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107189,10 +108009,10 @@ export default { 80 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107200,10 +108020,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4736 + 4792 ], "nodes": [ - 4732 + 4788 ], "__typename": [ 80 @@ -107211,7 +108031,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4735 + 4791 ], "__typename": [ 80 @@ -107219,13 +108039,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4753 + 4809 ], "distinct": [ 5 ], "filter": [ - 4741 + 4797 ], "predicate": [ 41 @@ -107236,13 +108056,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4739 + 4795 ], "count": [ 40, { "columns": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -107251,31 +108071,31 @@ export default { } ], "max": [ - 4745 + 4801 ], "min": [ - 4747 + 4803 ], "stddev": [ - 4755 + 4811 ], "stddev_pop": [ - 4757 + 4813 ], "stddev_samp": [ - 4759 + 4815 ], "sum": [ - 4763 + 4819 ], "var_pop": [ - 4767 + 4823 ], "var_samp": [ - 4769 + 4825 ], "variance": [ - 4771 + 4827 ], "__typename": [ 80 @@ -107283,37 +108103,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4740 + 4796 ], "count": [ - 3006 + 3035 ], "max": [ - 4746 + 4802 ], "min": [ - 4748 + 4804 ], "stddev": [ - 4756 + 4812 ], "stddev_pop": [ - 4758 + 4814 ], "stddev_samp": [ - 4760 + 4816 ], "sum": [ - 4764 + 4820 ], "var_pop": [ - 4768 + 4824 ], "var_samp": [ - 4770 + 4826 ], "variance": [ - 4772 + 4828 ], "__typename": [ 80 @@ -107321,10 +108141,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4744 + 4800 ], "on_conflict": [ - 4750 + 4806 ], "__typename": [ 80 @@ -107340,7 +108160,7 @@ export default { }, "tournament_prizes_avg_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107348,19 +108168,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4741 + 4797 ], "_not": [ - 4741 + 4797 ], "_or": [ - 4741 + 4797 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "order": [ 41 @@ -107372,10 +108192,10 @@ export default { 82 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -107392,10 +108212,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107407,10 +108227,10 @@ export default { 80 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107418,10 +108238,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107433,7 +108253,7 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107441,22 +108261,22 @@ export default { }, "tournament_prizes_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "place": [ - 3006 + 3035 ], "prize": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107464,10 +108284,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107479,7 +108299,7 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107487,22 +108307,22 @@ export default { }, "tournament_prizes_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "place": [ - 3006 + 3035 ], "prize": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107513,7 +108333,7 @@ export default { 40 ], "returning": [ - 4732 + 4788 ], "__typename": [ 80 @@ -107521,13 +108341,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4742 + 4798 ], "update_columns": [ - 4765 + 4821 ], "where": [ - 4741 + 4797 ], "__typename": [ 80 @@ -107535,25 +108355,25 @@ export default { }, "tournament_prizes_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "place": [ - 3006 + 3035 ], "prize": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107561,7 +108381,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107570,10 +108390,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107585,7 +108405,7 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107601,7 +108421,7 @@ export default { }, "tournament_prizes_stddev_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107617,7 +108437,7 @@ export default { }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107633,7 +108453,7 @@ export default { }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107641,10 +108461,10 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4762 + 4818 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -107652,10 +108472,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "order": [ 40 @@ -107667,7 +108487,7 @@ export default { 80 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107683,7 +108503,7 @@ export default { }, "tournament_prizes_sum_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107692,13 +108512,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4743 + 4799 ], "_set": [ - 4754 + 4810 ], "where": [ - 4741 + 4797 ], "__typename": [ 80 @@ -107714,7 +108534,7 @@ export default { }, "tournament_prizes_var_pop_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107730,7 +108550,7 @@ export default { }, "tournament_prizes_var_samp_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107746,7 +108566,7 @@ export default { }, "tournament_prizes_variance_order_by": { "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107754,28 +108574,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "stage": [ - 4814 + 4870 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -107783,10 +108603,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4777 + 4833 ], "nodes": [ - 4773 + 4829 ], "__typename": [ 80 @@ -107794,7 +108614,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4776 + 4832 ], "__typename": [ 80 @@ -107802,13 +108622,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4794 + 4850 ], "distinct": [ 5 ], "filter": [ - 4782 + 4838 ], "predicate": [ 41 @@ -107819,13 +108639,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4780 + 4836 ], "count": [ 40, { "columns": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -107834,31 +108654,31 @@ export default { } ], "max": [ - 4786 + 4842 ], "min": [ - 4788 + 4844 ], "stddev": [ - 4796 + 4852 ], "stddev_pop": [ - 4798 + 4854 ], "stddev_samp": [ - 4800 + 4856 ], "sum": [ - 4804 + 4860 ], "var_pop": [ - 4808 + 4864 ], "var_samp": [ - 4810 + 4866 ], "variance": [ - 4812 + 4868 ], "__typename": [ 80 @@ -107866,37 +108686,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4781 + 4837 ], "count": [ - 3006 + 3035 ], "max": [ - 4787 + 4843 ], "min": [ - 4789 + 4845 ], "stddev": [ - 4797 + 4853 ], "stddev_pop": [ - 4799 + 4855 ], "stddev_samp": [ - 4801 + 4857 ], "sum": [ - 4805 + 4861 ], "var_pop": [ - 4809 + 4865 ], "var_samp": [ - 4811 + 4867 ], "variance": [ - 4813 + 4869 ], "__typename": [ 80 @@ -107904,10 +108724,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4785 + 4841 ], "on_conflict": [ - 4791 + 4847 ], "__typename": [ 80 @@ -107923,7 +108743,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -107931,37 +108751,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4782 + 4838 ], "_not": [ - 4782 + 4838 ], "_or": [ - 4782 + 4838 ], "closes_at": [ - 4554 + 4610 ], "created_at": [ - 4554 + 4610 ], "default_match_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "opens_at": [ - 4554 + 4610 ], "round": [ 41 ], "stage": [ - 4826 + 4882 ], "tournament_stage_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -107978,28 +108798,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "stage": [ - 4838 + 4894 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108007,25 +108827,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108033,25 +108853,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108059,25 +108879,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108085,25 +108905,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108114,7 +108934,7 @@ export default { 40 ], "returning": [ - 4773 + 4829 ], "__typename": [ 80 @@ -108122,13 +108942,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4783 + 4839 ], "update_columns": [ - 4806 + 4862 ], "where": [ - 4782 + 4838 ], "__typename": [ 80 @@ -108136,28 +108956,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "default_match_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "opens_at": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "stage": [ - 4840 + 4896 ], "tournament_stage_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108165,7 +108985,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108174,25 +108994,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108208,7 +109028,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108224,7 +109044,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108240,7 +109060,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108248,10 +109068,10 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4803 + 4859 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -108259,25 +109079,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4553 + 4609 ], "created_at": [ - 4553 + 4609 ], "default_match_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "opens_at": [ - 4553 + 4609 ], "round": [ 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -108293,7 +109113,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108302,13 +109122,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4784 + 4840 ], "_set": [ - 4795 + 4851 ], "where": [ - 4782 + 4838 ], "__typename": [ 80 @@ -108324,7 +109144,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108340,7 +109160,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108356,7 +109176,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108364,10 +109184,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4597, + 4653, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -108377,19 +109197,19 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "brackets_aggregate": [ - 4598, + 4654, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -108399,11 +109219,11 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], @@ -108414,7 +109234,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1328 + 1330 ], "final_map_advantage": [ 40 @@ -108423,10 +109243,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -108438,16 +109258,16 @@ export default { 40 ], "options": [ - 2697 + 2699 ], "order": [ 40 ], "results": [ - 5795, + 5851, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -108457,19 +109277,19 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "results_aggregate": [ - 5796, + 5852, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -108479,16 +109299,16 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "settings": [ - 1842, + 1844, { "path": [ 80 @@ -108502,19 +109322,19 @@ export default { 5 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "type": [ - 1333 + 1335 ], "windows": [ - 4773, + 4829, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -108524,19 +109344,19 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], "windows_aggregate": [ - 4774, + 4830, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -108546,11 +109366,11 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], @@ -108560,10 +109380,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4820 + 4876 ], "nodes": [ - 4814 + 4870 ], "__typename": [ 80 @@ -108571,13 +109391,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4817 + 4873 ], "bool_or": [ - 4818 + 4874 ], "count": [ - 4819 + 4875 ], "__typename": [ 80 @@ -108585,13 +109405,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4844 + 4900 ], "distinct": [ 5 ], "filter": [ - 4826 + 4882 ], "predicate": [ 6 @@ -108602,13 +109422,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4845 + 4901 ], "distinct": [ 5 ], "filter": [ - 4826 + 4882 ], "predicate": [ 6 @@ -108619,13 +109439,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4843 + 4899 ], "distinct": [ 5 ], "filter": [ - 4826 + 4882 ], "predicate": [ 41 @@ -108636,13 +109456,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4824 + 4880 ], "count": [ 40, { "columns": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "distinct": [ @@ -108651,31 +109471,31 @@ export default { } ], "max": [ - 4833 + 4889 ], "min": [ - 4835 + 4891 ], "stddev": [ - 4847 + 4903 ], "stddev_pop": [ - 4849 + 4905 ], "stddev_samp": [ - 4851 + 4907 ], "sum": [ - 4855 + 4911 ], "var_pop": [ - 4859 + 4915 ], "var_samp": [ - 4861 + 4917 ], "variance": [ - 4863 + 4919 ], "__typename": [ 80 @@ -108683,37 +109503,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4825 + 4881 ], "count": [ - 3006 + 3035 ], "max": [ - 4834 + 4890 ], "min": [ - 4836 + 4892 ], "stddev": [ - 4848 + 4904 ], "stddev_pop": [ - 4850 + 4906 ], "stddev_samp": [ - 4852 + 4908 ], "sum": [ - 4856 + 4912 ], "var_pop": [ - 4860 + 4916 ], "var_samp": [ - 4862 + 4918 ], "variance": [ - 4864 + 4920 ], "__typename": [ 80 @@ -108721,7 +109541,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1842 + 1844 ], "__typename": [ 80 @@ -108729,10 +109549,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4832 + 4888 ], "on_conflict": [ - 4839 + 4895 ], "__typename": [ 80 @@ -108769,28 +109589,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -108798,19 +109618,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4826 + 4882 ], "_not": [ - 4826 + 4882 ], "_or": [ - 4826 + 4882 ], "brackets": [ - 4608 + 4664 ], "brackets_aggregate": [ - 4599 + 4655 ], "decider_best_of": [ 41 @@ -108819,7 +109639,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1331 + 1333 ], "final_map_advantage": [ 41 @@ -108828,10 +109648,10 @@ export default { 41 ], "id": [ - 5055 + 5111 ], "match_options_id": [ - 5055 + 5111 ], "max_rounds": [ 41 @@ -108843,19 +109663,19 @@ export default { 41 ], "options": [ - 2701 + 2703 ], "order": [ 41 ], "results": [ - 5814 + 5870 ], "results_aggregate": [ - 5797 + 5853 ], "settings": [ - 1844 + 1846 ], "swiss_no_elimination": [ 6 @@ -108864,19 +109684,19 @@ export default { 6 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "type": [ - 1334 + 1336 ], "windows": [ - 4782 + 4838 ], "windows_aggregate": [ - 4775 + 4831 ], "__typename": [ 80 @@ -108938,7 +109758,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4605 + 4661 ], "decider_best_of": [ 40 @@ -108947,7 +109767,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1339 + 1341 ], "final_map_advantage": [ 40 @@ -108956,10 +109776,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -108971,16 +109791,16 @@ export default { 40 ], "options": [ - 2708 + 2710 ], "order": [ 40 ], "results": [ - 5811 + 5867 ], "settings": [ - 1842 + 1844 ], "swiss_no_elimination": [ 5 @@ -108989,16 +109809,16 @@ export default { 5 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "type": [ - 1333 + 1335 ], "windows": [ - 4779 + 4835 ], "__typename": [ 80 @@ -109018,10 +109838,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -109036,7 +109856,7 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -109044,37 +109864,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109094,10 +109914,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -109112,7 +109932,7 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -109120,37 +109940,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109161,7 +109981,7 @@ export default { 40 ], "returning": [ - 4814 + 4870 ], "__typename": [ 80 @@ -109169,10 +109989,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4832 + 4888 ], "on_conflict": [ - 4839 + 4895 ], "__typename": [ 80 @@ -109180,13 +110000,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4827 + 4883 ], "update_columns": [ - 4857 + 4913 ], "where": [ - 4826 + 4882 ], "__typename": [ 80 @@ -109194,67 +110014,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4604 + 4660 ], "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "e_tournament_stage_type": [ - 1341 + 1343 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "options": [ - 2710 + 2712 ], "order": [ - 3006 + 3035 ], "results_aggregate": [ - 5810 + 5866 ], "settings": [ - 3006 + 3035 ], "swiss_no_elimination": [ - 3006 + 3035 ], "third_place_match": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "windows_aggregate": [ - 4778 + 4834 ], "__typename": [ 80 @@ -109262,7 +110082,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -109270,7 +110090,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1842 + 1844 ], "__typename": [ 80 @@ -109293,10 +110113,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -109311,7 +110131,7 @@ export default { 40 ], "settings": [ - 1842 + 1844 ], "swiss_no_elimination": [ 5 @@ -109320,10 +110140,10 @@ export default { 5 ], "tournament_id": [ - 5053 + 5109 ], "type": [ - 1333 + 1335 ], "__typename": [ 80 @@ -109360,28 +110180,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109418,28 +110238,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109476,28 +110296,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109505,10 +110325,10 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4854 + 4910 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -109528,10 +110348,10 @@ export default { 40 ], "id": [ - 5053 + 5109 ], "match_options_id": [ - 5053 + 5109 ], "max_rounds": [ 40 @@ -109546,7 +110366,7 @@ export default { 40 ], "settings": [ - 1842 + 1844 ], "swiss_no_elimination": [ 5 @@ -109555,10 +110375,10 @@ export default { 5 ], "tournament_id": [ - 5053 + 5109 ], "type": [ - 1333 + 1335 ], "__typename": [ 80 @@ -109595,28 +110415,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109625,28 +110445,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4822 + 4878 ], "_delete_at_path": [ - 4828 + 4884 ], "_delete_elem": [ - 4829 + 4885 ], "_delete_key": [ - 4830 + 4886 ], "_inc": [ - 4831 + 4887 ], "_prepend": [ - 4842 + 4898 ], "_set": [ - 4846 + 4902 ], "where": [ - 4826 + 4882 ], "__typename": [ 80 @@ -109683,28 +110503,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109741,28 +110561,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109799,28 +110619,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3006 + 3035 ], "default_best_of": [ - 3006 + 3035 ], "final_map_advantage": [ - 3006 + 3035 ], "groups": [ - 3006 + 3035 ], "max_rounds": [ - 3006 + 3035 ], "max_teams": [ - 3006 + 3035 ], "min_teams": [ - 3006 + 3035 ], "order": [ - 3006 + 3035 ], "__typename": [ 80 @@ -109828,28 +110648,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by": [ - 3964 + 3993 ], "invited_by_player_steam_id": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "team": [ - 4947 + 5003 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -109857,10 +110677,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4869 + 4925 ], "nodes": [ - 4865 + 4921 ], "__typename": [ 80 @@ -109868,7 +110688,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4868 + 4924 ], "__typename": [ 80 @@ -109876,13 +110696,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4886 + 4942 ], "distinct": [ 5 ], "filter": [ - 4874 + 4930 ], "predicate": [ 41 @@ -109893,13 +110713,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4872 + 4928 ], "count": [ 40, { "columns": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -109908,31 +110728,31 @@ export default { } ], "max": [ - 4878 + 4934 ], "min": [ - 4880 + 4936 ], "stddev": [ - 4888 + 4944 ], "stddev_pop": [ - 4890 + 4946 ], "stddev_samp": [ - 4892 + 4948 ], "sum": [ - 4896 + 4952 ], "var_pop": [ - 4900 + 4956 ], "var_samp": [ - 4902 + 4958 ], "variance": [ - 4904 + 4960 ], "__typename": [ 80 @@ -109940,37 +110760,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4873 + 4929 ], "count": [ - 3006 + 3035 ], "max": [ - 4879 + 4935 ], "min": [ - 4881 + 4937 ], "stddev": [ - 4889 + 4945 ], "stddev_pop": [ - 4891 + 4947 ], "stddev_samp": [ - 4893 + 4949 ], "sum": [ - 4897 + 4953 ], "var_pop": [ - 4901 + 4957 ], "var_samp": [ - 4903 + 4959 ], "variance": [ - 4905 + 4961 ], "__typename": [ 80 @@ -109978,10 +110798,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4877 + 4933 ], "on_conflict": [ - 4883 + 4939 ], "__typename": [ 80 @@ -110000,10 +110820,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110011,37 +110831,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4874 + 4930 ], "_not": [ - 4874 + 4930 ], "_or": [ - 4874 + 4930 ], "created_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "invited_by": [ - 3968 + 3997 ], "invited_by_player_steam_id": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "team": [ - 4956 + 5012 ], "tournament_team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -110050,10 +110870,10 @@ export default { "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -110061,28 +110881,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by": [ - 3975 + 4004 ], "invited_by_player_steam_id": [ - 257 + 259 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "team": [ - 4965 + 5021 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110090,19 +110910,19 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110110,19 +110930,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110130,19 +110950,19 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110150,19 +110970,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110173,7 +110993,7 @@ export default { 40 ], "returning": [ - 4865 + 4921 ], "__typename": [ 80 @@ -110181,13 +111001,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4875 + 4931 ], "update_columns": [ - 4898 + 4954 ], "where": [ - 4874 + 4930 ], "__typename": [ 80 @@ -110195,28 +111015,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invited_by": [ - 3977 + 4006 ], "invited_by_player_steam_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "team": [ - 4967 + 5023 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110224,7 +111044,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110233,19 +111053,19 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110264,10 +111084,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110286,10 +111106,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110308,10 +111128,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110319,10 +111139,10 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4895 + 4951 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -110330,19 +111150,19 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110350,10 +111170,10 @@ export default { }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -110361,10 +111181,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110373,13 +111193,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4876 + 4932 ], "_set": [ - 4887 + 4943 ], "where": [ - 4874 + 4930 ], "__typename": [ 80 @@ -110398,10 +111218,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110420,10 +111240,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110442,10 +111262,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110453,28 +111273,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1246 + 1248 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team": [ - 4947 + 5003 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110482,10 +111302,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4910 + 4966 ], "nodes": [ - 4906 + 4962 ], "__typename": [ 80 @@ -110493,7 +111313,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4909 + 4965 ], "__typename": [ 80 @@ -110501,13 +111321,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4927 + 4983 ], "distinct": [ 5 ], "filter": [ - 4915 + 4971 ], "predicate": [ 41 @@ -110518,13 +111338,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4913 + 4969 ], "count": [ 40, { "columns": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -110533,31 +111353,31 @@ export default { } ], "max": [ - 4919 + 4975 ], "min": [ - 4921 + 4977 ], "stddev": [ - 4929 + 4985 ], "stddev_pop": [ - 4931 + 4987 ], "stddev_samp": [ - 4933 + 4989 ], "sum": [ - 4937 + 4993 ], "var_pop": [ - 4941 + 4997 ], "var_samp": [ - 4943 + 4999 ], "variance": [ - 4945 + 5001 ], "__typename": [ 80 @@ -110565,37 +111385,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4914 + 4970 ], "count": [ - 3006 + 3035 ], "max": [ - 4920 + 4976 ], "min": [ - 4922 + 4978 ], "stddev": [ - 4930 + 4986 ], "stddev_pop": [ - 4932 + 4988 ], "stddev_samp": [ - 4934 + 4990 ], "sum": [ - 4938 + 4994 ], "var_pop": [ - 4942 + 4998 ], "var_samp": [ - 4944 + 5000 ], "variance": [ - 4946 + 5002 ], "__typename": [ 80 @@ -110603,10 +111423,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4918 + 4974 ], "on_conflict": [ - 4924 + 4980 ], "__typename": [ 80 @@ -110622,7 +111442,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110630,37 +111450,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4915 + 4971 ], "_not": [ - 4915 + 4971 ], "_or": [ - 4915 + 4971 ], "e_team_role": [ - 1249 + 1251 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "role": [ - 1252 + 1254 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "tournament_team": [ - 4956 + 5012 ], "tournament_team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -110669,7 +111489,7 @@ export default { "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -110677,28 +111497,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1257 + 1259 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team": [ - 4965 + 5021 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110706,13 +111526,13 @@ export default { }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110720,13 +111540,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110734,13 +111554,13 @@ export default { }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110748,13 +111568,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110765,7 +111585,7 @@ export default { 40 ], "returning": [ - 4906 + 4962 ], "__typename": [ 80 @@ -110773,13 +111593,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4916 + 4972 ], "update_columns": [ - 4939 + 4995 ], "where": [ - 4915 + 4971 ], "__typename": [ 80 @@ -110787,28 +111607,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1259 + 1261 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "role": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team": [ - 4967 + 5023 ], "tournament_team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110816,10 +111636,10 @@ export default { }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110828,16 +111648,16 @@ export default { "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110853,7 +111673,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110869,7 +111689,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110885,7 +111705,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110893,10 +111713,10 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4936 + 4992 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -110904,16 +111724,16 @@ export default { }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 257 + 259 ], "role": [ - 1251 + 1253 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -110921,7 +111741,7 @@ export default { }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -110929,7 +111749,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110938,13 +111758,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4917 + 4973 ], "_set": [ - 4928 + 4984 ], "where": [ - 4915 + 4971 ], "__typename": [ 80 @@ -110960,7 +111780,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110976,7 +111796,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -110992,7 +111812,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111003,28 +111823,28 @@ export default { 5 ], "captain": [ - 3964 + 3993 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "creator": [ - 3964 + 3993 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invites": [ - 4865, + 4921, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111034,19 +111854,19 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], "invites_aggregate": [ - 4866, + 4922, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111056,11 +111876,11 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], @@ -111068,16 +111888,16 @@ export default { 80 ], "owner_steam_id": [ - 257 + 259 ], "results": [ - 5795 + 5851 ], "roster": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111087,19 +111907,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "roster_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111109,11 +111929,11 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], @@ -111124,16 +111944,16 @@ export default { 80 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111141,10 +111961,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4951 + 5007 ], "nodes": [ - 4947 + 5003 ], "__typename": [ 80 @@ -111152,7 +111972,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4950 + 5006 ], "__typename": [ 80 @@ -111160,13 +111980,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4969 + 5025 ], "distinct": [ 5 ], "filter": [ - 4956 + 5012 ], "predicate": [ 41 @@ -111177,13 +111997,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4954 + 5010 ], "count": [ 40, { "columns": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "distinct": [ @@ -111192,31 +112012,31 @@ export default { } ], "max": [ - 4960 + 5016 ], "min": [ - 4962 + 5018 ], "stddev": [ - 4971 + 5027 ], "stddev_pop": [ - 4973 + 5029 ], "stddev_samp": [ - 4975 + 5031 ], "sum": [ - 4979 + 5035 ], "var_pop": [ - 4983 + 5039 ], "var_samp": [ - 4985 + 5041 ], "variance": [ - 4987 + 5043 ], "__typename": [ 80 @@ -111224,37 +112044,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4955 + 5011 ], "count": [ - 3006 + 3035 ], "max": [ - 4961 + 5017 ], "min": [ - 4963 + 5019 ], "stddev": [ - 4972 + 5028 ], "stddev_pop": [ - 4974 + 5030 ], "stddev_samp": [ - 4976 + 5032 ], "sum": [ - 4980 + 5036 ], "var_pop": [ - 4984 + 5040 ], "var_samp": [ - 4986 + 5042 ], "variance": [ - 4988 + 5044 ], "__typename": [ 80 @@ -111262,10 +112082,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4959 + 5015 ], "on_conflict": [ - 4966 + 5022 ], "__typename": [ 80 @@ -111287,13 +112107,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111301,55 +112121,55 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4956 + 5012 ], "_not": [ - 4956 + 5012 ], "_or": [ - 4956 + 5012 ], "can_manage": [ 6 ], "captain": [ - 3968 + 3997 ], "captain_steam_id": [ - 259 + 261 ], "created_at": [ - 4554 + 4610 ], "creator": [ - 3968 + 3997 ], "eligible_at": [ - 4554 + 4610 ], "id": [ - 5055 + 5111 ], "invites": [ - 4874 + 4930 ], "invites_aggregate": [ - 4867 + 4923 ], "name": [ 82 ], "owner_steam_id": [ - 259 + 261 ], "results": [ - 5814 + 5870 ], "roster": [ - 4915 + 4971 ], "roster_aggregate": [ - 4908 + 4964 ], "seed": [ 41 @@ -111358,16 +112178,16 @@ export default { 82 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -111376,10 +112196,10 @@ export default { "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 257 + 259 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111390,37 +112210,37 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3975 + 4004 ], "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "creator": [ - 3975 + 4004 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "invites": [ - 4871 + 4927 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "results": [ - 5823 + 5879 ], "roster": [ - 4912 + 4968 ], "seed": [ 40 @@ -111429,16 +112249,16 @@ export default { 80 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111446,22 +112266,22 @@ export default { }, "tournament_teams_max_fields": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111470,10 +112290,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111481,34 +112301,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "eligible_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "short_name": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111516,22 +112336,22 @@ export default { }, "tournament_teams_min_fields": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111540,10 +112360,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111551,34 +112371,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "eligible_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "short_name": [ - 3006 + 3035 ], "team_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111589,7 +112409,7 @@ export default { 40 ], "returning": [ - 4947 + 5003 ], "__typename": [ 80 @@ -111597,10 +112417,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4959 + 5015 ], "on_conflict": [ - 4966 + 5022 ], "__typename": [ 80 @@ -111608,13 +112428,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4957 + 5013 ], "update_columns": [ - 4981 + 5037 ], "where": [ - 4956 + 5012 ], "__typename": [ 80 @@ -111622,58 +112442,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 3006 + 3035 ], "captain": [ - 3977 + 4006 ], "captain_steam_id": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "creator": [ - 3977 + 4006 ], "eligible_at": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "invites_aggregate": [ - 4870 + 4926 ], "name": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "results": [ - 5825 + 5881 ], "roster_aggregate": [ - 4911 + 4967 ], "seed": [ - 3006 + 3035 ], "short_name": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111681,7 +112501,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111690,22 +112510,22 @@ export default { "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111714,10 +112534,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111739,13 +112559,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111767,13 +112587,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111795,13 +112615,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111809,10 +112629,10 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4978 + 5034 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -111820,22 +112640,22 @@ export default { }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 257 + 259 ], "created_at": [ - 4553 + 4609 ], "eligible_at": [ - 4553 + 4609 ], "id": [ - 5053 + 5109 ], "name": [ 80 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111844,10 +112664,10 @@ export default { 80 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -111855,10 +112675,10 @@ export default { }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 257 + 259 ], "owner_steam_id": [ - 257 + 259 ], "seed": [ 40 @@ -111869,13 +112689,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111884,13 +112704,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4958 + 5014 ], "_set": [ - 4970 + 5026 ], "where": [ - 4956 + 5012 ], "__typename": [ 80 @@ -111912,13 +112732,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111940,13 +112760,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111968,13 +112788,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3006 + 3035 ], "owner_steam_id": [ - 3006 + 3035 ], "seed": [ - 3006 + 3035 ], "__typename": [ 80 @@ -111982,16 +112802,16 @@ export default { }, "tournaments": { "admin": [ - 3964 + 3993 ], "auto_start": [ 5 ], "award_configs": [ - 4555, + 4611, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -112001,19 +112821,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "award_configs_aggregate": [ - 4556, + 4612, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -112023,19 +112843,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "awards": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -112045,19 +112865,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "awards_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -112067,11 +112887,11 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], @@ -112106,10 +112926,10 @@ export default { 5 ], "categories": [ - 4643, + 4699, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -112119,19 +112939,19 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "categories_aggregate": [ - 4644, + 4700, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -112141,16 +112961,16 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -112207,7 +113027,7 @@ export default { 80 ], "e_tournament_status": [ - 1349 + 1351 ], "has_min_teams": [ 5 @@ -112216,7 +113036,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_league": [ 5 @@ -112228,10 +113048,10 @@ export default { 5 ], "latitude": [ - 1689 + 1691 ], "league_season_division": [ - 2020 + 2022 ], "location": [ 80 @@ -112240,10 +113060,10 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -112255,16 +113075,16 @@ export default { 80 ], "options": [ - 2697 + 2699 ], "organizer_steam_id": [ - 257 + 259 ], "organizer_teams": [ - 4667, + 4723, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -112274,19 +113094,19 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "organizer_teams_aggregate": [ - 4668, + 4724, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -112296,19 +113116,19 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "organizers": [ - 4691, + 4747, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -112318,19 +113138,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "organizers_aggregate": [ - 4692, + 4748, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -112340,19 +113160,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "player_stats": [ - 5906, + 5962, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -112362,19 +113182,19 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], "player_stats_aggregate": [ - 5907, + 5963, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -112384,19 +113204,19 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], "prizes": [ - 4732, + 4788, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -112406,19 +113226,19 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "prizes_aggregate": [ - 4733, + 4789, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -112428,19 +113248,19 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "results": [ - 5855, + 5911, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -112450,19 +113270,19 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "results_aggregate": [ - 5856, + 5912, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -112472,19 +113292,19 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "rosters": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112494,19 +113314,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "rosters_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112516,11 +113336,11 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], @@ -112528,10 +113348,10 @@ export default { 80 ], "stages": [ - 4814, + 4870, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -112541,19 +113361,19 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "stages_aggregate": [ - 4815, + 4871, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -112563,25 +113383,25 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "start": [ - 4553 + 4609 ], "status": [ - 1354 + 1356 ], "teams": [ - 4947, + 5003, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -112591,19 +113411,19 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "teams_aggregate": [ - 4948, + 5004, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -112613,11 +113433,11 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], @@ -112627,10 +113447,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 5005 + 5061 ], "nodes": [ - 4989 + 5045 ], "__typename": [ 80 @@ -112638,37 +113458,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 4992 + 5048 ], "bool_and": [ - 4993 + 5049 ], "bool_or": [ - 4994 + 5050 ], "corr": [ - 4995 + 5051 ], "count": [ - 4997 + 5053 ], "covar_samp": [ - 4998 + 5054 ], "max": [ - 5000 + 5056 ], "min": [ - 5001 + 5057 ], "stddev_samp": [ - 5002 + 5058 ], "sum": [ - 5003 + 5059 ], "var_samp": [ - 5004 + 5060 ], "__typename": [ 80 @@ -112676,16 +113496,16 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5024 + 5080 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112693,13 +113513,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5025 + 5081 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ 6 @@ -112710,13 +113530,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5026 + 5082 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ 6 @@ -112727,16 +113547,16 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 4996 + 5052 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112744,10 +113564,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5027 + 5083 ], "Y": [ - 5027 + 5083 ], "__typename": [ 80 @@ -112755,13 +113575,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5023 + 5079 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ 41 @@ -112772,16 +113592,16 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 4999 + 5055 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112789,10 +113609,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5028 + 5084 ], "Y": [ - 5028 + 5084 ], "__typename": [ 80 @@ -112800,16 +113620,16 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5029 + 5085 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112817,16 +113637,16 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5030 + 5086 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112834,16 +113654,16 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5031 + 5087 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112851,16 +113671,16 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5032 + 5088 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112868,16 +113688,16 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5033 + 5089 ], "distinct": [ 5 ], "filter": [ - 5010 + 5066 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -112885,13 +113705,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 5008 + 5064 ], "count": [ 40, { "columns": [ - 5023, + 5079, "[tournaments_select_column!]" ], "distinct": [ @@ -112900,31 +113720,31 @@ export default { } ], "max": [ - 5014 + 5070 ], "min": [ - 5016 + 5072 ], "stddev": [ - 5035 + 5091 ], "stddev_pop": [ - 5037 + 5093 ], "stddev_samp": [ - 5039 + 5095 ], "sum": [ - 5043 + 5099 ], "var_pop": [ - 5047 + 5103 ], "var_samp": [ - 5049 + 5105 ], "variance": [ - 5051 + 5107 ], "__typename": [ 80 @@ -112932,37 +113752,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 5009 + 5065 ], "count": [ - 3006 + 3035 ], "max": [ - 5015 + 5071 ], "min": [ - 5017 + 5073 ], "stddev": [ - 5036 + 5092 ], "stddev_pop": [ - 5038 + 5094 ], "stddev_samp": [ - 5040 + 5096 ], "sum": [ - 5044 + 5100 ], "var_pop": [ - 5048 + 5104 ], "var_samp": [ - 5050 + 5106 ], "variance": [ - 5052 + 5108 ], "__typename": [ 80 @@ -112970,10 +113790,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 5013 + 5069 ], "on_conflict": [ - 5020 + 5076 ], "__typename": [ 80 @@ -113001,13 +113821,13 @@ export default { }, "tournaments_avg_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -113015,31 +113835,31 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 5010 + 5066 ], "_not": [ - 5010 + 5066 ], "_or": [ - 5010 + 5066 ], "admin": [ - 3968 + 3997 ], "auto_start": [ 6 ], "award_configs": [ - 4564 + 4620 ], "award_configs_aggregate": [ - 4557 + 4613 ], "awards": [ - 197 + 199 ], "awards_aggregate": [ - 190 + 192 ], "awards_enabled": [ 6 @@ -113072,13 +113892,13 @@ export default { 6 ], "categories": [ - 4650 + 4706 ], "categories_aggregate": [ - 4645 + 4701 ], "created_at": [ - 4554 + 4610 ], "description": [ 82 @@ -113135,7 +113955,7 @@ export default { 82 ], "e_tournament_status": [ - 1352 + 1354 ], "has_min_teams": [ 6 @@ -113144,7 +113964,7 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "is_league": [ 6 @@ -113156,10 +113976,10 @@ export default { 6 ], "latitude": [ - 1690 + 1692 ], "league_season_division": [ - 2027 + 2029 ], "location": [ 82 @@ -113168,10 +113988,10 @@ export default { 82 ], "longitude": [ - 1690 + 1692 ], "match_options_id": [ - 5055 + 5111 ], "max_players_per_lineup": [ 41 @@ -113183,67 +114003,67 @@ export default { 82 ], "options": [ - 2701 + 2703 ], "organizer_steam_id": [ - 259 + 261 ], "organizer_teams": [ - 4674 + 4730 ], "organizer_teams_aggregate": [ - 4669 + 4725 ], "organizers": [ - 4700 + 4756 ], "organizers_aggregate": [ - 4693 + 4749 ], "player_stats": [ - 5925 + 5981 ], "player_stats_aggregate": [ - 5908 + 5964 ], "prizes": [ - 4741 + 4797 ], "prizes_aggregate": [ - 4734 + 4790 ], "results": [ - 5874 + 5930 ], "results_aggregate": [ - 5857 + 5913 ], "rosters": [ - 4915 + 4971 ], "rosters_aggregate": [ - 4908 + 4964 ], "scheduling_mode": [ 82 ], "stages": [ - 4826 + 4882 ], "stages_aggregate": [ - 4816 + 4872 ], "start": [ - 4554 + 4610 ], "status": [ - 1355 + 1357 ], "teams": [ - 4956 + 5012 ], "teams_aggregate": [ - 4949 + 5005 ], "__typename": [ 80 @@ -113252,13 +114072,13 @@ export default { "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1689 + 1691 ], "longitude": [ - 1689 + 1691 ], "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -113266,16 +114086,16 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3975 + 4004 ], "auto_start": [ 5 ], "award_configs": [ - 4561 + 4617 ], "awards": [ - 194 + 196 ], "awards_enabled": [ 5 @@ -113284,10 +114104,10 @@ export default { 80 ], "categories": [ - 4649 + 4705 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -113344,22 +114164,22 @@ export default { 80 ], "e_tournament_status": [ - 1360 + 1362 ], "homepage": [ 80 ], "id": [ - 5053 + 5109 ], "is_league": [ 5 ], "latitude": [ - 1689 + 1691 ], "league_season_division": [ - 2035 + 2037 ], "location": [ 80 @@ -113368,52 +114188,52 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "name": [ 80 ], "options": [ - 2708 + 2710 ], "organizer_steam_id": [ - 257 + 259 ], "organizer_teams": [ - 4673 + 4729 ], "organizers": [ - 4697 + 4753 ], "player_stats": [ - 5922 + 5978 ], "prizes": [ - 4738 + 4794 ], "results": [ - 5871 + 5927 ], "rosters": [ - 4912 + 4968 ], "scheduling_mode": [ 80 ], "stages": [ - 4823 + 4879 ], "start": [ - 4553 + 4609 ], "status": [ - 1354 + 1356 ], "teams": [ - 4953 + 5009 ], "__typename": [ 80 @@ -113424,7 +114244,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -113442,10 +114262,10 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "latitude": [ - 1689 + 1691 ], "location": [ 80 @@ -113454,10 +114274,10 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -113469,13 +114289,13 @@ export default { 80 ], "organizer_steam_id": [ - 257 + 259 ], "scheduling_mode": [ 80 ], "start": [ - 4553 + 4609 ], "__typename": [ 80 @@ -113483,55 +114303,55 @@ export default { }, "tournaments_max_order_by": { "banner": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "discord_guild_id": [ - 3006 + 3035 ], "discord_role_id": [ - 3006 + 3035 ], "discord_webhook": [ - 3006 + 3035 ], "homepage": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "latitude": [ - 3006 + 3035 ], "location": [ - 3006 + 3035 ], "logo": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "scheduling_mode": [ - 3006 + 3035 ], "start": [ - 3006 + 3035 ], "__typename": [ 80 @@ -113542,7 +114362,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -113560,10 +114380,10 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "latitude": [ - 1689 + 1691 ], "location": [ 80 @@ -113572,10 +114392,10 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "max_players_per_lineup": [ 40 @@ -113587,13 +114407,13 @@ export default { 80 ], "organizer_steam_id": [ - 257 + 259 ], "scheduling_mode": [ 80 ], "start": [ - 4553 + 4609 ], "__typename": [ 80 @@ -113601,55 +114421,55 @@ export default { }, "tournaments_min_order_by": { "banner": [ - 3006 + 3035 ], "created_at": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "discord_guild_id": [ - 3006 + 3035 ], "discord_role_id": [ - 3006 + 3035 ], "discord_webhook": [ - 3006 + 3035 ], "homepage": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "latitude": [ - 3006 + 3035 ], "location": [ - 3006 + 3035 ], "logo": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "scheduling_mode": [ - 3006 + 3035 ], "start": [ - 3006 + 3035 ], "__typename": [ 80 @@ -113660,7 +114480,7 @@ export default { 40 ], "returning": [ - 4989 + 5045 ], "__typename": [ 80 @@ -113668,10 +114488,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 5013 + 5069 ], "on_conflict": [ - 5020 + 5076 ], "__typename": [ 80 @@ -113679,13 +114499,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 5011 + 5067 ], "update_columns": [ - 5045 + 5101 ], "where": [ - 5010 + 5066 ], "__typename": [ 80 @@ -113693,193 +114513,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 3977 + 4006 ], "auto_start": [ - 3006 + 3035 ], "award_configs_aggregate": [ - 4560 + 4616 ], "awards_aggregate": [ - 193 + 195 ], "awards_enabled": [ - 3006 + 3035 ], "banner": [ - 3006 + 3035 ], "can_cancel": [ - 3006 + 3035 ], "can_close_registration": [ - 3006 + 3035 ], "can_join": [ - 3006 + 3035 ], "can_open_registration": [ - 3006 + 3035 ], "can_pause": [ - 3006 + 3035 ], "can_resume": [ - 3006 + 3035 ], "can_setup": [ - 3006 + 3035 ], "can_start": [ - 3006 + 3035 ], "categories_aggregate": [ - 4648 + 4704 ], "created_at": [ - 3006 + 3035 ], "description": [ - 3006 + 3035 ], "discord_guild_id": [ - 3006 + 3035 ], "discord_notifications_enabled": [ - 3006 + 3035 ], "discord_notify_Canceled": [ - 3006 + 3035 ], "discord_notify_Finished": [ - 3006 + 3035 ], "discord_notify_Forfeit": [ - 3006 + 3035 ], "discord_notify_Live": [ - 3006 + 3035 ], "discord_notify_MapPaused": [ - 3006 + 3035 ], "discord_notify_PickingPlayers": [ - 3006 + 3035 ], "discord_notify_Scheduled": [ - 3006 + 3035 ], "discord_notify_Surrendered": [ - 3006 + 3035 ], "discord_notify_Tie": [ - 3006 + 3035 ], "discord_notify_Veto": [ - 3006 + 3035 ], "discord_notify_WaitingForCheckIn": [ - 3006 + 3035 ], "discord_notify_WaitingForServer": [ - 3006 + 3035 ], "discord_role_id": [ - 3006 + 3035 ], "discord_voice_enabled": [ - 3006 + 3035 ], "discord_webhook": [ - 3006 + 3035 ], "e_tournament_status": [ - 1362 + 1364 ], "has_min_teams": [ - 3006 + 3035 ], "homepage": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "is_league": [ - 3006 + 3035 ], "is_organizer": [ - 3006 + 3035 ], "joined_tournament": [ - 3006 + 3035 ], "latitude": [ - 3006 + 3035 ], "league_season_division": [ - 2037 + 2039 ], "location": [ - 3006 + 3035 ], "logo": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "match_options_id": [ - 3006 + 3035 ], "max_players_per_lineup": [ - 3006 + 3035 ], "min_players_per_lineup": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "options": [ - 2710 + 2712 ], "organizer_steam_id": [ - 3006 + 3035 ], "organizer_teams_aggregate": [ - 4672 + 4728 ], "organizers_aggregate": [ - 4696 + 4752 ], "player_stats_aggregate": [ - 5921 + 5977 ], "prizes_aggregate": [ - 4737 + 4793 ], "results_aggregate": [ - 5870 + 5926 ], "rosters_aggregate": [ - 4911 + 4967 ], "scheduling_mode": [ - 3006 + 3035 ], "stages_aggregate": [ - 4821 + 4877 ], "start": [ - 3006 + 3035 ], "status": [ - 3006 + 3035 ], "teams_aggregate": [ - 4952 + 5008 ], "__typename": [ 80 @@ -113887,7 +114707,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -113915,7 +114735,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -113975,13 +114795,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_league": [ 5 ], "latitude": [ - 1689 + 1691 ], "location": [ 80 @@ -113990,25 +114810,25 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "scheduling_mode": [ 80 ], "start": [ - 4553 + 4609 ], "status": [ - 1354 + 1356 ], "__typename": [ 80 @@ -114036,13 +114856,13 @@ export default { }, "tournaments_stddev_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114070,13 +114890,13 @@ export default { }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114104,13 +114924,13 @@ export default { }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114118,10 +114938,10 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 5042 + 5098 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -114138,7 +114958,7 @@ export default { 80 ], "created_at": [ - 4553 + 4609 ], "description": [ 80 @@ -114198,13 +115018,13 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "is_league": [ 5 ], "latitude": [ - 1689 + 1691 ], "location": [ 80 @@ -114213,25 +115033,25 @@ export default { 80 ], "longitude": [ - 1689 + 1691 ], "match_options_id": [ - 5053 + 5109 ], "name": [ 80 ], "organizer_steam_id": [ - 257 + 259 ], "scheduling_mode": [ 80 ], "start": [ - 4553 + 4609 ], "status": [ - 1354 + 1356 ], "__typename": [ 80 @@ -114239,10 +115059,10 @@ export default { }, "tournaments_sum_fields": { "latitude": [ - 1689 + 1691 ], "longitude": [ - 1689 + 1691 ], "max_players_per_lineup": [ 40 @@ -114251,7 +115071,7 @@ export default { 40 ], "organizer_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -114259,13 +115079,13 @@ export default { }, "tournaments_sum_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114274,13 +115094,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5012 + 5068 ], "_set": [ - 5034 + 5090 ], "where": [ - 5010 + 5066 ], "__typename": [ 80 @@ -114308,13 +115128,13 @@ export default { }, "tournaments_var_pop_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114342,13 +115162,13 @@ export default { }, "tournaments_var_samp_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114376,13 +115196,13 @@ export default { }, "tournaments_variance_order_by": { "latitude": [ - 3006 + 3035 ], "longitude": [ - 3006 + 3035 ], "organizer_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114391,37 +115211,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5053 + 5109 ], "_contains": [ - 5053 + 5109 ], "_eq": [ - 5053 + 5109 ], "_gt": [ - 5053 + 5109 ], "_gte": [ - 5053 + 5109 ], "_in": [ - 5053 + 5109 ], "_is_null": [ 5 ], "_lt": [ - 5053 + 5109 ], "_lte": [ - 5053 + 5109 ], "_neq": [ - 5053 + 5109 ], "_nin": [ - 5053 + 5109 ], "__typename": [ 80 @@ -114429,31 +115249,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 5053 + 5109 ], "_gt": [ - 5053 + 5109 ], "_gte": [ - 5053 + 5109 ], "_in": [ - 5053 + 5109 ], "_is_null": [ 5 ], "_lt": [ - 5053 + 5109 ], "_lte": [ - 5053 + 5109 ], "_neq": [ - 5053 + 5109 ], "_nin": [ - 5053 + 5109 ], "__typename": [ 80 @@ -114467,19 +115287,19 @@ export default { 40 ], "event": [ - 1661 + 1663 ], "event_id": [ - 5053 + 5109 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -114488,10 +115308,10 @@ export default { 40 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -114499,10 +115319,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5070 + 5126 ], "nodes": [ - 5056 + 5112 ], "__typename": [ 80 @@ -114510,31 +115330,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5059 + 5115 ], "corr": [ - 5060 + 5116 ], "count": [ - 5062 + 5118 ], "covar_samp": [ - 5063 + 5119 ], "max": [ - 5065 + 5121 ], "min": [ - 5066 + 5122 ], "stddev_samp": [ - 5067 + 5123 ], "sum": [ - 5068 + 5124 ], "var_samp": [ - 5069 + 5125 ], "__typename": [ 80 @@ -114542,16 +115362,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5083 + 5139 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114559,16 +115379,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5061 + 5117 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114576,10 +115396,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5084 + 5140 ], "Y": [ - 5084 + 5140 ], "__typename": [ 80 @@ -114587,13 +115407,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5082 + 5138 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ 41 @@ -114604,16 +115424,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5064 + 5120 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114621,10 +115441,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5085 + 5141 ], "Y": [ - 5085 + 5141 ], "__typename": [ 80 @@ -114632,16 +115452,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5086 + 5142 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114649,16 +115469,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5087 + 5143 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114666,16 +115486,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5088 + 5144 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114683,16 +115503,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5089 + 5145 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114700,16 +115520,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5090 + 5146 ], "distinct": [ 5 ], "filter": [ - 5075 + 5131 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -114717,13 +115537,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5073 + 5129 ], "count": [ 40, { "columns": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -114732,31 +115552,31 @@ export default { } ], "max": [ - 5077 + 5133 ], "min": [ - 5079 + 5135 ], "stddev": [ - 5091 + 5147 ], "stddev_pop": [ - 5093 + 5149 ], "stddev_samp": [ - 5095 + 5151 ], "sum": [ - 5099 + 5155 ], "var_pop": [ - 5101 + 5157 ], "var_samp": [ - 5103 + 5159 ], "variance": [ - 5105 + 5161 ], "__typename": [ 80 @@ -114764,37 +115584,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5074 + 5130 ], "count": [ - 3006 + 3035 ], "max": [ - 5078 + 5134 ], "min": [ - 5080 + 5136 ], "stddev": [ - 5092 + 5148 ], "stddev_pop": [ - 5094 + 5150 ], "stddev_samp": [ - 5096 + 5152 ], "sum": [ - 5100 + 5156 ], "var_pop": [ - 5102 + 5158 ], "var_samp": [ - 5104 + 5160 ], "variance": [ - 5106 + 5162 ], "__typename": [ 80 @@ -114802,7 +115622,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5076 + 5132 ], "__typename": [ 80 @@ -114839,28 +115659,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -114868,13 +115688,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5075 + 5131 ], "_not": [ - 5075 + 5131 ], "_or": [ - 5075 + 5131 ], "assists": [ 41 @@ -114883,19 +115703,19 @@ export default { 41 ], "event": [ - 1665 + 1667 ], "event_id": [ - 5055 + 5111 ], "headshot_percentage": [ - 1690 + 1692 ], "headshots": [ 41 ], "kdr": [ - 1690 + 1692 ], "kills": [ 41 @@ -114904,10 +115724,10 @@ export default { 41 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -114921,19 +115741,19 @@ export default { 40 ], "event": [ - 1672 + 1674 ], "event_id": [ - 5053 + 5109 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -114942,10 +115762,10 @@ export default { 40 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -114959,16 +115779,16 @@ export default { 40 ], "event_id": [ - 5053 + 5109 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -114977,7 +115797,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -114985,31 +115805,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115023,16 +115843,16 @@ export default { 40 ], "event_id": [ - 5053 + 5109 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -115041,7 +115861,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -115049,31 +115869,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "event_id": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115081,37 +115901,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "event": [ - 1674 + 1676 ], "event_id": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115157,28 +115977,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115215,28 +116035,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115273,28 +116093,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115302,10 +116122,10 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5098 + 5154 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -115319,16 +116139,16 @@ export default { 40 ], "event_id": [ - 5053 + 5109 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -115337,7 +116157,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -115351,13 +116171,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -115366,7 +116186,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -115374,28 +116194,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115432,28 +116252,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115490,28 +116310,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115548,28 +116368,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115624,10 +116444,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5109 + 5165 ], "nodes": [ - 5107 + 5163 ], "__typename": [ 80 @@ -115635,13 +116455,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5110 + 5166 ], "count": [ 40, { "columns": [ - 5115, + 5171, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -115650,31 +116470,31 @@ export default { } ], "max": [ - 5112 + 5168 ], "min": [ - 5113 + 5169 ], "stddev": [ - 5116 + 5172 ], "stddev_pop": [ - 5117 + 5173 ], "stddev_samp": [ - 5118 + 5174 ], "sum": [ - 5121 + 5177 ], "var_pop": [ - 5122 + 5178 ], "var_samp": [ - 5123 + 5179 ], "variance": [ - 5124 + 5180 ], "__typename": [ 80 @@ -115717,13 +116537,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5111 + 5167 ], "_not": [ - 5111 + 5167 ], "_or": [ - 5111 + 5167 ], "demo_free_gpu_nodes": [ 41 @@ -115843,46 +116663,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3006 + 3035 ], "demo_in_progress": [ - 3006 + 3035 ], "demo_total_gpu_nodes": [ - 3006 + 3035 ], "free_gpu_nodes": [ - 3006 + 3035 ], "free_gpu_nodes_for_batch": [ - 3006 + 3035 ], "highlights_in_progress": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "live_in_progress": [ - 3006 + 3035 ], "registered_gpu_nodes": [ - 3006 + 3035 ], "rendering_total_gpu_nodes": [ - 3006 + 3035 ], "renders_paused_for_active_match": [ - 3006 + 3035 ], "streaming_free_gpu_nodes": [ - 3006 + 3035 ], "streaming_total_gpu_nodes": [ - 3006 + 3035 ], "total_gpu_nodes": [ - 3006 + 3035 ], "__typename": [ 80 @@ -115996,10 +116816,10 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5120 + 5176 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -116200,22 +117020,22 @@ export default { 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2202 + 2204 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "losses": [ 40 @@ -116245,13 +117065,13 @@ export default { 40 ], "season_division": [ - 2020 + 2022 ], "team_season": [ - 2160 + 2162 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -116262,10 +117082,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5129 + 5185 ], "nodes": [ - 5125 + 5181 ], "__typename": [ 80 @@ -116273,7 +117093,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5128 + 5184 ], "__typename": [ 80 @@ -116281,13 +117101,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5141 + 5197 ], "distinct": [ 5 ], "filter": [ - 5134 + 5190 ], "predicate": [ 41 @@ -116298,13 +117118,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5132 + 5188 ], "count": [ 40, { "columns": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -116313,31 +117133,31 @@ export default { } ], "max": [ - 5136 + 5192 ], "min": [ - 5138 + 5194 ], "stddev": [ - 5142 + 5198 ], "stddev_pop": [ - 5144 + 5200 ], "stddev_samp": [ - 5146 + 5202 ], "sum": [ - 5150 + 5206 ], "var_pop": [ - 5152 + 5208 ], "var_samp": [ - 5154 + 5210 ], "variance": [ - 5156 + 5212 ], "__typename": [ 80 @@ -116345,37 +117165,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5133 + 5189 ], "count": [ - 3006 + 3035 ], "max": [ - 5137 + 5193 ], "min": [ - 5139 + 5195 ], "stddev": [ - 5143 + 5199 ], "stddev_pop": [ - 5145 + 5201 ], "stddev_samp": [ - 5147 + 5203 ], "sum": [ - 5151 + 5207 ], "var_pop": [ - 5153 + 5209 ], "var_samp": [ - 5155 + 5211 ], "variance": [ - 5157 + 5213 ], "__typename": [ 80 @@ -116383,7 +117203,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5135 + 5191 ], "__typename": [ 80 @@ -116432,40 +117252,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -116473,13 +117293,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5134 + 5190 ], "_not": [ - 5134 + 5190 ], "_or": [ - 5134 + 5190 ], "head_to_head_match_wins": [ 41 @@ -116488,22 +117308,22 @@ export default { 41 ], "league_division_id": [ - 5055 + 5111 ], "league_season_division_id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "league_team": [ - 2205 + 2207 ], "league_team_id": [ - 5055 + 5111 ], "league_team_season_id": [ - 5055 + 5111 ], "losses": [ 41 @@ -116533,13 +117353,13 @@ export default { 41 ], "season_division": [ - 2027 + 2029 ], "team_season": [ - 2169 + 2171 ], "tournament_team_id": [ - 5055 + 5111 ], "wins": [ 41 @@ -116556,22 +117376,22 @@ export default { 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2211 + 2213 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "losses": [ 40 @@ -116601,13 +117421,13 @@ export default { 40 ], "season_division": [ - 2035 + 2037 ], "team_season": [ - 2178 + 2180 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -116624,19 +117444,19 @@ export default { 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "losses": [ 40 @@ -116666,7 +117486,7 @@ export default { 40 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -116677,58 +117497,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -116742,19 +117562,19 @@ export default { 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "losses": [ 40 @@ -116784,7 +117604,7 @@ export default { 40 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -116795,58 +117615,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -116854,67 +117674,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team": [ - 2213 + 2215 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "season_division": [ - 2037 + 2039 ], "team_season": [ - 2180 + 2182 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -116964,40 +117784,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117046,40 +117866,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117128,40 +117948,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117169,10 +117989,10 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5149 + 5205 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -117186,19 +118006,19 @@ export default { 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "losses": [ 40 @@ -117228,7 +118048,7 @@ export default { 40 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -117280,40 +118100,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117362,40 +118182,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117444,40 +118264,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117526,40 +118346,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "round_diff": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117573,43 +118393,43 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2202 + 2204 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "matches_played": [ 40 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -117617,10 +118437,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5172 + 5228 ], "nodes": [ - 5158 + 5214 ], "__typename": [ 80 @@ -117628,31 +118448,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5161 + 5217 ], "corr": [ - 5162 + 5218 ], "count": [ - 5164 + 5220 ], "covar_samp": [ - 5165 + 5221 ], "max": [ - 5167 + 5223 ], "min": [ - 5168 + 5224 ], "stddev_samp": [ - 5169 + 5225 ], "sum": [ - 5170 + 5226 ], "var_samp": [ - 5171 + 5227 ], "__typename": [ 80 @@ -117660,16 +118480,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5185 + 5241 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117677,16 +118497,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5163 + 5219 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117694,10 +118514,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5186 + 5242 ], "Y": [ - 5186 + 5242 ], "__typename": [ 80 @@ -117705,13 +118525,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5184 + 5240 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ 41 @@ -117722,16 +118542,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5166 + 5222 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117739,10 +118559,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5187 + 5243 ], "Y": [ - 5187 + 5243 ], "__typename": [ 80 @@ -117750,16 +118570,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5188 + 5244 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117767,16 +118587,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5189 + 5245 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117784,16 +118604,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5190 + 5246 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117801,16 +118621,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5191 + 5247 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117818,16 +118638,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5192 + 5248 ], "distinct": [ 5 ], "filter": [ - 5177 + 5233 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -117835,13 +118655,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5175 + 5231 ], "count": [ 40, { "columns": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -117850,31 +118670,31 @@ export default { } ], "max": [ - 5179 + 5235 ], "min": [ - 5181 + 5237 ], "stddev": [ - 5193 + 5249 ], "stddev_pop": [ - 5195 + 5251 ], "stddev_samp": [ - 5197 + 5253 ], "sum": [ - 5201 + 5257 ], "var_pop": [ - 5203 + 5259 ], "var_samp": [ - 5205 + 5261 ], "variance": [ - 5207 + 5263 ], "__typename": [ 80 @@ -117882,37 +118702,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5176 + 5232 ], "count": [ - 3006 + 3035 ], "max": [ - 5180 + 5236 ], "min": [ - 5182 + 5238 ], "stddev": [ - 5194 + 5250 ], "stddev_pop": [ - 5196 + 5252 ], "stddev_samp": [ - 5198 + 5254 ], "sum": [ - 5202 + 5258 ], "var_pop": [ - 5204 + 5260 ], "var_samp": [ - 5206 + 5262 ], "variance": [ - 5208 + 5264 ], "__typename": [ 80 @@ -117920,7 +118740,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5178 + 5234 ], "__typename": [ 80 @@ -117957,28 +118777,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -117986,13 +118806,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5177 + 5233 ], "_not": [ - 5177 + 5233 ], "_or": [ - 5177 + 5233 ], "assists": [ 41 @@ -118001,43 +118821,43 @@ export default { 41 ], "headshot_percentage": [ - 1690 + 1692 ], "headshots": [ 41 ], "kdr": [ - 1690 + 1692 ], "kills": [ 41 ], "league_division_id": [ - 5055 + 5111 ], "league_season_division_id": [ - 5055 + 5111 ], "league_season_id": [ - 5055 + 5111 ], "league_team": [ - 2205 + 2207 ], "league_team_id": [ - 5055 + 5111 ], "league_team_season_id": [ - 5055 + 5111 ], "matches_played": [ 41 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -118051,43 +118871,43 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team": [ - 2211 + 2213 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "matches_played": [ 40 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118101,37 +118921,37 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "matches_played": [ 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118139,43 +118959,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118189,37 +119009,37 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "matches_played": [ 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118227,43 +119047,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118271,49 +119091,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "league_division_id": [ - 3006 + 3035 ], "league_season_division_id": [ - 3006 + 3035 ], "league_season_id": [ - 3006 + 3035 ], "league_team": [ - 2213 + 2215 ], "league_team_id": [ - 3006 + 3035 ], "league_team_season_id": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118359,28 +119179,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118417,28 +119237,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118475,28 +119295,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118504,10 +119324,10 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5200 + 5256 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -118521,37 +119341,37 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 ], "league_division_id": [ - 5053 + 5109 ], "league_season_division_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "league_team_id": [ - 5053 + 5109 ], "league_team_season_id": [ - 5053 + 5109 ], "matches_played": [ 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118565,13 +119385,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -118580,7 +119400,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118588,28 +119408,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118646,28 +119466,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118704,28 +119524,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118762,28 +119582,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -118797,22 +119617,22 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118820,10 +119640,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5211 + 5267 ], "nodes": [ - 5209 + 5265 ], "__typename": [ 80 @@ -118831,13 +119651,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5212 + 5268 ], "count": [ 40, { "columns": [ - 5221, + 5277, "[v_match_captains_select_column!]" ], "distinct": [ @@ -118846,31 +119666,31 @@ export default { } ], "max": [ - 5216 + 5272 ], "min": [ - 5217 + 5273 ], "stddev": [ - 5223 + 5279 ], "stddev_pop": [ - 5224 + 5280 ], "stddev_samp": [ - 5225 + 5281 ], "sum": [ - 5228 + 5284 ], "var_pop": [ - 5230 + 5286 ], "var_samp": [ - 5231 + 5287 ], "variance": [ - 5232 + 5288 ], "__typename": [ 80 @@ -118886,13 +119706,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5213 + 5269 ], "_not": [ - 5213 + 5269 ], "_or": [ - 5213 + 5269 ], "captain": [ 6 @@ -118901,22 +119721,22 @@ export default { 82 ], "id": [ - 5055 + 5111 ], "lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "placeholder_name": [ 82 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -118924,7 +119744,7 @@ export default { }, "v_match_captains_inc_input": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118938,22 +119758,22 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "player": [ - 3975 + 4004 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118964,16 +119784,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -118984,16 +119804,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -119004,7 +119824,7 @@ export default { 40 ], "returning": [ - 5209 + 5265 ], "__typename": [ 80 @@ -119012,7 +119832,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5215 + 5271 ], "__typename": [ 80 @@ -119020,28 +119840,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 3006 + 3035 ], "discord_id": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "placeholder_name": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119056,16 +119876,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -119097,10 +119917,10 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5227 + 5283 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -119114,16 +119934,16 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "placeholder_name": [ 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -119131,7 +119951,7 @@ export default { }, "v_match_captains_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -119139,13 +119959,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5214 + 5270 ], "_set": [ - 5222 + 5278 ], "where": [ - 5213 + 5269 ], "__typename": [ 80 @@ -119180,31 +120000,31 @@ export default { 40 ], "clutcher": [ - 3964 + 3993 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "outcome": [ 80 @@ -119221,10 +120041,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5237 + 5293 ], "nodes": [ - 5233 + 5289 ], "__typename": [ 80 @@ -119232,7 +120052,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5236 + 5292 ], "__typename": [ 80 @@ -119240,13 +120060,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5249 + 5305 ], "distinct": [ 5 ], "filter": [ - 5242 + 5298 ], "predicate": [ 41 @@ -119257,13 +120077,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5240 + 5296 ], "count": [ 40, { "columns": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -119272,31 +120092,31 @@ export default { } ], "max": [ - 5244 + 5300 ], "min": [ - 5246 + 5302 ], "stddev": [ - 5250 + 5306 ], "stddev_pop": [ - 5252 + 5308 ], "stddev_samp": [ - 5254 + 5310 ], "sum": [ - 5258 + 5314 ], "var_pop": [ - 5260 + 5316 ], "var_samp": [ - 5262 + 5318 ], "variance": [ - 5264 + 5320 ], "__typename": [ 80 @@ -119304,37 +120124,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5241 + 5297 ], "count": [ - 3006 + 3035 ], "max": [ - 5245 + 5301 ], "min": [ - 5247 + 5303 ], "stddev": [ - 5251 + 5307 ], "stddev_pop": [ - 5253 + 5309 ], "stddev_samp": [ - 5255 + 5311 ], "sum": [ - 5259 + 5315 ], "var_pop": [ - 5261 + 5317 ], "var_samp": [ - 5263 + 5319 ], "variance": [ - 5265 + 5321 ], "__typename": [ 80 @@ -119342,7 +120162,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5243 + 5299 ], "__typename": [ 80 @@ -119367,16 +120187,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119384,43 +120204,43 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5242 + 5298 ], "_not": [ - 5242 + 5298 ], "_or": [ - 5242 + 5298 ], "against_count": [ 41 ], "clutcher": [ - 3968 + 3997 ], "clutcher_steam_id": [ - 259 + 261 ], "kills_in_clutch": [ 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "outcome": [ 82 @@ -119440,31 +120260,31 @@ export default { 40 ], "clutcher": [ - 3975 + 4004 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "outcome": [ 80 @@ -119484,19 +120304,19 @@ export default { 40 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "outcome": [ 80 @@ -119513,31 +120333,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "outcome": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119548,19 +120368,19 @@ export default { 40 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "outcome": [ 80 @@ -119577,31 +120397,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "outcome": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119609,43 +120429,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher": [ - 3977 + 4006 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "outcome": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119671,16 +120491,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119705,16 +120525,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119739,16 +120559,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119756,10 +120576,10 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5257 + 5313 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -119770,19 +120590,19 @@ export default { 40 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "outcome": [ 80 @@ -119802,7 +120622,7 @@ export default { 40 ], "clutcher_steam_id": [ - 257 + 259 ], "kills_in_clutch": [ 40 @@ -119816,16 +120636,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119850,16 +120670,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119884,16 +120704,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119918,16 +120738,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 3006 + 3035 ], "clutcher_steam_id": [ - 3006 + 3035 ], "kills_in_clutch": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -119938,28 +120758,28 @@ export default { 80 ], "killer_steam_id": [ - 257 + 259 ], "kills": [ 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "victim_side": [ 80 ], "victim_steam_id": [ - 257 + 259 ], "weapon": [ 80 @@ -119970,10 +120790,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5268 + 5324 ], "nodes": [ - 5266 + 5322 ], "__typename": [ 80 @@ -119981,13 +120801,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5269 + 5325 ], "count": [ 40, { "columns": [ - 5274, + 5330, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -119996,31 +120816,31 @@ export default { } ], "max": [ - 5271 + 5327 ], "min": [ - 5272 + 5328 ], "stddev": [ - 5275 + 5331 ], "stddev_pop": [ - 5276 + 5332 ], "stddev_samp": [ - 5277 + 5333 ], "sum": [ - 5280 + 5336 ], "var_pop": [ - 5281 + 5337 ], "var_samp": [ - 5282 + 5338 ], "variance": [ - 5283 + 5339 ], "__typename": [ 80 @@ -120042,40 +120862,40 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5270 + 5326 ], "_not": [ - 5270 + 5326 ], "_or": [ - 5270 + 5326 ], "killer_side": [ 82 ], "killer_steam_id": [ - 259 + 261 ], "kills": [ 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "victim_side": [ 82 ], "victim_steam_id": [ - 259 + 261 ], "weapon": [ 82 @@ -120089,22 +120909,22 @@ export default { 80 ], "killer_steam_id": [ - 257 + 259 ], "kills": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "victim_side": [ 80 ], "victim_steam_id": [ - 257 + 259 ], "weapon": [ 80 @@ -120118,22 +120938,22 @@ export default { 80 ], "killer_steam_id": [ - 257 + 259 ], "kills": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "victim_side": [ 80 ], "victim_steam_id": [ - 257 + 259 ], "weapon": [ 80 @@ -120144,34 +120964,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3006 + 3035 ], "killer_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "victim_side": [ - 3006 + 3035 ], "victim_steam_id": [ - 3006 + 3035 ], "weapon": [ - 3006 + 3035 ], "__typename": [ 80 @@ -120222,10 +121042,10 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5279 + 5335 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -120236,22 +121056,22 @@ export default { 80 ], "killer_steam_id": [ - 257 + 259 ], "kills": [ 40 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "victim_side": [ 80 ], "victim_steam_id": [ - 257 + 259 ], "weapon": [ 80 @@ -120262,13 +121082,13 @@ export default { }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 257 + 259 ], "kills": [ 40 ], "victim_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -120318,22 +121138,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -120353,10 +121173,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5286 + 5342 ], "nodes": [ - 5284 + 5340 ], "__typename": [ 80 @@ -120364,13 +121184,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5287 + 5343 ], "count": [ 40, { "columns": [ - 5292, + 5348, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -120379,31 +121199,31 @@ export default { } ], "max": [ - 5289 + 5345 ], "min": [ - 5290 + 5346 ], "stddev": [ - 5293 + 5349 ], "stddev_pop": [ - 5294 + 5350 ], "stddev_samp": [ - 5295 + 5351 ], "sum": [ - 5298 + 5354 ], "var_pop": [ - 5299 + 5355 ], "var_samp": [ - 5300 + 5356 ], "variance": [ - 5301 + 5357 ], "__typename": [ 80 @@ -120422,31 +121242,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5288 + 5344 ], "_not": [ - 5288 + 5344 ], "_or": [ - 5288 + 5344 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "matchup": [ 82 @@ -120466,13 +121286,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -120492,13 +121312,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -120518,34 +121338,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "matchup": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -120587,10 +121407,10 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5297 + 5353 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -120598,13 +121418,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -120680,22 +121500,22 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "opening_attempts": [ 40 @@ -120736,10 +121556,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5304 + 5360 ], "nodes": [ - 5302 + 5358 ], "__typename": [ 80 @@ -120747,13 +121567,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5305 + 5361 ], "count": [ 40, { "columns": [ - 5310, + 5366, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -120762,31 +121582,31 @@ export default { } ], "max": [ - 5307 + 5363 ], "min": [ - 5308 + 5364 ], "stddev": [ - 5311 + 5367 ], "stddev_pop": [ - 5312 + 5368 ], "stddev_samp": [ - 5313 + 5369 ], "sum": [ - 5316 + 5372 ], "var_pop": [ - 5317 + 5373 ], "var_samp": [ - 5318 + 5374 ], "variance": [ - 5319 + 5375 ], "__typename": [ 80 @@ -120841,13 +121661,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5306 + 5362 ], "_not": [ - 5306 + 5362 ], "_or": [ - 5306 + 5362 ], "man_adv_rounds": [ 41 @@ -120862,22 +121682,22 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "opening_attempts": [ 41 @@ -120930,13 +121750,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "opening_attempts": [ 40 @@ -120989,13 +121809,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "opening_attempts": [ 40 @@ -121036,67 +121856,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3006 + 3035 ], "man_adv_wins": [ - 3006 + 3035 ], "man_dis_rounds": [ - 3006 + 3035 ], "man_dis_wins": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "opening_attempts": [ - 3006 + 3035 ], "opening_wins": [ - 3006 + 3035 ], "pistol_rounds": [ - 3006 + 3035 ], "pistol_wins": [ - 3006 + 3035 ], "round_wins": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "won_buy_eco": [ - 3006 + 3035 ], "won_buy_force": [ - 3006 + 3035 ], "won_buy_full": [ - 3006 + 3035 ], "won_buy_pistol": [ - 3006 + 3035 ], "__typename": [ 80 @@ -121246,10 +122066,10 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5315 + 5371 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -121269,13 +122089,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "opening_attempts": [ 40 @@ -121507,7 +122327,7 @@ export default { 5 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121518,10 +122338,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5322 + 5378 ], "nodes": [ - 5320 + 5376 ], "__typename": [ 80 @@ -121529,13 +122349,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5323 + 5379 ], "count": [ 40, { "columns": [ - 5331, + 5387, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -121544,31 +122364,31 @@ export default { } ], "max": [ - 5327 + 5383 ], "min": [ - 5328 + 5384 ], "stddev": [ - 5333 + 5389 ], "stddev_pop": [ - 5334 + 5390 ], "stddev_samp": [ - 5335 + 5391 ], "sum": [ - 5338 + 5394 ], "var_pop": [ - 5340 + 5396 ], "var_samp": [ - 5341 + 5397 ], "variance": [ - 5342 + 5398 ], "__typename": [ 80 @@ -121584,19 +122404,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5324 + 5380 ], "_not": [ - 5324 + 5380 ], "_or": [ - 5324 + 5380 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5055 + 5111 ], "round": [ 41 @@ -121618,7 +122438,7 @@ export default { 5 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121629,7 +122449,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121640,7 +122460,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121654,7 +122474,7 @@ export default { 40 ], "returning": [ - 5320 + 5376 ], "__typename": [ 80 @@ -121662,13 +122482,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -121680,7 +122500,7 @@ export default { 5 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121715,10 +122535,10 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5337 + 5393 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -121729,7 +122549,7 @@ export default { 5 ], "match_map_id": [ - 5053 + 5109 ], "round": [ 40 @@ -121748,13 +122568,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5325 + 5381 ], "_set": [ - 5332 + 5388 ], "where": [ - 5324 + 5380 ], "__typename": [ 80 @@ -121792,28 +122612,28 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 ], "player": [ - 3964 + 3993 ], "rounds": [ 40 @@ -121822,7 +122642,7 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -121830,10 +122650,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5345 + 5401 ], "nodes": [ - 5343 + 5399 ], "__typename": [ 80 @@ -121841,13 +122661,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5346 + 5402 ], "count": [ 40, { "columns": [ - 5351, + 5407, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -121856,31 +122676,31 @@ export default { } ], "max": [ - 5348 + 5404 ], "min": [ - 5349 + 5405 ], "stddev": [ - 5352 + 5408 ], "stddev_pop": [ - 5353 + 5409 ], "stddev_samp": [ - 5354 + 5410 ], "sum": [ - 5357 + 5413 ], "var_pop": [ - 5358 + 5414 ], "var_samp": [ - 5359 + 5415 ], "variance": [ - 5360 + 5416 ], "__typename": [ 80 @@ -121905,13 +122725,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5347 + 5403 ], "_not": [ - 5347 + 5403 ], "_or": [ - 5347 + 5403 ], "deaths": [ 41 @@ -121920,28 +122740,28 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "matchup": [ 82 ], "player": [ - 3968 + 3997 ], "rounds": [ 41 @@ -121950,7 +122770,7 @@ export default { 82 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -121964,13 +122784,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -121982,7 +122802,7 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -121996,13 +122816,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -122014,7 +122834,7 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -122022,43 +122842,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "matchup": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "rounds": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122118,10 +122938,10 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5356 + 5412 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -122135,13 +122955,13 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "matchup": [ 80 @@ -122153,7 +122973,7 @@ export default { 80 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -122170,7 +122990,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -122235,31 +123055,31 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2493 + 2495 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "side": [ 80 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122273,10 +123093,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5365 + 5421 ], "nodes": [ - 5361 + 5417 ], "__typename": [ 80 @@ -122284,7 +123104,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5364 + 5420 ], "__typename": [ 80 @@ -122292,13 +123112,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5377 + 5433 ], "distinct": [ 5 ], "filter": [ - 5370 + 5426 ], "predicate": [ 41 @@ -122309,13 +123129,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5368 + 5424 ], "count": [ 40, { "columns": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -122324,31 +123144,31 @@ export default { } ], "max": [ - 5372 + 5428 ], "min": [ - 5374 + 5430 ], "stddev": [ - 5378 + 5434 ], "stddev_pop": [ - 5380 + 5436 ], "stddev_samp": [ - 5382 + 5438 ], "sum": [ - 5386 + 5442 ], "var_pop": [ - 5388 + 5444 ], "var_samp": [ - 5390 + 5446 ], "variance": [ - 5392 + 5448 ], "__typename": [ 80 @@ -122356,37 +123176,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5369 + 5425 ], "count": [ - 3006 + 3035 ], "max": [ - 5373 + 5429 ], "min": [ - 5375 + 5431 ], "stddev": [ - 5379 + 5435 ], "stddev_pop": [ - 5381 + 5437 ], "stddev_samp": [ - 5383 + 5439 ], "sum": [ - 5387 + 5443 ], "var_pop": [ - 5389 + 5445 ], "var_samp": [ - 5391 + 5447 ], "variance": [ - 5393 + 5449 ], "__typename": [ 80 @@ -122394,7 +123214,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5371 + 5427 ], "__typename": [ 80 @@ -122422,19 +123242,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122442,13 +123262,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5370 + 5426 ], "_not": [ - 5370 + 5426 ], "_or": [ - 5370 + 5426 ], "attempts": [ 41 @@ -122457,31 +123277,31 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_lineup": [ - 2502 + 2504 ], "match_lineup_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "side": [ 82 ], "steam_id": [ - 259 + 261 ], "traded_deaths": [ 41 @@ -122501,31 +123321,31 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_lineup": [ - 2511 + 2513 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "side": [ 80 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122545,19 +123365,19 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "side": [ 80 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122571,31 +123391,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122609,19 +123429,19 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "side": [ 80 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122635,31 +123455,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "side": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122667,43 +123487,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_lineup": [ - 2513 + 2515 ], "match_lineup_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "side": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122732,19 +123552,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122772,19 +123592,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122812,19 +123632,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122832,10 +123652,10 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5385 + 5441 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -122849,19 +123669,19 @@ export default { 40 ], "match_id": [ - 5053 + 5109 ], "match_lineup_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "side": [ 80 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122881,7 +123701,7 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "traded_deaths": [ 40 @@ -122895,19 +123715,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122935,19 +123755,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -122975,19 +123795,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -123015,19 +123835,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "traded_deaths": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -123035,19 +123855,19 @@ export default { }, "v_player_arch_nemesis": { "attacker_id": [ - 257 + 259 ], "kill_count": [ - 257 + 259 ], "nemsis": [ - 3964 + 3993 ], "player": [ - 3964 + 3993 ], "victim_id": [ - 257 + 259 ], "__typename": [ 80 @@ -123055,10 +123875,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5396 + 5452 ], "nodes": [ - 5394 + 5450 ], "__typename": [ 80 @@ -123066,13 +123886,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5397 + 5453 ], "count": [ 40, { "columns": [ - 5402, + 5458, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -123081,31 +123901,31 @@ export default { } ], "max": [ - 5399 + 5455 ], "min": [ - 5400 + 5456 ], "stddev": [ - 5403 + 5459 ], "stddev_pop": [ - 5404 + 5460 ], "stddev_samp": [ - 5405 + 5461 ], "sum": [ - 5408 + 5464 ], "var_pop": [ - 5409 + 5465 ], "var_samp": [ - 5410 + 5466 ], "variance": [ - 5411 + 5467 ], "__typename": [ 80 @@ -123127,28 +123947,28 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5398 + 5454 ], "_not": [ - 5398 + 5454 ], "_or": [ - 5398 + 5454 ], "attacker_id": [ - 259 + 261 ], "kill_count": [ - 259 + 261 ], "nemsis": [ - 3968 + 3997 ], "player": [ - 3968 + 3997 ], "victim_id": [ - 259 + 261 ], "__typename": [ 80 @@ -123156,13 +123976,13 @@ export default { }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 257 + 259 ], "kill_count": [ - 257 + 259 ], "victim_id": [ - 257 + 259 ], "__typename": [ 80 @@ -123170,13 +123990,13 @@ export default { }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 257 + 259 ], "kill_count": [ - 257 + 259 ], "victim_id": [ - 257 + 259 ], "__typename": [ 80 @@ -123184,19 +124004,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3006 + 3035 ], "kill_count": [ - 3006 + 3035 ], "nemsis": [ - 3977 + 4006 ], "player": [ - 3977 + 4006 ], "victim_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -123247,10 +124067,10 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5407 + 5463 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -123258,13 +124078,13 @@ export default { }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 257 + 259 ], "kill_count": [ - 257 + 259 ], "victim_id": [ - 257 + 259 ], "__typename": [ 80 @@ -123272,13 +124092,13 @@ export default { }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 257 + 259 ], "kill_count": [ - 257 + 259 ], "victim_id": [ - 257 + 259 ], "__typename": [ 80 @@ -123328,19 +124148,19 @@ export default { }, "v_player_damage": { "avg_damage_per_round": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "total_damage": [ - 257 + 259 ], "total_rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -123348,10 +124168,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5414 + 5470 ], "nodes": [ - 5412 + 5468 ], "__typename": [ 80 @@ -123359,13 +124179,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5415 + 5471 ], "count": [ 40, { "columns": [ - 5420, + 5476, "[v_player_damage_select_column!]" ], "distinct": [ @@ -123374,31 +124194,31 @@ export default { } ], "max": [ - 5417 + 5473 ], "min": [ - 5418 + 5474 ], "stddev": [ - 5421 + 5477 ], "stddev_pop": [ - 5422 + 5478 ], "stddev_samp": [ - 5423 + 5479 ], "sum": [ - 5426 + 5482 ], "var_pop": [ - 5427 + 5483 ], "var_samp": [ - 5428 + 5484 ], "variance": [ - 5429 + 5485 ], "__typename": [ 80 @@ -123423,28 +124243,28 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5416 + 5472 ], "_not": [ - 5416 + 5472 ], "_or": [ - 5416 + 5472 ], "avg_damage_per_round": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "total_damage": [ - 259 + 261 ], "total_rounds": [ - 259 + 261 ], "__typename": [ 80 @@ -123452,16 +124272,16 @@ export default { }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "total_damage": [ - 257 + 259 ], "total_rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -123469,16 +124289,16 @@ export default { }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "total_damage": [ - 257 + 259 ], "total_rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -123486,19 +124306,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "total_damage": [ - 3006 + 3035 ], "total_rounds": [ - 3006 + 3035 ], "__typename": [ 80 @@ -123558,10 +124378,10 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5425 + 5481 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -123569,16 +124389,16 @@ export default { }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "total_damage": [ - 257 + 259 ], "total_rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -123586,16 +124406,16 @@ export default { }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "total_damage": [ - 257 + 259 ], "total_rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -123654,7 +124474,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -123666,7 +124486,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -123675,16 +124495,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -123696,43 +124516,43 @@ export default { 40 ], "match": [ - 2821 + 2823 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_name": [ 80 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ 80 @@ -123746,10 +124566,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5444 + 5500 ], "nodes": [ - 5430 + 5486 ], "__typename": [ 80 @@ -123757,31 +124577,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5433 + 5489 ], "corr": [ - 5434 + 5490 ], "count": [ - 5436 + 5492 ], "covar_samp": [ - 5437 + 5493 ], "max": [ - 5439 + 5495 ], "min": [ - 5440 + 5496 ], "stddev_samp": [ - 5441 + 5497 ], "sum": [ - 5442 + 5498 ], "var_samp": [ - 5443 + 5499 ], "__typename": [ 80 @@ -123789,16 +124609,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5457 + 5513 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123806,16 +124626,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5435 + 5491 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123823,10 +124643,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5458 + 5514 ], "Y": [ - 5458 + 5514 ], "__typename": [ 80 @@ -123834,13 +124654,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5456 + 5512 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ 41 @@ -123851,16 +124671,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5438 + 5494 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123868,10 +124688,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5459 + 5515 ], "Y": [ - 5459 + 5515 ], "__typename": [ 80 @@ -123879,16 +124699,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5460 + 5516 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123896,16 +124716,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5461 + 5517 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123913,16 +124733,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5462 + 5518 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123930,16 +124750,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5463 + 5519 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123947,16 +124767,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5464 + 5520 ], "distinct": [ 5 ], "filter": [ - 5449 + 5505 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -123964,13 +124784,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5447 + 5503 ], "count": [ 40, { "columns": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "distinct": [ @@ -123979,31 +124799,31 @@ export default { } ], "max": [ - 5451 + 5507 ], "min": [ - 5453 + 5509 ], "stddev": [ - 5465 + 5521 ], "stddev_pop": [ - 5467 + 5523 ], "stddev_samp": [ - 5469 + 5525 ], "sum": [ - 5473 + 5529 ], "var_pop": [ - 5475 + 5531 ], "var_samp": [ - 5477 + 5533 ], "variance": [ - 5479 + 5535 ], "__typename": [ 80 @@ -124011,37 +124831,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5448 + 5504 ], "count": [ - 3006 + 3035 ], "max": [ - 5452 + 5508 ], "min": [ - 5454 + 5510 ], "stddev": [ - 5466 + 5522 ], "stddev_pop": [ - 5468 + 5524 ], "stddev_samp": [ - 5470 + 5526 ], "sum": [ - 5474 + 5530 ], "var_pop": [ - 5476 + 5532 ], "var_samp": [ - 5478 + 5534 ], "variance": [ - 5480 + 5536 ], "__typename": [ 80 @@ -124049,7 +124869,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5450 + 5506 ], "__typename": [ 80 @@ -124128,70 +124948,70 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -124199,16 +125019,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5449 + 5505 ], "_not": [ - 5449 + 5505 ], "_or": [ - 5449 + 5505 ], "actual_score": [ - 1690 + 1692 ], "assists": [ 41 @@ -124220,7 +125040,7 @@ export default { 41 ], "damage_percent": [ - 1690 + 1692 ], "deaths": [ 41 @@ -124229,16 +125049,16 @@ export default { 41 ], "expected_score": [ - 1690 + 1692 ], "impact": [ - 1690 + 1692 ], "k_factor": [ 41 ], "kda": [ - 1690 + 1692 ], "kills": [ 41 @@ -124250,43 +125070,43 @@ export default { 41 ], "match": [ - 2830 + 2832 ], "match_created_at": [ - 4554 + 4610 ], "match_id": [ - 5055 + 5111 ], "match_result": [ 82 ], "opponent_team_elo_avg": [ - 1690 + 1692 ], "performance_multiplier": [ - 1690 + 1692 ], "player_name": [ 82 ], "player_steam_id": [ - 259 + 261 ], "player_team_elo_avg": [ - 1690 + 1692 ], "rating_for_expected": [ - 1690 + 1692 ], "season_id": [ - 5055 + 5111 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 1690 + 1692 ], "type": [ 82 @@ -124300,7 +125120,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -124312,7 +125132,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -124321,16 +125141,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -124342,43 +125162,43 @@ export default { 40 ], "match": [ - 2839 + 2841 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_name": [ 80 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ 80 @@ -124392,7 +125212,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -124404,7 +125224,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -124413,16 +125233,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -124434,40 +125254,40 @@ export default { 40 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_name": [ 80 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ 80 @@ -124481,88 +125301,88 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "match_created_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_result": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_name": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -124570,7 +125390,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -124582,7 +125402,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -124591,16 +125411,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -124612,40 +125432,40 @@ export default { 40 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_name": [ 80 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ 80 @@ -124659,88 +125479,88 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "match_created_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_result": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_name": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -124748,91 +125568,91 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_created_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_result": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_name": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "season_id": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -124920,70 +125740,70 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125062,70 +125882,70 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125204,70 +126024,70 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125275,10 +126095,10 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5472 + 5528 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -125286,7 +126106,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -125298,7 +126118,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -125307,16 +126127,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -125328,40 +126148,40 @@ export default { 40 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_name": [ 80 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "season_id": [ - 5053 + 5109 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "type": [ 80 @@ -125375,7 +126195,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1689 + 1691 ], "assists": [ 40 @@ -125387,7 +126207,7 @@ export default { 40 ], "damage_percent": [ - 1689 + 1691 ], "deaths": [ 40 @@ -125396,16 +126216,16 @@ export default { 40 ], "expected_score": [ - 1689 + 1691 ], "impact": [ - 1689 + 1691 ], "k_factor": [ 40 ], "kda": [ - 1689 + 1691 ], "kills": [ 40 @@ -125417,25 +126237,25 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1689 + 1691 ], "performance_multiplier": [ - 1689 + 1691 ], "player_steam_id": [ - 257 + 259 ], "player_team_elo_avg": [ - 1689 + 1691 ], "rating_for_expected": [ - 1689 + 1691 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1689 + 1691 ], "updated_elo": [ 40 @@ -125446,70 +126266,70 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125588,70 +126408,70 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125730,70 +126550,70 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125872,70 +126692,70 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 3006 + 3035 ], "assists": [ - 3006 + 3035 ], "current_elo": [ - 3006 + 3035 ], "damage": [ - 3006 + 3035 ], "damage_percent": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "elo_change": [ - 3006 + 3035 ], "expected_score": [ - 3006 + 3035 ], "impact": [ - 3006 + 3035 ], "k_factor": [ - 3006 + 3035 ], "kda": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map_losses": [ - 3006 + 3035 ], "map_wins": [ - 3006 + 3035 ], "opponent_team_elo_avg": [ - 3006 + 3035 ], "performance_multiplier": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "player_team_elo_avg": [ - 3006 + 3035 ], "rating_for_expected": [ - 3006 + 3035 ], "series_multiplier": [ - 3006 + 3035 ], "team_avg_kda": [ - 3006 + 3035 ], "updated_elo": [ - 3006 + 3035 ], "__typename": [ 80 @@ -125943,22 +126763,22 @@ export default { }, "v_player_map_losses": { "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -125966,10 +126786,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5483 + 5539 ], "nodes": [ - 5481 + 5537 ], "__typename": [ 80 @@ -125977,13 +126797,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5484 + 5540 ], "count": [ 40, { "columns": [ - 5489, + 5545, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -125992,31 +126812,31 @@ export default { } ], "max": [ - 5486 + 5542 ], "min": [ - 5487 + 5543 ], "stddev": [ - 5490 + 5546 ], "stddev_pop": [ - 5491 + 5547 ], "stddev_samp": [ - 5492 + 5548 ], "sum": [ - 5495 + 5551 ], "var_pop": [ - 5496 + 5552 ], "var_samp": [ - 5497 + 5553 ], "variance": [ - 5498 + 5554 ], "__typename": [ 80 @@ -126032,31 +126852,31 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5485 + 5541 ], "_not": [ - 5485 + 5541 ], "_or": [ - 5485 + 5541 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "started_at": [ - 4554 + 4610 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -126064,16 +126884,16 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126081,16 +126901,16 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126098,22 +126918,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -126146,10 +126966,10 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5494 + 5550 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -126157,16 +126977,16 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126174,7 +126994,7 @@ export default { }, "v_player_map_losses_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126206,22 +127026,22 @@ export default { }, "v_player_map_wins": { "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126229,10 +127049,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5501 + 5557 ], "nodes": [ - 5499 + 5555 ], "__typename": [ 80 @@ -126240,13 +127060,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5502 + 5558 ], "count": [ 40, { "columns": [ - 5507, + 5563, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -126255,31 +127075,31 @@ export default { } ], "max": [ - 5504 + 5560 ], "min": [ - 5505 + 5561 ], "stddev": [ - 5508 + 5564 ], "stddev_pop": [ - 5509 + 5565 ], "stddev_samp": [ - 5510 + 5566 ], "sum": [ - 5513 + 5569 ], "var_pop": [ - 5514 + 5570 ], "var_samp": [ - 5515 + 5571 ], "variance": [ - 5516 + 5572 ], "__typename": [ 80 @@ -126295,31 +127115,31 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5503 + 5559 ], "_not": [ - 5503 + 5559 ], "_or": [ - 5503 + 5559 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "started_at": [ - 4554 + 4610 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -126327,16 +127147,16 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126344,16 +127164,16 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126361,22 +127181,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "started_at": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -126409,10 +127229,10 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5512 + 5568 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -126420,16 +127240,16 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "started_at": [ - 4553 + 4609 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126437,7 +127257,7 @@ export default { }, "v_player_map_wins_sum_fields": { "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -126469,37 +127289,37 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3964 + 3993 ], "attacked_steam_id": [ - 257 + 259 ], "attacker": [ - 3964 + 3993 ], "attacker_steam_id": [ - 257 + 259 ], "damage_dealt": [ 40 ], "flash_count": [ - 257 + 259 ], "headshot_kills": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -126507,10 +127327,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5519 + 5575 ], "nodes": [ - 5517 + 5573 ], "__typename": [ 80 @@ -126518,13 +127338,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5520 + 5576 ], "count": [ 40, { "columns": [ - 5525, + 5581, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -126533,31 +127353,31 @@ export default { } ], "max": [ - 5522 + 5578 ], "min": [ - 5523 + 5579 ], "stddev": [ - 5526 + 5582 ], "stddev_pop": [ - 5527 + 5583 ], "stddev_samp": [ - 5528 + 5584 ], "sum": [ - 5531 + 5587 ], "var_pop": [ - 5532 + 5588 ], "var_samp": [ - 5533 + 5589 ], "variance": [ - 5534 + 5590 ], "__typename": [ 80 @@ -126591,46 +127411,46 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5521 + 5577 ], "_not": [ - 5521 + 5577 ], "_or": [ - 5521 + 5577 ], "attacked": [ - 3968 + 3997 ], "attacked_steam_id": [ - 259 + 261 ], "attacker": [ - 3968 + 3997 ], "attacker_steam_id": [ - 259 + 261 ], "damage_dealt": [ 41 ], "flash_count": [ - 259 + 261 ], "headshot_kills": [ - 259 + 261 ], "hits": [ - 259 + 261 ], "kills": [ - 259 + 261 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -126638,28 +127458,28 @@ export default { }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage_dealt": [ 40 ], "flash_count": [ - 257 + 259 ], "headshot_kills": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -126667,28 +127487,28 @@ export default { }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage_dealt": [ 40 ], "flash_count": [ - 257 + 259 ], "headshot_kills": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -126696,37 +127516,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3977 + 4006 ], "attacked_steam_id": [ - 3006 + 3035 ], "attacker": [ - 3977 + 4006 ], "attacker_steam_id": [ - 3006 + 3035 ], "damage_dealt": [ - 3006 + 3035 ], "flash_count": [ - 3006 + 3035 ], "headshot_kills": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -126813,10 +127633,10 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5530 + 5586 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -126824,28 +127644,28 @@ export default { }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage_dealt": [ 40 ], "flash_count": [ - 257 + 259 ], "headshot_kills": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -126853,25 +127673,25 @@ export default { }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 257 + 259 ], "attacker_steam_id": [ - 257 + 259 ], "damage_dealt": [ 40 ], "flash_count": [ - 257 + 259 ], "headshot_kills": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "__typename": [ 80 @@ -126957,43 +127777,43 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127001,10 +127821,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5539 + 5595 ], "nodes": [ - 5535 + 5591 ], "__typename": [ 80 @@ -127012,7 +127832,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5538 + 5594 ], "__typename": [ 80 @@ -127020,13 +127840,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5553 + 5609 ], "distinct": [ 5 ], "filter": [ - 5544 + 5600 ], "predicate": [ 41 @@ -127037,13 +127857,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5542 + 5598 ], "count": [ 40, { "columns": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -127052,31 +127872,31 @@ export default { } ], "max": [ - 5547 + 5603 ], "min": [ - 5549 + 5605 ], "stddev": [ - 5555 + 5611 ], "stddev_pop": [ - 5557 + 5613 ], "stddev_samp": [ - 5559 + 5615 ], "sum": [ - 5563 + 5619 ], "var_pop": [ - 5566 + 5622 ], "var_samp": [ - 5568 + 5624 ], "variance": [ - 5570 + 5626 ], "__typename": [ 80 @@ -127084,37 +127904,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5543 + 5599 ], "count": [ - 3006 + 3035 ], "max": [ - 5548 + 5604 ], "min": [ - 5550 + 5606 ], "stddev": [ - 5556 + 5612 ], "stddev_pop": [ - 5558 + 5614 ], "stddev_samp": [ - 5560 + 5616 ], "sum": [ - 5564 + 5620 ], "var_pop": [ - 5567 + 5623 ], "var_samp": [ - 5569 + 5625 ], "variance": [ - 5571 + 5627 ], "__typename": [ 80 @@ -127122,7 +127942,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5546 + 5602 ], "__typename": [ 80 @@ -127159,28 +127979,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127188,52 +128008,52 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5544 + 5600 ], "_not": [ - 5544 + 5600 ], "_or": [ - 5544 + 5600 ], "adr": [ - 3005 + 3034 ], "apr": [ - 3005 + 3034 ], "dpr": [ - 3005 + 3034 ], "hltv_rating": [ - 3005 + 3034 ], "kast_pct": [ - 3005 + 3034 ], "kpr": [ - 3005 + 3034 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "rounds_played": [ 41 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -127241,28 +128061,28 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127270,43 +128090,43 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match": [ - 2839 + 2841 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2673 + 2675 ], "match_map_id": [ - 5053 + 5109 ], "player": [ - 3975 + 4004 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127314,34 +128134,34 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127349,34 +128169,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127384,34 +128204,34 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127419,34 +128239,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_map_id": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127457,7 +128277,7 @@ export default { 40 ], "returning": [ - 5535 + 5591 ], "__typename": [ 80 @@ -127465,43 +128285,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127510,34 +128330,34 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127574,28 +128394,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127632,28 +128452,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127690,28 +128510,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127719,10 +128539,10 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5562 + 5618 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -127730,34 +128550,34 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127765,28 +128585,28 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3004 + 3033 ], "apr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -127794,28 +128614,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127823,13 +128643,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5545 + 5601 ], "_set": [ - 5554 + 5610 ], "where": [ - 5544 + 5600 ], "__typename": [ 80 @@ -127866,28 +128686,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127924,28 +128744,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -127982,28 +128802,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3006 + 3035 ], "apr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -128011,52 +128831,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 3004 + 3033 ], "awp_kills": [ 40 ], "awp_share": [ - 3004 + 3033 ], "deaths": [ 40 ], "dpr": [ - 3004 + 3033 ], "entry_rate": [ - 3004 + 3033 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kills": [ 40 ], "kpr": [ - 3004 + 3033 ], "lineup_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "match_map": [ - 2655 + 2657 ], "match_map_id": [ - 5053 + 5109 ], "open_deaths": [ 40 @@ -128068,7 +128888,7 @@ export default { 40 ], "player": [ - 3964 + 3993 ], "role": [ 80 @@ -128077,10 +128897,10 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "support_idx": [ - 3004 + 3033 ], "total_kills": [ 40 @@ -128100,10 +128920,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5574 + 5630 ], "nodes": [ - 5572 + 5628 ], "__typename": [ 80 @@ -128111,13 +128931,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5575 + 5631 ], "count": [ 40, { "columns": [ - 5580, + 5636, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -128126,31 +128946,31 @@ export default { } ], "max": [ - 5577 + 5633 ], "min": [ - 5578 + 5634 ], "stddev": [ - 5581 + 5637 ], "stddev_pop": [ - 5582 + 5638 ], "stddev_samp": [ - 5583 + 5639 ], "sum": [ - 5586 + 5642 ], "var_pop": [ - 5587 + 5643 ], "var_samp": [ - 5588 + 5644 ], "variance": [ - 5589 + 5645 ], "__typename": [ 80 @@ -128226,61 +129046,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5576 + 5632 ], "_not": [ - 5576 + 5632 ], "_or": [ - 5576 + 5632 ], "adr": [ - 3005 + 3034 ], "awp_kills": [ 41 ], "awp_share": [ - 3005 + 3034 ], "deaths": [ 41 ], "dpr": [ - 3005 + 3034 ], "entry_rate": [ - 3005 + 3034 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3005 + 3034 ], "kast_pct": [ - 3005 + 3034 ], "kills": [ 41 ], "kpr": [ - 3005 + 3034 ], "lineup_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "match_map": [ - 2664 + 2666 ], "match_map_id": [ - 5055 + 5111 ], "open_deaths": [ 41 @@ -128292,7 +129112,7 @@ export default { 41 ], "player": [ - 3968 + 3997 ], "role": [ 82 @@ -128301,10 +129121,10 @@ export default { 41 ], "steam_id": [ - 259 + 261 ], "support_idx": [ - 3005 + 3034 ], "total_kills": [ 41 @@ -128324,46 +129144,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 3004 + 3033 ], "awp_kills": [ 40 ], "awp_share": [ - 3004 + 3033 ], "deaths": [ 40 ], "dpr": [ - 3004 + 3033 ], "entry_rate": [ - 3004 + 3033 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kills": [ 40 ], "kpr": [ - 3004 + 3033 ], "lineup_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "open_deaths": [ 40 @@ -128381,10 +129201,10 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "support_idx": [ - 3004 + 3033 ], "total_kills": [ 40 @@ -128404,46 +129224,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 3004 + 3033 ], "awp_kills": [ 40 ], "awp_share": [ - 3004 + 3033 ], "deaths": [ 40 ], "dpr": [ - 3004 + 3033 ], "entry_rate": [ - 3004 + 3033 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kills": [ 40 ], "kpr": [ - 3004 + 3033 ], "lineup_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "open_deaths": [ 40 @@ -128461,10 +129281,10 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "support_idx": [ - 3004 + 3033 ], "total_kills": [ 40 @@ -128484,88 +129304,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 3006 + 3035 ], "awp_kills": [ - 3006 + 3035 ], "awp_share": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "entry_rate": [ - 3006 + 3035 ], "flash_assists": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "lineup_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "match_map": [ - 2675 + 2677 ], "match_map_id": [ - 3006 + 3035 ], "open_deaths": [ - 3006 + 3035 ], "open_kills": [ - 3006 + 3035 ], "opening_attempts": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "role": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "support_idx": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "trade_kill_successes": [ - 3006 + 3035 ], "traded_death_successes": [ - 3006 + 3035 ], "util_damage": [ - 3006 + 3035 ], "__typename": [ 80 @@ -128778,10 +129598,10 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5585 + 5641 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -128789,46 +129609,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3004 + 3033 ], "awp_kills": [ 40 ], "awp_share": [ - 3004 + 3033 ], "deaths": [ 40 ], "dpr": [ - 3004 + 3033 ], "entry_rate": [ - 3004 + 3033 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kills": [ 40 ], "kpr": [ - 3004 + 3033 ], "lineup_id": [ - 5053 + 5109 ], "match_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053 + 5109 ], "open_deaths": [ 40 @@ -128846,10 +129666,10 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "support_idx": [ - 3004 + 3033 ], "total_kills": [ 40 @@ -128869,37 +129689,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3004 + 3033 ], "awp_kills": [ 40 ], "awp_share": [ - 3004 + 3033 ], "deaths": [ 40 ], "dpr": [ - 3004 + 3033 ], "entry_rate": [ - 3004 + 3033 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kills": [ 40 ], "kpr": [ - 3004 + 3033 ], "open_deaths": [ 40 @@ -128914,10 +129734,10 @@ export default { 40 ], "steam_id": [ - 257 + 259 ], "support_idx": [ - 3004 + 3033 ], "total_kills": [ 40 @@ -129150,25 +129970,25 @@ export default { 40 ], "map": [ - 2304 + 2306 ], "map_id": [ - 5053 + 5109 ], "match": [ - 2821 + 2823 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -129182,10 +130002,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5592 + 5648 ], "nodes": [ - 5590 + 5646 ], "__typename": [ 80 @@ -129193,13 +130013,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5593 + 5649 ], "count": [ 40, { "columns": [ - 5598, + 5654, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -129208,31 +130028,31 @@ export default { } ], "max": [ - 5595 + 5651 ], "min": [ - 5596 + 5652 ], "stddev": [ - 5599 + 5655 ], "stddev_pop": [ - 5600 + 5656 ], "stddev_samp": [ - 5601 + 5657 ], "sum": [ - 5604 + 5660 ], "var_pop": [ - 5605 + 5661 ], "var_samp": [ - 5606 + 5662 ], "variance": [ - 5607 + 5663 ], "__typename": [ 80 @@ -129257,13 +130077,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5594 + 5650 ], "_not": [ - 5594 + 5650 ], "_or": [ - 5594 + 5650 ], "assists": [ 41 @@ -129275,25 +130095,25 @@ export default { 41 ], "map": [ - 2313 + 2315 ], "map_id": [ - 5055 + 5111 ], "match": [ - 2830 + 2832 ], "match_created_at": [ - 4554 + 4610 ], "match_id": [ - 5055 + 5111 ], "match_result": [ 82 ], "player_steam_id": [ - 259 + 261 ], "source": [ 82 @@ -129316,19 +130136,19 @@ export default { 40 ], "map_id": [ - 5053 + 5109 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -129351,19 +130171,19 @@ export default { 40 ], "map_id": [ - 5053 + 5109 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -129377,40 +130197,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "map": [ - 2323 + 2325 ], "map_id": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_created_at": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "match_result": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "__typename": [ 80 @@ -129470,10 +130290,10 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5603 + 5659 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -129490,19 +130310,19 @@ export default { 40 ], "map_id": [ - 5053 + 5109 ], "match_created_at": [ - 4553 + 4609 ], "match_id": [ - 5053 + 5109 ], "match_result": [ 80 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -129525,7 +130345,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -129584,34 +130404,34 @@ export default { }, "v_player_match_rating": { "adr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match": [ - 2821 + 2823 ], "match_id": [ - 5053 + 5109 ], "player": [ - 3964 + 3993 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -129619,10 +130439,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5610 + 5666 ], "nodes": [ - 5608 + 5664 ], "__typename": [ 80 @@ -129630,13 +130450,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5611 + 5667 ], "count": [ 40, { "columns": [ - 5616, + 5672, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -129645,31 +130465,31 @@ export default { } ], "max": [ - 5613 + 5669 ], "min": [ - 5614 + 5670 ], "stddev": [ - 5617 + 5673 ], "stddev_pop": [ - 5618 + 5674 ], "stddev_samp": [ - 5619 + 5675 ], "sum": [ - 5622 + 5678 ], "var_pop": [ - 5623 + 5679 ], "var_samp": [ - 5624 + 5680 ], "variance": [ - 5625 + 5681 ], "__typename": [ 80 @@ -129703,43 +130523,43 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5612 + 5668 ], "_not": [ - 5612 + 5668 ], "_or": [ - 5612 + 5668 ], "adr": [ - 3005 + 3034 ], "dpr": [ - 3005 + 3034 ], "hltv_rating": [ - 3005 + 3034 ], "kast_pct": [ - 3005 + 3034 ], "kpr": [ - 3005 + 3034 ], "match": [ - 2830 + 2832 ], "match_id": [ - 5055 + 5111 ], "player": [ - 3968 + 3997 ], "rounds_played": [ 41 ], "steam_id": [ - 259 + 261 ], "__typename": [ 80 @@ -129747,28 +130567,28 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -129776,28 +130596,28 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -129805,34 +130625,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 3006 + 3035 ], "dpr": [ - 3006 + 3035 ], "hltv_rating": [ - 3006 + 3035 ], "kast_pct": [ - 3006 + 3035 ], "kpr": [ - 3006 + 3035 ], "match": [ - 2841 + 2843 ], "match_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "rounds_played": [ - 3006 + 3035 ], "steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -129919,10 +130739,10 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5621 + 5677 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -129930,28 +130750,28 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "match_id": [ - 5053 + 5109 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -129959,25 +130779,25 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 3004 + 3033 ], "dpr": [ - 3004 + 3033 ], "hltv_rating": [ - 3004 + 3033 ], "kast_pct": [ - 3004 + 3033 ], "kpr": [ - 3004 + 3033 ], "rounds_played": [ 40 ], "steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -130063,13 +130883,13 @@ export default { }, "v_player_multi_kills": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "round": [ 40 @@ -130080,10 +130900,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5630 + 5686 ], "nodes": [ - 5626 + 5682 ], "__typename": [ 80 @@ -130091,7 +130911,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5629 + 5685 ], "__typename": [ 80 @@ -130099,13 +130919,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5642 + 5698 ], "distinct": [ 5 ], "filter": [ - 5635 + 5691 ], "predicate": [ 41 @@ -130116,13 +130936,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5633 + 5689 ], "count": [ 40, { "columns": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -130131,31 +130951,31 @@ export default { } ], "max": [ - 5637 + 5693 ], "min": [ - 5639 + 5695 ], "stddev": [ - 5643 + 5699 ], "stddev_pop": [ - 5645 + 5701 ], "stddev_samp": [ - 5647 + 5703 ], "sum": [ - 5651 + 5707 ], "var_pop": [ - 5653 + 5709 ], "var_samp": [ - 5655 + 5711 ], "variance": [ - 5657 + 5713 ], "__typename": [ 80 @@ -130163,37 +130983,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5634 + 5690 ], "count": [ - 3006 + 3035 ], "max": [ - 5638 + 5694 ], "min": [ - 5640 + 5696 ], "stddev": [ - 5644 + 5700 ], "stddev_pop": [ - 5646 + 5702 ], "stddev_samp": [ - 5648 + 5704 ], "sum": [ - 5652 + 5708 ], "var_pop": [ - 5654 + 5710 ], "var_samp": [ - 5656 + 5712 ], "variance": [ - 5658 + 5714 ], "__typename": [ 80 @@ -130201,7 +131021,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5636 + 5692 ], "__typename": [ 80 @@ -130223,13 +131043,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130237,22 +131057,22 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5635 + 5691 ], "_not": [ - 5635 + 5691 ], "_or": [ - 5635 + 5691 ], "attacker_steam_id": [ - 259 + 261 ], "kills": [ - 259 + 261 ], "match_id": [ - 5055 + 5111 ], "round": [ 41 @@ -130263,13 +131083,13 @@ export default { }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "round": [ 40 @@ -130280,13 +131100,13 @@ export default { }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "round": [ 40 @@ -130297,16 +131117,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130314,13 +131134,13 @@ export default { }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "round": [ 40 @@ -130331,16 +131151,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130348,16 +131168,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "match_id": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130380,13 +131200,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130408,13 +131228,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130436,13 +131256,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130450,10 +131270,10 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5650 + 5706 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -130461,13 +131281,13 @@ export default { }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "match_id": [ - 5053 + 5109 ], "round": [ 40 @@ -130478,10 +131298,10 @@ export default { }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 257 + 259 ], "kills": [ - 257 + 259 ], "round": [ 40 @@ -130492,13 +131312,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130520,13 +131340,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130548,13 +131368,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130576,13 +131396,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "round": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130590,25 +131410,25 @@ export default { }, "v_player_queue_partners": { "first_played_at": [ - 4553 + 4609 ], "last_played_at": [ - 4553 + 4609 ], "matches_together": [ 40 ], "partner": [ - 3964 + 3993 ], "partner_steam_id": [ - 257 + 259 ], "player": [ - 3964 + 3993 ], "steam_id": [ - 257 + 259 ], "wins_together": [ 40 @@ -130619,10 +131439,10 @@ export default { }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5661 + 5717 ], "nodes": [ - 5659 + 5715 ], "__typename": [ 80 @@ -130630,13 +131450,13 @@ export default { }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5662 + 5718 ], "count": [ 40, { "columns": [ - 5667, + 5723, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -130645,31 +131465,31 @@ export default { } ], "max": [ - 5664 + 5720 ], "min": [ - 5665 + 5721 ], "stddev": [ - 5668 + 5724 ], "stddev_pop": [ - 5669 + 5725 ], "stddev_samp": [ - 5670 + 5726 ], "sum": [ - 5673 + 5729 ], "var_pop": [ - 5674 + 5730 ], "var_samp": [ - 5675 + 5731 ], "variance": [ - 5676 + 5732 ], "__typename": [ 80 @@ -130694,34 +131514,34 @@ export default { }, "v_player_queue_partners_bool_exp": { "_and": [ - 5663 + 5719 ], "_not": [ - 5663 + 5719 ], "_or": [ - 5663 + 5719 ], "first_played_at": [ - 4554 + 4610 ], "last_played_at": [ - 4554 + 4610 ], "matches_together": [ 41 ], "partner": [ - 3968 + 3997 ], "partner_steam_id": [ - 259 + 261 ], "player": [ - 3968 + 3997 ], "steam_id": [ - 259 + 261 ], "wins_together": [ 41 @@ -130732,19 +131552,19 @@ export default { }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4553 + 4609 ], "last_played_at": [ - 4553 + 4609 ], "matches_together": [ 40 ], "partner_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "wins_together": [ 40 @@ -130755,19 +131575,19 @@ export default { }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4553 + 4609 ], "last_played_at": [ - 4553 + 4609 ], "matches_together": [ 40 ], "partner_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "wins_together": [ 40 @@ -130778,28 +131598,28 @@ export default { }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3006 + 3035 ], "last_played_at": [ - 3006 + 3035 ], "matches_together": [ - 3006 + 3035 ], "partner": [ - 3977 + 4006 ], "partner_steam_id": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "steam_id": [ - 3006 + 3035 ], "wins_together": [ - 3006 + 3035 ], "__typename": [ 80 @@ -130859,10 +131679,10 @@ export default { }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5672 + 5728 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -130870,19 +131690,19 @@ export default { }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4553 + 4609 ], "last_played_at": [ - 4553 + 4609 ], "matches_together": [ 40 ], "partner_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "wins_together": [ 40 @@ -130896,10 +131716,10 @@ export default { 40 ], "partner_steam_id": [ - 257 + 259 ], "steam_id": [ - 257 + 259 ], "wins_together": [ 40 @@ -130961,13 +131781,13 @@ export default { }, "v_player_weapon_damage": { "damage": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -130984,10 +131804,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5679 + 5735 ], "nodes": [ - 5677 + 5733 ], "__typename": [ 80 @@ -130995,13 +131815,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5680 + 5736 ], "count": [ 40, { "columns": [ - 5685, + 5741, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -131010,31 +131830,31 @@ export default { } ], "max": [ - 5682 + 5738 ], "min": [ - 5683 + 5739 ], "stddev": [ - 5686 + 5742 ], "stddev_pop": [ - 5687 + 5743 ], "stddev_samp": [ - 5688 + 5744 ], "sum": [ - 5691 + 5747 ], "var_pop": [ - 5692 + 5748 ], "var_samp": [ - 5693 + 5749 ], "variance": [ - 5694 + 5750 ], "__typename": [ 80 @@ -131056,22 +131876,22 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5681 + 5737 ], "_not": [ - 5681 + 5737 ], "_or": [ - 5681 + 5737 ], "damage": [ - 259 + 261 ], "hits": [ - 259 + 261 ], "player_steam_id": [ - 259 + 261 ], "source": [ 82 @@ -131088,13 +131908,13 @@ export default { }, "v_player_weapon_damage_max_fields": { "damage": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -131111,13 +131931,13 @@ export default { }, "v_player_weapon_damage_min_fields": { "damage": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -131134,22 +131954,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 3006 + 3035 ], "hits": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -131200,10 +132020,10 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5690 + 5746 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -131211,13 +132031,13 @@ export default { }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "source": [ 80 @@ -131234,13 +132054,13 @@ export default { }, "v_player_weapon_damage_sum_fields": { "damage": [ - 257 + 259 ], "hits": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -131290,13 +132110,13 @@ export default { }, "v_player_weapon_kills": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "rounds": [ - 257 + 259 ], "source": [ 80 @@ -131313,10 +132133,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5697 + 5753 ], "nodes": [ - 5695 + 5751 ], "__typename": [ 80 @@ -131324,13 +132144,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5698 + 5754 ], "count": [ 40, { "columns": [ - 5703, + 5759, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -131339,31 +132159,31 @@ export default { } ], "max": [ - 5700 + 5756 ], "min": [ - 5701 + 5757 ], "stddev": [ - 5704 + 5760 ], "stddev_pop": [ - 5705 + 5761 ], "stddev_samp": [ - 5706 + 5762 ], "sum": [ - 5709 + 5765 ], "var_pop": [ - 5710 + 5766 ], "var_samp": [ - 5711 + 5767 ], "variance": [ - 5712 + 5768 ], "__typename": [ 80 @@ -131385,22 +132205,22 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5699 + 5755 ], "_not": [ - 5699 + 5755 ], "_or": [ - 5699 + 5755 ], "kill_count": [ - 259 + 261 ], "player_steam_id": [ - 259 + 261 ], "rounds": [ - 259 + 261 ], "source": [ 82 @@ -131417,13 +132237,13 @@ export default { }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "rounds": [ - 257 + 259 ], "source": [ 80 @@ -131440,13 +132260,13 @@ export default { }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "rounds": [ - 257 + 259 ], "source": [ 80 @@ -131463,22 +132283,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "rounds": [ - 3006 + 3035 ], "source": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "with": [ - 3006 + 3035 ], "__typename": [ 80 @@ -131529,10 +132349,10 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5708 + 5764 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -131540,13 +132360,13 @@ export default { }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "rounds": [ - 257 + 259 ], "source": [ 80 @@ -131563,13 +132383,13 @@ export default { }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 257 + 259 ], "player_steam_id": [ - 257 + 259 ], "rounds": [ - 257 + 259 ], "__typename": [ 80 @@ -131622,16 +132442,16 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool": [ - 2285 + 2287 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -131654,10 +132474,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5719 + 5775 ], "nodes": [ - 5713 + 5769 ], "__typename": [ 80 @@ -131665,13 +132485,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5716 + 5772 ], "bool_or": [ - 5717 + 5773 ], "count": [ - 5718 + 5774 ], "__typename": [ 80 @@ -131679,13 +132499,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5731 + 5787 ], "distinct": [ 5 ], "filter": [ - 5722 + 5778 ], "predicate": [ 6 @@ -131696,13 +132516,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5732 + 5788 ], "distinct": [ 5 ], "filter": [ - 5722 + 5778 ], "predicate": [ 6 @@ -131713,13 +132533,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5730 + 5786 ], "distinct": [ 5 ], "filter": [ - 5722 + 5778 ], "predicate": [ 41 @@ -131733,7 +132553,7 @@ export default { 40, { "columns": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -131742,10 +132562,10 @@ export default { } ], "max": [ - 5724 + 5780 ], "min": [ - 5726 + 5782 ], "__typename": [ 80 @@ -131753,13 +132573,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 3006 + 3035 ], "max": [ - 5725 + 5781 ], "min": [ - 5727 + 5783 ], "__typename": [ 80 @@ -131767,7 +132587,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5723 + 5779 ], "__typename": [ 80 @@ -131775,28 +132595,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5722 + 5778 ], "_not": [ - 5722 + 5778 ], "_or": [ - 5722 + 5778 ], "active_pool": [ 6 ], "id": [ - 5055 + 5111 ], "label": [ 82 ], "map_pool": [ - 2288 + 2290 ], "map_pool_id": [ - 5055 + 5111 ], "name": [ 82 @@ -131822,16 +132642,16 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool": [ - 2294 + 2296 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -131854,13 +132674,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -131883,28 +132703,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "map_pool_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -131912,13 +132732,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -131941,28 +132761,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "map_pool_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -131973,7 +132793,7 @@ export default { 40 ], "returning": [ - 5713 + 5769 ], "__typename": [ 80 @@ -131981,34 +132801,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "label": [ - 3006 + 3035 ], "map_pool": [ - 2296 + 2298 ], "map_pool_id": [ - 3006 + 3035 ], "name": [ - 3006 + 3035 ], "patch": [ - 3006 + 3035 ], "poster": [ - 3006 + 3035 ], "type": [ - 3006 + 3035 ], "workshop_map_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -132022,13 +132842,13 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -132051,10 +132871,10 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5735 + 5791 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -132065,13 +132885,13 @@ export default { 5 ], "id": [ - 5053 + 5109 ], "label": [ 80 ], "map_pool_id": [ - 5053 + 5109 ], "name": [ 80 @@ -132094,10 +132914,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5733 + 5789 ], "where": [ - 5722 + 5778 ], "__typename": [ 80 @@ -132122,10 +132942,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5739 + 5795 ], "nodes": [ - 5737 + 5793 ], "__typename": [ 80 @@ -132133,13 +132953,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5740 + 5796 ], "count": [ 40, { "columns": [ - 5745, + 5801, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -132148,31 +132968,31 @@ export default { } ], "max": [ - 5742 + 5798 ], "min": [ - 5743 + 5799 ], "stddev": [ - 5746 + 5802 ], "stddev_pop": [ - 5747 + 5803 ], "stddev_samp": [ - 5748 + 5804 ], "sum": [ - 5751 + 5807 ], "var_pop": [ - 5752 + 5808 ], "var_samp": [ - 5753 + 5809 ], "variance": [ - 5754 + 5810 ], "__typename": [ 80 @@ -132197,13 +133017,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5741 + 5797 ], "_not": [ - 5741 + 5797 ], "_or": [ - 5741 + 5797 ], "busy_accounts": [ 41 @@ -132257,16 +133077,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3006 + 3035 ], "free_accounts": [ - 3006 + 3035 ], "id": [ - 3006 + 3035 ], "total_accounts": [ - 3006 + 3035 ], "__typename": [ 80 @@ -132326,10 +133146,10 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5750 + 5806 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -132431,7 +133251,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132446,13 +133266,13 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -132460,10 +133280,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5757 + 5813 ], "nodes": [ - 5755 + 5811 ], "__typename": [ 80 @@ -132471,13 +133291,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5758 + 5814 ], "count": [ 40, { "columns": [ - 5765, + 5821, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -132486,31 +133306,31 @@ export default { } ], "max": [ - 5761 + 5817 ], "min": [ - 5762 + 5818 ], "stddev": [ - 5766 + 5822 ], "stddev_pop": [ - 5767 + 5823 ], "stddev_samp": [ - 5768 + 5824 ], "sum": [ - 5771 + 5827 ], "var_pop": [ - 5772 + 5828 ], "var_samp": [ - 5773 + 5829 ], "variance": [ - 5774 + 5830 ], "__typename": [ 80 @@ -132550,13 +133370,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5759 + 5815 ], "_not": [ - 5759 + 5815 ], "_or": [ - 5759 + 5815 ], "avg_duel_elo": [ 41 @@ -132568,7 +133388,7 @@ export default { 41 ], "avg_faceit_level": [ - 1690 + 1692 ], "avg_premier": [ 41 @@ -132583,13 +133403,13 @@ export default { 41 ], "roster_size": [ - 259 + 261 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -132606,7 +133426,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132621,13 +133441,13 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -132644,7 +133464,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132659,10 +133479,10 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -132679,7 +133499,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132694,10 +133514,10 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -132705,7 +133525,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5760 + 5816 ], "__typename": [ 80 @@ -132713,37 +133533,37 @@ export default { }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3006 + 3035 ], "avg_elo": [ - 3006 + 3035 ], "avg_faceit_elo": [ - 3006 + 3035 ], "avg_faceit_level": [ - 3006 + 3035 ], "avg_premier": [ - 3006 + 3035 ], "avg_wingman_elo": [ - 3006 + 3035 ], "max_elo": [ - 3006 + 3035 ], "min_elo": [ - 3006 + 3035 ], "roster_size": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -132848,10 +133668,10 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5770 + 5826 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -132868,7 +133688,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132883,10 +133703,10 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -132903,7 +133723,7 @@ export default { 40 ], "avg_faceit_level": [ - 1689 + 1691 ], "avg_premier": [ 40 @@ -132918,7 +133738,7 @@ export default { 40 ], "roster_size": [ - 257 + 259 ], "__typename": [ 80 @@ -133022,22 +133842,22 @@ export default { }, "v_team_reputation": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "team": [ - 4506 + 4562 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -133045,10 +133865,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5777 + 5833 ], "nodes": [ - 5775 + 5831 ], "__typename": [ 80 @@ -133056,13 +133876,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5778 + 5834 ], "count": [ 40, { "columns": [ - 5785, + 5841, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -133071,31 +133891,31 @@ export default { } ], "max": [ - 5781 + 5837 ], "min": [ - 5782 + 5838 ], "stddev": [ - 5786 + 5842 ], "stddev_pop": [ - 5787 + 5843 ], "stddev_samp": [ - 5788 + 5844 ], "sum": [ - 5791 + 5847 ], "var_pop": [ - 5792 + 5848 ], "var_samp": [ - 5793 + 5849 ], "variance": [ - 5794 + 5850 ], "__typename": [ 80 @@ -133120,31 +133940,31 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5779 + 5835 ], "_not": [ - 5779 + 5835 ], "_or": [ - 5779 + 5835 ], "late_cancels": [ - 259 + 261 ], "no_shows": [ - 259 + 261 ], "reliability_pct": [ - 3005 + 3034 ], "scrims_completed": [ - 259 + 261 ], "team": [ - 4517 + 4573 ], "team_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -133152,22 +133972,22 @@ export default { }, "v_team_reputation_insert_input": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "team": [ - 4526 + 4582 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -133175,19 +133995,19 @@ export default { }, "v_team_reputation_max_fields": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -133195,19 +134015,19 @@ export default { }, "v_team_reputation_min_fields": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -133215,7 +134035,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5780 + 5836 ], "__typename": [ 80 @@ -133223,22 +134043,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 3006 + 3035 ], "no_shows": [ - 3006 + 3035 ], "reliability_pct": [ - 3006 + 3035 ], "scrims_completed": [ - 3006 + 3035 ], "team": [ - 4528 + 4584 ], "team_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -133298,10 +134118,10 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5790 + 5846 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -133309,19 +134129,19 @@ export default { }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -133329,16 +134149,16 @@ export default { }, "v_team_reputation_sum_fields": { "late_cancels": [ - 257 + 259 ], "no_shows": [ - 257 + 259 ], "reliability_pct": [ - 3004 + 3033 ], "scrims_completed": [ - 257 + 259 ], "__typename": [ 80 @@ -133433,13 +134253,13 @@ export default { 40 ], "stage": [ - 4814 + 4870 ], "team": [ - 4947 + 5003 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -133448,10 +134268,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -133462,10 +134282,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5809 + 5865 ], "nodes": [ - 5795 + 5851 ], "__typename": [ 80 @@ -133473,31 +134293,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5798 + 5854 ], "corr": [ - 5799 + 5855 ], "count": [ - 5801 + 5857 ], "covar_samp": [ - 5802 + 5858 ], "max": [ - 5804 + 5860 ], "min": [ - 5805 + 5861 ], "stddev_samp": [ - 5806 + 5862 ], "sum": [ - 5807 + 5863 ], "var_samp": [ - 5808 + 5864 ], "__typename": [ 80 @@ -133505,16 +134325,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5828 + 5884 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133522,16 +134342,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5800 + 5856 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133539,10 +134359,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5829 + 5885 ], "Y": [ - 5829 + 5885 ], "__typename": [ 80 @@ -133550,13 +134370,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5827 + 5883 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ 41 @@ -133567,16 +134387,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5803 + 5859 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133584,10 +134404,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5830 + 5886 ], "Y": [ - 5830 + 5886 ], "__typename": [ 80 @@ -133595,16 +134415,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5831 + 5887 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133612,16 +134432,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5832 + 5888 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133629,16 +134449,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5833 + 5889 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133646,16 +134466,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5834 + 5890 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133663,16 +134483,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5835 + 5891 ], "distinct": [ 5 ], "filter": [ - 5814 + 5870 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -133680,13 +134500,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5812 + 5868 ], "count": [ 40, { "columns": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -133695,31 +134515,31 @@ export default { } ], "max": [ - 5818 + 5874 ], "min": [ - 5820 + 5876 ], "stddev": [ - 5837 + 5893 ], "stddev_pop": [ - 5839 + 5895 ], "stddev_samp": [ - 5841 + 5897 ], "sum": [ - 5845 + 5901 ], "var_pop": [ - 5849 + 5905 ], "var_samp": [ - 5851 + 5907 ], "variance": [ - 5853 + 5909 ], "__typename": [ 80 @@ -133727,37 +134547,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5813 + 5869 ], "count": [ - 3006 + 3035 ], "max": [ - 5819 + 5875 ], "min": [ - 5821 + 5877 ], "stddev": [ - 5838 + 5894 ], "stddev_pop": [ - 5840 + 5896 ], "stddev_samp": [ - 5842 + 5898 ], "sum": [ - 5846 + 5902 ], "var_pop": [ - 5850 + 5906 ], "var_samp": [ - 5852 + 5908 ], "variance": [ - 5854 + 5910 ], "__typename": [ 80 @@ -133765,10 +134585,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5817 + 5873 ], "on_conflict": [ - 5824 + 5880 ], "__typename": [ 80 @@ -133829,52 +134649,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -133882,13 +134702,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5814 + 5870 ], "_not": [ - 5814 + 5870 ], "_or": [ - 5814 + 5870 ], "group_number": [ 41 @@ -133927,13 +134747,13 @@ export default { 41 ], "stage": [ - 4826 + 4882 ], "team": [ - 4956 + 5012 ], "team_kdr": [ - 1690 + 1692 ], "total_deaths": [ 41 @@ -133942,10 +134762,10 @@ export default { 41 ], "tournament_stage_id": [ - 5055 + 5111 ], "tournament_team_id": [ - 5055 + 5111 ], "wins": [ 41 @@ -133993,7 +134813,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134046,13 +134866,13 @@ export default { 40 ], "stage": [ - 4838 + 4894 ], "team": [ - 4965 + 5021 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134061,10 +134881,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -134111,7 +134931,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134120,10 +134940,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -134134,58 +134954,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134229,7 +135049,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134238,10 +135058,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -134252,58 +135072,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134314,7 +135134,7 @@ export default { 40 ], "returning": [ - 5795 + 5851 ], "__typename": [ 80 @@ -134322,10 +135142,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5817 + 5873 ], "on_conflict": [ - 5824 + 5880 ], "__typename": [ 80 @@ -134333,13 +135153,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5815 + 5871 ], "update_columns": [ - 5847 + 5903 ], "where": [ - 5814 + 5870 ], "__typename": [ 80 @@ -134347,64 +135167,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "stage": [ - 4840 + 4896 ], "team": [ - 4967 + 5023 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament_stage_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134412,10 +135232,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -134468,7 +135288,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134477,10 +135297,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -134544,52 +135364,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134650,52 +135470,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134756,52 +135576,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134809,10 +135629,10 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5844 + 5900 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -134856,7 +135676,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134865,10 +135685,10 @@ export default { 40 ], "tournament_stage_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -134915,7 +135735,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -134932,52 +135752,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -134986,13 +135806,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5816 + 5872 ], "_set": [ - 5836 + 5892 ], "where": [ - 5814 + 5870 ], "__typename": [ 80 @@ -135053,52 +135873,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -135159,52 +135979,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -135265,52 +136085,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3006 + 3035 ], "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "placement": [ - 3006 + 3035 ], "rank": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -135345,10 +136165,10 @@ export default { 40 ], "team": [ - 4947 + 5003 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -135357,13 +136177,13 @@ export default { 40 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -135374,10 +136194,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5869 + 5925 ], "nodes": [ - 5855 + 5911 ], "__typename": [ 80 @@ -135385,31 +136205,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5858 + 5914 ], "corr": [ - 5859 + 5915 ], "count": [ - 5861 + 5917 ], "covar_samp": [ - 5862 + 5918 ], "max": [ - 5864 + 5920 ], "min": [ - 5865 + 5921 ], "stddev_samp": [ - 5866 + 5922 ], "sum": [ - 5867 + 5923 ], "var_samp": [ - 5868 + 5924 ], "__typename": [ 80 @@ -135417,16 +136237,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5882 + 5938 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135434,16 +136254,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5860 + 5916 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135451,10 +136271,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5883 + 5939 ], "Y": [ - 5883 + 5939 ], "__typename": [ 80 @@ -135462,13 +136282,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5881 + 5937 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ 41 @@ -135479,16 +136299,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5863 + 5919 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135496,10 +136316,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5884 + 5940 ], "Y": [ - 5884 + 5940 ], "__typename": [ 80 @@ -135507,16 +136327,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5885 + 5941 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135524,16 +136344,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5886 + 5942 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135541,16 +136361,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5887 + 5943 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135558,16 +136378,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5888 + 5944 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135575,16 +136395,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5889 + 5945 ], "distinct": [ 5 ], "filter": [ - 5874 + 5930 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -135592,13 +136412,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5872 + 5928 ], "count": [ 40, { "columns": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -135607,31 +136427,31 @@ export default { } ], "max": [ - 5876 + 5932 ], "min": [ - 5878 + 5934 ], "stddev": [ - 5890 + 5946 ], "stddev_pop": [ - 5892 + 5948 ], "stddev_samp": [ - 5894 + 5950 ], "sum": [ - 5898 + 5954 ], "var_pop": [ - 5900 + 5956 ], "var_samp": [ - 5902 + 5958 ], "variance": [ - 5904 + 5960 ], "__typename": [ 80 @@ -135639,37 +136459,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5873 + 5929 ], "count": [ - 3006 + 3035 ], "max": [ - 5877 + 5933 ], "min": [ - 5879 + 5935 ], "stddev": [ - 5891 + 5947 ], "stddev_pop": [ - 5893 + 5949 ], "stddev_samp": [ - 5895 + 5951 ], "sum": [ - 5899 + 5955 ], "var_pop": [ - 5901 + 5957 ], "var_samp": [ - 5903 + 5959 ], "variance": [ - 5905 + 5961 ], "__typename": [ 80 @@ -135677,7 +136497,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5875 + 5931 ], "__typename": [ 80 @@ -135729,43 +136549,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -135773,13 +136593,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5874 + 5930 ], "_not": [ - 5874 + 5930 ], "_or": [ - 5874 + 5930 ], "head_to_head_match_wins": [ 41 @@ -135809,10 +136629,10 @@ export default { 41 ], "team": [ - 4956 + 5012 ], "team_kdr": [ - 1690 + 1692 ], "total_deaths": [ 41 @@ -135821,13 +136641,13 @@ export default { 41 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "tournament_team_id": [ - 5055 + 5111 ], "wins": [ 41 @@ -135865,10 +136685,10 @@ export default { 40 ], "team": [ - 4965 + 5021 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -135877,13 +136697,13 @@ export default { 40 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -135921,7 +136741,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -135930,10 +136750,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -135944,49 +136764,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136021,7 +136841,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -136030,10 +136850,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -136044,49 +136864,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136094,55 +136914,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team": [ - 4967 + 5023 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "tournament_team_id": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136203,43 +137023,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136291,43 +137111,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136379,43 +137199,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136423,10 +137243,10 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5897 + 5953 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -136461,7 +137281,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -136470,10 +137290,10 @@ export default { 40 ], "tournament_id": [ - 5053 + 5109 ], "tournament_team_id": [ - 5053 + 5109 ], "wins": [ 40 @@ -136511,7 +137331,7 @@ export default { 40 ], "team_kdr": [ - 1689 + 1691 ], "total_deaths": [ 40 @@ -136528,43 +137348,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136616,43 +137436,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136704,43 +137524,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136792,43 +137612,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3006 + 3035 ], "head_to_head_rounds_won": [ - 3006 + 3035 ], "losses": [ - 3006 + 3035 ], "maps_lost": [ - 3006 + 3035 ], "maps_won": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "matches_remaining": [ - 3006 + 3035 ], "rounds_lost": [ - 3006 + 3035 ], "rounds_won": [ - 3006 + 3035 ], "team_kdr": [ - 3006 + 3035 ], "total_deaths": [ - 3006 + 3035 ], "total_kills": [ - 3006 + 3035 ], "wins": [ - 3006 + 3035 ], "__typename": [ 80 @@ -136842,13 +137662,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -136857,16 +137677,16 @@ export default { 40 ], "player": [ - 3964 + 3993 ], "player_steam_id": [ - 257 + 259 ], "tournament": [ - 4989 + 5045 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -136874,10 +137694,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5920 + 5976 ], "nodes": [ - 5906 + 5962 ], "__typename": [ 80 @@ -136885,31 +137705,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5909 + 5965 ], "corr": [ - 5910 + 5966 ], "count": [ - 5912 + 5968 ], "covar_samp": [ - 5913 + 5969 ], "max": [ - 5915 + 5971 ], "min": [ - 5916 + 5972 ], "stddev_samp": [ - 5917 + 5973 ], "sum": [ - 5918 + 5974 ], "var_samp": [ - 5919 + 5975 ], "__typename": [ 80 @@ -136917,16 +137737,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5933 + 5989 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -136934,16 +137754,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5911 + 5967 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -136951,10 +137771,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5934 + 5990 ], "Y": [ - 5934 + 5990 ], "__typename": [ 80 @@ -136962,13 +137782,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5932 + 5988 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ 41 @@ -136979,16 +137799,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5914 + 5970 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -136996,10 +137816,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5935 + 5991 ], "Y": [ - 5935 + 5991 ], "__typename": [ 80 @@ -137007,16 +137827,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5936 + 5992 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -137024,16 +137844,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5937 + 5993 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -137041,16 +137861,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5938 + 5994 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -137058,16 +137878,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5939 + 5995 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -137075,16 +137895,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5940 + 5996 ], "distinct": [ 5 ], "filter": [ - 5925 + 5981 ], "predicate": [ - 1690 + 1692 ], "__typename": [ 80 @@ -137092,13 +137912,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5923 + 5979 ], "count": [ 40, { "columns": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -137107,31 +137927,31 @@ export default { } ], "max": [ - 5927 + 5983 ], "min": [ - 5929 + 5985 ], "stddev": [ - 5941 + 5997 ], "stddev_pop": [ - 5943 + 5999 ], "stddev_samp": [ - 5945 + 6001 ], "sum": [ - 5949 + 6005 ], "var_pop": [ - 5951 + 6007 ], "var_samp": [ - 5953 + 6009 ], "variance": [ - 5955 + 6011 ], "__typename": [ 80 @@ -137139,37 +137959,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5924 + 5980 ], "count": [ - 3006 + 3035 ], "max": [ - 5928 + 5984 ], "min": [ - 5930 + 5986 ], "stddev": [ - 5942 + 5998 ], "stddev_pop": [ - 5944 + 6000 ], "stddev_samp": [ - 5946 + 6002 ], "sum": [ - 5950 + 6006 ], "var_pop": [ - 5952 + 6008 ], "var_samp": [ - 5954 + 6010 ], "variance": [ - 5956 + 6012 ], "__typename": [ 80 @@ -137177,7 +137997,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5926 + 5982 ], "__typename": [ 80 @@ -137214,28 +138034,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137243,13 +138063,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5925 + 5981 ], "_not": [ - 5925 + 5981 ], "_or": [ - 5925 + 5981 ], "assists": [ 41 @@ -137258,13 +138078,13 @@ export default { 41 ], "headshot_percentage": [ - 1690 + 1692 ], "headshots": [ 41 ], "kdr": [ - 1690 + 1692 ], "kills": [ 41 @@ -137273,16 +138093,16 @@ export default { 41 ], "player": [ - 3968 + 3997 ], "player_steam_id": [ - 259 + 261 ], "tournament": [ - 5010 + 5066 ], "tournament_id": [ - 5055 + 5111 ], "__typename": [ 80 @@ -137296,13 +138116,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -137311,16 +138131,16 @@ export default { 40 ], "player": [ - 3975 + 4004 ], "player_steam_id": [ - 257 + 259 ], "tournament": [ - 5019 + 5075 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -137334,13 +138154,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -137349,10 +138169,10 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -137360,31 +138180,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137398,13 +138218,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -137413,10 +138233,10 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -137424,31 +138244,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137456,37 +138276,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player": [ - 3977 + 4006 ], "player_steam_id": [ - 3006 + 3035 ], "tournament": [ - 5021 + 5077 ], "tournament_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137532,28 +138352,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137590,28 +138410,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137648,28 +138468,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137677,10 +138497,10 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5948 + 6004 ], "ordering": [ - 313 + 315 ], "__typename": [ 80 @@ -137694,13 +138514,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -137709,10 +138529,10 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "tournament_id": [ - 5053 + 5109 ], "__typename": [ 80 @@ -137726,13 +138546,13 @@ export default { 40 ], "headshot_percentage": [ - 1689 + 1691 ], "headshots": [ 40 ], "kdr": [ - 1689 + 1691 ], "kills": [ 40 @@ -137741,7 +138561,7 @@ export default { 40 ], "player_steam_id": [ - 257 + 259 ], "__typename": [ 80 @@ -137749,28 +138569,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137807,28 +138627,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137865,28 +138685,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137923,28 +138743,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3006 + 3035 ], "deaths": [ - 3006 + 3035 ], "headshot_percentage": [ - 3006 + 3035 ], "headshots": [ - 3006 + 3035 ], "kdr": [ - 3006 + 3035 ], "kills": [ - 3006 + 3035 ], "matches_played": [ - 3006 + 3035 ], "player_steam_id": [ - 3006 + 3035 ], "__typename": [ 80 @@ -137952,10 +138772,10 @@ export default { }, "Query": { "_map_pool": [ - 100, + 102, { "distinct_on": [ - 112, + 114, "[_map_pool_select_column!]" ], "limit": [ @@ -137965,19 +138785,19 @@ export default { 40 ], "order_by": [ - 110, + 112, "[_map_pool_order_by!]" ], "where": [ - 103 + 105 ] } ], "_map_pool_aggregate": [ - 101, + 103, { "distinct_on": [ - 112, + 114, "[_map_pool_select_column!]" ], "limit": [ @@ -137987,32 +138807,32 @@ export default { 40 ], "order_by": [ - 110, + 112, "[_map_pool_order_by!]" ], "where": [ - 103 + 105 ] } ], "_map_pool_by_pk": [ - 100, + 102, { "map_id": [ - 5053, + 5109, "uuid!" ], "map_pool_id": [ - 5053, + 5109, "uuid!" ] } ], "abandoned_matches": [ - 119, + 121, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -138022,19 +138842,19 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "abandoned_matches_aggregate": [ - 120, + 122, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -138044,28 +138864,28 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "abandoned_matches_by_pk": [ - 119, + 121, { "id": [ - 5053, + 5109, "uuid!" ] } ], "api_keys": [ - 160, + 162, { "distinct_on": [ - 174, + 176, "[api_keys_select_column!]" ], "limit": [ @@ -138075,19 +138895,19 @@ export default { 40 ], "order_by": [ - 172, + 174, "[api_keys_order_by!]" ], "where": [ - 164 + 166 ] } ], "api_keys_aggregate": [ - 161, + 163, { "distinct_on": [ - 174, + 176, "[api_keys_select_column!]" ], "limit": [ @@ -138097,28 +138917,28 @@ export default { 40 ], "order_by": [ - 172, + 174, "[api_keys_order_by!]" ], "where": [ - 164 + 166 ] } ], "api_keys_by_pk": [ - 160, + 162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "award_recipients": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -138128,19 +138948,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "award_recipients_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -138150,28 +138970,28 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "award_recipients_by_pk": [ - 188, + 190, { "id": [ - 5053, + 5109, "uuid!" ] } ], "awards": [ - 229, + 231, { "distinct_on": [ - 244, + 246, "[awards_select_column!]" ], "limit": [ @@ -138181,19 +139001,19 @@ export default { 40 ], "order_by": [ - 242, + 244, "[awards_order_by!]" ], "where": [ - 233 + 235 ] } ], "awards_aggregate": [ - 230, + 232, { "distinct_on": [ - 244, + 246, "[awards_select_column!]" ], "limit": [ @@ -138203,28 +139023,28 @@ export default { 40 ], "order_by": [ - 242, + 244, "[awards_order_by!]" ], "where": [ - 233 + 235 ] } ], "awards_by_pk": [ - 229, + 231, { "id": [ - 5053, + 5109, "uuid!" ] } ], "clip_render_jobs": [ - 262, + 264, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -138234,19 +139054,19 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "clip_render_jobs_aggregate": [ - 263, + 265, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -138256,28 +139076,28 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "clip_render_jobs_by_pk": [ - 262, + 264, { "id": [ - 5053, + 5109, "uuid!" ] } ], "custom_pages": [ - 314, + 316, { "distinct_on": [ - 333, + 335, "[custom_pages_select_column!]" ], "limit": [ @@ -138287,19 +139107,19 @@ export default { 40 ], "order_by": [ - 330, + 332, "[custom_pages_order_by!]" ], "where": [ - 319 + 321 ] } ], "custom_pages_aggregate": [ - 315, + 317, { "distinct_on": [ - 333, + 335, "[custom_pages_select_column!]" ], "limit": [ @@ -138309,19 +139129,19 @@ export default { 40 ], "order_by": [ - 330, + 332, "[custom_pages_order_by!]" ], "where": [ - 319 + 321 ] } ], "custom_pages_by_pk": [ - 314, + 316, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -138330,10 +139150,10 @@ export default { 19 ], "db_backups": [ - 346, + 348, { "distinct_on": [ - 360, + 362, "[db_backups_select_column!]" ], "limit": [ @@ -138343,19 +139163,19 @@ export default { 40 ], "order_by": [ - 358, + 360, "[db_backups_order_by!]" ], "where": [ - 350 + 352 ] } ], "db_backups_aggregate": [ - 347, + 349, { "distinct_on": [ - 360, + 362, "[db_backups_select_column!]" ], "limit": [ @@ -138365,28 +139185,28 @@ export default { 40 ], "order_by": [ - 358, + 360, "[db_backups_order_by!]" ], "where": [ - 350 + 352 ] } ], "db_backups_by_pk": [ - 346, + 348, { "id": [ - 5053, + 5109, "uuid!" ] } ], "draft_game_picks": [ - 373, + 375, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -138396,19 +139216,19 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "draft_game_picks_aggregate": [ - 374, + 376, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -138418,28 +139238,28 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "draft_game_picks_by_pk": [ - 373, + 375, { "id": [ - 5053, + 5109, "uuid!" ] } ], "draft_game_players": [ - 418, + 420, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -138449,19 +139269,19 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "draft_game_players_aggregate": [ - 419, + 421, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -138471,32 +139291,32 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "draft_game_players_by_pk": [ - 418, + 420, { "draft_game_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "draft_games": [ - 463, + 465, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -138506,19 +139326,19 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "draft_games_aggregate": [ - 464, + 466, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -138528,28 +139348,28 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "draft_games_by_pk": [ - 463, + 465, { "id": [ - 5053, + 5109, "uuid!" ] } ], "e_award_sources": [ - 509, + 511, { "distinct_on": [ - 523, + 525, "[e_award_sources_select_column!]" ], "limit": [ @@ -138559,19 +139379,19 @@ export default { 40 ], "order_by": [ - 521, + 523, "[e_award_sources_order_by!]" ], "where": [ - 512 + 514 ] } ], "e_award_sources_aggregate": [ - 510, + 512, { "distinct_on": [ - 523, + 525, "[e_award_sources_select_column!]" ], "limit": [ @@ -138581,16 +139401,16 @@ export default { 40 ], "order_by": [ - 521, + 523, "[e_award_sources_order_by!]" ], "where": [ - 512 + 514 ] } ], "e_award_sources_by_pk": [ - 509, + 511, { "value": [ 80, @@ -138599,10 +139419,10 @@ export default { } ], "e_award_tiers": [ - 529, + 531, { "distinct_on": [ - 543, + 545, "[e_award_tiers_select_column!]" ], "limit": [ @@ -138612,19 +139432,19 @@ export default { 40 ], "order_by": [ - 541, + 543, "[e_award_tiers_order_by!]" ], "where": [ - 532 + 534 ] } ], "e_award_tiers_aggregate": [ - 530, + 532, { "distinct_on": [ - 543, + 545, "[e_award_tiers_select_column!]" ], "limit": [ @@ -138634,16 +139454,16 @@ export default { 40 ], "order_by": [ - 541, + 543, "[e_award_tiers_order_by!]" ], "where": [ - 532 + 534 ] } ], "e_award_tiers_by_pk": [ - 529, + 531, { "value": [ 80, @@ -138652,10 +139472,10 @@ export default { } ], "e_check_in_settings": [ - 549, + 551, { "distinct_on": [ - 563, + 565, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -138665,19 +139485,19 @@ export default { 40 ], "order_by": [ - 561, + 563, "[e_check_in_settings_order_by!]" ], "where": [ - 552 + 554 ] } ], "e_check_in_settings_aggregate": [ - 550, + 552, { "distinct_on": [ - 563, + 565, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -138687,16 +139507,16 @@ export default { 40 ], "order_by": [ - 561, + 563, "[e_check_in_settings_order_by!]" ], "where": [ - 552 + 554 ] } ], "e_check_in_settings_by_pk": [ - 549, + 551, { "value": [ 80, @@ -138705,10 +139525,10 @@ export default { } ], "e_draft_game_captain_selection": [ - 569, + 571, { "distinct_on": [ - 584, + 586, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -138718,19 +139538,19 @@ export default { 40 ], "order_by": [ - 582, + 584, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 572 + 574 ] } ], "e_draft_game_captain_selection_aggregate": [ - 570, + 572, { "distinct_on": [ - 584, + 586, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -138740,16 +139560,16 @@ export default { 40 ], "order_by": [ - 582, + 584, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 572 + 574 ] } ], "e_draft_game_captain_selection_by_pk": [ - 569, + 571, { "value": [ 80, @@ -138758,10 +139578,10 @@ export default { } ], "e_draft_game_draft_order": [ - 590, + 592, { "distinct_on": [ - 605, + 607, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -138771,19 +139591,19 @@ export default { 40 ], "order_by": [ - 603, + 605, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 593 + 595 ] } ], "e_draft_game_draft_order_aggregate": [ - 591, + 593, { "distinct_on": [ - 605, + 607, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -138793,16 +139613,16 @@ export default { 40 ], "order_by": [ - 603, + 605, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 593 + 595 ] } ], "e_draft_game_draft_order_by_pk": [ - 590, + 592, { "value": [ 80, @@ -138811,10 +139631,10 @@ export default { } ], "e_draft_game_mode": [ - 611, + 613, { "distinct_on": [ - 626, + 628, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -138824,19 +139644,19 @@ export default { 40 ], "order_by": [ - 624, + 626, "[e_draft_game_mode_order_by!]" ], "where": [ - 614 + 616 ] } ], "e_draft_game_mode_aggregate": [ - 612, + 614, { "distinct_on": [ - 626, + 628, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -138846,16 +139666,16 @@ export default { 40 ], "order_by": [ - 624, + 626, "[e_draft_game_mode_order_by!]" ], "where": [ - 614 + 616 ] } ], "e_draft_game_mode_by_pk": [ - 611, + 613, { "value": [ 80, @@ -138864,10 +139684,10 @@ export default { } ], "e_draft_game_player_status": [ - 632, + 634, { "distinct_on": [ - 647, + 649, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -138877,19 +139697,19 @@ export default { 40 ], "order_by": [ - 645, + 647, "[e_draft_game_player_status_order_by!]" ], "where": [ - 635 + 637 ] } ], "e_draft_game_player_status_aggregate": [ - 633, + 635, { "distinct_on": [ - 647, + 649, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -138899,16 +139719,16 @@ export default { 40 ], "order_by": [ - 645, + 647, "[e_draft_game_player_status_order_by!]" ], "where": [ - 635 + 637 ] } ], "e_draft_game_player_status_by_pk": [ - 632, + 634, { "value": [ 80, @@ -138917,10 +139737,10 @@ export default { } ], "e_draft_game_status": [ - 653, + 655, { "distinct_on": [ - 668, + 670, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -138930,19 +139750,19 @@ export default { 40 ], "order_by": [ - 666, + 668, "[e_draft_game_status_order_by!]" ], "where": [ - 656 + 658 ] } ], "e_draft_game_status_aggregate": [ - 654, + 656, { "distinct_on": [ - 668, + 670, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -138952,16 +139772,16 @@ export default { 40 ], "order_by": [ - 666, + 668, "[e_draft_game_status_order_by!]" ], "where": [ - 656 + 658 ] } ], "e_draft_game_status_by_pk": [ - 653, + 655, { "value": [ 80, @@ -138970,10 +139790,10 @@ export default { } ], "e_event_media_access": [ - 674, + 676, { "distinct_on": [ - 688, + 690, "[e_event_media_access_select_column!]" ], "limit": [ @@ -138983,19 +139803,19 @@ export default { 40 ], "order_by": [ - 686, + 688, "[e_event_media_access_order_by!]" ], "where": [ - 677 + 679 ] } ], "e_event_media_access_aggregate": [ - 675, + 677, { "distinct_on": [ - 688, + 690, "[e_event_media_access_select_column!]" ], "limit": [ @@ -139005,16 +139825,16 @@ export default { 40 ], "order_by": [ - 686, + 688, "[e_event_media_access_order_by!]" ], "where": [ - 677 + 679 ] } ], "e_event_media_access_by_pk": [ - 674, + 676, { "value": [ 80, @@ -139023,10 +139843,10 @@ export default { } ], "e_event_visibility": [ - 694, + 696, { "distinct_on": [ - 708, + 710, "[e_event_visibility_select_column!]" ], "limit": [ @@ -139036,19 +139856,19 @@ export default { 40 ], "order_by": [ - 706, + 708, "[e_event_visibility_order_by!]" ], "where": [ - 697 + 699 ] } ], "e_event_visibility_aggregate": [ - 695, + 697, { "distinct_on": [ - 708, + 710, "[e_event_visibility_select_column!]" ], "limit": [ @@ -139058,16 +139878,16 @@ export default { 40 ], "order_by": [ - 706, + 708, "[e_event_visibility_order_by!]" ], "where": [ - 697 + 699 ] } ], "e_event_visibility_by_pk": [ - 694, + 696, { "value": [ 80, @@ -139076,10 +139896,10 @@ export default { } ], "e_friend_status": [ - 714, + 716, { "distinct_on": [ - 729, + 731, "[e_friend_status_select_column!]" ], "limit": [ @@ -139089,19 +139909,19 @@ export default { 40 ], "order_by": [ - 727, + 729, "[e_friend_status_order_by!]" ], "where": [ - 717 + 719 ] } ], "e_friend_status_aggregate": [ - 715, + 717, { "distinct_on": [ - 729, + 731, "[e_friend_status_select_column!]" ], "limit": [ @@ -139111,16 +139931,16 @@ export default { 40 ], "order_by": [ - 727, + 729, "[e_friend_status_order_by!]" ], "where": [ - 717 + 719 ] } ], "e_friend_status_by_pk": [ - 714, + 716, { "value": [ 80, @@ -139129,10 +139949,10 @@ export default { } ], "e_game_cfg_types": [ - 735, + 737, { "distinct_on": [ - 749, + 751, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -139142,19 +139962,19 @@ export default { 40 ], "order_by": [ - 747, + 749, "[e_game_cfg_types_order_by!]" ], "where": [ - 738 + 740 ] } ], "e_game_cfg_types_aggregate": [ - 736, + 738, { "distinct_on": [ - 749, + 751, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -139164,16 +139984,16 @@ export default { 40 ], "order_by": [ - 747, + 749, "[e_game_cfg_types_order_by!]" ], "where": [ - 738 + 740 ] } ], "e_game_cfg_types_by_pk": [ - 735, + 737, { "value": [ 80, @@ -139182,10 +140002,10 @@ export default { } ], "e_game_server_node_statuses": [ - 755, + 757, { "distinct_on": [ - 770, + 772, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -139195,19 +140015,19 @@ export default { 40 ], "order_by": [ - 768, + 770, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 758 + 760 ] } ], "e_game_server_node_statuses_aggregate": [ - 756, + 758, { "distinct_on": [ - 770, + 772, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -139217,16 +140037,16 @@ export default { 40 ], "order_by": [ - 768, + 770, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 758 + 760 ] } ], "e_game_server_node_statuses_by_pk": [ - 755, + 757, { "value": [ 80, @@ -139235,10 +140055,10 @@ export default { } ], "e_league_movement_types": [ - 776, + 778, { "distinct_on": [ - 791, + 793, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -139248,19 +140068,19 @@ export default { 40 ], "order_by": [ - 789, + 791, "[e_league_movement_types_order_by!]" ], "where": [ - 779 + 781 ] } ], "e_league_movement_types_aggregate": [ - 777, + 779, { "distinct_on": [ - 791, + 793, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -139270,16 +140090,16 @@ export default { 40 ], "order_by": [ - 789, + 791, "[e_league_movement_types_order_by!]" ], "where": [ - 779 + 781 ] } ], "e_league_movement_types_by_pk": [ - 776, + 778, { "value": [ 80, @@ -139288,10 +140108,10 @@ export default { } ], "e_league_proposal_statuses": [ - 797, + 799, { "distinct_on": [ - 812, + 814, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -139301,19 +140121,19 @@ export default { 40 ], "order_by": [ - 810, + 812, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 800 + 802 ] } ], "e_league_proposal_statuses_aggregate": [ - 798, + 800, { "distinct_on": [ - 812, + 814, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -139323,16 +140143,16 @@ export default { 40 ], "order_by": [ - 810, + 812, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 800 + 802 ] } ], "e_league_proposal_statuses_by_pk": [ - 797, + 799, { "value": [ 80, @@ -139341,10 +140161,10 @@ export default { } ], "e_league_registration_statuses": [ - 818, + 820, { "distinct_on": [ - 833, + 835, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -139354,19 +140174,19 @@ export default { 40 ], "order_by": [ - 831, + 833, "[e_league_registration_statuses_order_by!]" ], "where": [ - 821 + 823 ] } ], "e_league_registration_statuses_aggregate": [ - 819, + 821, { "distinct_on": [ - 833, + 835, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -139376,16 +140196,16 @@ export default { 40 ], "order_by": [ - 831, + 833, "[e_league_registration_statuses_order_by!]" ], "where": [ - 821 + 823 ] } ], "e_league_registration_statuses_by_pk": [ - 818, + 820, { "value": [ 80, @@ -139394,10 +140214,10 @@ export default { } ], "e_league_season_statuses": [ - 839, + 841, { "distinct_on": [ - 854, + 856, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -139407,19 +140227,19 @@ export default { 40 ], "order_by": [ - 852, + 854, "[e_league_season_statuses_order_by!]" ], "where": [ - 842 + 844 ] } ], "e_league_season_statuses_aggregate": [ - 840, + 842, { "distinct_on": [ - 854, + 856, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -139429,16 +140249,16 @@ export default { 40 ], "order_by": [ - 852, + 854, "[e_league_season_statuses_order_by!]" ], "where": [ - 842 + 844 ] } ], "e_league_season_statuses_by_pk": [ - 839, + 841, { "value": [ 80, @@ -139447,10 +140267,10 @@ export default { } ], "e_lobby_access": [ - 860, + 862, { "distinct_on": [ - 875, + 877, "[e_lobby_access_select_column!]" ], "limit": [ @@ -139460,19 +140280,19 @@ export default { 40 ], "order_by": [ - 873, + 875, "[e_lobby_access_order_by!]" ], "where": [ - 863 + 865 ] } ], "e_lobby_access_aggregate": [ - 861, + 863, { "distinct_on": [ - 875, + 877, "[e_lobby_access_select_column!]" ], "limit": [ @@ -139482,16 +140302,16 @@ export default { 40 ], "order_by": [ - 873, + 875, "[e_lobby_access_order_by!]" ], "where": [ - 863 + 865 ] } ], "e_lobby_access_by_pk": [ - 860, + 862, { "value": [ 80, @@ -139500,10 +140320,10 @@ export default { } ], "e_lobby_player_status": [ - 881, + 883, { "distinct_on": [ - 895, + 897, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -139513,19 +140333,19 @@ export default { 40 ], "order_by": [ - 893, + 895, "[e_lobby_player_status_order_by!]" ], "where": [ - 884 + 886 ] } ], "e_lobby_player_status_aggregate": [ - 882, + 884, { "distinct_on": [ - 895, + 897, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -139535,16 +140355,16 @@ export default { 40 ], "order_by": [ - 893, + 895, "[e_lobby_player_status_order_by!]" ], "where": [ - 884 + 886 ] } ], "e_lobby_player_status_by_pk": [ - 881, + 883, { "value": [ 80, @@ -139553,10 +140373,10 @@ export default { } ], "e_map_pool_types": [ - 901, + 903, { "distinct_on": [ - 916, + 918, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -139566,19 +140386,19 @@ export default { 40 ], "order_by": [ - 914, + 916, "[e_map_pool_types_order_by!]" ], "where": [ - 904 + 906 ] } ], "e_map_pool_types_aggregate": [ - 902, + 904, { "distinct_on": [ - 916, + 918, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -139588,16 +140408,16 @@ export default { 40 ], "order_by": [ - 914, + 916, "[e_map_pool_types_order_by!]" ], "where": [ - 904 + 906 ] } ], "e_map_pool_types_by_pk": [ - 901, + 903, { "value": [ 80, @@ -139606,10 +140426,10 @@ export default { } ], "e_match_clip_visibility": [ - 922, + 924, { "distinct_on": [ - 936, + 938, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -139619,19 +140439,19 @@ export default { 40 ], "order_by": [ - 934, + 936, "[e_match_clip_visibility_order_by!]" ], "where": [ - 925 + 927 ] } ], "e_match_clip_visibility_aggregate": [ - 923, + 925, { "distinct_on": [ - 936, + 938, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -139641,16 +140461,16 @@ export default { 40 ], "order_by": [ - 934, + 936, "[e_match_clip_visibility_order_by!]" ], "where": [ - 925 + 927 ] } ], "e_match_clip_visibility_by_pk": [ - 922, + 924, { "value": [ 80, @@ -139659,10 +140479,10 @@ export default { } ], "e_match_map_status": [ - 942, + 944, { "distinct_on": [ - 957, + 959, "[e_match_map_status_select_column!]" ], "limit": [ @@ -139672,19 +140492,19 @@ export default { 40 ], "order_by": [ - 955, + 957, "[e_match_map_status_order_by!]" ], "where": [ - 945 + 947 ] } ], "e_match_map_status_aggregate": [ - 943, + 945, { "distinct_on": [ - 957, + 959, "[e_match_map_status_select_column!]" ], "limit": [ @@ -139694,16 +140514,16 @@ export default { 40 ], "order_by": [ - 955, + 957, "[e_match_map_status_order_by!]" ], "where": [ - 945 + 947 ] } ], "e_match_map_status_by_pk": [ - 942, + 944, { "value": [ 80, @@ -139712,10 +140532,10 @@ export default { } ], "e_match_mode": [ - 963, + 965, { "distinct_on": [ - 977, + 979, "[e_match_mode_select_column!]" ], "limit": [ @@ -139725,19 +140545,19 @@ export default { 40 ], "order_by": [ - 975, + 977, "[e_match_mode_order_by!]" ], "where": [ - 966 + 968 ] } ], "e_match_mode_aggregate": [ - 964, + 966, { "distinct_on": [ - 977, + 979, "[e_match_mode_select_column!]" ], "limit": [ @@ -139747,16 +140567,16 @@ export default { 40 ], "order_by": [ - 975, + 977, "[e_match_mode_order_by!]" ], "where": [ - 966 + 968 ] } ], "e_match_mode_by_pk": [ - 963, + 965, { "value": [ 80, @@ -139765,10 +140585,10 @@ export default { } ], "e_match_party_sources": [ - 983, + 985, { "distinct_on": [ - 997, + 999, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -139778,19 +140598,19 @@ export default { 40 ], "order_by": [ - 995, + 997, "[e_match_party_sources_order_by!]" ], "where": [ - 986 + 988 ] } ], "e_match_party_sources_aggregate": [ - 984, + 986, { "distinct_on": [ - 997, + 999, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -139800,16 +140620,16 @@ export default { 40 ], "order_by": [ - 995, + 997, "[e_match_party_sources_order_by!]" ], "where": [ - 986 + 988 ] } ], "e_match_party_sources_by_pk": [ - 983, + 985, { "value": [ 80, @@ -139818,10 +140638,10 @@ export default { } ], "e_match_status": [ - 1003, + 1005, { "distinct_on": [ - 1018, + 1020, "[e_match_status_select_column!]" ], "limit": [ @@ -139831,19 +140651,19 @@ export default { 40 ], "order_by": [ - 1016, + 1018, "[e_match_status_order_by!]" ], "where": [ - 1006 + 1008 ] } ], "e_match_status_aggregate": [ - 1004, + 1006, { "distinct_on": [ - 1018, + 1020, "[e_match_status_select_column!]" ], "limit": [ @@ -139853,16 +140673,16 @@ export default { 40 ], "order_by": [ - 1016, + 1018, "[e_match_status_order_by!]" ], "where": [ - 1006 + 1008 ] } ], "e_match_status_by_pk": [ - 1003, + 1005, { "value": [ 80, @@ -139871,10 +140691,10 @@ export default { } ], "e_match_types": [ - 1024, + 1026, { "distinct_on": [ - 1039, + 1041, "[e_match_types_select_column!]" ], "limit": [ @@ -139884,19 +140704,19 @@ export default { 40 ], "order_by": [ - 1037, + 1039, "[e_match_types_order_by!]" ], "where": [ - 1027 + 1029 ] } ], "e_match_types_aggregate": [ - 1025, + 1027, { "distinct_on": [ - 1039, + 1041, "[e_match_types_select_column!]" ], "limit": [ @@ -139906,16 +140726,16 @@ export default { 40 ], "order_by": [ - 1037, + 1039, "[e_match_types_order_by!]" ], "where": [ - 1027 + 1029 ] } ], "e_match_types_by_pk": [ - 1024, + 1026, { "value": [ 80, @@ -139924,10 +140744,10 @@ export default { } ], "e_notification_types": [ - 1045, + 1047, { "distinct_on": [ - 1059, + 1061, "[e_notification_types_select_column!]" ], "limit": [ @@ -139937,19 +140757,19 @@ export default { 40 ], "order_by": [ - 1057, + 1059, "[e_notification_types_order_by!]" ], "where": [ - 1048 + 1050 ] } ], "e_notification_types_aggregate": [ - 1046, + 1048, { "distinct_on": [ - 1059, + 1061, "[e_notification_types_select_column!]" ], "limit": [ @@ -139959,16 +140779,16 @@ export default { 40 ], "order_by": [ - 1057, + 1059, "[e_notification_types_order_by!]" ], "where": [ - 1048 + 1050 ] } ], "e_notification_types_by_pk": [ - 1045, + 1047, { "value": [ 80, @@ -139977,10 +140797,10 @@ export default { } ], "e_objective_types": [ - 1065, + 1067, { "distinct_on": [ - 1079, + 1081, "[e_objective_types_select_column!]" ], "limit": [ @@ -139990,19 +140810,19 @@ export default { 40 ], "order_by": [ - 1077, + 1079, "[e_objective_types_order_by!]" ], "where": [ - 1068 + 1070 ] } ], "e_objective_types_aggregate": [ - 1066, + 1068, { "distinct_on": [ - 1079, + 1081, "[e_objective_types_select_column!]" ], "limit": [ @@ -140012,16 +140832,16 @@ export default { 40 ], "order_by": [ - 1077, + 1079, "[e_objective_types_order_by!]" ], "where": [ - 1068 + 1070 ] } ], "e_objective_types_by_pk": [ - 1065, + 1067, { "value": [ 80, @@ -140030,10 +140850,10 @@ export default { } ], "e_player_roles": [ - 1085, + 1087, { "distinct_on": [ - 1099, + 1101, "[e_player_roles_select_column!]" ], "limit": [ @@ -140043,19 +140863,19 @@ export default { 40 ], "order_by": [ - 1097, + 1099, "[e_player_roles_order_by!]" ], "where": [ - 1088 + 1090 ] } ], "e_player_roles_aggregate": [ - 1086, + 1088, { "distinct_on": [ - 1099, + 1101, "[e_player_roles_select_column!]" ], "limit": [ @@ -140065,16 +140885,16 @@ export default { 40 ], "order_by": [ - 1097, + 1099, "[e_player_roles_order_by!]" ], "where": [ - 1088 + 1090 ] } ], "e_player_roles_by_pk": [ - 1085, + 1087, { "value": [ 80, @@ -140083,10 +140903,10 @@ export default { } ], "e_plugin_runtimes": [ - 1105, + 1107, { "distinct_on": [ - 1119, + 1121, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -140096,19 +140916,19 @@ export default { 40 ], "order_by": [ - 1117, + 1119, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1108 + 1110 ] } ], "e_plugin_runtimes_aggregate": [ - 1106, + 1108, { "distinct_on": [ - 1119, + 1121, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -140118,16 +140938,16 @@ export default { 40 ], "order_by": [ - 1117, + 1119, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1108 + 1110 ] } ], "e_plugin_runtimes_by_pk": [ - 1105, + 1107, { "value": [ 80, @@ -140136,10 +140956,10 @@ export default { } ], "e_ready_settings": [ - 1125, + 1127, { "distinct_on": [ - 1139, + 1141, "[e_ready_settings_select_column!]" ], "limit": [ @@ -140149,19 +140969,19 @@ export default { 40 ], "order_by": [ - 1137, + 1139, "[e_ready_settings_order_by!]" ], "where": [ - 1128 + 1130 ] } ], "e_ready_settings_aggregate": [ - 1126, + 1128, { "distinct_on": [ - 1139, + 1141, "[e_ready_settings_select_column!]" ], "limit": [ @@ -140171,16 +140991,16 @@ export default { 40 ], "order_by": [ - 1137, + 1139, "[e_ready_settings_order_by!]" ], "where": [ - 1128 + 1130 ] } ], "e_ready_settings_by_pk": [ - 1125, + 1127, { "value": [ 80, @@ -140189,10 +141009,10 @@ export default { } ], "e_sanction_types": [ - 1145, + 1147, { "distinct_on": [ - 1160, + 1162, "[e_sanction_types_select_column!]" ], "limit": [ @@ -140202,19 +141022,19 @@ export default { 40 ], "order_by": [ - 1158, + 1160, "[e_sanction_types_order_by!]" ], "where": [ - 1148 + 1150 ] } ], "e_sanction_types_aggregate": [ - 1146, + 1148, { "distinct_on": [ - 1160, + 1162, "[e_sanction_types_select_column!]" ], "limit": [ @@ -140224,16 +141044,16 @@ export default { 40 ], "order_by": [ - 1158, + 1160, "[e_sanction_types_order_by!]" ], "where": [ - 1148 + 1150 ] } ], "e_sanction_types_by_pk": [ - 1145, + 1147, { "value": [ 80, @@ -140242,10 +141062,10 @@ export default { } ], "e_scrim_request_statuses": [ - 1166, + 1168, { "distinct_on": [ - 1180, + 1182, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -140255,19 +141075,19 @@ export default { 40 ], "order_by": [ - 1178, + 1180, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1169 + 1171 ] } ], "e_scrim_request_statuses_aggregate": [ - 1167, + 1169, { "distinct_on": [ - 1180, + 1182, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -140277,16 +141097,16 @@ export default { 40 ], "order_by": [ - 1178, + 1180, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1169 + 1171 ] } ], "e_scrim_request_statuses_by_pk": [ - 1166, + 1168, { "value": [ 80, @@ -140295,10 +141115,10 @@ export default { } ], "e_server_types": [ - 1186, + 1188, { "distinct_on": [ - 1200, + 1202, "[e_server_types_select_column!]" ], "limit": [ @@ -140308,19 +141128,19 @@ export default { 40 ], "order_by": [ - 1198, + 1200, "[e_server_types_order_by!]" ], "where": [ - 1189 + 1191 ] } ], "e_server_types_aggregate": [ - 1187, + 1189, { "distinct_on": [ - 1200, + 1202, "[e_server_types_select_column!]" ], "limit": [ @@ -140330,16 +141150,16 @@ export default { 40 ], "order_by": [ - 1198, + 1200, "[e_server_types_order_by!]" ], "where": [ - 1189 + 1191 ] } ], "e_server_types_by_pk": [ - 1186, + 1188, { "value": [ 80, @@ -140348,10 +141168,10 @@ export default { } ], "e_sides": [ - 1206, + 1208, { "distinct_on": [ - 1220, + 1222, "[e_sides_select_column!]" ], "limit": [ @@ -140361,19 +141181,19 @@ export default { 40 ], "order_by": [ - 1218, + 1220, "[e_sides_order_by!]" ], "where": [ - 1209 + 1211 ] } ], "e_sides_aggregate": [ - 1207, + 1209, { "distinct_on": [ - 1220, + 1222, "[e_sides_select_column!]" ], "limit": [ @@ -140383,16 +141203,16 @@ export default { 40 ], "order_by": [ - 1218, + 1220, "[e_sides_order_by!]" ], "where": [ - 1209 + 1211 ] } ], "e_sides_by_pk": [ - 1206, + 1208, { "value": [ 80, @@ -140401,10 +141221,10 @@ export default { } ], "e_system_alert_types": [ - 1226, + 1228, { "distinct_on": [ - 1240, + 1242, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -140414,19 +141234,19 @@ export default { 40 ], "order_by": [ - 1238, + 1240, "[e_system_alert_types_order_by!]" ], "where": [ - 1229 + 1231 ] } ], "e_system_alert_types_aggregate": [ - 1227, + 1229, { "distinct_on": [ - 1240, + 1242, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -140436,16 +141256,16 @@ export default { 40 ], "order_by": [ - 1238, + 1240, "[e_system_alert_types_order_by!]" ], "where": [ - 1229 + 1231 ] } ], "e_system_alert_types_by_pk": [ - 1226, + 1228, { "value": [ 80, @@ -140454,10 +141274,10 @@ export default { } ], "e_team_roles": [ - 1246, + 1248, { "distinct_on": [ - 1261, + 1263, "[e_team_roles_select_column!]" ], "limit": [ @@ -140467,19 +141287,19 @@ export default { 40 ], "order_by": [ - 1259, + 1261, "[e_team_roles_order_by!]" ], "where": [ - 1249 + 1251 ] } ], "e_team_roles_aggregate": [ - 1247, + 1249, { "distinct_on": [ - 1261, + 1263, "[e_team_roles_select_column!]" ], "limit": [ @@ -140489,16 +141309,16 @@ export default { 40 ], "order_by": [ - 1259, + 1261, "[e_team_roles_order_by!]" ], "where": [ - 1249 + 1251 ] } ], "e_team_roles_by_pk": [ - 1246, + 1248, { "value": [ 80, @@ -140507,10 +141327,10 @@ export default { } ], "e_team_roster_statuses": [ - 1267, + 1269, { "distinct_on": [ - 1281, + 1283, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -140520,19 +141340,19 @@ export default { 40 ], "order_by": [ - 1279, + 1281, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1270 + 1272 ] } ], "e_team_roster_statuses_aggregate": [ - 1268, + 1270, { "distinct_on": [ - 1281, + 1283, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -140542,16 +141362,16 @@ export default { 40 ], "order_by": [ - 1279, + 1281, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1270 + 1272 ] } ], "e_team_roster_statuses_by_pk": [ - 1267, + 1269, { "value": [ 80, @@ -140560,10 +141380,10 @@ export default { } ], "e_timeout_settings": [ - 1287, + 1289, { "distinct_on": [ - 1301, + 1303, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -140573,19 +141393,19 @@ export default { 40 ], "order_by": [ - 1299, + 1301, "[e_timeout_settings_order_by!]" ], "where": [ - 1290 + 1292 ] } ], "e_timeout_settings_aggregate": [ - 1288, + 1290, { "distinct_on": [ - 1301, + 1303, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -140595,16 +141415,16 @@ export default { 40 ], "order_by": [ - 1299, + 1301, "[e_timeout_settings_order_by!]" ], "where": [ - 1290 + 1292 ] } ], "e_timeout_settings_by_pk": [ - 1287, + 1289, { "value": [ 80, @@ -140613,10 +141433,10 @@ export default { } ], "e_tournament_categories": [ - 1307, + 1309, { "distinct_on": [ - 1322, + 1324, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -140626,19 +141446,19 @@ export default { 40 ], "order_by": [ - 1320, + 1322, "[e_tournament_categories_order_by!]" ], "where": [ - 1310 + 1312 ] } ], "e_tournament_categories_aggregate": [ - 1308, + 1310, { "distinct_on": [ - 1322, + 1324, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -140648,16 +141468,16 @@ export default { 40 ], "order_by": [ - 1320, + 1322, "[e_tournament_categories_order_by!]" ], "where": [ - 1310 + 1312 ] } ], "e_tournament_categories_by_pk": [ - 1307, + 1309, { "value": [ 80, @@ -140666,10 +141486,10 @@ export default { } ], "e_tournament_stage_types": [ - 1328, + 1330, { "distinct_on": [ - 1343, + 1345, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -140679,19 +141499,19 @@ export default { 40 ], "order_by": [ - 1341, + 1343, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1331 + 1333 ] } ], "e_tournament_stage_types_aggregate": [ - 1329, + 1331, { "distinct_on": [ - 1343, + 1345, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -140701,16 +141521,16 @@ export default { 40 ], "order_by": [ - 1341, + 1343, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1331 + 1333 ] } ], "e_tournament_stage_types_by_pk": [ - 1328, + 1330, { "value": [ 80, @@ -140719,10 +141539,10 @@ export default { } ], "e_tournament_status": [ - 1349, + 1351, { "distinct_on": [ - 1364, + 1366, "[e_tournament_status_select_column!]" ], "limit": [ @@ -140732,19 +141552,19 @@ export default { 40 ], "order_by": [ - 1362, + 1364, "[e_tournament_status_order_by!]" ], "where": [ - 1352 + 1354 ] } ], "e_tournament_status_aggregate": [ - 1350, + 1352, { "distinct_on": [ - 1364, + 1366, "[e_tournament_status_select_column!]" ], "limit": [ @@ -140754,16 +141574,16 @@ export default { 40 ], "order_by": [ - 1362, + 1364, "[e_tournament_status_order_by!]" ], "where": [ - 1352 + 1354 ] } ], "e_tournament_status_by_pk": [ - 1349, + 1351, { "value": [ 80, @@ -140772,10 +141592,10 @@ export default { } ], "e_utility_types": [ - 1370, + 1372, { "distinct_on": [ - 1384, + 1386, "[e_utility_types_select_column!]" ], "limit": [ @@ -140785,19 +141605,19 @@ export default { 40 ], "order_by": [ - 1382, + 1384, "[e_utility_types_order_by!]" ], "where": [ - 1373 + 1375 ] } ], "e_utility_types_aggregate": [ - 1371, + 1373, { "distinct_on": [ - 1384, + 1386, "[e_utility_types_select_column!]" ], "limit": [ @@ -140807,16 +141627,16 @@ export default { 40 ], "order_by": [ - 1382, + 1384, "[e_utility_types_order_by!]" ], "where": [ - 1373 + 1375 ] } ], "e_utility_types_by_pk": [ - 1370, + 1372, { "value": [ 80, @@ -140825,10 +141645,10 @@ export default { } ], "e_veto_pick_types": [ - 1390, + 1392, { "distinct_on": [ - 1404, + 1406, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -140838,19 +141658,19 @@ export default { 40 ], "order_by": [ - 1402, + 1404, "[e_veto_pick_types_order_by!]" ], "where": [ - 1393 + 1395 ] } ], "e_veto_pick_types_aggregate": [ - 1391, + 1393, { "distinct_on": [ - 1404, + 1406, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -140860,16 +141680,16 @@ export default { 40 ], "order_by": [ - 1402, + 1404, "[e_veto_pick_types_order_by!]" ], "where": [ - 1393 + 1395 ] } ], "e_veto_pick_types_by_pk": [ - 1390, + 1392, { "value": [ 80, @@ -140878,10 +141698,10 @@ export default { } ], "e_winning_reasons": [ - 1410, + 1412, { "distinct_on": [ - 1424, + 1426, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -140891,19 +141711,19 @@ export default { 40 ], "order_by": [ - 1422, + 1424, "[e_winning_reasons_order_by!]" ], "where": [ - 1413 + 1415 ] } ], "e_winning_reasons_aggregate": [ - 1411, + 1413, { "distinct_on": [ - 1424, + 1426, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -140913,16 +141733,16 @@ export default { 40 ], "order_by": [ - 1422, + 1424, "[e_winning_reasons_order_by!]" ], "where": [ - 1413 + 1415 ] } ], "e_winning_reasons_by_pk": [ - 1410, + 1412, { "value": [ 80, @@ -140931,10 +141751,10 @@ export default { } ], "event_match_links": [ - 1430, + 1432, { "distinct_on": [ - 1442, + 1444, "[event_match_links_select_column!]" ], "limit": [ @@ -140944,19 +141764,19 @@ export default { 40 ], "order_by": [ - 1440, + 1442, "[event_match_links_order_by!]" ], "where": [ - 1433 + 1435 ] } ], "event_match_links_aggregate": [ - 1431, + 1433, { "distinct_on": [ - 1442, + 1444, "[event_match_links_select_column!]" ], "limit": [ @@ -140966,32 +141786,32 @@ export default { 40 ], "order_by": [ - 1440, + 1442, "[event_match_links_order_by!]" ], "where": [ - 1433 + 1435 ] } ], "event_match_links_by_pk": [ - 1430, + 1432, { "event_id": [ - 5053, + 5109, "uuid!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } ], "event_media": [ - 1448, + 1450, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -141001,19 +141821,19 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], "event_media_aggregate": [ - 1449, + 1451, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -141023,28 +141843,28 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], "event_media_by_pk": [ - 1448, + 1450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "event_media_players": [ - 1470, + 1472, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -141054,19 +141874,19 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "event_media_players_aggregate": [ - 1471, + 1473, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -141076,32 +141896,32 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "event_media_players_by_pk": [ - 1470, + 1472, { "media_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_organizers": [ - 1531, + 1533, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -141111,19 +141931,19 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "event_organizers_aggregate": [ - 1532, + 1534, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -141133,32 +141953,32 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "event_organizers_by_pk": [ - 1531, + 1533, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_players": [ - 1572, + 1574, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -141168,19 +141988,19 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "event_players_aggregate": [ - 1573, + 1575, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -141190,32 +142010,32 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "event_players_by_pk": [ - 1572, + 1574, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_teams": [ - 1613, + 1615, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -141225,19 +142045,19 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "event_teams_aggregate": [ - 1614, + 1616, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -141247,32 +142067,32 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "event_teams_by_pk": [ - 1613, + 1615, { "event_id": [ - 5053, + 5109, "uuid!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "event_tournaments": [ - 1637, + 1639, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -141282,19 +142102,19 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "event_tournaments_aggregate": [ - 1638, + 1640, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -141304,32 +142124,32 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "event_tournaments_by_pk": [ - 1637, + 1639, { "event_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "events": [ - 1661, + 1663, { "distinct_on": [ - 1676, + 1678, "[events_select_column!]" ], "limit": [ @@ -141339,19 +142159,19 @@ export default { 40 ], "order_by": [ - 1674, + 1676, "[events_order_by!]" ], "where": [ - 1665 + 1667 ] } ], "events_aggregate": [ - 1662, + 1664, { "distinct_on": [ - 1676, + 1678, "[events_select_column!]" ], "limit": [ @@ -141361,28 +142181,28 @@ export default { 40 ], "order_by": [ - 1674, + 1676, "[events_order_by!]" ], "where": [ - 1665 + 1667 ] } ], "events_by_pk": [ - 1661, + 1663, { "id": [ - 5053, + 5109, "uuid!" ] } ], "friends": [ - 1691, + 1693, { "distinct_on": [ - 1705, + 1707, "[friends_select_column!]" ], "limit": [ @@ -141392,19 +142212,19 @@ export default { 40 ], "order_by": [ - 1703, + 1705, "[friends_order_by!]" ], "where": [ - 1695 + 1697 ] } ], "friends_aggregate": [ - 1692, + 1694, { "distinct_on": [ - 1705, + 1707, "[friends_select_column!]" ], "limit": [ @@ -141414,32 +142234,32 @@ export default { 40 ], "order_by": [ - 1703, + 1705, "[friends_order_by!]" ], "where": [ - 1695 + 1697 ] } ], "friends_by_pk": [ - 1691, + 1693, { "other_player_steam_id": [ - 257, + 259, "bigint!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "game_server_nodes": [ - 1718, + 1720, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -141449,19 +142269,19 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], "game_server_nodes_aggregate": [ - 1719, + 1721, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -141471,16 +142291,16 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], "game_server_nodes_by_pk": [ - 1718, + 1720, { "id": [ 80, @@ -141489,10 +142309,10 @@ export default { } ], "game_versions": [ - 1769, + 1771, { "distinct_on": [ - 1789, + 1791, "[game_versions_select_column!]" ], "limit": [ @@ -141502,19 +142322,19 @@ export default { 40 ], "order_by": [ - 1786, + 1788, "[game_versions_order_by!]" ], "where": [ - 1774 + 1776 ] } ], "game_versions_aggregate": [ - 1770, + 1772, { "distinct_on": [ - 1789, + 1791, "[game_versions_select_column!]" ], "limit": [ @@ -141524,16 +142344,16 @@ export default { 40 ], "order_by": [ - 1786, + 1788, "[game_versions_order_by!]" ], "where": [ - 1774 + 1776 ] } ], "game_versions_by_pk": [ - 1769, + 1771, { "build_id": [ 40, @@ -141542,10 +142362,10 @@ export default { } ], "gamedata_signature_validations": [ - 1802, + 1804, { "distinct_on": [ - 1821, + 1823, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -141555,19 +142375,19 @@ export default { 40 ], "order_by": [ - 1818, + 1820, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1807 + 1809 ] } ], "gamedata_signature_validations_aggregate": [ - 1803, + 1805, { "distinct_on": [ - 1821, + 1823, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -141577,19 +142397,19 @@ export default { 40 ], "order_by": [ - 1818, + 1820, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1807 + 1809 ] } ], "gamedata_signature_validations_by_pk": [ - 1802, + 1804, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -141625,7 +142445,7 @@ export default { 36, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "target_steam_id": [ @@ -141710,14 +142530,14 @@ export default { 96 ], "get_event_leaderboard": [ - 1845, + 1847, { "args": [ - 1834, + 1836, "get_event_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141727,23 +142547,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_event_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1834, + 1836, "get_event_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141753,23 +142573,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_leaderboard": [ - 1845, + 1847, { "args": [ - 1835, + 1837, "get_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141779,23 +142599,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1835, + 1837, "get_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141805,23 +142625,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_league_season_leaderboard": [ - 1845, + 1847, { "args": [ - 1836, + 1838, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141831,23 +142651,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_league_season_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1836, + 1838, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141857,23 +142677,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_player_leaderboard_rank": [ - 3447, + 3476, { "args": [ - 1837, + 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -141883,23 +142703,23 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3448, + 3477, { "args": [ - 1837, + 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -141909,19 +142729,19 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "leaderboard_entries": [ - 1845, + 1847, { "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141931,19 +142751,19 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "leaderboard_entries_aggregate": [ - 1846, + 1848, { "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -141953,19 +142773,19 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "league_divisions": [ - 1869, + 1871, { "distinct_on": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "limit": [ @@ -141975,19 +142795,19 @@ export default { 40 ], "order_by": [ - 1882, + 1884, "[league_divisions_order_by!]" ], "where": [ - 1873 + 1875 ] } ], "league_divisions_aggregate": [ - 1870, + 1872, { "distinct_on": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "limit": [ @@ -141997,28 +142817,28 @@ export default { 40 ], "order_by": [ - 1882, + 1884, "[league_divisions_order_by!]" ], "where": [ - 1873 + 1875 ] } ], "league_divisions_by_pk": [ - 1869, + 1871, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_match_weeks": [ - 1897, + 1899, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -142028,19 +142848,19 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], "league_match_weeks_aggregate": [ - 1898, + 1900, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -142050,28 +142870,28 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], "league_match_weeks_by_pk": [ - 1897, + 1899, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_relegation_playoffs": [ - 1938, + 1940, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -142081,19 +142901,19 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], "league_relegation_playoffs_aggregate": [ - 1939, + 1941, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -142103,28 +142923,28 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], "league_relegation_playoffs_by_pk": [ - 1938, + 1940, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_scheduling_proposals": [ - 1979, + 1981, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -142134,19 +142954,19 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "league_scheduling_proposals_aggregate": [ - 1980, + 1982, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -142156,28 +142976,28 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "league_scheduling_proposals_by_pk": [ - 1979, + 1981, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_season_divisions": [ - 2020, + 2022, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -142187,19 +143007,19 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "league_season_divisions_aggregate": [ - 2021, + 2023, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -142209,28 +143029,28 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "league_season_divisions_by_pk": [ - 2020, + 2022, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_seasons": [ - 2045, + 2047, { "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -142240,19 +143060,19 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], "league_seasons_aggregate": [ - 2046, + 2048, { "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -142262,28 +143082,28 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], "league_seasons_by_pk": [ - 2045, + 2047, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_team_movements": [ - 2078, + 2080, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -142293,19 +143113,19 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "league_team_movements_aggregate": [ - 2079, + 2081, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -142315,28 +143135,28 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "league_team_movements_by_pk": [ - 2078, + 2080, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_team_rosters": [ - 2119, + 2121, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -142346,19 +143166,19 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "league_team_rosters_aggregate": [ - 2120, + 2122, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -142368,32 +143188,32 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "league_team_rosters_by_pk": [ - 2119, + 2121, { "league_team_season_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "league_team_seasons": [ - 2160, + 2162, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -142403,19 +143223,19 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "league_team_seasons_aggregate": [ - 2161, + 2163, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -142425,28 +143245,28 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "league_team_seasons_by_pk": [ - 2160, + 2162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_teams": [ - 2202, + 2204, { "distinct_on": [ - 2215, + 2217, "[league_teams_select_column!]" ], "limit": [ @@ -142456,19 +143276,19 @@ export default { 40 ], "order_by": [ - 2213, + 2215, "[league_teams_order_by!]" ], "where": [ - 2205 + 2207 ] } ], "league_teams_aggregate": [ - 2203, + 2205, { "distinct_on": [ - 2215, + 2217, "[league_teams_select_column!]" ], "limit": [ @@ -142478,19 +143298,19 @@ export default { 40 ], "order_by": [ - 2213, + 2215, "[league_teams_order_by!]" ], "where": [ - 2205 + 2207 ] } ], "league_teams_by_pk": [ - 2202, + 2204, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -142511,10 +143331,10 @@ export default { } ], "lobbies": [ - 2221, + 2223, { "distinct_on": [ - 2234, + 2236, "[lobbies_select_column!]" ], "limit": [ @@ -142524,19 +143344,19 @@ export default { 40 ], "order_by": [ - 2232, + 2234, "[lobbies_order_by!]" ], "where": [ - 2224 + 2226 ] } ], "lobbies_aggregate": [ - 2222, + 2224, { "distinct_on": [ - 2234, + 2236, "[lobbies_select_column!]" ], "limit": [ @@ -142546,28 +143366,28 @@ export default { 40 ], "order_by": [ - 2232, + 2234, "[lobbies_order_by!]" ], "where": [ - 2224 + 2226 ] } ], "lobbies_by_pk": [ - 2221, + 2223, { "id": [ - 5053, + 5109, "uuid!" ] } ], "lobby_players": [ - 2240, + 2242, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -142577,19 +143397,19 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "lobby_players_aggregate": [ - 2241, + 2243, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -142599,32 +143419,32 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "lobby_players_by_pk": [ - 2240, + 2242, { "lobby_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "map_pools": [ - 2285, + 2287, { "distinct_on": [ - 2298, + 2300, "[map_pools_select_column!]" ], "limit": [ @@ -142634,19 +143454,19 @@ export default { 40 ], "order_by": [ - 2296, + 2298, "[map_pools_order_by!]" ], "where": [ - 2288 + 2290 ] } ], "map_pools_aggregate": [ - 2286, + 2288, { "distinct_on": [ - 2298, + 2300, "[map_pools_select_column!]" ], "limit": [ @@ -142656,28 +143476,28 @@ export default { 40 ], "order_by": [ - 2296, + 2298, "[map_pools_order_by!]" ], "where": [ - 2288 + 2290 ] } ], "map_pools_by_pk": [ - 2285, + 2287, { "id": [ - 5053, + 5109, "uuid!" ] } ], "maps": [ - 2304, + 2306, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -142687,19 +143507,19 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], "maps_aggregate": [ - 2305, + 2307, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -142709,28 +143529,28 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], "maps_by_pk": [ - 2304, + 2306, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_camera_tokens": [ - 2333, + 2335, { "distinct_on": [ - 2347, + 2349, "[match_camera_tokens_select_column!]" ], "limit": [ @@ -142740,19 +143560,19 @@ export default { 40 ], "order_by": [ - 2345, + 2347, "[match_camera_tokens_order_by!]" ], "where": [ - 2337 + 2339 ] } ], "match_camera_tokens_aggregate": [ - 2334, + 2336, { "distinct_on": [ - 2347, + 2349, "[match_camera_tokens_select_column!]" ], "limit": [ @@ -142762,28 +143582,28 @@ export default { 40 ], "order_by": [ - 2345, + 2347, "[match_camera_tokens_order_by!]" ], "where": [ - 2337 + 2339 ] } ], "match_camera_tokens_by_pk": [ - 2333, + 2335, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_clips": [ - 2360, + 2362, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -142793,19 +143613,19 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_aggregate": [ - 2361, + 2363, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -142815,28 +143635,28 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_by_pk": [ - 2360, + 2362, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_demo_sessions": [ - 2402, + 2404, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -142846,19 +143666,19 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], "match_demo_sessions_aggregate": [ - 2403, + 2405, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -142868,28 +143688,28 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], "match_demo_sessions_by_pk": [ - 2402, + 2404, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_lineup_players": [ - 2448, + 2450, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -142899,19 +143719,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match_lineup_players_aggregate": [ - 2449, + 2451, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -142921,28 +143741,28 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match_lineup_players_by_pk": [ - 2448, + 2450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_lineups": [ - 2493, + 2495, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -142952,19 +143772,19 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "match_lineups_aggregate": [ - 2494, + 2496, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -142974,28 +143794,28 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "match_lineups_by_pk": [ - 2493, + 2495, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_demos": [ - 2535, + 2537, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -143005,19 +143825,19 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "match_map_demos_aggregate": [ - 2536, + 2538, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -143027,28 +143847,28 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "match_map_demos_by_pk": [ - 2535, + 2537, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_rounds": [ - 2586, + 2588, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -143058,19 +143878,19 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "match_map_rounds_aggregate": [ - 2587, + 2589, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -143080,28 +143900,28 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "match_map_rounds_by_pk": [ - 2586, + 2588, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -143111,19 +143931,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_map_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -143133,28 +143953,28 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_map_veto_picks_by_pk": [ - 2627, + 2629, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_maps": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -143164,19 +143984,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -143186,28 +144006,28 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_by_pk": [ - 2655, + 2657, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_options": [ - 2697, + 2699, { "distinct_on": [ - 2712, + 2714, "[match_options_select_column!]" ], "limit": [ @@ -143217,19 +144037,19 @@ export default { 40 ], "order_by": [ - 2710, + 2712, "[match_options_order_by!]" ], "where": [ - 2701 + 2703 ] } ], "match_options_aggregate": [ - 2698, + 2700, { "distinct_on": [ - 2712, + 2714, "[match_options_select_column!]" ], "limit": [ @@ -143239,28 +144059,28 @@ export default { 40 ], "order_by": [ - 2710, + 2712, "[match_options_order_by!]" ], "where": [ - 2701 + 2703 ] } ], "match_options_by_pk": [ - 2697, + 2699, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_region_veto_picks": [ - 2725, + 2727, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -143270,19 +144090,19 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], "match_region_veto_picks_aggregate": [ - 2726, + 2728, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -143292,28 +144112,28 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], "match_region_veto_picks_by_pk": [ - 2725, + 2727, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_streams": [ - 2753, + 2755, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -143323,19 +144143,19 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "match_streams_aggregate": [ - 2754, + 2756, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -143345,28 +144165,28 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "match_streams_by_pk": [ - 2753, + 2755, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_type_cfgs": [ - 2803, + 2805, { "distinct_on": [ - 2815, + 2817, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -143376,19 +144196,19 @@ export default { 40 ], "order_by": [ - 2813, + 2815, "[match_type_cfgs_order_by!]" ], "where": [ - 2806 + 2808 ] } ], "match_type_cfgs_aggregate": [ - 2804, + 2806, { "distinct_on": [ - 2815, + 2817, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -143398,28 +144218,28 @@ export default { 40 ], "order_by": [ - 2813, + 2815, "[match_type_cfgs_order_by!]" ], "where": [ - 2806 + 2808 ] } ], "match_type_cfgs_by_pk": [ - 2803, + 2805, { "type": [ - 740, + 742, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -143429,19 +144249,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_aggregate": [ - 2822, + 2824, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -143451,19 +144271,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_by_pk": [ - 2821, + 2823, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -143472,10 +144292,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2863, + 2865, { "distinct_on": [ - 2875, + 2877, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -143485,19 +144305,19 @@ export default { 40 ], "order_by": [ - 2873, + 2875, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2866 + 2868 ] } ], "migration_hashes_hashes_aggregate": [ - 2864, + 2866, { "distinct_on": [ - 2875, + 2877, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -143507,16 +144327,16 @@ export default { 40 ], "order_by": [ - 2873, + 2875, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2866 + 2868 ] } ], "migration_hashes_hashes_by_pk": [ - 2863, + 2865, { "name": [ 80, @@ -143525,10 +144345,10 @@ export default { } ], "my_friends": [ - 2881, + 2883, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -143538,19 +144358,19 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], "my_friends_aggregate": [ - 2882, + 2884, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -143560,11 +144380,11 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], @@ -143572,7 +144392,7 @@ export default { 50, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -143581,10 +144401,10 @@ export default { 50 ], "news_articles": [ - 2927, + 2929, { "distinct_on": [ - 2941, + 2943, "[news_articles_select_column!]" ], "limit": [ @@ -143594,19 +144414,19 @@ export default { 40 ], "order_by": [ - 2939, + 2941, "[news_articles_order_by!]" ], "where": [ - 2931 + 2933 ] } ], "news_articles_aggregate": [ - 2928, + 2930, { "distinct_on": [ - 2941, + 2943, "[news_articles_select_column!]" ], "limit": [ @@ -143616,28 +144436,89 @@ export default { 40 ], "order_by": [ - 2939, + 2941, "[news_articles_order_by!]" ], "where": [ - 2931 + 2933 ] } ], "news_articles_by_pk": [ - 2927, + 2929, { "id": [ - 5053, + 5109, "uuid!" ] } ], + "notification_preferences": [ + 2956, + { + "distinct_on": [ + 2970, + "[notification_preferences_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2968, + "[notification_preferences_order_by!]" + ], + "where": [ + 2960 + ] + } + ], + "notification_preferences_aggregate": [ + 2957, + { + "distinct_on": [ + 2970, + "[notification_preferences_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2968, + "[notification_preferences_order_by!]" + ], + "where": [ + 2960 + ] + } + ], + "notification_preferences_by_pk": [ + 2956, + { + "channel": [ + 80, + "String!" + ], + "key": [ + 80, + "String!" + ], + "steam_id": [ + 259, + "bigint!" + ] + } + ], "notifications": [ - 2954, + 2983, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -143647,19 +144528,19 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "notifications_aggregate": [ - 2955, + 2984, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -143669,28 +144550,28 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "notifications_by_pk": [ - 2954, + 2983, { "id": [ - 5053, + 5109, "uuid!" ] } ], "pending_match_import_players": [ - 3007, + 3036, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -143700,19 +144581,19 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "pending_match_import_players_aggregate": [ - 3008, + 3037, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -143722,32 +144603,32 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "pending_match_import_players_by_pk": [ - 3007, + 3036, { "steam_id": [ - 257, + 259, "bigint!" ], "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "pending_match_imports": [ - 3048, + 3077, { "distinct_on": [ - 3063, + 3092, "[pending_match_imports_select_column!]" ], "limit": [ @@ -143757,19 +144638,19 @@ export default { 40 ], "order_by": [ - 3061, + 3090, "[pending_match_imports_order_by!]" ], "where": [ - 3052 + 3081 ] } ], "pending_match_imports_aggregate": [ - 3049, + 3078, { "distinct_on": [ - 3063, + 3092, "[pending_match_imports_select_column!]" ], "limit": [ @@ -143779,28 +144660,28 @@ export default { 40 ], "order_by": [ - 3061, + 3090, "[pending_match_imports_order_by!]" ], "where": [ - 3052 + 3081 ] } ], "pending_match_imports_by_pk": [ - 3048, + 3077, { "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "player_aim_stats_demo": [ - 3076, + 3105, { "distinct_on": [ - 3090, + 3119, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -143810,19 +144691,19 @@ export default { 40 ], "order_by": [ - 3088, + 3117, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3080 + 3109 ] } ], "player_aim_stats_demo_aggregate": [ - 3077, + 3106, { "distinct_on": [ - 3090, + 3119, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -143832,32 +144713,32 @@ export default { 40 ], "order_by": [ - 3088, + 3117, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3080 + 3109 ] } ], "player_aim_stats_demo_by_pk": [ - 3076, + 3105, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3103, + 3132, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -143867,19 +144748,19 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "player_aim_weapon_stats_aggregate": [ - 3104, + 3133, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -143889,23 +144770,23 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "player_aim_weapon_stats_by_pk": [ - 3103, + 3132, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "weapon_class": [ @@ -143915,10 +144796,10 @@ export default { } ], "player_assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -143928,19 +144809,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -143950,40 +144831,40 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_by_pk": [ - 3144, + 3173, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_career_stats_v": [ - 3189, + 3218, { "distinct_on": [ - 3197, + 3226, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -143993,19 +144874,19 @@ export default { 40 ], "order_by": [ - 3196, + 3225, "[player_career_stats_v_order_by!]" ], "where": [ - 3193 + 3222 ] } ], "player_career_stats_v_aggregate": [ - 3190, + 3219, { "distinct_on": [ - 3197, + 3226, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -144015,19 +144896,19 @@ export default { 40 ], "order_by": [ - 3196, + 3225, "[player_career_stats_v_order_by!]" ], "where": [ - 3193 + 3222 ] } ], "player_damages": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -144037,19 +144918,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -144059,36 +144940,36 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_by_pk": [ - 3207, + 3236, { "id": [ - 5053, + 5109, "uuid!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_elo": [ - 3248, + 3277, { "distinct_on": [ - 3262, + 3291, "[player_elo_select_column!]" ], "limit": [ @@ -144098,19 +144979,19 @@ export default { 40 ], "order_by": [ - 3260, + 3289, "[player_elo_order_by!]" ], "where": [ - 3252 + 3281 ] } ], "player_elo_aggregate": [ - 3249, + 3278, { "distinct_on": [ - 3262, + 3291, "[player_elo_select_column!]" ], "limit": [ @@ -144120,36 +145001,36 @@ export default { 40 ], "order_by": [ - 3260, + 3289, "[player_elo_order_by!]" ], "where": [ - 3252 + 3281 ] } ], "player_elo_by_pk": [ - 3248, + 3277, { "match_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "type": [ - 1029, + 1031, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3275, + 3304, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -144159,19 +145040,19 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], "player_faceit_rank_history_aggregate": [ - 3276, + 3305, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -144181,28 +145062,28 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], "player_faceit_rank_history_by_pk": [ - 3275, + 3304, { "id": [ - 5053, + 5109, "uuid!" ] } ], "player_flashes": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -144212,19 +145093,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_flashes_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -144234,40 +145115,40 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_flashes_by_pk": [ - 3316, + 3345, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -144277,19 +145158,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -144299,40 +145180,40 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_by_pk": [ - 3361, + 3390, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3373, + 3402, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -144342,19 +145223,19 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], "player_kills_by_weapon_aggregate": [ - 3374, + 3403, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -144364,19 +145245,19 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], "player_kills_by_weapon_by_pk": [ - 3373, + 3402, { "player_steam_id": [ - 257, + 259, "bigint!" ], "with": [ @@ -144386,10 +145267,10 @@ export default { } ], "player_leaderboard_rank": [ - 3447, + 3476, { "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -144399,19 +145280,19 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "player_leaderboard_rank_aggregate": [ - 3448, + 3477, { "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -144421,19 +145302,19 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "player_match_map_stats": [ - 3470, + 3499, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -144443,19 +145324,19 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "player_match_map_stats_aggregate": [ - 3471, + 3500, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -144465,32 +145346,32 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "player_match_map_stats_by_pk": [ - 3470, + 3499, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_match_performance_v": [ - 3511, + 3540, { "distinct_on": [ - 3519, + 3548, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -144500,19 +145381,19 @@ export default { 40 ], "order_by": [ - 3518, + 3547, "[player_match_performance_v_order_by!]" ], "where": [ - 3515 + 3544 ] } ], "player_match_performance_v_aggregate": [ - 3512, + 3541, { "distinct_on": [ - 3519, + 3548, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -144522,19 +145403,19 @@ export default { 40 ], "order_by": [ - 3518, + 3547, "[player_match_performance_v_order_by!]" ], "where": [ - 3515 + 3544 ] } ], "player_match_stats_v": [ - 3529, + 3558, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -144544,19 +145425,19 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "player_match_stats_v_aggregate": [ - 3530, + 3559, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -144566,19 +145447,19 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "player_objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -144588,19 +145469,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -144610,36 +145491,36 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_by_pk": [ - 3562, + 3591, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_performance_v": [ - 3603, + 3632, { "distinct_on": [ - 3611, + 3640, "[player_performance_v_select_column!]" ], "limit": [ @@ -144649,19 +145530,19 @@ export default { 40 ], "order_by": [ - 3610, + 3639, "[player_performance_v_order_by!]" ], "where": [ - 3607 + 3636 ] } ], "player_performance_v_aggregate": [ - 3604, + 3633, { "distinct_on": [ - 3611, + 3640, "[player_performance_v_select_column!]" ], "limit": [ @@ -144671,19 +145552,19 @@ export default { 40 ], "order_by": [ - 3610, + 3639, "[player_performance_v_order_by!]" ], "where": [ - 3607 + 3636 ] } ], "player_premier_rank_history": [ - 3621, + 3650, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -144693,19 +145574,19 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "player_premier_rank_history_aggregate": [ - 3622, + 3651, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -144715,28 +145596,28 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "player_premier_rank_history_by_pk": [ - 3621, + 3650, { "id": [ - 5053, + 5109, "uuid!" ] } ], "player_sanctions": [ - 3662, + 3691, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -144746,19 +145627,19 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "player_sanctions_aggregate": [ - 3663, + 3692, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -144768,32 +145649,32 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "player_sanctions_by_pk": [ - 3662, + 3691, { "created_at": [ - 4553, + 4609, "timestamptz!" ], "id": [ - 5053, + 5109, "uuid!" ] } ], "player_season_stats": [ - 3703, + 3732, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -144803,19 +145684,19 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "player_season_stats_aggregate": [ - 3704, + 3733, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -144825,32 +145706,32 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "player_season_stats_by_pk": [ - 3703, + 3732, { "player_steam_id": [ - 257, + 259, "bigint!" ], "season_id": [ - 5053, + 5109, "uuid!" ] } ], "player_stats": [ - 3762, + 3791, { "distinct_on": [ - 3777, + 3806, "[player_stats_select_column!]" ], "limit": [ @@ -144860,19 +145741,19 @@ export default { 40 ], "order_by": [ - 3775, + 3804, "[player_stats_order_by!]" ], "where": [ - 3766 + 3795 ] } ], "player_stats_aggregate": [ - 3763, + 3792, { "distinct_on": [ - 3777, + 3806, "[player_stats_select_column!]" ], "limit": [ @@ -144882,28 +145763,28 @@ export default { 40 ], "order_by": [ - 3775, + 3804, "[player_stats_order_by!]" ], "where": [ - 3766 + 3795 ] } ], "player_stats_by_pk": [ - 3762, + 3791, { "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "player_steam_bot_friend": [ - 3790, + 3819, { "distinct_on": [ - 3809, + 3838, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -144913,19 +145794,19 @@ export default { 40 ], "order_by": [ - 3806, + 3835, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3795 + 3824 ] } ], "player_steam_bot_friend_aggregate": [ - 3791, + 3820, { "distinct_on": [ - 3809, + 3838, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -144935,28 +145816,28 @@ export default { 40 ], "order_by": [ - 3806, + 3835, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3795 + 3824 ] } ], "player_steam_bot_friend_by_pk": [ - 3790, + 3819, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_steam_match_auth": [ - 3822, + 3851, { "distinct_on": [ - 3836, + 3865, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -144966,19 +145847,19 @@ export default { 40 ], "order_by": [ - 3834, + 3863, "[player_steam_match_auth_order_by!]" ], "where": [ - 3826 + 3855 ] } ], "player_steam_match_auth_aggregate": [ - 3823, + 3852, { "distinct_on": [ - 3836, + 3865, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -144988,28 +145869,28 @@ export default { 40 ], "order_by": [ - 3834, + 3863, "[player_steam_match_auth_order_by!]" ], "where": [ - 3826 + 3855 ] } ], "player_steam_match_auth_by_pk": [ - 3822, + 3851, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_unused_utility": [ - 3849, + 3878, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -145019,19 +145900,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utility_aggregate": [ - 3850, + 3879, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -145041,32 +145922,32 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utility_by_pk": [ - 3849, + 3878, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "player_utility": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -145076,19 +145957,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utility_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -145098,36 +145979,36 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utility_by_pk": [ - 3890, + 3919, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3931, + 3960, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -145137,19 +146018,19 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], "player_weapon_stats_v_aggregate": [ - 3932, + 3961, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -145159,19 +146040,19 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], "players": [ - 3964, + 3993, { "distinct_on": [ - 3979, + 4008, "[players_select_column!]" ], "limit": [ @@ -145181,19 +146062,19 @@ export default { 40 ], "order_by": [ - 3977, + 4006, "[players_order_by!]" ], "where": [ - 3968 + 3997 ] } ], "players_aggregate": [ - 3965, + 3994, { "distinct_on": [ - 3979, + 4008, "[players_select_column!]" ], "limit": [ @@ -145203,28 +146084,28 @@ export default { 40 ], "order_by": [ - 3977, + 4006, "[players_order_by!]" ], "where": [ - 3968 + 3997 ] } ], "players_by_pk": [ - 3964, + 3993, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "plugin_versions": [ - 3992, + 4021, { "distinct_on": [ - 4006, + 4035, "[plugin_versions_select_column!]" ], "limit": [ @@ -145234,19 +146115,19 @@ export default { 40 ], "order_by": [ - 4004, + 4033, "[plugin_versions_order_by!]" ], "where": [ - 3996 + 4025 ] } ], "plugin_versions_aggregate": [ - 3993, + 4022, { "distinct_on": [ - 4006, + 4035, "[plugin_versions_select_column!]" ], "limit": [ @@ -145256,19 +146137,19 @@ export default { 40 ], "order_by": [ - 4004, + 4033, "[plugin_versions_order_by!]" ], "where": [ - 3996 + 4025 ] } ], "plugin_versions_by_pk": [ - 3992, + 4021, { "runtime": [ - 1110, + 1112, "e_plugin_runtimes_enum!" ], "version": [ @@ -145277,6 +146158,59 @@ export default { ] } ], + "push_subscriptions": [ + 4048, + { + "distinct_on": [ + 4062, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4060, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4052 + ] + } + ], + "push_subscriptions_aggregate": [ + 4049, + { + "distinct_on": [ + 4062, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4060, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4052 + ] + } + ], + "push_subscriptions_by_pk": [ + 4048, + { + "id": [ + 5109, + "uuid!" + ] + } + ], "readServerFile": [ 28, { @@ -145294,10 +146228,10 @@ export default { } ], "seasons": [ - 4023, + 4079, { "distinct_on": [ - 4038, + 4094, "[seasons_select_column!]" ], "limit": [ @@ -145307,19 +146241,19 @@ export default { 40 ], "order_by": [ - 4036, + 4092, "[seasons_order_by!]" ], "where": [ - 4027 + 4083 ] } ], "seasons_aggregate": [ - 4024, + 4080, { "distinct_on": [ - 4038, + 4094, "[seasons_select_column!]" ], "limit": [ @@ -145329,28 +146263,28 @@ export default { 40 ], "order_by": [ - 4036, + 4092, "[seasons_order_by!]" ], "where": [ - 4027 + 4083 ] } ], "seasons_by_pk": [ - 4023, + 4079, { "id": [ - 5053, + 5109, "uuid!" ] } ], "server_regions": [ - 4051, + 4107, { "distinct_on": [ - 4065, + 4121, "[server_regions_select_column!]" ], "limit": [ @@ -145360,19 +146294,19 @@ export default { 40 ], "order_by": [ - 4063, + 4119, "[server_regions_order_by!]" ], "where": [ - 4055 + 4111 ] } ], "server_regions_aggregate": [ - 4052, + 4108, { "distinct_on": [ - 4065, + 4121, "[server_regions_select_column!]" ], "limit": [ @@ -145382,16 +146316,16 @@ export default { 40 ], "order_by": [ - 4063, + 4119, "[server_regions_order_by!]" ], "where": [ - 4055 + 4111 ] } ], "server_regions_by_pk": [ - 4051, + 4107, { "value": [ 80, @@ -145400,10 +146334,10 @@ export default { } ], "servers": [ - 4078, + 4134, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -145413,19 +146347,19 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_aggregate": [ - 4079, + 4135, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -145435,28 +146369,28 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_by_pk": [ - 4078, + 4134, { "id": [ - 5053, + 5109, "uuid!" ] } ], "settings": [ - 4124, + 4180, { "distinct_on": [ - 4136, + 4192, "[settings_select_column!]" ], "limit": [ @@ -145466,19 +146400,19 @@ export default { 40 ], "order_by": [ - 4134, + 4190, "[settings_order_by!]" ], "where": [ - 4127 + 4183 ] } ], "settings_aggregate": [ - 4125, + 4181, { "distinct_on": [ - 4136, + 4192, "[settings_select_column!]" ], "limit": [ @@ -145488,16 +146422,16 @@ export default { 40 ], "order_by": [ - 4134, + 4190, "[settings_order_by!]" ], "where": [ - 4127 + 4183 ] } ], "settings_by_pk": [ - 4124, + 4180, { "name": [ 80, @@ -145509,10 +146443,10 @@ export default { 74 ], "steam_account_claims": [ - 4144, + 4200, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -145522,19 +146456,19 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "steam_account_claims_aggregate": [ - 4145, + 4201, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -145544,28 +146478,28 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "steam_account_claims_by_pk": [ - 4144, + 4200, { "id": [ - 5053, + 5109, "uuid!" ] } ], "steam_accounts": [ - 4168, + 4224, { "distinct_on": [ - 4183, + 4239, "[steam_accounts_select_column!]" ], "limit": [ @@ -145575,19 +146509,19 @@ export default { 40 ], "order_by": [ - 4181, + 4237, "[steam_accounts_order_by!]" ], "where": [ - 4172 + 4228 ] } ], "steam_accounts_aggregate": [ - 4169, + 4225, { "distinct_on": [ - 4183, + 4239, "[steam_accounts_select_column!]" ], "limit": [ @@ -145597,28 +146531,28 @@ export default { 40 ], "order_by": [ - 4181, + 4237, "[steam_accounts_order_by!]" ], "where": [ - 4172 + 4228 ] } ], "steam_accounts_by_pk": [ - 4168, + 4224, { "id": [ - 5053, + 5109, "uuid!" ] } ], "system_alerts": [ - 4196, + 4252, { "distinct_on": [ - 4210, + 4266, "[system_alerts_select_column!]" ], "limit": [ @@ -145628,19 +146562,19 @@ export default { 40 ], "order_by": [ - 4208, + 4264, "[system_alerts_order_by!]" ], "where": [ - 4200 + 4256 ] } ], "system_alerts_aggregate": [ - 4197, + 4253, { "distinct_on": [ - 4210, + 4266, "[system_alerts_select_column!]" ], "limit": [ @@ -145650,19 +146584,19 @@ export default { 40 ], "order_by": [ - 4208, + 4264, "[system_alerts_order_by!]" ], "where": [ - 4200 + 4256 ] } ], "system_alerts_by_pk": [ - 4196, + 4252, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -145671,16 +146605,16 @@ export default { 87, { "team_id": [ - 5053, + 5109, "uuid!" ] } ], "team_invites": [ - 4223, + 4279, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -145690,19 +146624,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_invites_aggregate": [ - 4224, + 4280, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -145712,28 +146646,28 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_invites_by_pk": [ - 4223, + 4279, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_roster": [ - 4264, + 4320, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -145743,19 +146677,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_roster_aggregate": [ - 4265, + 4321, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -145765,32 +146699,32 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_roster_by_pk": [ - 4264, + 4320, { "player_steam_id": [ - 257, + 259, "bigint!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_alerts": [ - 4309, + 4365, { "distinct_on": [ - 4323, + 4379, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -145800,19 +146734,19 @@ export default { 40 ], "order_by": [ - 4321, + 4377, "[team_scrim_alerts_order_by!]" ], "where": [ - 4313 + 4369 ] } ], "team_scrim_alerts_aggregate": [ - 4310, + 4366, { "distinct_on": [ - 4323, + 4379, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -145822,28 +146756,28 @@ export default { 40 ], "order_by": [ - 4321, + 4377, "[team_scrim_alerts_order_by!]" ], "where": [ - 4313 + 4369 ] } ], "team_scrim_alerts_by_pk": [ - 4309, + 4365, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_availability": [ - 4336, + 4392, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -145853,19 +146787,19 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "team_scrim_availability_aggregate": [ - 4337, + 4393, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -145875,28 +146809,28 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "team_scrim_availability_by_pk": [ - 4336, + 4392, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4364, + 4420, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -145906,19 +146840,19 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "team_scrim_request_proposals_aggregate": [ - 4365, + 4421, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -145928,28 +146862,28 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "team_scrim_request_proposals_by_pk": [ - 4364, + 4420, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_requests": [ - 4405, + 4461, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -145959,19 +146893,19 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], "team_scrim_requests_aggregate": [ - 4406, + 4462, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -145981,28 +146915,28 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], "team_scrim_requests_by_pk": [ - 4405, + 4461, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_settings": [ - 4451, + 4507, { "distinct_on": [ - 4466, + 4522, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -146012,19 +146946,19 @@ export default { 40 ], "order_by": [ - 4464, + 4520, "[team_scrim_settings_order_by!]" ], "where": [ - 4455 + 4511 ] } ], "team_scrim_settings_aggregate": [ - 4452, + 4508, { "distinct_on": [ - 4466, + 4522, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -146034,28 +146968,28 @@ export default { 40 ], "order_by": [ - 4464, + 4520, "[team_scrim_settings_order_by!]" ], "where": [ - 4455 + 4511 ] } ], "team_scrim_settings_by_pk": [ - 4451, + 4507, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_suggestions": [ - 4479, + 4535, { "distinct_on": [ - 4493, + 4549, "[team_suggestions_select_column!]" ], "limit": [ @@ -146065,19 +146999,19 @@ export default { 40 ], "order_by": [ - 4491, + 4547, "[team_suggestions_order_by!]" ], "where": [ - 4483 + 4539 ] } ], "team_suggestions_aggregate": [ - 4480, + 4536, { "distinct_on": [ - 4493, + 4549, "[team_suggestions_select_column!]" ], "limit": [ @@ -146087,28 +147021,28 @@ export default { 40 ], "order_by": [ - 4491, + 4547, "[team_suggestions_order_by!]" ], "where": [ - 4483 + 4539 ] } ], "team_suggestions_by_pk": [ - 4479, + 4535, { "id": [ - 5053, + 5109, "uuid!" ] } ], "teams": [ - 4506, + 4562, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -146118,19 +147052,19 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "teams_aggregate": [ - 4507, + 4563, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -146140,19 +147074,19 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "teams_by_pk": [ - 4506, + 4562, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -146161,10 +147095,10 @@ export default { 93 ], "tournament_awards": [ - 4555, + 4611, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -146174,19 +147108,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_awards_aggregate": [ - 4556, + 4612, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -146196,28 +147130,28 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_awards_by_pk": [ - 4555, + 4611, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_brackets": [ - 4597, + 4653, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -146227,19 +147161,19 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "tournament_brackets_aggregate": [ - 4598, + 4654, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -146249,28 +147183,28 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "tournament_brackets_by_pk": [ - 4597, + 4653, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_categories": [ - 4643, + 4699, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -146280,19 +147214,19 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "tournament_categories_aggregate": [ - 4644, + 4700, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -146302,32 +147236,32 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "tournament_categories_by_pk": [ - 4643, + 4699, { "category": [ - 1312, + 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_organizer_teams": [ - 4667, + 4723, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -146337,19 +147271,19 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "tournament_organizer_teams_aggregate": [ - 4668, + 4724, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -146359,32 +147293,32 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "tournament_organizer_teams_by_pk": [ - 4667, + 4723, { "team_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_organizers": [ - 4691, + 4747, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -146394,19 +147328,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_organizers_aggregate": [ - 4692, + 4748, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -146416,32 +147350,32 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_organizers_by_pk": [ - 4691, + 4747, { "steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_prizes": [ - 4732, + 4788, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -146451,19 +147385,19 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "tournament_prizes_aggregate": [ - 4733, + 4789, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -146473,28 +147407,28 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "tournament_prizes_by_pk": [ - 4732, + 4788, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_stage_windows": [ - 4773, + 4829, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -146504,19 +147438,19 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], "tournament_stage_windows_aggregate": [ - 4774, + 4830, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -146526,28 +147460,28 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], "tournament_stage_windows_by_pk": [ - 4773, + 4829, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_stages": [ - 4814, + 4870, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -146557,19 +147491,19 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "tournament_stages_aggregate": [ - 4815, + 4871, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -146579,28 +147513,28 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "tournament_stages_by_pk": [ - 4814, + 4870, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_team_invites": [ - 4865, + 4921, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -146610,19 +147544,19 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], "tournament_team_invites_aggregate": [ - 4866, + 4922, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -146632,28 +147566,28 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], "tournament_team_invites_by_pk": [ - 4865, + 4921, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_team_roster": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -146663,19 +147597,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_team_roster_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -146685,32 +147619,32 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_team_roster_by_pk": [ - 4906, + 4962, { "player_steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_teams": [ - 4947, + 5003, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -146720,19 +147654,19 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "tournament_teams_aggregate": [ - 4948, + 5004, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -146742,28 +147676,28 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "tournament_teams_by_pk": [ - 4947, + 5003, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournaments": [ - 4989, + 5045, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -146773,19 +147707,19 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_aggregate": [ - 4990, + 5046, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -146795,28 +147729,28 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_by_pk": [ - 4989, + 5045, { "id": [ - 5053, + 5109, "uuid!" ] } ], "v_event_player_stats": [ - 5056, + 5112, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -146826,19 +147760,19 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "v_event_player_stats_aggregate": [ - 5057, + 5113, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -146848,19 +147782,19 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "v_gpu_pool_status": [ - 5107, + 5163, { "distinct_on": [ - 5115, + 5171, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -146870,19 +147804,19 @@ export default { 40 ], "order_by": [ - 5114, + 5170, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5111 + 5167 ] } ], "v_gpu_pool_status_aggregate": [ - 5108, + 5164, { "distinct_on": [ - 5115, + 5171, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -146892,19 +147826,19 @@ export default { 40 ], "order_by": [ - 5114, + 5170, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5111 + 5167 ] } ], "v_league_division_standings": [ - 5125, + 5181, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -146914,19 +147848,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "v_league_division_standings_aggregate": [ - 5126, + 5182, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -146936,19 +147870,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "v_league_season_player_stats": [ - 5158, + 5214, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -146958,19 +147892,19 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], "v_league_season_player_stats_aggregate": [ - 5159, + 5215, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -146980,19 +147914,19 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], "v_match_captains": [ - 5209, + 5265, { "distinct_on": [ - 5221, + 5277, "[v_match_captains_select_column!]" ], "limit": [ @@ -147002,19 +147936,19 @@ export default { 40 ], "order_by": [ - 5220, + 5276, "[v_match_captains_order_by!]" ], "where": [ - 5213 + 5269 ] } ], "v_match_captains_aggregate": [ - 5210, + 5266, { "distinct_on": [ - 5221, + 5277, "[v_match_captains_select_column!]" ], "limit": [ @@ -147024,19 +147958,19 @@ export default { 40 ], "order_by": [ - 5220, + 5276, "[v_match_captains_order_by!]" ], "where": [ - 5213 + 5269 ] } ], "v_match_clutches": [ - 5233, + 5289, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -147046,19 +147980,19 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], "v_match_clutches_aggregate": [ - 5234, + 5290, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -147068,19 +148002,19 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], "v_match_kill_pairs": [ - 5266, + 5322, { "distinct_on": [ - 5274, + 5330, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -147090,19 +148024,19 @@ export default { 40 ], "order_by": [ - 5273, + 5329, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5270 + 5326 ] } ], "v_match_kill_pairs_aggregate": [ - 5267, + 5323, { "distinct_on": [ - 5274, + 5330, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -147112,19 +148046,19 @@ export default { 40 ], "order_by": [ - 5273, + 5329, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5270 + 5326 ] } ], "v_match_lineup_buy_types": [ - 5284, + 5340, { "distinct_on": [ - 5292, + 5348, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -147134,19 +148068,19 @@ export default { 40 ], "order_by": [ - 5291, + 5347, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5288 + 5344 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5285, + 5341, { "distinct_on": [ - 5292, + 5348, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -147156,19 +148090,19 @@ export default { 40 ], "order_by": [ - 5291, + 5347, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5288 + 5344 ] } ], "v_match_lineup_map_stats": [ - 5302, + 5358, { "distinct_on": [ - 5310, + 5366, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -147178,19 +148112,19 @@ export default { 40 ], "order_by": [ - 5309, + 5365, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5306 + 5362 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5303, + 5359, { "distinct_on": [ - 5310, + 5366, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -147200,19 +148134,19 @@ export default { 40 ], "order_by": [ - 5309, + 5365, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5306 + 5362 ] } ], "v_match_map_backup_rounds": [ - 5320, + 5376, { "distinct_on": [ - 5331, + 5387, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -147222,19 +148156,19 @@ export default { 40 ], "order_by": [ - 5330, + 5386, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5324 + 5380 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5321, + 5377, { "distinct_on": [ - 5331, + 5387, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -147244,19 +148178,19 @@ export default { 40 ], "order_by": [ - 5330, + 5386, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5324 + 5380 ] } ], "v_match_player_buy_types": [ - 5343, + 5399, { "distinct_on": [ - 5351, + 5407, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -147266,19 +148200,19 @@ export default { 40 ], "order_by": [ - 5350, + 5406, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5347 + 5403 ] } ], "v_match_player_buy_types_aggregate": [ - 5344, + 5400, { "distinct_on": [ - 5351, + 5407, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -147288,19 +148222,19 @@ export default { 40 ], "order_by": [ - 5350, + 5406, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5347 + 5403 ] } ], "v_match_player_opening_duels": [ - 5361, + 5417, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -147310,19 +148244,19 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "v_match_player_opening_duels_aggregate": [ - 5362, + 5418, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -147332,19 +148266,19 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "v_player_arch_nemesis": [ - 5394, + 5450, { "distinct_on": [ - 5402, + 5458, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -147354,19 +148288,19 @@ export default { 40 ], "order_by": [ - 5401, + 5457, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5398 + 5454 ] } ], "v_player_arch_nemesis_aggregate": [ - 5395, + 5451, { "distinct_on": [ - 5402, + 5458, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -147376,19 +148310,19 @@ export default { 40 ], "order_by": [ - 5401, + 5457, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5398 + 5454 ] } ], "v_player_damage": [ - 5412, + 5468, { "distinct_on": [ - 5420, + 5476, "[v_player_damage_select_column!]" ], "limit": [ @@ -147398,19 +148332,19 @@ export default { 40 ], "order_by": [ - 5419, + 5475, "[v_player_damage_order_by!]" ], "where": [ - 5416 + 5472 ] } ], "v_player_damage_aggregate": [ - 5413, + 5469, { "distinct_on": [ - 5420, + 5476, "[v_player_damage_select_column!]" ], "limit": [ @@ -147420,19 +148354,19 @@ export default { 40 ], "order_by": [ - 5419, + 5475, "[v_player_damage_order_by!]" ], "where": [ - 5416 + 5472 ] } ], "v_player_elo": [ - 5430, + 5486, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -147442,19 +148376,19 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "v_player_elo_aggregate": [ - 5431, + 5487, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -147464,19 +148398,19 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "v_player_map_losses": [ - 5481, + 5537, { "distinct_on": [ - 5489, + 5545, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -147486,19 +148420,19 @@ export default { 40 ], "order_by": [ - 5488, + 5544, "[v_player_map_losses_order_by!]" ], "where": [ - 5485 + 5541 ] } ], "v_player_map_losses_aggregate": [ - 5482, + 5538, { "distinct_on": [ - 5489, + 5545, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -147508,19 +148442,19 @@ export default { 40 ], "order_by": [ - 5488, + 5544, "[v_player_map_losses_order_by!]" ], "where": [ - 5485 + 5541 ] } ], "v_player_map_wins": [ - 5499, + 5555, { "distinct_on": [ - 5507, + 5563, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -147530,19 +148464,19 @@ export default { 40 ], "order_by": [ - 5506, + 5562, "[v_player_map_wins_order_by!]" ], "where": [ - 5503 + 5559 ] } ], "v_player_map_wins_aggregate": [ - 5500, + 5556, { "distinct_on": [ - 5507, + 5563, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -147552,19 +148486,19 @@ export default { 40 ], "order_by": [ - 5506, + 5562, "[v_player_map_wins_order_by!]" ], "where": [ - 5503 + 5559 ] } ], "v_player_match_head_to_head": [ - 5517, + 5573, { "distinct_on": [ - 5525, + 5581, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -147574,19 +148508,19 @@ export default { 40 ], "order_by": [ - 5524, + 5580, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5521 + 5577 ] } ], "v_player_match_head_to_head_aggregate": [ - 5518, + 5574, { "distinct_on": [ - 5525, + 5581, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -147596,19 +148530,19 @@ export default { 40 ], "order_by": [ - 5524, + 5580, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5521 + 5577 ] } ], "v_player_match_map_hltv": [ - 5535, + 5591, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -147618,19 +148552,19 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "v_player_match_map_hltv_aggregate": [ - 5536, + 5592, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -147640,19 +148574,19 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "v_player_match_map_roles": [ - 5572, + 5628, { "distinct_on": [ - 5580, + 5636, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -147662,19 +148596,19 @@ export default { 40 ], "order_by": [ - 5579, + 5635, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5576 + 5632 ] } ], "v_player_match_map_roles_aggregate": [ - 5573, + 5629, { "distinct_on": [ - 5580, + 5636, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -147684,19 +148618,19 @@ export default { 40 ], "order_by": [ - 5579, + 5635, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5576 + 5632 ] } ], "v_player_match_performance": [ - 5590, + 5646, { "distinct_on": [ - 5598, + 5654, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -147706,19 +148640,19 @@ export default { 40 ], "order_by": [ - 5597, + 5653, "[v_player_match_performance_order_by!]" ], "where": [ - 5594 + 5650 ] } ], "v_player_match_performance_aggregate": [ - 5591, + 5647, { "distinct_on": [ - 5598, + 5654, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -147728,19 +148662,19 @@ export default { 40 ], "order_by": [ - 5597, + 5653, "[v_player_match_performance_order_by!]" ], "where": [ - 5594 + 5650 ] } ], "v_player_match_rating": [ - 5608, + 5664, { "distinct_on": [ - 5616, + 5672, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -147750,19 +148684,19 @@ export default { 40 ], "order_by": [ - 5615, + 5671, "[v_player_match_rating_order_by!]" ], "where": [ - 5612 + 5668 ] } ], "v_player_match_rating_aggregate": [ - 5609, + 5665, { "distinct_on": [ - 5616, + 5672, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -147772,19 +148706,19 @@ export default { 40 ], "order_by": [ - 5615, + 5671, "[v_player_match_rating_order_by!]" ], "where": [ - 5612 + 5668 ] } ], "v_player_multi_kills": [ - 5626, + 5682, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -147794,19 +148728,19 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], "v_player_multi_kills_aggregate": [ - 5627, + 5683, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -147816,19 +148750,19 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], "v_player_queue_partners": [ - 5659, + 5715, { "distinct_on": [ - 5667, + 5723, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -147838,19 +148772,19 @@ export default { 40 ], "order_by": [ - 5666, + 5722, "[v_player_queue_partners_order_by!]" ], "where": [ - 5663 + 5719 ] } ], "v_player_queue_partners_aggregate": [ - 5660, + 5716, { "distinct_on": [ - 5667, + 5723, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -147860,19 +148794,19 @@ export default { 40 ], "order_by": [ - 5666, + 5722, "[v_player_queue_partners_order_by!]" ], "where": [ - 5663 + 5719 ] } ], "v_player_weapon_damage": [ - 5677, + 5733, { "distinct_on": [ - 5685, + 5741, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -147882,19 +148816,19 @@ export default { 40 ], "order_by": [ - 5684, + 5740, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5681 + 5737 ] } ], "v_player_weapon_damage_aggregate": [ - 5678, + 5734, { "distinct_on": [ - 5685, + 5741, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -147904,19 +148838,19 @@ export default { 40 ], "order_by": [ - 5684, + 5740, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5681 + 5737 ] } ], "v_player_weapon_kills": [ - 5695, + 5751, { "distinct_on": [ - 5703, + 5759, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -147926,19 +148860,19 @@ export default { 40 ], "order_by": [ - 5702, + 5758, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5699 + 5755 ] } ], "v_player_weapon_kills_aggregate": [ - 5696, + 5752, { "distinct_on": [ - 5703, + 5759, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -147948,19 +148882,19 @@ export default { 40 ], "order_by": [ - 5702, + 5758, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5699 + 5755 ] } ], "v_pool_maps": [ - 5713, + 5769, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -147970,19 +148904,19 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], "v_pool_maps_aggregate": [ - 5714, + 5770, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -147992,19 +148926,19 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], "v_steam_account_pool_status": [ - 5737, + 5793, { "distinct_on": [ - 5745, + 5801, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -148014,19 +148948,19 @@ export default { 40 ], "order_by": [ - 5744, + 5800, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5741 + 5797 ] } ], "v_steam_account_pool_status_aggregate": [ - 5738, + 5794, { "distinct_on": [ - 5745, + 5801, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -148036,19 +148970,19 @@ export default { 40 ], "order_by": [ - 5744, + 5800, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5741 + 5797 ] } ], "v_team_ranks": [ - 5755, + 5811, { "distinct_on": [ - 5765, + 5821, "[v_team_ranks_select_column!]" ], "limit": [ @@ -148058,19 +148992,19 @@ export default { 40 ], "order_by": [ - 5764, + 5820, "[v_team_ranks_order_by!]" ], "where": [ - 5759 + 5815 ] } ], "v_team_ranks_aggregate": [ - 5756, + 5812, { "distinct_on": [ - 5765, + 5821, "[v_team_ranks_select_column!]" ], "limit": [ @@ -148080,19 +149014,19 @@ export default { 40 ], "order_by": [ - 5764, + 5820, "[v_team_ranks_order_by!]" ], "where": [ - 5759 + 5815 ] } ], "v_team_reputation": [ - 5775, + 5831, { "distinct_on": [ - 5785, + 5841, "[v_team_reputation_select_column!]" ], "limit": [ @@ -148102,19 +149036,19 @@ export default { 40 ], "order_by": [ - 5784, + 5840, "[v_team_reputation_order_by!]" ], "where": [ - 5779 + 5835 ] } ], "v_team_reputation_aggregate": [ - 5776, + 5832, { "distinct_on": [ - 5785, + 5841, "[v_team_reputation_select_column!]" ], "limit": [ @@ -148124,19 +149058,19 @@ export default { 40 ], "order_by": [ - 5784, + 5840, "[v_team_reputation_order_by!]" ], "where": [ - 5779 + 5835 ] } ], "v_team_stage_results": [ - 5795, + 5851, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -148146,19 +149080,19 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "v_team_stage_results_aggregate": [ - 5796, + 5852, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -148168,32 +149102,32 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "v_team_stage_results_by_pk": [ - 5795, + 5851, { "tournament_stage_id": [ - 5053, + 5109, "uuid!" ], "tournament_team_id": [ - 5053, + 5109, "uuid!" ] } ], "v_team_tournament_results": [ - 5855, + 5911, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -148203,19 +149137,19 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "v_team_tournament_results_aggregate": [ - 5856, + 5912, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -148225,19 +149159,19 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "v_tournament_player_stats": [ - 5906, + 5962, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -148247,19 +149181,19 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], "v_tournament_player_stats_aggregate": [ - 5907, + 5963, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -148269,14 +149203,17 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], + "webPushStatus": [ + 101 + ], "__typename": [ 80 ] @@ -148286,7 +149223,7 @@ export default { 57, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -148295,17 +149232,17 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4553 + 4609 ], "winning_lineup_id": [ - 5053 + 5109 ] } ], @@ -148313,7 +149250,7 @@ export default { 83, { "invite_id": [ - 5053, + 5109, "uuid!" ], "type": [ @@ -148326,7 +149263,7 @@ export default { 83, { "draftGameId": [ - 5053, + 5109, "uuid!" ], "steamId": [ @@ -148359,20 +149296,20 @@ export default { "String!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "approve_league_season_movements": [ - 2078, + 2080, { "args": [ - 187, + 189, "approve_league_season_movements_args!" ], "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -148382,11 +149319,11 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], @@ -148412,7 +149349,7 @@ export default { 83, { "game_server_node_id": [ - 5053, + 5109, "uuid!" ] } @@ -148433,7 +149370,7 @@ export default { 83, { "game_server_node_id": [ - 5053, + 5109, "uuid!" ] } @@ -148442,7 +149379,7 @@ export default { 83, { "job_id": [ - 5053, + 5109, "uuid!" ] } @@ -148451,7 +149388,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -148460,7 +149397,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -148478,7 +149415,7 @@ export default { 83, { "request_id": [ - 5053, + 5109, "uuid!" ] } @@ -148487,7 +149424,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -148496,7 +149433,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -148514,14 +149451,14 @@ export default { } ], "clone_league_season": [ - 2045, + 2047, { "args": [ - 312, + 314, "clone_league_season_args!" ], "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -148531,11 +149468,11 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], @@ -148543,11 +149480,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4553, + 4609, "timestamptz!" ], "request_id": [ - 5053, + 5109, "uuid!" ] } @@ -148568,7 +149505,7 @@ export default { 40 ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "preset": [ @@ -148603,7 +149540,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -148612,7 +149549,7 @@ export default { 16, { "settings": [ - 1842, + 1844, "jsonb!" ] } @@ -148629,7 +149566,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1842, + 1844, "jsonb!" ], "scheduled_at": [ @@ -148658,7 +149595,7 @@ export default { 83, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -148667,7 +149604,7 @@ export default { 83, { "clip_id": [ - 5053, + 5109, "uuid!" ] } @@ -148685,7 +149622,7 @@ export default { 83, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -148719,228 +149656,228 @@ export default { 83, { "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete__map_pool": [ - 108, + 110, { "where": [ - 103, + 105, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 100, + 102, { "map_id": [ - 5053, + 5109, "uuid!" ], "map_pool_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_abandoned_matches": [ - 136, + 138, { "where": [ - 128, + 130, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 119, + 121, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_api_keys": [ - 170, + 172, { "where": [ - 164, + 166, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 160, + 162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_award_recipients": [ - 205, + 207, { "where": [ - 197, + 199, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 188, + 190, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_awards": [ - 239, + 241, { "where": [ - 233, + 235, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 229, + 231, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_clip_render_jobs": [ - 285, + 287, { "where": [ - 274, + 276, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 262, + 264, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_custom_pages": [ - 328, + 330, { "where": [ - 319, + 321, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 314, + 316, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_db_backups": [ - 356, + 358, { "where": [ - 350, + 352, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 346, + 348, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_draft_game_picks": [ - 392, + 394, { "where": [ - 384, + 386, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 373, + 375, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_draft_game_players": [ - 437, + 439, { "where": [ - 429, + 431, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 418, + 420, { "draft_game_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_draft_games": [ - 482, + 484, { "where": [ - 474, + 476, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 463, + 465, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_e_award_sources": [ - 519, + 521, { "where": [ - 512, + 514, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 509, + 511, { "value": [ 80, @@ -148949,16 +149886,16 @@ export default { } ], "delete_e_award_tiers": [ - 539, + 541, { "where": [ - 532, + 534, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 529, + 531, { "value": [ 80, @@ -148967,16 +149904,16 @@ export default { } ], "delete_e_check_in_settings": [ - 559, + 561, { "where": [ - 552, + 554, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 549, + 551, { "value": [ 80, @@ -148985,16 +149922,16 @@ export default { } ], "delete_e_draft_game_captain_selection": [ - 579, + 581, { "where": [ - 572, + 574, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 569, + 571, { "value": [ 80, @@ -149003,16 +149940,16 @@ export default { } ], "delete_e_draft_game_draft_order": [ - 600, + 602, { "where": [ - 593, + 595, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 590, + 592, { "value": [ 80, @@ -149021,16 +149958,16 @@ export default { } ], "delete_e_draft_game_mode": [ - 621, + 623, { "where": [ - 614, + 616, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 611, + 613, { "value": [ 80, @@ -149039,16 +149976,16 @@ export default { } ], "delete_e_draft_game_player_status": [ - 642, + 644, { "where": [ - 635, + 637, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 632, + 634, { "value": [ 80, @@ -149057,16 +149994,16 @@ export default { } ], "delete_e_draft_game_status": [ - 663, + 665, { "where": [ - 656, + 658, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 653, + 655, { "value": [ 80, @@ -149075,16 +150012,16 @@ export default { } ], "delete_e_event_media_access": [ - 684, + 686, { "where": [ - 677, + 679, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 674, + 676, { "value": [ 80, @@ -149093,16 +150030,16 @@ export default { } ], "delete_e_event_visibility": [ - 704, + 706, { "where": [ - 697, + 699, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 694, + 696, { "value": [ 80, @@ -149111,16 +150048,16 @@ export default { } ], "delete_e_friend_status": [ - 724, + 726, { "where": [ - 717, + 719, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 714, + 716, { "value": [ 80, @@ -149129,16 +150066,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 745, + 747, { "where": [ - 738, + 740, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 735, + 737, { "value": [ 80, @@ -149147,16 +150084,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 765, + 767, { "where": [ - 758, + 760, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 755, + 757, { "value": [ 80, @@ -149165,16 +150102,16 @@ export default { } ], "delete_e_league_movement_types": [ - 786, + 788, { "where": [ - 779, + 781, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 776, + 778, { "value": [ 80, @@ -149183,16 +150120,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 807, + 809, { "where": [ - 800, + 802, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 797, + 799, { "value": [ 80, @@ -149201,16 +150138,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 828, + 830, { "where": [ - 821, + 823, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 818, + 820, { "value": [ 80, @@ -149219,16 +150156,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 849, + 851, { "where": [ - 842, + 844, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 839, + 841, { "value": [ 80, @@ -149237,16 +150174,16 @@ export default { } ], "delete_e_lobby_access": [ - 870, + 872, { "where": [ - 863, + 865, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 860, + 862, { "value": [ 80, @@ -149255,16 +150192,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 891, + 893, { "where": [ - 884, + 886, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 881, + 883, { "value": [ 80, @@ -149273,16 +150210,16 @@ export default { } ], "delete_e_map_pool_types": [ - 911, + 913, { "where": [ - 904, + 906, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 901, + 903, { "value": [ 80, @@ -149291,16 +150228,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 932, + 934, { "where": [ - 925, + 927, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 922, + 924, { "value": [ 80, @@ -149309,16 +150246,16 @@ export default { } ], "delete_e_match_map_status": [ - 952, + 954, { "where": [ - 945, + 947, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 942, + 944, { "value": [ 80, @@ -149327,16 +150264,16 @@ export default { } ], "delete_e_match_mode": [ - 973, + 975, { "where": [ - 966, + 968, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 963, + 965, { "value": [ 80, @@ -149345,16 +150282,16 @@ export default { } ], "delete_e_match_party_sources": [ - 993, + 995, { "where": [ - 986, + 988, "e_match_party_sources_bool_exp!" ] } ], "delete_e_match_party_sources_by_pk": [ - 983, + 985, { "value": [ 80, @@ -149363,16 +150300,16 @@ export default { } ], "delete_e_match_status": [ - 1013, + 1015, { "where": [ - 1006, + 1008, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 1003, + 1005, { "value": [ 80, @@ -149381,16 +150318,16 @@ export default { } ], "delete_e_match_types": [ - 1034, + 1036, { "where": [ - 1027, + 1029, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1024, + 1026, { "value": [ 80, @@ -149399,16 +150336,16 @@ export default { } ], "delete_e_notification_types": [ - 1055, + 1057, { "where": [ - 1048, + 1050, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1045, + 1047, { "value": [ 80, @@ -149417,16 +150354,16 @@ export default { } ], "delete_e_objective_types": [ - 1075, + 1077, { "where": [ - 1068, + 1070, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1065, + 1067, { "value": [ 80, @@ -149435,16 +150372,16 @@ export default { } ], "delete_e_player_roles": [ - 1095, + 1097, { "where": [ - 1088, + 1090, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1085, + 1087, { "value": [ 80, @@ -149453,16 +150390,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 1115, + 1117, { "where": [ - 1108, + 1110, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1105, + 1107, { "value": [ 80, @@ -149471,16 +150408,16 @@ export default { } ], "delete_e_ready_settings": [ - 1135, + 1137, { "where": [ - 1128, + 1130, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1125, + 1127, { "value": [ 80, @@ -149489,16 +150426,16 @@ export default { } ], "delete_e_sanction_types": [ - 1155, + 1157, { "where": [ - 1148, + 1150, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1145, + 1147, { "value": [ 80, @@ -149507,16 +150444,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 1176, + 1178, { "where": [ - 1169, + 1171, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1166, + 1168, { "value": [ 80, @@ -149525,16 +150462,16 @@ export default { } ], "delete_e_server_types": [ - 1196, + 1198, { "where": [ - 1189, + 1191, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1186, + 1188, { "value": [ 80, @@ -149543,16 +150480,16 @@ export default { } ], "delete_e_sides": [ - 1216, + 1218, { "where": [ - 1209, + 1211, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1206, + 1208, { "value": [ 80, @@ -149561,16 +150498,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1236, + 1238, { "where": [ - 1229, + 1231, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1226, + 1228, { "value": [ 80, @@ -149579,16 +150516,16 @@ export default { } ], "delete_e_team_roles": [ - 1256, + 1258, { "where": [ - 1249, + 1251, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1246, + 1248, { "value": [ 80, @@ -149597,16 +150534,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1277, + 1279, { "where": [ - 1270, + 1272, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1267, + 1269, { "value": [ 80, @@ -149615,16 +150552,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1297, + 1299, { "where": [ - 1290, + 1292, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1287, + 1289, { "value": [ 80, @@ -149633,16 +150570,16 @@ export default { } ], "delete_e_tournament_categories": [ - 1317, + 1319, { "where": [ - 1310, + 1312, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1307, + 1309, { "value": [ 80, @@ -149651,16 +150588,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1338, + 1340, { "where": [ - 1331, + 1333, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1328, + 1330, { "value": [ 80, @@ -149669,16 +150606,16 @@ export default { } ], "delete_e_tournament_status": [ - 1359, + 1361, { "where": [ - 1352, + 1354, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1349, + 1351, { "value": [ 80, @@ -149687,16 +150624,16 @@ export default { } ], "delete_e_utility_types": [ - 1380, + 1382, { "where": [ - 1373, + 1375, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1370, + 1372, { "value": [ 80, @@ -149705,16 +150642,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1400, + 1402, { "where": [ - 1393, + 1395, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1390, + 1392, { "value": [ 80, @@ -149723,16 +150660,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1420, + 1422, { "where": [ - 1413, + 1415, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1410, + 1412, { "value": [ 80, @@ -149741,206 +150678,206 @@ export default { } ], "delete_event_match_links": [ - 1438, + 1440, { "where": [ - 1433, + 1435, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1430, + 1432, { "event_id": [ - 5053, + 5109, "uuid!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_event_media": [ - 1465, + 1467, { "where": [ - 1457, + 1459, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1448, + 1450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_event_media_players": [ - 1487, + 1489, { "where": [ - 1479, + 1481, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1470, + 1472, { "media_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_event_organizers": [ - 1548, + 1550, { "where": [ - 1540, + 1542, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1531, + 1533, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_event_players": [ - 1589, + 1591, { "where": [ - 1581, + 1583, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1572, + 1574, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_event_teams": [ - 1627, + 1629, { "where": [ - 1620, + 1622, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1613, + 1615, { "event_id": [ - 5053, + 5109, "uuid!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_event_tournaments": [ - 1651, + 1653, { "where": [ - 1644, + 1646, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1637, + 1639, { "event_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_events": [ - 1671, + 1673, { "where": [ - 1665, + 1667, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1661, + 1663, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_friends": [ - 1701, + 1703, { "where": [ - 1695, + 1697, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1691, + 1693, { "other_player_steam_id": [ - 257, + 259, "bigint!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_game_server_nodes": [ - 1741, + 1743, { "where": [ - 1730, + 1732, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1718, + 1720, { "id": [ 80, @@ -149949,16 +150886,16 @@ export default { } ], "delete_game_versions": [ - 1783, + 1785, { "where": [ - 1774, + 1776, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1769, + 1771, { "build_id": [ 40, @@ -149967,555 +150904,555 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1816, + 1818, { "where": [ - 1807, + 1809, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1802, + 1804, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1854, + 1856, { "where": [ - 1849, + 1851, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1879, + 1881, { "where": [ - 1873, + 1875, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1869, + 1871, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_match_weeks": [ - 1914, + 1916, { "where": [ - 1906, + 1908, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1897, + 1899, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1955, + 1957, { "where": [ - 1947, + 1949, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1938, + 1940, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1996, + 1998, { "where": [ - 1988, + 1990, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1979, + 1981, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_season_divisions": [ - 2034, + 2036, { "where": [ - 2027, + 2029, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2020, + 2022, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_seasons": [ - 2059, + 2061, { "where": [ - 2050, + 2052, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2045, + 2047, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_team_movements": [ - 2095, + 2097, { "where": [ - 2087, + 2089, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2078, + 2080, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_team_rosters": [ - 2136, + 2138, { "where": [ - 2128, + 2130, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2119, + 2121, { "league_team_season_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_league_team_seasons": [ - 2177, + 2179, { "where": [ - 2169, + 2171, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2160, + 2162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_league_teams": [ - 2210, + 2212, { "where": [ - 2205, + 2207, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2202, + 2204, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_lobbies": [ - 2229, + 2231, { "where": [ - 2224, + 2226, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2221, + 2223, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_lobby_players": [ - 2259, + 2261, { "where": [ - 2251, + 2253, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2240, + 2242, { "lobby_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_map_pools": [ - 2293, + 2295, { "where": [ - 2288, + 2290, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2285, + 2287, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_maps": [ - 2320, + 2322, { "where": [ - 2313, + 2315, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2304, + 2306, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_camera_tokens": [ - 2343, + 2345, { "where": [ - 2337, + 2339, "match_camera_tokens_bool_exp!" ] } ], "delete_match_camera_tokens_by_pk": [ - 2333, + 2335, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_clips": [ - 2377, + 2379, { "where": [ - 2369, + 2371, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2360, + 2362, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2423, + 2425, { "where": [ - 2412, + 2414, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2402, + 2404, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_lineup_players": [ - 2467, + 2469, { "where": [ - 2459, + 2461, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2448, + 2450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_lineups": [ - 2510, + 2512, { "where": [ - 2502, + 2504, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2493, + 2495, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_map_demos": [ - 2558, + 2560, { "where": [ - 2547, + 2549, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2535, + 2537, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_map_rounds": [ - 2603, + 2605, { "where": [ - 2595, + 2597, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2586, + 2588, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2643, + 2645, { "where": [ - 2636, + 2638, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2627, + 2629, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_maps": [ - 2672, + 2674, { "where": [ - 2664, + 2666, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2655, + 2657, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_options": [ - 2707, + 2709, { "where": [ - 2701, + 2703, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2697, + 2699, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2741, + 2743, { "where": [ - 2734, + 2736, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2725, + 2727, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_streams": [ - 2776, + 2778, { "where": [ - 2765, + 2767, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2753, + 2755, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2811, + 2813, { "where": [ - 2806, + 2808, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2803, + 2805, { "type": [ - 740, + 742, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2838, + 2840, { "where": [ - 2830, + 2832, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2821, + 2823, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2871, + 2873, { "where": [ - 2866, + 2868, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2863, + 2865, { "name": [ 80, @@ -150524,130 +151461,156 @@ export default { } ], "delete_my_friends": [ - 2903, + 2905, { "where": [ - 2893, + 2895, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2937, + 2939, { "where": [ - 2931, + 2933, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2927, + 2929, { "id": [ - 5053, + 5109, "uuid!" ] } ], + "delete_notification_preferences": [ + 2966, + { + "where": [ + 2960, + "notification_preferences_bool_exp!" + ] + } + ], + "delete_notification_preferences_by_pk": [ + 2956, + { + "channel": [ + 80, + "String!" + ], + "key": [ + 80, + "String!" + ], + "steam_id": [ + 259, + "bigint!" + ] + } + ], "delete_notifications": [ - 2977, + 3006, { "where": [ - 2966, + 2995, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2954, + 2983, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3024, + 3053, { "where": [ - 3016, + 3045, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3007, + 3036, { "steam_id": [ - 257, + 259, "bigint!" ], "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "delete_pending_match_imports": [ - 3058, + 3087, { "where": [ - 3052, + 3081, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3048, + 3077, { "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3086, + 3115, { "where": [ - 3080, + 3109, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3076, + 3105, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3120, + 3149, { "where": [ - 3112, + 3141, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3103, + 3132, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "weapon_class": [ @@ -150657,179 +151620,179 @@ export default { } ], "delete_player_assists": [ - 3163, + 3192, { "where": [ - 3155, + 3184, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3144, + 3173, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_player_damages": [ - 3224, + 3253, { "where": [ - 3216, + 3245, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3207, + 3236, { "id": [ - 5053, + 5109, "uuid!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_player_elo": [ - 3258, + 3287, { "where": [ - 3252, + 3281, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3248, + 3277, { "match_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "type": [ - 1029, + 1031, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3292, + 3321, { "where": [ - 3284, + 3313, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3275, + 3304, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_player_flashes": [ - 3335, + 3364, { "where": [ - 3327, + 3356, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3316, + 3345, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_player_kills": [ - 3421, + 3450, { "where": [ - 3372, + 3401, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3361, + 3390, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3390, + 3419, { "where": [ - 3382, + 3411, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3373, + 3402, { "player_steam_id": [ - 257, + 259, "bigint!" ], "with": [ @@ -150839,258 +151802,258 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3456, + 3485, { "where": [ - 3451, + 3480, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3487, + 3516, { "where": [ - 3479, + 3508, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3470, + 3499, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_player_objectives": [ - 3579, + 3608, { "where": [ - 3571, + 3600, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3562, + 3591, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3638, + 3667, { "where": [ - 3630, + 3659, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3621, + 3650, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_player_sanctions": [ - 3679, + 3708, { "where": [ - 3671, + 3700, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3662, + 3691, { "created_at": [ - 4553, + 4609, "timestamptz!" ], "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_player_season_stats": [ - 3730, + 3759, { "where": [ - 3722, + 3751, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3703, + 3732, { "player_steam_id": [ - 257, + 259, "bigint!" ], "season_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_player_stats": [ - 3772, + 3801, { "where": [ - 3766, + 3795, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3762, + 3791, { "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3804, + 3833, { "where": [ - 3795, + 3824, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3790, + 3819, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3832, + 3861, { "where": [ - 3826, + 3855, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3822, + 3851, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_player_unused_utility": [ - 3866, + 3895, { "where": [ - 3858, + 3887, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3849, + 3878, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_player_utility": [ - 3907, + 3936, { "where": [ - 3899, + 3928, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3890, + 3919, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "delete_players": [ - 3974, + 4003, { "where": [ - 3968, + 3997, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3964, + 3993, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "delete_plugin_versions": [ - 4002, + 4031, { "where": [ - 3996, + 4025, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3992, + 4021, { "runtime": [ - 1110, + 1112, "e_plugin_runtimes_enum!" ], "version": [ @@ -151099,35 +152062,53 @@ export default { ] } ], + "delete_push_subscriptions": [ + 4058, + { + "where": [ + 4052, + "push_subscriptions_bool_exp!" + ] + } + ], + "delete_push_subscriptions_by_pk": [ + 4048, + { + "id": [ + 5109, + "uuid!" + ] + } + ], "delete_seasons": [ - 4033, + 4089, { "where": [ - 4027, + 4083, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4023, + 4079, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_server_regions": [ - 4060, + 4116, { "where": [ - 4055, + 4111, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4051, + 4107, { "value": [ 80, @@ -151136,34 +152117,34 @@ export default { } ], "delete_servers": [ - 4097, + 4153, { "where": [ - 4089, + 4145, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4078, + 4134, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_settings": [ - 4132, + 4188, { "where": [ - 4127, + 4183, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4124, + 4180, { "name": [ 80, @@ -151172,511 +152153,511 @@ export default { } ], "delete_steam_account_claims": [ - 4158, + 4214, { "where": [ - 4151, + 4207, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4144, + 4200, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_steam_accounts": [ - 4178, + 4234, { "where": [ - 4172, + 4228, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4168, + 4224, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_system_alerts": [ - 4206, + 4262, { "where": [ - 4200, + 4256, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4196, + 4252, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_invites": [ - 4240, + 4296, { "where": [ - 4232, + 4288, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4223, + 4279, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_roster": [ - 4283, + 4339, { "where": [ - 4275, + 4331, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4264, + 4320, { "player_steam_id": [ - 257, + 259, "bigint!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4319, + 4375, { "where": [ - 4313, + 4369, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4309, + 4365, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4352, + 4408, { "where": [ - 4345, + 4401, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4336, + 4392, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4381, + 4437, { "where": [ - 4373, + 4429, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4364, + 4420, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4424, + 4480, { "where": [ - 4416, + 4472, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4405, + 4461, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4461, + 4517, { "where": [ - 4455, + 4511, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4451, + 4507, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_team_suggestions": [ - 4489, + 4545, { "where": [ - 4483, + 4539, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4479, + 4535, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_teams": [ - 4525, + 4581, { "where": [ - 4517, + 4573, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4506, + 4562, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_awards": [ - 4572, + 4628, { "where": [ - 4564, + 4620, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4555, + 4611, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_brackets": [ - 4616, + 4672, { "where": [ - 4608, + 4664, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4597, + 4653, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_categories": [ - 4657, + 4713, { "where": [ - 4650, + 4706, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4643, + 4699, { "category": [ - 1312, + 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4681, + 4737, { "where": [ - 4674, + 4730, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4667, + 4723, { "team_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_organizers": [ - 4708, + 4764, { "where": [ - 4700, + 4756, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4691, + 4747, { "steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_prizes": [ - 4749, + 4805, { "where": [ - 4741, + 4797, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4732, + 4788, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4790, + 4846, { "where": [ - 4782, + 4838, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4773, + 4829, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_stages": [ - 4837, + 4893, { "where": [ - 4826, + 4882, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4814, + 4870, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4882, + 4938, { "where": [ - 4874, + 4930, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4865, + 4921, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4923, + 4979, { "where": [ - 4915, + 4971, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4906, + 4962, { "player_steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournament_teams": [ - 4964, + 5020, { "where": [ - 4956, + 5012, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4947, + 5003, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_tournaments": [ - 5018, + 5074, { "where": [ - 5010, + 5066, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4989, + 5045, { "id": [ - 5053, + 5109, "uuid!" ] } ], "delete_v_match_captains": [ - 5218, + 5274, { "where": [ - 5213, + 5269, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5329, + 5385, { "where": [ - 5324, + 5380, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5551, + 5607, { "where": [ - 5544, + 5600, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5728, + 5784, { "where": [ - 5722, + 5778, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5822, + 5878, { "where": [ - 5814, + 5870, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5795, + 5851, { "tournament_stage_id": [ - 5053, + 5109, "uuid!" ], "tournament_team_id": [ - 5053, + 5109, "uuid!" ] } @@ -151685,7 +152666,7 @@ export default { 83, { "invite_id": [ - 5053, + 5109, "uuid!" ], "type": [ @@ -151702,7 +152683,7 @@ export default { "String!" ], "steam_id": [ - 257, + 259, "bigint!" ] } @@ -151711,20 +152692,23 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "winning_lineup_id": [ - 5053, + 5109, "uuid!" ] } ], + "generateWebPushKeys": [ + 100 + ], "getLiveStreamSpecState": [ 45, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -151736,14 +152720,14 @@ export default { 4, { "award_id": [ - 5053, + 5109, "uuid!" ], "event_id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "note": [ 80 @@ -151752,3763 +152736,3811 @@ export default { 80 ], "season_id": [ - 5053 + 5109 ], "team_id": [ - 5053 + 5109 ], "tournament_id": [ - 5053 + 5109 ] } ], "insert__map_pool": [ - 108, + 110, { "objects": [ - 105, + 107, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 109 + 111 ] } ], "insert__map_pool_one": [ - 100, + 102, { "object": [ - 105, + 107, "_map_pool_insert_input!" ], "on_conflict": [ - 109 + 111 ] } ], "insert_abandoned_matches": [ - 136, + 138, { "objects": [ - 131, + 133, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 137 + 139 ] } ], "insert_abandoned_matches_one": [ - 119, + 121, { "object": [ - 131, + 133, "abandoned_matches_insert_input!" ], "on_conflict": [ - 137 + 139 ] } ], "insert_api_keys": [ - 170, + 172, { "objects": [ - 167, + 169, "[api_keys_insert_input!]!" ], "on_conflict": [ - 171 + 173 ] } ], "insert_api_keys_one": [ - 160, + 162, { "object": [ - 167, + 169, "api_keys_insert_input!" ], "on_conflict": [ - 171 + 173 ] } ], "insert_award_recipients": [ - 205, + 207, { "objects": [ - 200, + 202, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 206 + 208 ] } ], "insert_award_recipients_one": [ - 188, + 190, { "object": [ - 200, + 202, "award_recipients_insert_input!" ], "on_conflict": [ - 206 + 208 ] } ], "insert_awards": [ - 239, + 241, { "objects": [ - 236, + 238, "[awards_insert_input!]!" ], "on_conflict": [ - 241 + 243 ] } ], "insert_awards_one": [ - 229, + 231, { "object": [ - 236, + 238, "awards_insert_input!" ], "on_conflict": [ - 241 + 243 ] } ], "insert_clip_render_jobs": [ - 285, + 287, { "objects": [ - 280, + 282, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 286 + 288 ] } ], "insert_clip_render_jobs_one": [ - 262, + 264, { "object": [ - 280, + 282, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 286 + 288 ] } ], "insert_custom_pages": [ - 328, + 330, { "objects": [ - 325, + 327, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 329 + 331 ] } ], "insert_custom_pages_one": [ - 314, + 316, { "object": [ - 325, + 327, "custom_pages_insert_input!" ], "on_conflict": [ - 329 + 331 ] } ], "insert_db_backups": [ - 356, + 358, { "objects": [ - 353, + 355, "[db_backups_insert_input!]!" ], "on_conflict": [ - 357 + 359 ] } ], "insert_db_backups_one": [ - 346, + 348, { "object": [ - 353, + 355, "db_backups_insert_input!" ], "on_conflict": [ - 357 + 359 ] } ], "insert_draft_game_picks": [ - 392, + 394, { "objects": [ - 387, + 389, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 393 + 395 ] } ], "insert_draft_game_picks_one": [ - 373, + 375, { "object": [ - 387, + 389, "draft_game_picks_insert_input!" ], "on_conflict": [ - 393 + 395 ] } ], "insert_draft_game_players": [ - 437, + 439, { "objects": [ - 432, + 434, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 438 + 440 ] } ], "insert_draft_game_players_one": [ - 418, + 420, { "object": [ - 432, + 434, "draft_game_players_insert_input!" ], "on_conflict": [ - 438 + 440 ] } ], "insert_draft_games": [ - 482, + 484, { "objects": [ - 477, + 479, "[draft_games_insert_input!]!" ], "on_conflict": [ - 484 + 486 ] } ], "insert_draft_games_one": [ - 463, + 465, { "object": [ - 477, + 479, "draft_games_insert_input!" ], "on_conflict": [ - 484 + 486 ] } ], "insert_e_award_sources": [ - 519, + 521, { "objects": [ - 516, + 518, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 520 + 522 ] } ], "insert_e_award_sources_one": [ - 509, + 511, { "object": [ - 516, + 518, "e_award_sources_insert_input!" ], "on_conflict": [ - 520 + 522 ] } ], "insert_e_award_tiers": [ - 539, + 541, { "objects": [ - 536, + 538, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 540 + 542 ] } ], "insert_e_award_tiers_one": [ - 529, + 531, { "object": [ - 536, + 538, "e_award_tiers_insert_input!" ], "on_conflict": [ - 540 + 542 ] } ], "insert_e_check_in_settings": [ - 559, + 561, { "objects": [ - 556, + 558, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 560 + 562 ] } ], "insert_e_check_in_settings_one": [ - 549, + 551, { "object": [ - 556, + 558, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 560 + 562 ] } ], "insert_e_draft_game_captain_selection": [ - 579, + 581, { "objects": [ - 576, + 578, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 581 + 583 ] } ], "insert_e_draft_game_captain_selection_one": [ - 569, + 571, { "object": [ - 576, + 578, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 581 + 583 ] } ], "insert_e_draft_game_draft_order": [ - 600, + 602, { "objects": [ - 597, + 599, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 602 + 604 ] } ], "insert_e_draft_game_draft_order_one": [ - 590, + 592, { "object": [ - 597, + 599, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 602 + 604 ] } ], "insert_e_draft_game_mode": [ - 621, + 623, { "objects": [ - 618, + 620, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 623 + 625 ] } ], "insert_e_draft_game_mode_one": [ - 611, + 613, { "object": [ - 618, + 620, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 623 + 625 ] } ], "insert_e_draft_game_player_status": [ - 642, + 644, { "objects": [ - 639, + 641, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 644 + 646 ] } ], "insert_e_draft_game_player_status_one": [ - 632, + 634, { "object": [ - 639, + 641, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 644 + 646 ] } ], "insert_e_draft_game_status": [ - 663, + 665, { "objects": [ - 660, + 662, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 665 + 667 ] } ], "insert_e_draft_game_status_one": [ - 653, + 655, { "object": [ - 660, + 662, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 665 + 667 ] } ], "insert_e_event_media_access": [ - 684, + 686, { "objects": [ - 681, + 683, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 685 + 687 ] } ], "insert_e_event_media_access_one": [ - 674, + 676, { "object": [ - 681, + 683, "e_event_media_access_insert_input!" ], "on_conflict": [ - 685 + 687 ] } ], "insert_e_event_visibility": [ - 704, + 706, { "objects": [ - 701, + 703, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 705 + 707 ] } ], "insert_e_event_visibility_one": [ - 694, + 696, { "object": [ - 701, + 703, "e_event_visibility_insert_input!" ], "on_conflict": [ - 705 + 707 ] } ], "insert_e_friend_status": [ - 724, + 726, { "objects": [ - 721, + 723, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 726 + 728 ] } ], "insert_e_friend_status_one": [ - 714, + 716, { "object": [ - 721, + 723, "e_friend_status_insert_input!" ], "on_conflict": [ - 726 + 728 ] } ], "insert_e_game_cfg_types": [ - 745, + 747, { "objects": [ - 742, + 744, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 746 + 748 ] } ], "insert_e_game_cfg_types_one": [ - 735, + 737, { "object": [ - 742, + 744, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 746 + 748 ] } ], "insert_e_game_server_node_statuses": [ - 765, + 767, { "objects": [ - 762, + 764, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 767 + 769 ] } ], "insert_e_game_server_node_statuses_one": [ - 755, + 757, { "object": [ - 762, + 764, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 767 + 769 ] } ], "insert_e_league_movement_types": [ - 786, + 788, { "objects": [ - 783, + 785, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 788 + 790 ] } ], "insert_e_league_movement_types_one": [ - 776, + 778, { "object": [ - 783, + 785, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 788 + 790 ] } ], "insert_e_league_proposal_statuses": [ - 807, + 809, { "objects": [ - 804, + 806, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 809 + 811 ] } ], "insert_e_league_proposal_statuses_one": [ - 797, + 799, { "object": [ - 804, + 806, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 809 + 811 ] } ], "insert_e_league_registration_statuses": [ - 828, + 830, { "objects": [ - 825, + 827, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 830 + 832 ] } ], "insert_e_league_registration_statuses_one": [ - 818, + 820, { "object": [ - 825, + 827, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 830 + 832 ] } ], "insert_e_league_season_statuses": [ - 849, + 851, { "objects": [ - 846, + 848, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 851 + 853 ] } ], "insert_e_league_season_statuses_one": [ - 839, + 841, { "object": [ - 846, + 848, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 851 + 853 ] } ], "insert_e_lobby_access": [ - 870, + 872, { "objects": [ - 867, + 869, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 872 + 874 ] } ], "insert_e_lobby_access_one": [ - 860, + 862, { "object": [ - 867, + 869, "e_lobby_access_insert_input!" ], "on_conflict": [ - 872 + 874 ] } ], "insert_e_lobby_player_status": [ - 891, + 893, { "objects": [ - 888, + 890, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 892 + 894 ] } ], "insert_e_lobby_player_status_one": [ - 881, + 883, { "object": [ - 888, + 890, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 892 + 894 ] } ], "insert_e_map_pool_types": [ - 911, + 913, { "objects": [ - 908, + 910, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 913 + 915 ] } ], "insert_e_map_pool_types_one": [ - 901, + 903, { "object": [ - 908, + 910, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 913 + 915 ] } ], "insert_e_match_clip_visibility": [ - 932, + 934, { "objects": [ - 929, + 931, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 933 + 935 ] } ], "insert_e_match_clip_visibility_one": [ - 922, + 924, { "object": [ - 929, + 931, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 933 + 935 ] } ], "insert_e_match_map_status": [ - 952, + 954, { "objects": [ - 949, + 951, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 954 + 956 ] } ], "insert_e_match_map_status_one": [ - 942, + 944, { "object": [ - 949, + 951, "e_match_map_status_insert_input!" ], "on_conflict": [ - 954 + 956 ] } ], "insert_e_match_mode": [ - 973, + 975, { "objects": [ - 970, + 972, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 974 + 976 ] } ], "insert_e_match_mode_one": [ - 963, + 965, { "object": [ - 970, + 972, "e_match_mode_insert_input!" ], "on_conflict": [ - 974 + 976 ] } ], "insert_e_match_party_sources": [ - 993, + 995, { "objects": [ - 990, + 992, "[e_match_party_sources_insert_input!]!" ], "on_conflict": [ - 994 + 996 ] } ], "insert_e_match_party_sources_one": [ - 983, + 985, { "object": [ - 990, + 992, "e_match_party_sources_insert_input!" ], "on_conflict": [ - 994 + 996 ] } ], "insert_e_match_status": [ - 1013, + 1015, { "objects": [ - 1010, + 1012, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 1015 + 1017 ] } ], "insert_e_match_status_one": [ - 1003, + 1005, { "object": [ - 1010, + 1012, "e_match_status_insert_input!" ], "on_conflict": [ - 1015 + 1017 ] } ], "insert_e_match_types": [ - 1034, + 1036, { "objects": [ - 1031, + 1033, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1036 + 1038 ] } ], "insert_e_match_types_one": [ - 1024, + 1026, { "object": [ - 1031, + 1033, "e_match_types_insert_input!" ], "on_conflict": [ - 1036 + 1038 ] } ], "insert_e_notification_types": [ - 1055, + 1057, { "objects": [ - 1052, + 1054, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1056 + 1058 ] } ], "insert_e_notification_types_one": [ - 1045, + 1047, { "object": [ - 1052, + 1054, "e_notification_types_insert_input!" ], "on_conflict": [ - 1056 + 1058 ] } ], "insert_e_objective_types": [ - 1075, + 1077, { "objects": [ - 1072, + 1074, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1076 + 1078 ] } ], "insert_e_objective_types_one": [ - 1065, + 1067, { "object": [ - 1072, + 1074, "e_objective_types_insert_input!" ], "on_conflict": [ - 1076 + 1078 ] } ], "insert_e_player_roles": [ - 1095, + 1097, { "objects": [ - 1092, + 1094, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1096 + 1098 ] } ], "insert_e_player_roles_one": [ - 1085, + 1087, { "object": [ - 1092, + 1094, "e_player_roles_insert_input!" ], "on_conflict": [ - 1096 + 1098 ] } ], "insert_e_plugin_runtimes": [ - 1115, + 1117, { "objects": [ - 1112, + 1114, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1116 + 1118 ] } ], "insert_e_plugin_runtimes_one": [ - 1105, + 1107, { "object": [ - 1112, + 1114, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1116 + 1118 ] } ], "insert_e_ready_settings": [ - 1135, + 1137, { "objects": [ - 1132, + 1134, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1136 + 1138 ] } ], "insert_e_ready_settings_one": [ - 1125, + 1127, { "object": [ - 1132, + 1134, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1136 + 1138 ] } ], "insert_e_sanction_types": [ - 1155, + 1157, { "objects": [ - 1152, + 1154, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1157 + 1159 ] } ], "insert_e_sanction_types_one": [ - 1145, + 1147, { "object": [ - 1152, + 1154, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1157 + 1159 ] } ], "insert_e_scrim_request_statuses": [ - 1176, + 1178, { "objects": [ - 1173, + 1175, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1177 + 1179 ] } ], "insert_e_scrim_request_statuses_one": [ - 1166, + 1168, { "object": [ - 1173, + 1175, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1177 + 1179 ] } ], "insert_e_server_types": [ - 1196, + 1198, { "objects": [ - 1193, + 1195, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1197 + 1199 ] } ], "insert_e_server_types_one": [ - 1186, + 1188, { "object": [ - 1193, + 1195, "e_server_types_insert_input!" ], "on_conflict": [ - 1197 + 1199 ] } ], "insert_e_sides": [ - 1216, + 1218, { "objects": [ - 1213, + 1215, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1217 + 1219 ] } ], "insert_e_sides_one": [ - 1206, + 1208, { "object": [ - 1213, + 1215, "e_sides_insert_input!" ], "on_conflict": [ - 1217 + 1219 ] } ], "insert_e_system_alert_types": [ - 1236, + 1238, { "objects": [ - 1233, + 1235, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1237 + 1239 ] } ], "insert_e_system_alert_types_one": [ - 1226, + 1228, { "object": [ - 1233, + 1235, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1237 + 1239 ] } ], "insert_e_team_roles": [ - 1256, + 1258, { "objects": [ - 1253, + 1255, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1258 + 1260 ] } ], "insert_e_team_roles_one": [ - 1246, + 1248, { "object": [ - 1253, + 1255, "e_team_roles_insert_input!" ], "on_conflict": [ - 1258 + 1260 ] } ], "insert_e_team_roster_statuses": [ - 1277, + 1279, { "objects": [ - 1274, + 1276, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1278 + 1280 ] } ], "insert_e_team_roster_statuses_one": [ - 1267, + 1269, { "object": [ - 1274, + 1276, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1278 + 1280 ] } ], "insert_e_timeout_settings": [ - 1297, + 1299, { "objects": [ - 1294, + 1296, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1298 + 1300 ] } ], "insert_e_timeout_settings_one": [ - 1287, + 1289, { "object": [ - 1294, + 1296, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1298 + 1300 ] } ], "insert_e_tournament_categories": [ - 1317, + 1319, { "objects": [ - 1314, + 1316, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1319 + 1321 ] } ], "insert_e_tournament_categories_one": [ - 1307, + 1309, { "object": [ - 1314, + 1316, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1319 + 1321 ] } ], "insert_e_tournament_stage_types": [ - 1338, + 1340, { "objects": [ - 1335, + 1337, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1340 + 1342 ] } ], "insert_e_tournament_stage_types_one": [ - 1328, + 1330, { "object": [ - 1335, + 1337, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1340 + 1342 ] } ], "insert_e_tournament_status": [ - 1359, + 1361, { "objects": [ - 1356, + 1358, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1361 + 1363 ] } ], "insert_e_tournament_status_one": [ - 1349, + 1351, { "object": [ - 1356, + 1358, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1361 + 1363 ] } ], "insert_e_utility_types": [ - 1380, + 1382, { "objects": [ - 1377, + 1379, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1381 + 1383 ] } ], "insert_e_utility_types_one": [ - 1370, + 1372, { "object": [ - 1377, + 1379, "e_utility_types_insert_input!" ], "on_conflict": [ - 1381 + 1383 ] } ], "insert_e_veto_pick_types": [ - 1400, + 1402, { "objects": [ - 1397, + 1399, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1401 + 1403 ] } ], "insert_e_veto_pick_types_one": [ - 1390, + 1392, { "object": [ - 1397, + 1399, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1401 + 1403 ] } ], "insert_e_winning_reasons": [ - 1420, + 1422, { "objects": [ - 1417, + 1419, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1421 + 1423 ] } ], "insert_e_winning_reasons_one": [ - 1410, + 1412, { "object": [ - 1417, + 1419, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1421 + 1423 ] } ], "insert_event_match_links": [ - 1438, + 1440, { "objects": [ - 1435, + 1437, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1439 + 1441 ] } ], "insert_event_match_links_one": [ - 1430, + 1432, { "object": [ - 1435, + 1437, "event_match_links_insert_input!" ], "on_conflict": [ - 1439 + 1441 ] } ], "insert_event_media": [ - 1465, + 1467, { "objects": [ - 1460, + 1462, "[event_media_insert_input!]!" ], "on_conflict": [ - 1467 + 1469 ] } ], "insert_event_media_one": [ - 1448, + 1450, { "object": [ - 1460, + 1462, "event_media_insert_input!" ], "on_conflict": [ - 1467 + 1469 ] } ], "insert_event_media_players": [ - 1487, + 1489, { "objects": [ - 1482, + 1484, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1488 + 1490 ] } ], "insert_event_media_players_one": [ - 1470, + 1472, { "object": [ - 1482, + 1484, "event_media_players_insert_input!" ], "on_conflict": [ - 1488 + 1490 ] } ], "insert_event_organizers": [ - 1548, + 1550, { "objects": [ - 1543, + 1545, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1549 + 1551 ] } ], "insert_event_organizers_one": [ - 1531, + 1533, { "object": [ - 1543, + 1545, "event_organizers_insert_input!" ], "on_conflict": [ - 1549 + 1551 ] } ], "insert_event_players": [ - 1589, + 1591, { "objects": [ - 1584, + 1586, "[event_players_insert_input!]!" ], "on_conflict": [ - 1590 + 1592 ] } ], "insert_event_players_one": [ - 1572, + 1574, { "object": [ - 1584, + 1586, "event_players_insert_input!" ], "on_conflict": [ - 1590 + 1592 ] } ], "insert_event_teams": [ - 1627, + 1629, { "objects": [ - 1622, + 1624, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1628 + 1630 ] } ], "insert_event_teams_one": [ - 1613, + 1615, { "object": [ - 1622, + 1624, "event_teams_insert_input!" ], "on_conflict": [ - 1628 + 1630 ] } ], "insert_event_tournaments": [ - 1651, + 1653, { "objects": [ - 1646, + 1648, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1652 + 1654 ] } ], "insert_event_tournaments_one": [ - 1637, + 1639, { "object": [ - 1646, + 1648, "event_tournaments_insert_input!" ], "on_conflict": [ - 1652 + 1654 ] } ], "insert_events": [ - 1671, + 1673, { "objects": [ - 1668, + 1670, "[events_insert_input!]!" ], "on_conflict": [ - 1673 + 1675 ] } ], "insert_events_one": [ - 1661, + 1663, { "object": [ - 1668, + 1670, "events_insert_input!" ], "on_conflict": [ - 1673 + 1675 ] } ], "insert_friends": [ - 1701, + 1703, { "objects": [ - 1698, + 1700, "[friends_insert_input!]!" ], "on_conflict": [ - 1702 + 1704 ] } ], "insert_friends_one": [ - 1691, + 1693, { "object": [ - 1698, + 1700, "friends_insert_input!" ], "on_conflict": [ - 1702 + 1704 ] } ], "insert_game_server_nodes": [ - 1741, + 1743, { "objects": [ - 1736, + 1738, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1743 + 1745 ] } ], "insert_game_server_nodes_one": [ - 1718, + 1720, { "object": [ - 1736, + 1738, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1743 + 1745 ] } ], "insert_game_versions": [ - 1783, + 1785, { "objects": [ - 1780, + 1782, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1785 + 1787 ] } ], "insert_game_versions_one": [ - 1769, + 1771, { "object": [ - 1780, + 1782, "game_versions_insert_input!" ], "on_conflict": [ - 1785 + 1787 ] } ], "insert_gamedata_signature_validations": [ - 1816, + 1818, { "objects": [ - 1813, + 1815, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1817 + 1819 ] } ], "insert_gamedata_signature_validations_one": [ - 1802, + 1804, { "object": [ - 1813, + 1815, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1817 + 1819 ] } ], "insert_leaderboard_entries": [ - 1854, + 1856, { "objects": [ - 1851, + 1853, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1845, + 1847, { "object": [ - 1851, + 1853, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1879, + 1881, { "objects": [ - 1876, + 1878, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1881 + 1883 ] } ], "insert_league_divisions_one": [ - 1869, + 1871, { "object": [ - 1876, + 1878, "league_divisions_insert_input!" ], "on_conflict": [ - 1881 + 1883 ] } ], "insert_league_match_weeks": [ - 1914, + 1916, { "objects": [ - 1909, + 1911, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1915 + 1917 ] } ], "insert_league_match_weeks_one": [ - 1897, + 1899, { "object": [ - 1909, + 1911, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1915 + 1917 ] } ], "insert_league_relegation_playoffs": [ - 1955, + 1957, { "objects": [ - 1950, + 1952, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1956 + 1958 ] } ], "insert_league_relegation_playoffs_one": [ - 1938, + 1940, { "object": [ - 1950, + 1952, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1956 + 1958 ] } ], "insert_league_scheduling_proposals": [ - 1996, + 1998, { "objects": [ - 1991, + 1993, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1997 + 1999 ] } ], "insert_league_scheduling_proposals_one": [ - 1979, + 1981, { "object": [ - 1991, + 1993, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1997 + 1999 ] } ], "insert_league_season_divisions": [ - 2034, + 2036, { "objects": [ - 2029, + 2031, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2036 + 2038 ] } ], "insert_league_season_divisions_one": [ - 2020, + 2022, { "object": [ - 2029, + 2031, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2036 + 2038 ] } ], "insert_league_seasons": [ - 2059, + 2061, { "objects": [ - 2056, + 2058, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2061 + 2063 ] } ], "insert_league_seasons_one": [ - 2045, + 2047, { "object": [ - 2056, + 2058, "league_seasons_insert_input!" ], "on_conflict": [ - 2061 + 2063 ] } ], "insert_league_team_movements": [ - 2095, + 2097, { "objects": [ - 2090, + 2092, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2096 + 2098 ] } ], "insert_league_team_movements_one": [ - 2078, + 2080, { "object": [ - 2090, + 2092, "league_team_movements_insert_input!" ], "on_conflict": [ - 2096 + 2098 ] } ], "insert_league_team_rosters": [ - 2136, + 2138, { "objects": [ - 2131, + 2133, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2137 + 2139 ] } ], "insert_league_team_rosters_one": [ - 2119, + 2121, { "object": [ - 2131, + 2133, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2137 + 2139 ] } ], "insert_league_team_seasons": [ - 2177, + 2179, { "objects": [ - 2172, + 2174, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2179 + 2181 ] } ], "insert_league_team_seasons_one": [ - 2160, + 2162, { "object": [ - 2172, + 2174, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2179 + 2181 ] } ], "insert_league_teams": [ - 2210, + 2212, { "objects": [ - 2207, + 2209, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2212 + 2214 ] } ], "insert_league_teams_one": [ - 2202, + 2204, { "object": [ - 2207, + 2209, "league_teams_insert_input!" ], "on_conflict": [ - 2212 + 2214 ] } ], "insert_lobbies": [ - 2229, + 2231, { "objects": [ - 2226, + 2228, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2231 + 2233 ] } ], "insert_lobbies_one": [ - 2221, + 2223, { "object": [ - 2226, + 2228, "lobbies_insert_input!" ], "on_conflict": [ - 2231 + 2233 ] } ], "insert_lobby_players": [ - 2259, + 2261, { "objects": [ - 2254, + 2256, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2260 + 2262 ] } ], "insert_lobby_players_one": [ - 2240, + 2242, { "object": [ - 2254, + 2256, "lobby_players_insert_input!" ], "on_conflict": [ - 2260 + 2262 ] } ], "insert_map_pools": [ - 2293, + 2295, { "objects": [ - 2290, + 2292, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2295 + 2297 ] } ], "insert_map_pools_one": [ - 2285, + 2287, { "object": [ - 2290, + 2292, "map_pools_insert_input!" ], "on_conflict": [ - 2295 + 2297 ] } ], "insert_maps": [ - 2320, + 2322, { "objects": [ - 2315, + 2317, "[maps_insert_input!]!" ], "on_conflict": [ - 2322 + 2324 ] } ], "insert_maps_one": [ - 2304, + 2306, { "object": [ - 2315, + 2317, "maps_insert_input!" ], "on_conflict": [ - 2322 + 2324 ] } ], "insert_match_camera_tokens": [ - 2343, + 2345, { "objects": [ - 2340, + 2342, "[match_camera_tokens_insert_input!]!" ], "on_conflict": [ - 2344 + 2346 ] } ], "insert_match_camera_tokens_one": [ - 2333, + 2335, { "object": [ - 2340, + 2342, "match_camera_tokens_insert_input!" ], "on_conflict": [ - 2344 + 2346 ] } ], "insert_match_clips": [ - 2377, + 2379, { "objects": [ - 2372, + 2374, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2379 + 2381 ] } ], "insert_match_clips_one": [ - 2360, + 2362, { "object": [ - 2372, + 2374, "match_clips_insert_input!" ], "on_conflict": [ - 2379 + 2381 ] } ], "insert_match_demo_sessions": [ - 2423, + 2425, { "objects": [ - 2418, + 2420, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2424 + 2426 ] } ], "insert_match_demo_sessions_one": [ - 2402, + 2404, { "object": [ - 2418, + 2420, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2424 + 2426 ] } ], "insert_match_lineup_players": [ - 2467, + 2469, { "objects": [ - 2462, + 2464, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2468 + 2470 ] } ], "insert_match_lineup_players_one": [ - 2448, + 2450, { "object": [ - 2462, + 2464, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2468 + 2470 ] } ], "insert_match_lineups": [ - 2510, + 2512, { "objects": [ - 2505, + 2507, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2512 + 2514 ] } ], "insert_match_lineups_one": [ - 2493, + 2495, { "object": [ - 2505, + 2507, "match_lineups_insert_input!" ], "on_conflict": [ - 2512 + 2514 ] } ], "insert_match_map_demos": [ - 2558, + 2560, { "objects": [ - 2553, + 2555, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2560 + 2562 ] } ], "insert_match_map_demos_one": [ - 2535, + 2537, { "object": [ - 2553, + 2555, "match_map_demos_insert_input!" ], "on_conflict": [ - 2560 + 2562 ] } ], "insert_match_map_rounds": [ - 2603, + 2605, { "objects": [ - 2598, + 2600, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2604 + 2606 ] } ], "insert_match_map_rounds_one": [ - 2586, + 2588, { "object": [ - 2598, + 2600, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2604 + 2606 ] } ], "insert_match_map_veto_picks": [ - 2643, + 2645, { "objects": [ - 2638, + 2640, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2644 + 2646 ] } ], "insert_match_map_veto_picks_one": [ - 2627, + 2629, { "object": [ - 2638, + 2640, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2644 + 2646 ] } ], "insert_match_maps": [ - 2672, + 2674, { "objects": [ - 2667, + 2669, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2674 + 2676 ] } ], "insert_match_maps_one": [ - 2655, + 2657, { "object": [ - 2667, + 2669, "match_maps_insert_input!" ], "on_conflict": [ - 2674 + 2676 ] } ], "insert_match_options": [ - 2707, + 2709, { "objects": [ - 2704, + 2706, "[match_options_insert_input!]!" ], "on_conflict": [ - 2709 + 2711 ] } ], "insert_match_options_one": [ - 2697, + 2699, { "object": [ - 2704, + 2706, "match_options_insert_input!" ], "on_conflict": [ - 2709 + 2711 ] } ], "insert_match_region_veto_picks": [ - 2741, + 2743, { "objects": [ - 2736, + 2738, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2742 + 2744 ] } ], "insert_match_region_veto_picks_one": [ - 2725, + 2727, { "object": [ - 2736, + 2738, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2742 + 2744 ] } ], "insert_match_streams": [ - 2776, + 2778, { "objects": [ - 2771, + 2773, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2777 + 2779 ] } ], "insert_match_streams_one": [ - 2753, + 2755, { "object": [ - 2771, + 2773, "match_streams_insert_input!" ], "on_conflict": [ - 2777 + 2779 ] } ], "insert_match_type_cfgs": [ - 2811, + 2813, { "objects": [ - 2808, + 2810, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2812 + 2814 ] } ], "insert_match_type_cfgs_one": [ - 2803, + 2805, { "object": [ - 2808, + 2810, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2812 + 2814 ] } ], "insert_matches": [ - 2838, + 2840, { "objects": [ - 2833, + 2835, "[matches_insert_input!]!" ], "on_conflict": [ - 2840 + 2842 ] } ], "insert_matches_one": [ - 2821, + 2823, { "object": [ - 2833, + 2835, "matches_insert_input!" ], "on_conflict": [ - 2840 + 2842 ] } ], "insert_migration_hashes_hashes": [ - 2871, + 2873, { "objects": [ - 2868, + 2870, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2872 + 2874 ] } ], "insert_migration_hashes_hashes_one": [ - 2863, + 2865, { "object": [ - 2868, + 2870, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2872 + 2874 ] } ], "insert_my_friends": [ - 2903, + 2905, { "objects": [ - 2898, + 2900, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2881, + 2883, { "object": [ - 2898, + 2900, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2937, + 2939, { "objects": [ - 2934, + 2936, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2938 + 2940 ] } ], "insert_news_articles_one": [ - 2927, + 2929, { "object": [ - 2934, + 2936, "news_articles_insert_input!" ], "on_conflict": [ - 2938 + 2940 + ] + } + ], + "insert_notification_preferences": [ + 2966, + { + "objects": [ + 2963, + "[notification_preferences_insert_input!]!" + ], + "on_conflict": [ + 2967 + ] + } + ], + "insert_notification_preferences_one": [ + 2956, + { + "object": [ + 2963, + "notification_preferences_insert_input!" + ], + "on_conflict": [ + 2967 ] } ], "insert_notifications": [ - 2977, + 3006, { "objects": [ - 2972, + 3001, "[notifications_insert_input!]!" ], "on_conflict": [ - 2978 + 3007 ] } ], "insert_notifications_one": [ - 2954, + 2983, { "object": [ - 2972, + 3001, "notifications_insert_input!" ], "on_conflict": [ - 2978 + 3007 ] } ], "insert_pending_match_import_players": [ - 3024, + 3053, { "objects": [ - 3019, + 3048, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3025 + 3054 ] } ], "insert_pending_match_import_players_one": [ - 3007, + 3036, { "object": [ - 3019, + 3048, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3025 + 3054 ] } ], "insert_pending_match_imports": [ - 3058, + 3087, { "objects": [ - 3055, + 3084, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3060 + 3089 ] } ], "insert_pending_match_imports_one": [ - 3048, + 3077, { "object": [ - 3055, + 3084, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3060 + 3089 ] } ], "insert_player_aim_stats_demo": [ - 3086, + 3115, { "objects": [ - 3083, + 3112, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3087 + 3116 ] } ], "insert_player_aim_stats_demo_one": [ - 3076, + 3105, { "object": [ - 3083, + 3112, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3087 + 3116 ] } ], "insert_player_aim_weapon_stats": [ - 3120, + 3149, { "objects": [ - 3115, + 3144, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3121 + 3150 ] } ], "insert_player_aim_weapon_stats_one": [ - 3103, + 3132, { "object": [ - 3115, + 3144, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3121 + 3150 ] } ], "insert_player_assists": [ - 3163, + 3192, { "objects": [ - 3158, + 3187, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3164 + 3193 ] } ], "insert_player_assists_one": [ - 3144, + 3173, { "object": [ - 3158, + 3187, "player_assists_insert_input!" ], "on_conflict": [ - 3164 + 3193 ] } ], "insert_player_damages": [ - 3224, + 3253, { "objects": [ - 3219, + 3248, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3225 + 3254 ] } ], "insert_player_damages_one": [ - 3207, + 3236, { "object": [ - 3219, + 3248, "player_damages_insert_input!" ], "on_conflict": [ - 3225 + 3254 ] } ], "insert_player_elo": [ - 3258, + 3287, { "objects": [ - 3255, + 3284, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3259 + 3288 ] } ], "insert_player_elo_one": [ - 3248, + 3277, { "object": [ - 3255, + 3284, "player_elo_insert_input!" ], "on_conflict": [ - 3259 + 3288 ] } ], "insert_player_faceit_rank_history": [ - 3292, + 3321, { "objects": [ - 3287, + 3316, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3293 + 3322 ] } ], "insert_player_faceit_rank_history_one": [ - 3275, + 3304, { "object": [ - 3287, + 3316, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3293 + 3322 ] } ], "insert_player_flashes": [ - 3335, + 3364, { "objects": [ - 3330, + 3359, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3336 + 3365 ] } ], "insert_player_flashes_one": [ - 3316, + 3345, { "object": [ - 3330, + 3359, "player_flashes_insert_input!" ], "on_conflict": [ - 3336 + 3365 ] } ], "insert_player_kills": [ - 3421, + 3450, { "objects": [ - 3416, + 3445, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3422 + 3451 ] } ], "insert_player_kills_by_weapon": [ - 3390, + 3419, { "objects": [ - 3385, + 3414, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3391 + 3420 ] } ], "insert_player_kills_by_weapon_one": [ - 3373, + 3402, { "object": [ - 3385, + 3414, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3391 + 3420 ] } ], "insert_player_kills_one": [ - 3361, + 3390, { "object": [ - 3416, + 3445, "player_kills_insert_input!" ], "on_conflict": [ - 3422 + 3451 ] } ], "insert_player_leaderboard_rank": [ - 3456, + 3485, { "objects": [ - 3453, + 3482, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3447, + 3476, { "object": [ - 3453, + 3482, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3487, + 3516, { "objects": [ - 3482, + 3511, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3488 + 3517 ] } ], "insert_player_match_map_stats_one": [ - 3470, + 3499, { "object": [ - 3482, + 3511, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3488 + 3517 ] } ], "insert_player_objectives": [ - 3579, + 3608, { "objects": [ - 3574, + 3603, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3580 + 3609 ] } ], "insert_player_objectives_one": [ - 3562, + 3591, { "object": [ - 3574, + 3603, "player_objectives_insert_input!" ], "on_conflict": [ - 3580 + 3609 ] } ], "insert_player_premier_rank_history": [ - 3638, + 3667, { "objects": [ - 3633, + 3662, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3639 + 3668 ] } ], "insert_player_premier_rank_history_one": [ - 3621, + 3650, { "object": [ - 3633, + 3662, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3639 + 3668 ] } ], "insert_player_sanctions": [ - 3679, + 3708, { "objects": [ - 3674, + 3703, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3680 + 3709 ] } ], "insert_player_sanctions_one": [ - 3662, + 3691, { "object": [ - 3674, + 3703, "player_sanctions_insert_input!" ], "on_conflict": [ - 3680 + 3709 ] } ], "insert_player_season_stats": [ - 3730, + 3759, { "objects": [ - 3725, + 3754, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3731 + 3760 ] } ], "insert_player_season_stats_one": [ - 3703, + 3732, { "object": [ - 3725, + 3754, "player_season_stats_insert_input!" ], "on_conflict": [ - 3731 + 3760 ] } ], "insert_player_stats": [ - 3772, + 3801, { "objects": [ - 3769, + 3798, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3774 + 3803 ] } ], "insert_player_stats_one": [ - 3762, + 3791, { "object": [ - 3769, + 3798, "player_stats_insert_input!" ], "on_conflict": [ - 3774 + 3803 ] } ], "insert_player_steam_bot_friend": [ - 3804, + 3833, { "objects": [ - 3801, + 3830, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3805 + 3834 ] } ], "insert_player_steam_bot_friend_one": [ - 3790, + 3819, { "object": [ - 3801, + 3830, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3805 + 3834 ] } ], "insert_player_steam_match_auth": [ - 3832, + 3861, { "objects": [ - 3829, + 3858, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3833 + 3862 ] } ], "insert_player_steam_match_auth_one": [ - 3822, + 3851, { "object": [ - 3829, + 3858, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3833 + 3862 ] } ], "insert_player_unused_utility": [ - 3866, + 3895, { "objects": [ - 3861, + 3890, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3867 + 3896 ] } ], "insert_player_unused_utility_one": [ - 3849, + 3878, { "object": [ - 3861, + 3890, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3867 + 3896 ] } ], "insert_player_utility": [ - 3907, + 3936, { "objects": [ - 3902, + 3931, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3908 + 3937 ] } ], "insert_player_utility_one": [ - 3890, + 3919, { "object": [ - 3902, + 3931, "player_utility_insert_input!" ], "on_conflict": [ - 3908 + 3937 ] } ], "insert_players": [ - 3974, + 4003, { "objects": [ - 3971, + 4000, "[players_insert_input!]!" ], "on_conflict": [ - 3976 + 4005 ] } ], "insert_players_one": [ - 3964, + 3993, { "object": [ - 3971, + 4000, "players_insert_input!" ], "on_conflict": [ - 3976 + 4005 ] } ], "insert_plugin_versions": [ - 4002, + 4031, { "objects": [ - 3999, + 4028, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4003 + 4032 ] } ], "insert_plugin_versions_one": [ - 3992, + 4021, { "object": [ - 3999, + 4028, "plugin_versions_insert_input!" ], "on_conflict": [ - 4003 + 4032 + ] + } + ], + "insert_push_subscriptions": [ + 4058, + { + "objects": [ + 4055, + "[push_subscriptions_insert_input!]!" + ], + "on_conflict": [ + 4059 + ] + } + ], + "insert_push_subscriptions_one": [ + 4048, + { + "object": [ + 4055, + "push_subscriptions_insert_input!" + ], + "on_conflict": [ + 4059 ] } ], "insert_seasons": [ - 4033, + 4089, { "objects": [ - 4030, + 4086, "[seasons_insert_input!]!" ], "on_conflict": [ - 4035 + 4091 ] } ], "insert_seasons_one": [ - 4023, + 4079, { "object": [ - 4030, + 4086, "seasons_insert_input!" ], "on_conflict": [ - 4035 + 4091 ] } ], "insert_server_regions": [ - 4060, + 4116, { "objects": [ - 4057, + 4113, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4062 + 4118 ] } ], "insert_server_regions_one": [ - 4051, + 4107, { "object": [ - 4057, + 4113, "server_regions_insert_input!" ], "on_conflict": [ - 4062 + 4118 ] } ], "insert_servers": [ - 4097, + 4153, { "objects": [ - 4092, + 4148, "[servers_insert_input!]!" ], "on_conflict": [ - 4099 + 4155 ] } ], "insert_servers_one": [ - 4078, + 4134, { "object": [ - 4092, + 4148, "servers_insert_input!" ], "on_conflict": [ - 4099 + 4155 ] } ], "insert_settings": [ - 4132, + 4188, { "objects": [ - 4129, + 4185, "[settings_insert_input!]!" ], "on_conflict": [ - 4133 + 4189 ] } ], "insert_settings_one": [ - 4124, + 4180, { "object": [ - 4129, + 4185, "settings_insert_input!" ], "on_conflict": [ - 4133 + 4189 ] } ], "insert_steam_account_claims": [ - 4158, + 4214, { "objects": [ - 4153, + 4209, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4159 + 4215 ] } ], "insert_steam_account_claims_one": [ - 4144, + 4200, { "object": [ - 4153, + 4209, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4159 + 4215 ] } ], "insert_steam_accounts": [ - 4178, + 4234, { "objects": [ - 4175, + 4231, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4180 + 4236 ] } ], "insert_steam_accounts_one": [ - 4168, + 4224, { "object": [ - 4175, + 4231, "steam_accounts_insert_input!" ], "on_conflict": [ - 4180 + 4236 ] } ], "insert_system_alerts": [ - 4206, + 4262, { "objects": [ - 4203, + 4259, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4207 + 4263 ] } ], "insert_system_alerts_one": [ - 4196, + 4252, { "object": [ - 4203, + 4259, "system_alerts_insert_input!" ], "on_conflict": [ - 4207 + 4263 ] } ], "insert_team_invites": [ - 4240, + 4296, { "objects": [ - 4235, + 4291, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4241 + 4297 ] } ], "insert_team_invites_one": [ - 4223, + 4279, { "object": [ - 4235, + 4291, "team_invites_insert_input!" ], "on_conflict": [ - 4241 + 4297 ] } ], "insert_team_roster": [ - 4283, + 4339, { "objects": [ - 4278, + 4334, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4284 + 4340 ] } ], "insert_team_roster_one": [ - 4264, + 4320, { "object": [ - 4278, + 4334, "team_roster_insert_input!" ], "on_conflict": [ - 4284 + 4340 ] } ], "insert_team_scrim_alerts": [ - 4319, + 4375, { "objects": [ - 4316, + 4372, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4320 + 4376 ] } ], "insert_team_scrim_alerts_one": [ - 4309, + 4365, { "object": [ - 4316, + 4372, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4320 + 4376 ] } ], "insert_team_scrim_availability": [ - 4352, + 4408, { "objects": [ - 4347, + 4403, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4353 + 4409 ] } ], "insert_team_scrim_availability_one": [ - 4336, + 4392, { "object": [ - 4347, + 4403, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4353 + 4409 ] } ], "insert_team_scrim_request_proposals": [ - 4381, + 4437, { "objects": [ - 4376, + 4432, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4382 + 4438 ] } ], "insert_team_scrim_request_proposals_one": [ - 4364, + 4420, { "object": [ - 4376, + 4432, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4382 + 4438 ] } ], "insert_team_scrim_requests": [ - 4424, + 4480, { "objects": [ - 4419, + 4475, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4426 + 4482 ] } ], "insert_team_scrim_requests_one": [ - 4405, + 4461, { "object": [ - 4419, + 4475, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4426 + 4482 ] } ], "insert_team_scrim_settings": [ - 4461, + 4517, { "objects": [ - 4458, + 4514, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4463 + 4519 ] } ], "insert_team_scrim_settings_one": [ - 4451, + 4507, { "object": [ - 4458, + 4514, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4463 + 4519 ] } ], "insert_team_suggestions": [ - 4489, + 4545, { "objects": [ - 4486, + 4542, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4490 + 4546 ] } ], "insert_team_suggestions_one": [ - 4479, + 4535, { "object": [ - 4486, + 4542, "team_suggestions_insert_input!" ], "on_conflict": [ - 4490 + 4546 ] } ], "insert_teams": [ - 4525, + 4581, { "objects": [ - 4520, + 4576, "[teams_insert_input!]!" ], "on_conflict": [ - 4527 + 4583 ] } ], "insert_teams_one": [ - 4506, + 4562, { "object": [ - 4520, + 4576, "teams_insert_input!" ], "on_conflict": [ - 4527 + 4583 ] } ], "insert_tournament_awards": [ - 4572, + 4628, { "objects": [ - 4567, + 4623, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4574 + 4630 ] } ], "insert_tournament_awards_one": [ - 4555, + 4611, { "object": [ - 4567, + 4623, "tournament_awards_insert_input!" ], "on_conflict": [ - 4574 + 4630 ] } ], "insert_tournament_brackets": [ - 4616, + 4672, { "objects": [ - 4611, + 4667, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4618 + 4674 ] } ], "insert_tournament_brackets_one": [ - 4597, + 4653, { "object": [ - 4611, + 4667, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4618 + 4674 ] } ], "insert_tournament_categories": [ - 4657, + 4713, { "objects": [ - 4652, + 4708, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4658 + 4714 ] } ], "insert_tournament_categories_one": [ - 4643, + 4699, { "object": [ - 4652, + 4708, "tournament_categories_insert_input!" ], "on_conflict": [ - 4658 + 4714 ] } ], "insert_tournament_organizer_teams": [ - 4681, + 4737, { "objects": [ - 4676, + 4732, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4682 + 4738 ] } ], "insert_tournament_organizer_teams_one": [ - 4667, + 4723, { "object": [ - 4676, + 4732, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4682 + 4738 ] } ], "insert_tournament_organizers": [ - 4708, + 4764, { "objects": [ - 4703, + 4759, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4709 + 4765 ] } ], "insert_tournament_organizers_one": [ - 4691, + 4747, { "object": [ - 4703, + 4759, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4709 + 4765 ] } ], "insert_tournament_prizes": [ - 4749, + 4805, { "objects": [ - 4744, + 4800, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4750 + 4806 ] } ], "insert_tournament_prizes_one": [ - 4732, + 4788, { "object": [ - 4744, + 4800, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4750 + 4806 ] } ], "insert_tournament_stage_windows": [ - 4790, + 4846, { "objects": [ - 4785, + 4841, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4791 + 4847 ] } ], "insert_tournament_stage_windows_one": [ - 4773, + 4829, { "object": [ - 4785, + 4841, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4791 + 4847 ] } ], "insert_tournament_stages": [ - 4837, + 4893, { "objects": [ - 4832, + 4888, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4839 + 4895 ] } ], "insert_tournament_stages_one": [ - 4814, + 4870, { "object": [ - 4832, + 4888, "tournament_stages_insert_input!" ], "on_conflict": [ - 4839 + 4895 ] } ], "insert_tournament_team_invites": [ - 4882, + 4938, { "objects": [ - 4877, + 4933, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4883 + 4939 ] } ], "insert_tournament_team_invites_one": [ - 4865, + 4921, { "object": [ - 4877, + 4933, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4883 + 4939 ] } ], "insert_tournament_team_roster": [ - 4923, + 4979, { "objects": [ - 4918, + 4974, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4924 + 4980 ] } ], "insert_tournament_team_roster_one": [ - 4906, + 4962, { "object": [ - 4918, + 4974, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4924 + 4980 ] } ], "insert_tournament_teams": [ - 4964, + 5020, { "objects": [ - 4959, + 5015, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4966 + 5022 ] } ], "insert_tournament_teams_one": [ - 4947, + 5003, { "object": [ - 4959, + 5015, "tournament_teams_insert_input!" ], "on_conflict": [ - 4966 + 5022 ] } ], "insert_tournaments": [ - 5018, + 5074, { "objects": [ - 5013, + 5069, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5020 + 5076 ] } ], "insert_tournaments_one": [ - 4989, + 5045, { "object": [ - 5013, + 5069, "tournaments_insert_input!" ], "on_conflict": [ - 5020 + 5076 ] } ], "insert_v_match_captains": [ - 5218, + 5274, { "objects": [ - 5215, + 5271, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5209, + 5265, { "object": [ - 5215, + 5271, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5329, + 5385, { "objects": [ - 5326, + 5382, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5320, + 5376, { "object": [ - 5326, + 5382, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5551, + 5607, { "objects": [ - 5546, + 5602, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5535, + 5591, { "object": [ - 5546, + 5602, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5728, + 5784, { "objects": [ - 5723, + 5779, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5713, + 5769, { "object": [ - 5723, + 5779, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5822, + 5878, { "objects": [ - 5817, + 5873, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5824 + 5880 ] } ], "insert_v_team_stage_results_one": [ - 5795, + 5851, { "object": [ - 5817, + 5873, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5824 + 5880 ] } ], @@ -155516,7 +156548,7 @@ export default { 83, { "draftGameId": [ - 5053, + 5109, "uuid!" ], "inviteCode": [ @@ -155528,7 +156560,7 @@ export default { 83, { "draftGameId": [ - 5053, + 5109, "uuid!" ], "inviteCode": [ @@ -155553,14 +156585,14 @@ export default { } ], "league_award_forfeit": [ - 2821, + 2823, { "args": [ - 1868, + 1870, "league_award_forfeit_args!" ], "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -155570,11 +156602,11 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], @@ -155633,7 +156665,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -155645,7 +156677,7 @@ export default { 24, { "draftGameId": [ - 5053, + 5109, "uuid!" ], "inviteCode": [ @@ -155660,7 +156692,7 @@ export default { 40 ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "preset": [ @@ -155686,7 +156718,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -155695,20 +156727,20 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } ], "recalculate_tournament_awards": [ - 188, + 190, { "args": [ - 4019, + 4075, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -155718,11 +156750,11 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], @@ -155736,7 +156768,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -155760,7 +156792,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -155787,14 +156819,14 @@ export default { } ], "remove_league_team_from_season": [ - 2160, + 2162, { "args": [ - 4020, + 4076, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -155804,11 +156836,11 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], @@ -155833,14 +156865,14 @@ export default { } ], "reorder_league_divisions": [ - 1869, + 1871, { "args": [ - 4021, + 4077, "reorder_league_divisions_args!" ], "distinct_on": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "limit": [ @@ -155850,11 +156882,11 @@ export default { 40 ], "order_by": [ - 1882, + 1884, "[league_divisions_order_by!]" ], "where": [ - 1873 + 1875 ] } ], @@ -155868,7 +156900,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -155877,7 +156909,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -155890,7 +156922,7 @@ export default { "String!" ], "steam_id": [ - 257, + 259, "bigint!" ] } @@ -155899,7 +156931,7 @@ export default { 83, { "job_id": [ - 5053, + 5109, "uuid!" ] } @@ -155912,7 +156944,7 @@ export default { "Boolean!" ], "draftGameId": [ - 5053, + 5109, "uuid!" ] } @@ -155925,7 +156957,7 @@ export default { "Boolean!" ], "request_id": [ - 5053, + 5109, "uuid!" ] } @@ -155940,14 +156972,14 @@ export default { } ], "restart_league_season": [ - 2045, + 2047, { "args": [ - 4022, + 4078, "restart_league_season_args!" ], "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -155957,11 +156989,11 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], @@ -155969,7 +157001,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -155978,7 +157010,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "only_failed": [ @@ -155999,7 +157031,7 @@ export default { 83, { "id": [ - 5053, + 5109, "uuid!" ] } @@ -156036,20 +157068,20 @@ export default { 80 ], "event_id": [ - 5053 + 5109 ], "id": [ - 5053 + 5109 ], "league_season_id": [ - 5053 + 5109 ], "name": [ 80, "String!" ], "season_id": [ - 5053 + 5109 ], "silhouette": [ 40 @@ -156059,7 +157091,7 @@ export default { "String!" ], "tournament_id": [ - 5053 + 5109 ] } ], @@ -156074,7 +157106,7 @@ export default { 80 ], "id": [ - 5053 + 5109 ], "teaser": [ 80 @@ -156095,11 +157127,11 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553 + 4609 ] } ], @@ -156110,18 +157142,18 @@ export default { 40 ], "from_team_id": [ - 5053, + 5109, "uuid!" ], "proposed_scheduled_at": [ - 4553, + 4609, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 5053, + 5109, "uuid!" ] } @@ -156143,7 +157175,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "mode": [ @@ -156156,15 +157188,15 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "winning_lineup_id": [ - 5053, + 5109, "uuid!" ] } @@ -156173,11 +157205,11 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "winning_lineup_id": [ - 5053, + 5109, "uuid!" ] } @@ -156186,7 +157218,7 @@ export default { 50, { "id": [ - 5053, + 5109, "uuid!" ], "status": [ @@ -156199,7 +157231,7 @@ export default { 97, { "award_id": [ - 5053 + 5109 ], "custom_name": [ 80 @@ -156212,7 +157244,7 @@ export default { 40 ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } @@ -156224,7 +157256,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156237,7 +157269,7 @@ export default { "Boolean!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156250,7 +157282,7 @@ export default { "String!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156259,7 +157291,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "visible": [ @@ -156272,7 +157304,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156281,7 +157313,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156294,7 +157326,7 @@ export default { "Int!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156303,7 +157335,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "show": [ @@ -156316,7 +157348,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "slot": [ @@ -156333,7 +157365,7 @@ export default { "Boolean!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156342,7 +157374,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "mode": [ @@ -156355,11 +157387,11 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ], "server_id": [ - 5053 + 5109 ] } ], @@ -156367,7 +157399,7 @@ export default { 83, { "game_server_node_id": [ - 5053, + 5109, "uuid!" ] } @@ -156376,7 +157408,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156385,7 +157417,7 @@ export default { 83, { "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -156407,7 +157439,7 @@ export default { 83, { "match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156425,7 +157457,7 @@ export default { 83, { "from_match_id": [ - 5053, + 5109, "uuid!" ], "mode": [ @@ -156433,7 +157465,7 @@ export default { "String!" ], "to_match_id": [ - 5053, + 5109, "uuid!" ] } @@ -156473,7 +157505,7 @@ export default { 83, { "clip_id": [ - 5053, + 5109, "uuid!" ], "target_steam_id": [ @@ -156494,7 +157526,7 @@ export default { 80 ], "game_server_node_id": [ - 5053 + 5109 ] } ], @@ -156502,11 +157534,11 @@ export default { 83, { "draftGameId": [ - 5053, + 5109, "uuid!" ], "settings": [ - 1842, + 1844, "jsonb!" ] } @@ -156515,6046 +157547,6124 @@ export default { 83 ], "update__map_pool": [ - 108, + 110, { "_set": [ - 113 + 115 ], "where": [ - 103, + 105, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 100, + 102, { "_set": [ - 113 + 115 ], "pk_columns": [ - 111, + 113, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 108, + 110, { "updates": [ - 117, + 119, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 136, + 138, { "_inc": [ - 130 + 132 ], "_set": [ - 141 + 143 ], "where": [ - 128, + 130, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 119, + 121, { "_inc": [ - 130 + 132 ], "_set": [ - 141 + 143 ], "pk_columns": [ - 139, + 141, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 136, + 138, { "updates": [ - 153, + 155, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 170, + 172, { "_inc": [ - 166 + 168 ], "_set": [ - 175 + 177 ], "where": [ - 164, + 166, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 160, + 162, { "_inc": [ - 166 + 168 ], "_set": [ - 175 + 177 ], "pk_columns": [ - 173, + 175, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 170, + 172, { "updates": [ - 183, + 185, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 205, + 207, { "_inc": [ - 199 + 201 ], "_set": [ - 210 + 212 ], "where": [ - 197, + 199, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 188, + 190, { "_inc": [ - 199 + 201 ], "_set": [ - 210 + 212 ], "pk_columns": [ - 208, + 210, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 205, + 207, { "updates": [ - 222, + 224, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 239, + 241, { "_inc": [ - 235 + 237 ], "_set": [ - 245 + 247 ], "where": [ - 233, + 235, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 229, + 231, { "_inc": [ - 235 + 237 ], "_set": [ - 245 + 247 ], "pk_columns": [ - 243, + 245, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 239, + 241, { "updates": [ - 253, + 255, "[awards_updates!]!" ] } ], "update_clip_render_jobs": [ - 285, + 287, { "_append": [ - 270 + 272 ], "_delete_at_path": [ - 276 + 278 ], "_delete_elem": [ - 277 + 279 ], "_delete_key": [ - 278 + 280 ], "_inc": [ - 279 + 281 ], "_prepend": [ - 289 + 291 ], "_set": [ - 293 + 295 ], "where": [ - 274, + 276, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 262, + 264, { "_append": [ - 270 + 272 ], "_delete_at_path": [ - 276 + 278 ], "_delete_elem": [ - 277 + 279 ], "_delete_key": [ - 278 + 280 ], "_inc": [ - 279 + 281 ], "_prepend": [ - 289 + 291 ], "_set": [ - 293 + 295 ], "pk_columns": [ - 288, + 290, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 285, + 287, { "updates": [ - 305, + 307, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 328, + 330, { "_append": [ - 317 + 319 ], "_delete_at_path": [ - 321 + 323 ], "_delete_elem": [ - 322 + 324 ], "_delete_key": [ - 323 + 325 ], "_inc": [ - 324 + 326 ], "_prepend": [ - 332 + 334 ], "_set": [ - 334 + 336 ], "where": [ - 319, + 321, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 314, + 316, { "_append": [ - 317 + 319 ], "_delete_at_path": [ - 321 + 323 ], "_delete_elem": [ - 322 + 324 ], "_delete_key": [ - 323 + 325 ], "_inc": [ - 324 + 326 ], "_prepend": [ - 332 + 334 ], "_set": [ - 334 + 336 ], "pk_columns": [ - 331, + 333, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 328, + 330, { "updates": [ - 342, + 344, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 356, + 358, { "_inc": [ - 352 + 354 ], "_set": [ - 361 + 363 ], "where": [ - 350, + 352, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 346, + 348, { "_inc": [ - 352 + 354 ], "_set": [ - 361 + 363 ], "pk_columns": [ - 359, + 361, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 356, + 358, { "updates": [ - 369, + 371, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 392, + 394, { "_inc": [ - 386 + 388 ], "_set": [ - 399 + 401 ], "where": [ - 384, + 386, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 373, + 375, { "_inc": [ - 386 + 388 ], "_set": [ - 399 + 401 ], "pk_columns": [ - 395, + 397, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 392, + 394, { "updates": [ - 411, + 413, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 437, + 439, { "_inc": [ - 431 + 433 ], "_set": [ - 444 + 446 ], "where": [ - 429, + 431, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 418, + 420, { "_inc": [ - 431 + 433 ], "_set": [ - 444 + 446 ], "pk_columns": [ - 440, + 442, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 437, + 439, { "updates": [ - 456, + 458, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 482, + 484, { "_inc": [ - 476 + 478 ], "_set": [ - 490 + 492 ], "where": [ - 474, + 476, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 463, + 465, { "_inc": [ - 476 + 478 ], "_set": [ - 490 + 492 ], "pk_columns": [ - 486, + 488, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 482, + 484, { "updates": [ - 502, + 504, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 519, + 521, { "_set": [ - 524 + 526 ], "where": [ - 512, + 514, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 509, + 511, { "_set": [ - 524 + 526 ], "pk_columns": [ - 522, + 524, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 519, + 521, { "updates": [ - 528, + 530, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 539, + 541, { "_set": [ - 544 + 546 ], "where": [ - 532, + 534, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 529, + 531, { "_set": [ - 544 + 546 ], "pk_columns": [ - 542, + 544, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 539, + 541, { "updates": [ - 548, + 550, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 559, + 561, { "_set": [ - 564 + 566 ], "where": [ - 552, + 554, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 549, + 551, { "_set": [ - 564 + 566 ], "pk_columns": [ - 562, + 564, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 559, + 561, { "updates": [ - 568, + 570, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 579, + 581, { "_set": [ - 585 + 587 ], "where": [ - 572, + 574, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 569, + 571, { "_set": [ - 585 + 587 ], "pk_columns": [ - 583, + 585, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 579, + 581, { "updates": [ - 589, + 591, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 600, + 602, { "_set": [ - 606 + 608 ], "where": [ - 593, + 595, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 590, + 592, { "_set": [ - 606 + 608 ], "pk_columns": [ - 604, + 606, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 600, + 602, { "updates": [ - 610, + 612, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 621, + 623, { "_set": [ - 627 + 629 ], "where": [ - 614, + 616, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 611, + 613, { "_set": [ - 627 + 629 ], "pk_columns": [ - 625, + 627, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 621, + 623, { "updates": [ - 631, + 633, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 642, + 644, { "_set": [ - 648 + 650 ], "where": [ - 635, + 637, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 632, + 634, { "_set": [ - 648 + 650 ], "pk_columns": [ - 646, + 648, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 642, + 644, { "updates": [ - 652, + 654, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 663, + 665, { "_set": [ - 669 + 671 ], "where": [ - 656, + 658, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 653, + 655, { "_set": [ - 669 + 671 ], "pk_columns": [ - 667, + 669, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 663, + 665, { "updates": [ - 673, + 675, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 684, + 686, { "_set": [ - 689 + 691 ], "where": [ - 677, + 679, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 674, + 676, { "_set": [ - 689 + 691 ], "pk_columns": [ - 687, + 689, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 684, + 686, { "updates": [ - 693, + 695, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 704, + 706, { "_set": [ - 709 + 711 ], "where": [ - 697, + 699, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 694, + 696, { "_set": [ - 709 + 711 ], "pk_columns": [ - 707, + 709, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 704, + 706, { "updates": [ - 713, + 715, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 724, + 726, { "_set": [ - 730 + 732 ], "where": [ - 717, + 719, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 714, + 716, { "_set": [ - 730 + 732 ], "pk_columns": [ - 728, + 730, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 724, + 726, { "updates": [ - 734, + 736, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 745, + 747, { "_set": [ - 750 + 752 ], "where": [ - 738, + 740, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 735, + 737, { "_set": [ - 750 + 752 ], "pk_columns": [ - 748, + 750, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 745, + 747, { "updates": [ - 754, + 756, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 765, + 767, { "_set": [ - 771 + 773 ], "where": [ - 758, + 760, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 755, + 757, { "_set": [ - 771 + 773 ], "pk_columns": [ - 769, + 771, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 765, + 767, { "updates": [ - 775, + 777, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 786, + 788, { "_set": [ - 792 + 794 ], "where": [ - 779, + 781, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 776, + 778, { "_set": [ - 792 + 794 ], "pk_columns": [ - 790, + 792, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 786, + 788, { "updates": [ - 796, + 798, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 807, + 809, { "_set": [ - 813 + 815 ], "where": [ - 800, + 802, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 797, + 799, { "_set": [ - 813 + 815 ], "pk_columns": [ - 811, + 813, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 807, + 809, { "updates": [ - 817, + 819, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 828, + 830, { "_set": [ - 834 + 836 ], "where": [ - 821, + 823, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 818, + 820, { "_set": [ - 834 + 836 ], "pk_columns": [ - 832, + 834, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 828, + 830, { "updates": [ - 838, + 840, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 849, + 851, { "_set": [ - 855 + 857 ], "where": [ - 842, + 844, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 839, + 841, { "_set": [ - 855 + 857 ], "pk_columns": [ - 853, + 855, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 849, + 851, { "updates": [ - 859, + 861, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 870, + 872, { "_set": [ - 876 + 878 ], "where": [ - 863, + 865, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 860, + 862, { "_set": [ - 876 + 878 ], "pk_columns": [ - 874, + 876, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 870, + 872, { "updates": [ - 880, + 882, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 891, + 893, { "_set": [ - 896 + 898 ], "where": [ - 884, + 886, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 881, + 883, { "_set": [ - 896 + 898 ], "pk_columns": [ - 894, + 896, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 891, + 893, { "updates": [ - 900, + 902, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 911, + 913, { "_set": [ - 917 + 919 ], "where": [ - 904, + 906, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 901, + 903, { "_set": [ - 917 + 919 ], "pk_columns": [ - 915, + 917, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 911, + 913, { "updates": [ - 921, + 923, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 932, + 934, { "_set": [ - 937 + 939 ], "where": [ - 925, + 927, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 922, + 924, { "_set": [ - 937 + 939 ], "pk_columns": [ - 935, + 937, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 932, + 934, { "updates": [ - 941, + 943, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 952, + 954, { "_set": [ - 958 + 960 ], "where": [ - 945, + 947, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 942, + 944, { "_set": [ - 958 + 960 ], "pk_columns": [ - 956, + 958, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 952, + 954, { "updates": [ - 962, + 964, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 973, + 975, { "_set": [ - 978 + 980 ], "where": [ - 966, + 968, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 963, + 965, { "_set": [ - 978 + 980 ], "pk_columns": [ - 976, + 978, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 973, + 975, { "updates": [ - 982, + 984, "[e_match_mode_updates!]!" ] } ], "update_e_match_party_sources": [ - 993, + 995, { "_set": [ - 998 + 1000 ], "where": [ - 986, + 988, "e_match_party_sources_bool_exp!" ] } ], "update_e_match_party_sources_by_pk": [ - 983, + 985, { "_set": [ - 998 + 1000 ], "pk_columns": [ - 996, + 998, "e_match_party_sources_pk_columns_input!" ] } ], "update_e_match_party_sources_many": [ - 993, + 995, { "updates": [ - 1002, + 1004, "[e_match_party_sources_updates!]!" ] } ], "update_e_match_status": [ - 1013, + 1015, { "_set": [ - 1019 + 1021 ], "where": [ - 1006, + 1008, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 1003, + 1005, { "_set": [ - 1019 + 1021 ], "pk_columns": [ - 1017, + 1019, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 1013, + 1015, { "updates": [ - 1023, + 1025, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1034, + 1036, { "_set": [ - 1040 + 1042 ], "where": [ - 1027, + 1029, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1024, + 1026, { "_set": [ - 1040 + 1042 ], "pk_columns": [ - 1038, + 1040, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1034, + 1036, { "updates": [ - 1044, + 1046, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1055, + 1057, { "_set": [ - 1060 + 1062 ], "where": [ - 1048, + 1050, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1045, + 1047, { "_set": [ - 1060 + 1062 ], "pk_columns": [ - 1058, + 1060, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1055, + 1057, { "updates": [ - 1064, + 1066, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1075, + 1077, { "_set": [ - 1080 + 1082 ], "where": [ - 1068, + 1070, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1065, + 1067, { "_set": [ - 1080 + 1082 ], "pk_columns": [ - 1078, + 1080, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1075, + 1077, { "updates": [ - 1084, + 1086, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1095, + 1097, { "_set": [ - 1100 + 1102 ], "where": [ - 1088, + 1090, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1085, + 1087, { "_set": [ - 1100 + 1102 ], "pk_columns": [ - 1098, + 1100, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1095, + 1097, { "updates": [ - 1104, + 1106, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1115, + 1117, { "_set": [ - 1120 + 1122 ], "where": [ - 1108, + 1110, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1105, + 1107, { "_set": [ - 1120 + 1122 ], "pk_columns": [ - 1118, + 1120, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1115, + 1117, { "updates": [ - 1124, + 1126, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1135, + 1137, { "_set": [ - 1140 + 1142 ], "where": [ - 1128, + 1130, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1125, + 1127, { "_set": [ - 1140 + 1142 ], "pk_columns": [ - 1138, + 1140, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1135, + 1137, { "updates": [ - 1144, + 1146, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1155, + 1157, { "_set": [ - 1161 + 1163 ], "where": [ - 1148, + 1150, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1145, + 1147, { "_set": [ - 1161 + 1163 ], "pk_columns": [ - 1159, + 1161, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1155, + 1157, { "updates": [ - 1165, + 1167, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1176, + 1178, { "_set": [ - 1181 + 1183 ], "where": [ - 1169, + 1171, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1166, + 1168, { "_set": [ - 1181 + 1183 ], "pk_columns": [ - 1179, + 1181, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1176, + 1178, { "updates": [ - 1185, + 1187, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1196, + 1198, { "_set": [ - 1201 + 1203 ], "where": [ - 1189, + 1191, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1186, + 1188, { "_set": [ - 1201 + 1203 ], "pk_columns": [ - 1199, + 1201, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1196, + 1198, { "updates": [ - 1205, + 1207, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1216, + 1218, { "_set": [ - 1221 + 1223 ], "where": [ - 1209, + 1211, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1206, + 1208, { "_set": [ - 1221 + 1223 ], "pk_columns": [ - 1219, + 1221, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1216, + 1218, { "updates": [ - 1225, + 1227, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1236, + 1238, { "_set": [ - 1241 + 1243 ], "where": [ - 1229, + 1231, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1226, + 1228, { "_set": [ - 1241 + 1243 ], "pk_columns": [ - 1239, + 1241, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1236, + 1238, { "updates": [ - 1245, + 1247, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1256, + 1258, { "_set": [ - 1262 + 1264 ], "where": [ - 1249, + 1251, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1246, + 1248, { "_set": [ - 1262 + 1264 ], "pk_columns": [ - 1260, + 1262, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1256, + 1258, { "updates": [ - 1266, + 1268, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1277, + 1279, { "_set": [ - 1282 + 1284 ], "where": [ - 1270, + 1272, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1267, + 1269, { "_set": [ - 1282 + 1284 ], "pk_columns": [ - 1280, + 1282, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1277, + 1279, { "updates": [ - 1286, + 1288, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1297, + 1299, { "_set": [ - 1302 + 1304 ], "where": [ - 1290, + 1292, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1287, + 1289, { "_set": [ - 1302 + 1304 ], "pk_columns": [ - 1300, + 1302, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1297, + 1299, { "updates": [ - 1306, + 1308, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1317, + 1319, { "_set": [ - 1323 + 1325 ], "where": [ - 1310, + 1312, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1307, + 1309, { "_set": [ - 1323 + 1325 ], "pk_columns": [ - 1321, + 1323, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1317, + 1319, { "updates": [ - 1327, + 1329, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1338, + 1340, { "_set": [ - 1344 + 1346 ], "where": [ - 1331, + 1333, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1328, + 1330, { "_set": [ - 1344 + 1346 ], "pk_columns": [ - 1342, + 1344, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1338, + 1340, { "updates": [ - 1348, + 1350, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1359, + 1361, { "_set": [ - 1365 + 1367 ], "where": [ - 1352, + 1354, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1349, + 1351, { "_set": [ - 1365 + 1367 ], "pk_columns": [ - 1363, + 1365, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1359, + 1361, { "updates": [ - 1369, + 1371, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1380, + 1382, { "_set": [ - 1385 + 1387 ], "where": [ - 1373, + 1375, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1370, + 1372, { "_set": [ - 1385 + 1387 ], "pk_columns": [ - 1383, + 1385, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1380, + 1382, { "updates": [ - 1389, + 1391, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1400, + 1402, { "_set": [ - 1405 + 1407 ], "where": [ - 1393, + 1395, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1390, + 1392, { "_set": [ - 1405 + 1407 ], "pk_columns": [ - 1403, + 1405, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1400, + 1402, { "updates": [ - 1409, + 1411, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1420, + 1422, { "_set": [ - 1425 + 1427 ], "where": [ - 1413, + 1415, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1410, + 1412, { "_set": [ - 1425 + 1427 ], "pk_columns": [ - 1423, + 1425, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1420, + 1422, { "updates": [ - 1429, + 1431, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1438, + 1440, { "_set": [ - 1443 + 1445 ], "where": [ - 1433, + 1435, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1430, + 1432, { "_set": [ - 1443 + 1445 ], "pk_columns": [ - 1441, + 1443, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1438, + 1440, { "updates": [ - 1447, + 1449, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1465, + 1467, { "_inc": [ - 1459 + 1461 ], "_set": [ - 1512 + 1514 ], "where": [ - 1457, + 1459, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1448, + 1450, { "_inc": [ - 1459 + 1461 ], "_set": [ - 1512 + 1514 ], "pk_columns": [ - 1469, + 1471, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1465, + 1467, { "updates": [ - 1524, + 1526, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1487, + 1489, { "_inc": [ - 1481 + 1483 ], "_set": [ - 1492 + 1494 ], "where": [ - 1479, + 1481, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1470, + 1472, { "_inc": [ - 1481 + 1483 ], "_set": [ - 1492 + 1494 ], "pk_columns": [ - 1490, + 1492, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1487, + 1489, { "updates": [ - 1504, + 1506, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1548, + 1550, { "_inc": [ - 1542 + 1544 ], "_set": [ - 1553 + 1555 ], "where": [ - 1540, + 1542, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1531, + 1533, { "_inc": [ - 1542 + 1544 ], "_set": [ - 1553 + 1555 ], "pk_columns": [ - 1551, + 1553, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1548, + 1550, { "updates": [ - 1565, + 1567, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1589, + 1591, { "_inc": [ - 1583 + 1585 ], "_set": [ - 1594 + 1596 ], "where": [ - 1581, + 1583, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1572, + 1574, { "_inc": [ - 1583 + 1585 ], "_set": [ - 1594 + 1596 ], "pk_columns": [ - 1592, + 1594, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1589, + 1591, { "updates": [ - 1606, + 1608, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1627, + 1629, { "_set": [ - 1632 + 1634 ], "where": [ - 1620, + 1622, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1613, + 1615, { "_set": [ - 1632 + 1634 ], "pk_columns": [ - 1630, + 1632, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1627, + 1629, { "updates": [ - 1636, + 1638, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1651, + 1653, { "_set": [ - 1656 + 1658 ], "where": [ - 1644, + 1646, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1637, + 1639, { "_set": [ - 1656 + 1658 ], "pk_columns": [ - 1654, + 1656, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1651, + 1653, { "updates": [ - 1660, + 1662, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1671, + 1673, { "_inc": [ - 1667 + 1669 ], "_set": [ - 1677 + 1679 ], "where": [ - 1665, + 1667, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1661, + 1663, { "_inc": [ - 1667 + 1669 ], "_set": [ - 1677 + 1679 ], "pk_columns": [ - 1675, + 1677, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1671, + 1673, { "updates": [ - 1685, + 1687, "[events_updates!]!" ] } ], "update_friends": [ - 1701, + 1703, { "_inc": [ - 1697 + 1699 ], "_set": [ - 1706 + 1708 ], "where": [ - 1695, + 1697, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1691, + 1693, { "_inc": [ - 1697 + 1699 ], "_set": [ - 1706 + 1708 ], "pk_columns": [ - 1704, + 1706, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1701, + 1703, { "updates": [ - 1714, + 1716, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1741, + 1743, { "_append": [ - 1726 + 1728 ], "_delete_at_path": [ - 1732 + 1734 ], "_delete_elem": [ - 1733 + 1735 ], "_delete_key": [ - 1734 + 1736 ], "_inc": [ - 1735 + 1737 ], "_prepend": [ - 1746 + 1748 ], "_set": [ - 1750 + 1752 ], "where": [ - 1730, + 1732, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1718, + 1720, { "_append": [ - 1726 + 1728 ], "_delete_at_path": [ - 1732 + 1734 ], "_delete_elem": [ - 1733 + 1735 ], "_delete_key": [ - 1734 + 1736 ], "_inc": [ - 1735 + 1737 ], "_prepend": [ - 1746 + 1748 ], "_set": [ - 1750 + 1752 ], "pk_columns": [ - 1745, + 1747, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1741, + 1743, { "updates": [ - 1762, + 1764, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1783, + 1785, { "_append": [ - 1772 + 1774 ], "_delete_at_path": [ - 1776 + 1778 ], "_delete_elem": [ - 1777 + 1779 ], "_delete_key": [ - 1778 + 1780 ], "_inc": [ - 1779 + 1781 ], "_prepend": [ - 1788 + 1790 ], "_set": [ - 1790 + 1792 ], "where": [ - 1774, + 1776, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1769, + 1771, { "_append": [ - 1772 + 1774 ], "_delete_at_path": [ - 1776 + 1778 ], "_delete_elem": [ - 1777 + 1779 ], "_delete_key": [ - 1778 + 1780 ], "_inc": [ - 1779 + 1781 ], "_prepend": [ - 1788 + 1790 ], "_set": [ - 1790 + 1792 ], "pk_columns": [ - 1787, + 1789, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1783, + 1785, { "updates": [ - 1798, + 1800, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1816, + 1818, { "_append": [ - 1805 + 1807 ], "_delete_at_path": [ - 1809 + 1811 ], "_delete_elem": [ - 1810 + 1812 ], "_delete_key": [ - 1811 + 1813 ], "_inc": [ - 1812 + 1814 ], "_prepend": [ - 1820 + 1822 ], "_set": [ - 1822 + 1824 ], "where": [ - 1807, + 1809, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1802, + 1804, { "_append": [ - 1805 + 1807 ], "_delete_at_path": [ - 1809 + 1811 ], "_delete_elem": [ - 1810 + 1812 ], "_delete_key": [ - 1811 + 1813 ], "_inc": [ - 1812 + 1814 ], "_prepend": [ - 1820 + 1822 ], "_set": [ - 1822 + 1824 ], "pk_columns": [ - 1819, + 1821, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1816, + 1818, { "updates": [ - 1830, + 1832, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1854, + 1856, { "_inc": [ - 1850 + 1852 ], "_set": [ - 1857 + 1859 ], "where": [ - 1849, + 1851, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1854, + 1856, { "updates": [ - 1864, + 1866, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1879, + 1881, { "_inc": [ - 1875 + 1877 ], "_set": [ - 1885 + 1887 ], "where": [ - 1873, + 1875, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1869, + 1871, { "_inc": [ - 1875 + 1877 ], "_set": [ - 1885 + 1887 ], "pk_columns": [ - 1883, + 1885, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1879, + 1881, { "updates": [ - 1893, + 1895, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1914, + 1916, { "_inc": [ - 1908 + 1910 ], "_set": [ - 1919 + 1921 ], "where": [ - 1906, + 1908, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1897, + 1899, { "_inc": [ - 1908 + 1910 ], "_set": [ - 1919 + 1921 ], "pk_columns": [ - 1917, + 1919, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1914, + 1916, { "updates": [ - 1931, + 1933, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1955, + 1957, { "_inc": [ - 1949 + 1951 ], "_set": [ - 1960 + 1962 ], "where": [ - 1947, + 1949, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1938, + 1940, { "_inc": [ - 1949 + 1951 ], "_set": [ - 1960 + 1962 ], "pk_columns": [ - 1958, + 1960, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1955, + 1957, { "updates": [ - 1972, + 1974, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1996, + 1998, { "_inc": [ - 1990 + 1992 ], "_set": [ - 2001 + 2003 ], "where": [ - 1988, + 1990, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1979, + 1981, { "_inc": [ - 1990 + 1992 ], "_set": [ - 2001 + 2003 ], "pk_columns": [ - 1999, + 2001, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1996, + 1998, { "updates": [ - 2013, + 2015, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2034, + 2036, { "_set": [ - 2040 + 2042 ], "where": [ - 2027, + 2029, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2020, + 2022, { "_set": [ - 2040 + 2042 ], "pk_columns": [ - 2038, + 2040, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2034, + 2036, { "updates": [ - 2044, + 2046, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2059, + 2061, { "_append": [ - 2048 + 2050 ], "_delete_at_path": [ - 2052 + 2054 ], "_delete_elem": [ - 2053 + 2055 ], "_delete_key": [ - 2054 + 2056 ], "_inc": [ - 2055 + 2057 ], "_prepend": [ - 2064 + 2066 ], "_set": [ - 2066 + 2068 ], "where": [ - 2050, + 2052, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2045, + 2047, { "_append": [ - 2048 + 2050 ], "_delete_at_path": [ - 2052 + 2054 ], "_delete_elem": [ - 2053 + 2055 ], "_delete_key": [ - 2054 + 2056 ], "_inc": [ - 2055 + 2057 ], "_prepend": [ - 2064 + 2066 ], "_set": [ - 2066 + 2068 ], "pk_columns": [ - 2063, + 2065, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2059, + 2061, { "updates": [ - 2074, + 2076, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2095, + 2097, { "_inc": [ - 2089 + 2091 ], "_set": [ - 2100 + 2102 ], "where": [ - 2087, + 2089, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2078, + 2080, { "_inc": [ - 2089 + 2091 ], "_set": [ - 2100 + 2102 ], "pk_columns": [ - 2098, + 2100, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2095, + 2097, { "updates": [ - 2112, + 2114, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2136, + 2138, { "_inc": [ - 2130 + 2132 ], "_set": [ - 2141 + 2143 ], "where": [ - 2128, + 2130, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2119, + 2121, { "_inc": [ - 2130 + 2132 ], "_set": [ - 2141 + 2143 ], "pk_columns": [ - 2139, + 2141, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2136, + 2138, { "updates": [ - 2153, + 2155, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2177, + 2179, { "_inc": [ - 2171 + 2173 ], "_set": [ - 2183 + 2185 ], "where": [ - 2169, + 2171, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2160, + 2162, { "_inc": [ - 2171 + 2173 ], "_set": [ - 2183 + 2185 ], "pk_columns": [ - 2181, + 2183, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2177, + 2179, { "updates": [ - 2195, + 2197, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2210, + 2212, { "_set": [ - 2216 + 2218 ], "where": [ - 2205, + 2207, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2202, + 2204, { "_set": [ - 2216 + 2218 ], "pk_columns": [ - 2214, + 2216, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2210, + 2212, { "updates": [ - 2220, + 2222, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2229, + 2231, { "_set": [ - 2235 + 2237 ], "where": [ - 2224, + 2226, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2221, + 2223, { "_set": [ - 2235 + 2237 ], "pk_columns": [ - 2233, + 2235, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2229, + 2231, { "updates": [ - 2239, + 2241, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2259, + 2261, { "_inc": [ - 2253 + 2255 ], "_set": [ - 2266 + 2268 ], "where": [ - 2251, + 2253, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2240, + 2242, { "_inc": [ - 2253 + 2255 ], "_set": [ - 2266 + 2268 ], "pk_columns": [ - 2262, + 2264, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2259, + 2261, { "updates": [ - 2278, + 2280, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2293, + 2295, { "_set": [ - 2299 + 2301 ], "where": [ - 2288, + 2290, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2285, + 2287, { "_set": [ - 2299 + 2301 ], "pk_columns": [ - 2297, + 2299, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2293, + 2295, { "updates": [ - 2303, + 2305, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2320, + 2322, { "_set": [ - 2328 + 2330 ], "where": [ - 2313, + 2315, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2304, + 2306, { "_set": [ - 2328 + 2330 ], "pk_columns": [ - 2324, + 2326, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2320, + 2322, { "updates": [ - 2332, + 2334, "[maps_updates!]!" ] } ], "update_match_camera_tokens": [ - 2343, + 2345, { "_inc": [ - 2339 + 2341 ], "_set": [ - 2348 + 2350 ], "where": [ - 2337, + 2339, "match_camera_tokens_bool_exp!" ] } ], "update_match_camera_tokens_by_pk": [ - 2333, + 2335, { "_inc": [ - 2339 + 2341 ], "_set": [ - 2348 + 2350 ], "pk_columns": [ - 2346, + 2348, "match_camera_tokens_pk_columns_input!" ] } ], "update_match_camera_tokens_many": [ - 2343, + 2345, { "updates": [ - 2356, + 2358, "[match_camera_tokens_updates!]!" ] } ], "update_match_clips": [ - 2377, + 2379, { "_inc": [ - 2371 + 2373 ], "_set": [ - 2383 + 2385 ], "where": [ - 2369, + 2371, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2360, + 2362, { "_inc": [ - 2371 + 2373 ], "_set": [ - 2383 + 2385 ], "pk_columns": [ - 2381, + 2383, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2377, + 2379, { "updates": [ - 2395, + 2397, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2423, + 2425, { "_append": [ - 2408 + 2410 ], "_delete_at_path": [ - 2414 + 2416 ], "_delete_elem": [ - 2415 + 2417 ], "_delete_key": [ - 2416 + 2418 ], "_inc": [ - 2417 + 2419 ], "_prepend": [ - 2427 + 2429 ], "_set": [ - 2429 + 2431 ], "where": [ - 2412, + 2414, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2402, + 2404, { "_append": [ - 2408 + 2410 ], "_delete_at_path": [ - 2414 + 2416 ], "_delete_elem": [ - 2415 + 2417 ], "_delete_key": [ - 2416 + 2418 ], "_inc": [ - 2417 + 2419 ], "_prepend": [ - 2427 + 2429 ], "_set": [ - 2429 + 2431 ], "pk_columns": [ - 2426, + 2428, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2423, + 2425, { "updates": [ - 2441, + 2443, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2467, + 2469, { "_inc": [ - 2461 + 2463 ], "_set": [ - 2474 + 2476 ], "where": [ - 2459, + 2461, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2448, + 2450, { "_inc": [ - 2461 + 2463 ], "_set": [ - 2474 + 2476 ], "pk_columns": [ - 2470, + 2472, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2467, + 2469, { "updates": [ - 2486, + 2488, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2510, + 2512, { "_inc": [ - 2504 + 2506 ], "_set": [ - 2516 + 2518 ], "where": [ - 2502, + 2504, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2493, + 2495, { "_inc": [ - 2504 + 2506 ], "_set": [ - 2516 + 2518 ], "pk_columns": [ - 2514, + 2516, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2510, + 2512, { "updates": [ - 2528, + 2530, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2558, + 2560, { "_append": [ - 2543 + 2545 ], "_delete_at_path": [ - 2549 + 2551 ], "_delete_elem": [ - 2550 + 2552 ], "_delete_key": [ - 2551 + 2553 ], "_inc": [ - 2552 + 2554 ], "_prepend": [ - 2563 + 2565 ], "_set": [ - 2567 + 2569 ], "where": [ - 2547, + 2549, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2535, + 2537, { "_append": [ - 2543 + 2545 ], "_delete_at_path": [ - 2549 + 2551 ], "_delete_elem": [ - 2550 + 2552 ], "_delete_key": [ - 2551 + 2553 ], "_inc": [ - 2552 + 2554 ], "_prepend": [ - 2563 + 2565 ], "_set": [ - 2567 + 2569 ], "pk_columns": [ - 2562, + 2564, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2558, + 2560, { "updates": [ - 2579, + 2581, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2603, + 2605, { "_inc": [ - 2597 + 2599 ], "_set": [ - 2608 + 2610 ], "where": [ - 2595, + 2597, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2586, + 2588, { "_inc": [ - 2597 + 2599 ], "_set": [ - 2608 + 2610 ], "pk_columns": [ - 2606, + 2608, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2603, + 2605, { "updates": [ - 2620, + 2622, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2643, + 2645, { "_set": [ - 2650 + 2652 ], "where": [ - 2636, + 2638, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2627, + 2629, { "_set": [ - 2650 + 2652 ], "pk_columns": [ - 2646, + 2648, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2643, + 2645, { "updates": [ - 2654, + 2656, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2672, + 2674, { "_inc": [ - 2666 + 2668 ], "_set": [ - 2678 + 2680 ], "where": [ - 2664, + 2666, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2655, + 2657, { "_inc": [ - 2666 + 2668 ], "_set": [ - 2678 + 2680 ], "pk_columns": [ - 2676, + 2678, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2672, + 2674, { "updates": [ - 2690, + 2692, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2707, + 2709, { "_inc": [ - 2703 + 2705 ], "_set": [ - 2713 + 2715 ], "where": [ - 2701, + 2703, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2697, + 2699, { "_inc": [ - 2703 + 2705 ], "_set": [ - 2713 + 2715 ], "pk_columns": [ - 2711, + 2713, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2707, + 2709, { "updates": [ - 2721, + 2723, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2741, + 2743, { "_set": [ - 2748 + 2750 ], "where": [ - 2734, + 2736, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2725, + 2727, { "_set": [ - 2748 + 2750 ], "pk_columns": [ - 2744, + 2746, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2741, + 2743, { "updates": [ - 2752, + 2754, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2776, + 2778, { "_append": [ - 2761 + 2763 ], "_delete_at_path": [ - 2767 + 2769 ], "_delete_elem": [ - 2768 + 2770 ], "_delete_key": [ - 2769 + 2771 ], "_inc": [ - 2770 + 2772 ], "_prepend": [ - 2780 + 2782 ], "_set": [ - 2784 + 2786 ], "where": [ - 2765, + 2767, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2753, + 2755, { "_append": [ - 2761 + 2763 ], "_delete_at_path": [ - 2767 + 2769 ], "_delete_elem": [ - 2768 + 2770 ], "_delete_key": [ - 2769 + 2771 ], "_inc": [ - 2770 + 2772 ], "_prepend": [ - 2780 + 2782 ], "_set": [ - 2784 + 2786 ], "pk_columns": [ - 2779, + 2781, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2776, + 2778, { "updates": [ - 2796, + 2798, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2811, + 2813, { "_set": [ - 2816 + 2818 ], "where": [ - 2806, + 2808, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2803, + 2805, { "_set": [ - 2816 + 2818 ], "pk_columns": [ - 2814, + 2816, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2811, + 2813, { "updates": [ - 2820, + 2822, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2838, + 2840, { "_inc": [ - 2832 + 2834 ], "_set": [ - 2844 + 2846 ], "where": [ - 2830, + 2832, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2821, + 2823, { "_inc": [ - 2832 + 2834 ], "_set": [ - 2844 + 2846 ], "pk_columns": [ - 2842, + 2844, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2838, + 2840, { "updates": [ - 2856, + 2858, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2871, + 2873, { "_set": [ - 2876 + 2878 ], "where": [ - 2866, + 2868, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2863, + 2865, { "_set": [ - 2876 + 2878 ], "pk_columns": [ - 2874, + 2876, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2871, + 2873, { "updates": [ - 2880, + 2882, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2903, + 2905, { "_append": [ - 2889 + 2891 ], "_delete_at_path": [ - 2894 + 2896 ], "_delete_elem": [ - 2895 + 2897 ], "_delete_key": [ - 2896 + 2898 ], "_inc": [ - 2897 + 2899 ], "_prepend": [ - 2905 + 2907 ], "_set": [ - 2909 + 2911 ], "where": [ - 2893, + 2895, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2903, + 2905, { "updates": [ - 2920, + 2922, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2937, + 2939, { "_inc": [ - 2933 + 2935 ], "_set": [ - 2942 + 2944 ], "where": [ - 2931, + 2933, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2927, + 2929, { "_inc": [ - 2933 + 2935 ], "_set": [ - 2942 + 2944 ], "pk_columns": [ - 2940, + 2942, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2937, + 2939, { "updates": [ - 2950, + 2952, "[news_articles_updates!]!" ] } ], + "update_notification_preferences": [ + 2966, + { + "_inc": [ + 2962 + ], + "_set": [ + 2971 + ], + "where": [ + 2960, + "notification_preferences_bool_exp!" + ] + } + ], + "update_notification_preferences_by_pk": [ + 2956, + { + "_inc": [ + 2962 + ], + "_set": [ + 2971 + ], + "pk_columns": [ + 2969, + "notification_preferences_pk_columns_input!" + ] + } + ], + "update_notification_preferences_many": [ + 2966, + { + "updates": [ + 2979, + "[notification_preferences_updates!]!" + ] + } + ], "update_notifications": [ - 2977, + 3006, { "_append": [ - 2962 + 2991 ], "_delete_at_path": [ - 2968 + 2997 ], "_delete_elem": [ - 2969 + 2998 ], "_delete_key": [ - 2970 + 2999 ], "_inc": [ - 2971 + 3000 ], "_prepend": [ - 2981 + 3010 ], "_set": [ - 2985 + 3014 ], "where": [ - 2966, + 2995, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2954, + 2983, { "_append": [ - 2962 + 2991 ], "_delete_at_path": [ - 2968 + 2997 ], "_delete_elem": [ - 2969 + 2998 ], "_delete_key": [ - 2970 + 2999 ], "_inc": [ - 2971 + 3000 ], "_prepend": [ - 2981 + 3010 ], "_set": [ - 2985 + 3014 ], "pk_columns": [ - 2980, + 3009, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2977, + 3006, { "updates": [ - 2997, + 3026, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3024, + 3053, { "_inc": [ - 3018 + 3047 ], "_set": [ - 3029 + 3058 ], "where": [ - 3016, + 3045, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3007, + 3036, { "_inc": [ - 3018 + 3047 ], "_set": [ - 3029 + 3058 ], "pk_columns": [ - 3027, + 3056, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3024, + 3053, { "updates": [ - 3041, + 3070, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3058, + 3087, { "_inc": [ - 3054 + 3083 ], "_set": [ - 3064 + 3093 ], "where": [ - 3052, + 3081, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3048, + 3077, { "_inc": [ - 3054 + 3083 ], "_set": [ - 3064 + 3093 ], "pk_columns": [ - 3062, + 3091, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3058, + 3087, { "updates": [ - 3072, + 3101, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3086, + 3115, { "_inc": [ - 3082 + 3111 ], "_set": [ - 3091 + 3120 ], "where": [ - 3080, + 3109, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3076, + 3105, { "_inc": [ - 3082 + 3111 ], "_set": [ - 3091 + 3120 ], "pk_columns": [ - 3089, + 3118, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3086, + 3115, { "updates": [ - 3099, + 3128, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3120, + 3149, { "_inc": [ - 3114 + 3143 ], "_set": [ - 3125 + 3154 ], "where": [ - 3112, + 3141, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3103, + 3132, { "_inc": [ - 3114 + 3143 ], "_set": [ - 3125 + 3154 ], "pk_columns": [ - 3123, + 3152, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3120, + 3149, { "updates": [ - 3137, + 3166, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3163, + 3192, { "_inc": [ - 3157 + 3186 ], "_set": [ - 3170 + 3199 ], "where": [ - 3155, + 3184, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3144, + 3173, { "_inc": [ - 3157 + 3186 ], "_set": [ - 3170 + 3199 ], "pk_columns": [ - 3166, + 3195, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3163, + 3192, { "updates": [ - 3182, + 3211, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3224, + 3253, { "_inc": [ - 3218 + 3247 ], "_set": [ - 3229 + 3258 ], "where": [ - 3216, + 3245, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3207, + 3236, { "_inc": [ - 3218 + 3247 ], "_set": [ - 3229 + 3258 ], "pk_columns": [ - 3227, + 3256, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3224, + 3253, { "updates": [ - 3241, + 3270, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3258, + 3287, { "_inc": [ - 3254 + 3283 ], "_set": [ - 3263 + 3292 ], "where": [ - 3252, + 3281, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3248, + 3277, { "_inc": [ - 3254 + 3283 ], "_set": [ - 3263 + 3292 ], "pk_columns": [ - 3261, + 3290, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3258, + 3287, { "updates": [ - 3271, + 3300, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3292, + 3321, { "_inc": [ - 3286 + 3315 ], "_set": [ - 3297 + 3326 ], "where": [ - 3284, + 3313, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3275, + 3304, { "_inc": [ - 3286 + 3315 ], "_set": [ - 3297 + 3326 ], "pk_columns": [ - 3295, + 3324, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3292, + 3321, { "updates": [ - 3309, + 3338, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3335, + 3364, { "_inc": [ - 3329 + 3358 ], "_set": [ - 3342 + 3371 ], "where": [ - 3327, + 3356, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3316, + 3345, { "_inc": [ - 3329 + 3358 ], "_set": [ - 3342 + 3371 ], "pk_columns": [ - 3338, + 3367, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3335, + 3364, { "updates": [ - 3354, + 3383, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3421, + 3450, { "_inc": [ - 3415 + 3444 ], "_set": [ - 3428 + 3457 ], "where": [ - 3372, + 3401, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3361, + 3390, { "_inc": [ - 3415 + 3444 ], "_set": [ - 3428 + 3457 ], "pk_columns": [ - 3424, + 3453, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3390, + 3419, { "_inc": [ - 3384 + 3413 ], "_set": [ - 3395 + 3424 ], "where": [ - 3382, + 3411, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3373, + 3402, { "_inc": [ - 3384 + 3413 ], "_set": [ - 3395 + 3424 ], "pk_columns": [ - 3393, + 3422, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3390, + 3419, { "updates": [ - 3407, + 3436, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3421, + 3450, { "updates": [ - 3440, + 3469, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3456, + 3485, { "_inc": [ - 3452 + 3481 ], "_set": [ - 3459 + 3488 ], "where": [ - 3451, + 3480, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3456, + 3485, { "updates": [ - 3466, + 3495, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3487, + 3516, { "_inc": [ - 3481 + 3510 ], "_set": [ - 3492 + 3521 ], "where": [ - 3479, + 3508, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3470, + 3499, { "_inc": [ - 3481 + 3510 ], "_set": [ - 3492 + 3521 ], "pk_columns": [ - 3490, + 3519, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3487, + 3516, { "updates": [ - 3504, + 3533, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3579, + 3608, { "_inc": [ - 3573 + 3602 ], "_set": [ - 3584 + 3613 ], "where": [ - 3571, + 3600, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3562, + 3591, { "_inc": [ - 3573 + 3602 ], "_set": [ - 3584 + 3613 ], "pk_columns": [ - 3582, + 3611, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3579, + 3608, { "updates": [ - 3596, + 3625, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3638, + 3667, { "_inc": [ - 3632 + 3661 ], "_set": [ - 3643 + 3672 ], "where": [ - 3630, + 3659, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3621, + 3650, { "_inc": [ - 3632 + 3661 ], "_set": [ - 3643 + 3672 ], "pk_columns": [ - 3641, + 3670, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3638, + 3667, { "updates": [ - 3655, + 3684, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3679, + 3708, { "_inc": [ - 3673 + 3702 ], "_set": [ - 3684 + 3713 ], "where": [ - 3671, + 3700, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3662, + 3691, { "_inc": [ - 3673 + 3702 ], "_set": [ - 3684 + 3713 ], "pk_columns": [ - 3682, + 3711, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3679, + 3708, { "updates": [ - 3696, + 3725, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3730, + 3759, { "_inc": [ - 3724 + 3753 ], "_set": [ - 3743 + 3772 ], "where": [ - 3722, + 3751, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3703, + 3732, { "_inc": [ - 3724 + 3753 ], "_set": [ - 3743 + 3772 ], "pk_columns": [ - 3733, + 3762, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3730, + 3759, { "updates": [ - 3755, + 3784, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3772, + 3801, { "_inc": [ - 3768 + 3797 ], "_set": [ - 3778 + 3807 ], "where": [ - 3766, + 3795, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3762, + 3791, { "_inc": [ - 3768 + 3797 ], "_set": [ - 3778 + 3807 ], "pk_columns": [ - 3776, + 3805, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3772, + 3801, { "updates": [ - 3786, + 3815, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3804, + 3833, { "_append": [ - 3793 + 3822 ], "_delete_at_path": [ - 3797 + 3826 ], "_delete_elem": [ - 3798 + 3827 ], "_delete_key": [ - 3799 + 3828 ], "_inc": [ - 3800 + 3829 ], "_prepend": [ - 3808 + 3837 ], "_set": [ - 3810 + 3839 ], "where": [ - 3795, + 3824, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3790, + 3819, { "_append": [ - 3793 + 3822 ], "_delete_at_path": [ - 3797 + 3826 ], "_delete_elem": [ - 3798 + 3827 ], "_delete_key": [ - 3799 + 3828 ], "_inc": [ - 3800 + 3829 ], "_prepend": [ - 3808 + 3837 ], "_set": [ - 3810 + 3839 ], "pk_columns": [ - 3807, + 3836, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3804, + 3833, { "updates": [ - 3818, + 3847, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3832, + 3861, { "_inc": [ - 3828 + 3857 ], "_set": [ - 3837 + 3866 ], "where": [ - 3826, + 3855, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3822, + 3851, { "_inc": [ - 3828 + 3857 ], "_set": [ - 3837 + 3866 ], "pk_columns": [ - 3835, + 3864, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3832, + 3861, { "updates": [ - 3845, + 3874, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3866, + 3895, { "_inc": [ - 3860 + 3889 ], "_set": [ - 3871 + 3900 ], "where": [ - 3858, + 3887, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3849, + 3878, { "_inc": [ - 3860 + 3889 ], "_set": [ - 3871 + 3900 ], "pk_columns": [ - 3869, + 3898, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3866, + 3895, { "updates": [ - 3883, + 3912, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3907, + 3936, { "_inc": [ - 3901 + 3930 ], "_set": [ - 3912 + 3941 ], "where": [ - 3899, + 3928, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3890, + 3919, { "_inc": [ - 3901 + 3930 ], "_set": [ - 3912 + 3941 ], "pk_columns": [ - 3910, + 3939, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3907, + 3936, { "updates": [ - 3924, + 3953, "[player_utility_updates!]!" ] } ], "update_players": [ - 3974, + 4003, { "_inc": [ - 3970 + 3999 ], "_set": [ - 3980 + 4009 ], "where": [ - 3968, + 3997, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3964, + 3993, { "_inc": [ - 3970 + 3999 ], "_set": [ - 3980 + 4009 ], "pk_columns": [ - 3978, + 4007, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3974, + 4003, { "updates": [ - 3988, + 4017, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4002, + 4031, { "_inc": [ - 3998 + 4027 ], "_set": [ - 4007 + 4036 ], "where": [ - 3996, + 4025, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3992, + 4021, { "_inc": [ - 3998 + 4027 ], "_set": [ - 4007 + 4036 ], "pk_columns": [ - 4005, + 4034, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4002, + 4031, { "updates": [ - 4015, + 4044, "[plugin_versions_updates!]!" ] } ], + "update_push_subscriptions": [ + 4058, + { + "_inc": [ + 4054 + ], + "_set": [ + 4063 + ], + "where": [ + 4052, + "push_subscriptions_bool_exp!" + ] + } + ], + "update_push_subscriptions_by_pk": [ + 4048, + { + "_inc": [ + 4054 + ], + "_set": [ + 4063 + ], + "pk_columns": [ + 4061, + "push_subscriptions_pk_columns_input!" + ] + } + ], + "update_push_subscriptions_many": [ + 4058, + { + "updates": [ + 4071, + "[push_subscriptions_updates!]!" + ] + } + ], "update_seasons": [ - 4033, + 4089, { "_inc": [ - 4029 + 4085 ], "_set": [ - 4039 + 4095 ], "where": [ - 4027, + 4083, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4023, + 4079, { "_inc": [ - 4029 + 4085 ], "_set": [ - 4039 + 4095 ], "pk_columns": [ - 4037, + 4093, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4033, + 4089, { "updates": [ - 4047, + 4103, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4060, + 4116, { "_set": [ - 4066 + 4122 ], "where": [ - 4055, + 4111, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4051, + 4107, { "_set": [ - 4066 + 4122 ], "pk_columns": [ - 4064, + 4120, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4060, + 4116, { "updates": [ - 4074, + 4130, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4097, + 4153, { "_inc": [ - 4091 + 4147 ], "_set": [ - 4105 + 4161 ], "where": [ - 4089, + 4145, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4078, + 4134, { "_inc": [ - 4091 + 4147 ], "_set": [ - 4105 + 4161 ], "pk_columns": [ - 4101, + 4157, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4097, + 4153, { "updates": [ - 4117, + 4173, "[servers_updates!]!" ] } ], "update_settings": [ - 4132, + 4188, { "_set": [ - 4137 + 4193 ], "where": [ - 4127, + 4183, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4124, + 4180, { "_set": [ - 4137 + 4193 ], "pk_columns": [ - 4135, + 4191, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4132, + 4188, { "updates": [ - 4141, + 4197, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4158, + 4214, { "_set": [ - 4163 + 4219 ], "where": [ - 4151, + 4207, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4144, + 4200, { "_set": [ - 4163 + 4219 ], "pk_columns": [ - 4161, + 4217, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4158, + 4214, { "updates": [ - 4167, + 4223, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4178, + 4234, { "_inc": [ - 4174 + 4230 ], "_set": [ - 4184 + 4240 ], "where": [ - 4172, + 4228, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4168, + 4224, { "_inc": [ - 4174 + 4230 ], "_set": [ - 4184 + 4240 ], "pk_columns": [ - 4182, + 4238, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4178, + 4234, { "updates": [ - 4192, + 4248, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4206, + 4262, { "_inc": [ - 4202 + 4258 ], "_set": [ - 4211 + 4267 ], "where": [ - 4200, + 4256, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4196, + 4252, { "_inc": [ - 4202 + 4258 ], "_set": [ - 4211 + 4267 ], "pk_columns": [ - 4209, + 4265, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4206, + 4262, { "updates": [ - 4219, + 4275, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4240, + 4296, { "_inc": [ - 4234 + 4290 ], "_set": [ - 4245 + 4301 ], "where": [ - 4232, + 4288, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4223, + 4279, { "_inc": [ - 4234 + 4290 ], "_set": [ - 4245 + 4301 ], "pk_columns": [ - 4243, + 4299, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4240, + 4296, { "updates": [ - 4257, + 4313, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4283, + 4339, { "_inc": [ - 4277 + 4333 ], "_set": [ - 4290 + 4346 ], "where": [ - 4275, + 4331, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4264, + 4320, { "_inc": [ - 4277 + 4333 ], "_set": [ - 4290 + 4346 ], "pk_columns": [ - 4286, + 4342, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4283, + 4339, { "updates": [ - 4302, + 4358, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4319, + 4375, { "_inc": [ - 4315 + 4371 ], "_set": [ - 4324 + 4380 ], "where": [ - 4313, + 4369, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4309, + 4365, { "_inc": [ - 4315 + 4371 ], "_set": [ - 4324 + 4380 ], "pk_columns": [ - 4322, + 4378, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4319, + 4375, { "updates": [ - 4332, + 4388, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4352, + 4408, { "_set": [ - 4359 + 4415 ], "where": [ - 4345, + 4401, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4336, + 4392, { "_set": [ - 4359 + 4415 ], "pk_columns": [ - 4355, + 4411, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4352, + 4408, { "updates": [ - 4363, + 4419, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4381, + 4437, { "_inc": [ - 4375 + 4431 ], "_set": [ - 4386 + 4442 ], "where": [ - 4373, + 4429, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4364, + 4420, { "_inc": [ - 4375 + 4431 ], "_set": [ - 4386 + 4442 ], "pk_columns": [ - 4384, + 4440, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4381, + 4437, { "updates": [ - 4398, + 4454, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4424, + 4480, { "_inc": [ - 4418 + 4474 ], "_set": [ - 4432 + 4488 ], "where": [ - 4416, + 4472, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4405, + 4461, { "_inc": [ - 4418 + 4474 ], "_set": [ - 4432 + 4488 ], "pk_columns": [ - 4428, + 4484, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4424, + 4480, { "updates": [ - 4444, + 4500, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4461, + 4517, { "_inc": [ - 4457 + 4513 ], "_set": [ - 4467 + 4523 ], "where": [ - 4455, + 4511, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4451, + 4507, { "_inc": [ - 4457 + 4513 ], "_set": [ - 4467 + 4523 ], "pk_columns": [ - 4465, + 4521, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4461, + 4517, { "updates": [ - 4475, + 4531, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4489, + 4545, { "_inc": [ - 4485 + 4541 ], "_set": [ - 4494 + 4550 ], "where": [ - 4483, + 4539, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4479, + 4535, { "_inc": [ - 4485 + 4541 ], "_set": [ - 4494 + 4550 ], "pk_columns": [ - 4492, + 4548, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4489, + 4545, { "updates": [ - 4502, + 4558, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4525, + 4581, { "_inc": [ - 4519 + 4575 ], "_set": [ - 4533 + 4589 ], "where": [ - 4517, + 4573, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4506, + 4562, { "_inc": [ - 4519 + 4575 ], "_set": [ - 4533 + 4589 ], "pk_columns": [ - 4529, + 4585, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4525, + 4581, { "updates": [ - 4545, + 4601, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4572, + 4628, { "_inc": [ - 4566 + 4622 ], "_set": [ - 4578 + 4634 ], "where": [ - 4564, + 4620, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4555, + 4611, { "_inc": [ - 4566 + 4622 ], "_set": [ - 4578 + 4634 ], "pk_columns": [ - 4576, + 4632, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4572, + 4628, { "updates": [ - 4590, + 4646, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4616, + 4672, { "_inc": [ - 4610 + 4666 ], "_set": [ - 4624 + 4680 ], "where": [ - 4608, + 4664, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4597, + 4653, { "_inc": [ - 4610 + 4666 ], "_set": [ - 4624 + 4680 ], "pk_columns": [ - 4620, + 4676, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4616, + 4672, { "updates": [ - 4636, + 4692, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4657, + 4713, { "_set": [ - 4662 + 4718 ], "where": [ - 4650, + 4706, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4643, + 4699, { "_set": [ - 4662 + 4718 ], "pk_columns": [ - 4660, + 4716, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4657, + 4713, { "updates": [ - 4666, + 4722, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4681, + 4737, { "_set": [ - 4686 + 4742 ], "where": [ - 4674, + 4730, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4667, + 4723, { "_set": [ - 4686 + 4742 ], "pk_columns": [ - 4684, + 4740, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4681, + 4737, { "updates": [ - 4690, + 4746, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4708, + 4764, { "_inc": [ - 4702 + 4758 ], "_set": [ - 4713 + 4769 ], "where": [ - 4700, + 4756, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4691, + 4747, { "_inc": [ - 4702 + 4758 ], "_set": [ - 4713 + 4769 ], "pk_columns": [ - 4711, + 4767, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4708, + 4764, { "updates": [ - 4725, + 4781, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4749, + 4805, { "_inc": [ - 4743 + 4799 ], "_set": [ - 4754 + 4810 ], "where": [ - 4741, + 4797, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4732, + 4788, { "_inc": [ - 4743 + 4799 ], "_set": [ - 4754 + 4810 ], "pk_columns": [ - 4752, + 4808, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4749, + 4805, { "updates": [ - 4766, + 4822, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4790, + 4846, { "_inc": [ - 4784 + 4840 ], "_set": [ - 4795 + 4851 ], "where": [ - 4782, + 4838, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4773, + 4829, { "_inc": [ - 4784 + 4840 ], "_set": [ - 4795 + 4851 ], "pk_columns": [ - 4793, + 4849, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4790, + 4846, { "updates": [ - 4807, + 4863, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4837, + 4893, { "_append": [ - 4822 + 4878 ], "_delete_at_path": [ - 4828 + 4884 ], "_delete_elem": [ - 4829 + 4885 ], "_delete_key": [ - 4830 + 4886 ], "_inc": [ - 4831 + 4887 ], "_prepend": [ - 4842 + 4898 ], "_set": [ - 4846 + 4902 ], "where": [ - 4826, + 4882, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4814, + 4870, { "_append": [ - 4822 + 4878 ], "_delete_at_path": [ - 4828 + 4884 ], "_delete_elem": [ - 4829 + 4885 ], "_delete_key": [ - 4830 + 4886 ], "_inc": [ - 4831 + 4887 ], "_prepend": [ - 4842 + 4898 ], "_set": [ - 4846 + 4902 ], "pk_columns": [ - 4841, + 4897, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4837, + 4893, { "updates": [ - 4858, + 4914, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4882, + 4938, { "_inc": [ - 4876 + 4932 ], "_set": [ - 4887 + 4943 ], "where": [ - 4874, + 4930, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4865, + 4921, { "_inc": [ - 4876 + 4932 ], "_set": [ - 4887 + 4943 ], "pk_columns": [ - 4885, + 4941, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4882, + 4938, { "updates": [ - 4899, + 4955, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4923, + 4979, { "_inc": [ - 4917 + 4973 ], "_set": [ - 4928 + 4984 ], "where": [ - 4915, + 4971, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4906, + 4962, { "_inc": [ - 4917 + 4973 ], "_set": [ - 4928 + 4984 ], "pk_columns": [ - 4926, + 4982, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4923, + 4979, { "updates": [ - 4940, + 4996, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4964, + 5020, { "_inc": [ - 4958 + 5014 ], "_set": [ - 4970 + 5026 ], "where": [ - 4956, + 5012, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4947, + 5003, { "_inc": [ - 4958 + 5014 ], "_set": [ - 4970 + 5026 ], "pk_columns": [ - 4968, + 5024, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4964, + 5020, { "updates": [ - 4982, + 5038, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5018, + 5074, { "_inc": [ - 5012 + 5068 ], "_set": [ - 5034 + 5090 ], "where": [ - 5010, + 5066, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4989, + 5045, { "_inc": [ - 5012 + 5068 ], "_set": [ - 5034 + 5090 ], "pk_columns": [ - 5022, + 5078, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5018, + 5074, { "updates": [ - 5046, + 5102, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5218, + 5274, { "_inc": [ - 5214 + 5270 ], "_set": [ - 5222 + 5278 ], "where": [ - 5213, + 5269, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5218, + 5274, { "updates": [ - 5229, + 5285, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5329, + 5385, { "_inc": [ - 5325 + 5381 ], "_set": [ - 5332 + 5388 ], "where": [ - 5324, + 5380, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5329, + 5385, { "updates": [ - 5339, + 5395, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5551, + 5607, { "_inc": [ - 5545 + 5601 ], "_set": [ - 5554 + 5610 ], "where": [ - 5544, + 5600, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5551, + 5607, { "updates": [ - 5565, + 5621, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5728, + 5784, { "_set": [ - 5733 + 5789 ], "where": [ - 5722, + 5778, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5728, + 5784, { "updates": [ - 5736, + 5792, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5822, + 5878, { "_inc": [ - 5816 + 5872 ], "_set": [ - 5836 + 5892 ], "where": [ - 5814, + 5870, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5795, + 5851, { "_inc": [ - 5816 + 5872 ], "_set": [ - 5836 + 5892 ], "pk_columns": [ - 5826, + 5882, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5822, + 5878, { "updates": [ - 5848, + 5904, "[v_team_stage_results_updates!]!" ] } @@ -162563,7 +163673,7 @@ export default { 83, { "game_server_node_id": [ - 5053, + 5109, "uuid!" ] } @@ -162572,10 +163682,10 @@ export default { 99, { "match_map_demo_id": [ - 5053 + 5109 ], "match_map_id": [ - 5053, + 5109, "uuid!" ] } @@ -162606,10 +163716,10 @@ export default { }, "Subscription": { "_map_pool": [ - 100, + 102, { "distinct_on": [ - 112, + 114, "[_map_pool_select_column!]" ], "limit": [ @@ -162619,19 +163729,19 @@ export default { 40 ], "order_by": [ - 110, + 112, "[_map_pool_order_by!]" ], "where": [ - 103 + 105 ] } ], "_map_pool_aggregate": [ - 101, + 103, { "distinct_on": [ - 112, + 114, "[_map_pool_select_column!]" ], "limit": [ @@ -162641,48 +163751,48 @@ export default { 40 ], "order_by": [ - 110, + 112, "[_map_pool_order_by!]" ], "where": [ - 103 + 105 ] } ], "_map_pool_by_pk": [ - 100, + 102, { "map_id": [ - 5053, + 5109, "uuid!" ], "map_pool_id": [ - 5053, + 5109, "uuid!" ] } ], "_map_pool_stream": [ - 100, + 102, { "batch_size": [ 40, "Int!" ], "cursor": [ - 114, + 116, "[_map_pool_stream_cursor_input]!" ], "where": [ - 103 + 105 ] } ], "abandoned_matches": [ - 119, + 121, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -162692,19 +163802,19 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "abandoned_matches_aggregate": [ - 120, + 122, { "distinct_on": [ - 140, + 142, "[abandoned_matches_select_column!]" ], "limit": [ @@ -162714,44 +163824,44 @@ export default { 40 ], "order_by": [ - 138, + 140, "[abandoned_matches_order_by!]" ], "where": [ - 128 + 130 ] } ], "abandoned_matches_by_pk": [ - 119, + 121, { "id": [ - 5053, + 5109, "uuid!" ] } ], "abandoned_matches_stream": [ - 119, + 121, { "batch_size": [ 40, "Int!" ], "cursor": [ - 148, + 150, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 128 + 130 ] } ], "api_keys": [ - 160, + 162, { "distinct_on": [ - 174, + 176, "[api_keys_select_column!]" ], "limit": [ @@ -162761,19 +163871,19 @@ export default { 40 ], "order_by": [ - 172, + 174, "[api_keys_order_by!]" ], "where": [ - 164 + 166 ] } ], "api_keys_aggregate": [ - 161, + 163, { "distinct_on": [ - 174, + 176, "[api_keys_select_column!]" ], "limit": [ @@ -162783,44 +163893,44 @@ export default { 40 ], "order_by": [ - 172, + 174, "[api_keys_order_by!]" ], "where": [ - 164 + 166 ] } ], "api_keys_by_pk": [ - 160, + 162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "api_keys_stream": [ - 160, + 162, { "batch_size": [ 40, "Int!" ], "cursor": [ - 179, + 181, "[api_keys_stream_cursor_input]!" ], "where": [ - 164 + 166 ] } ], "award_recipients": [ - 188, + 190, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -162830,19 +163940,19 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "award_recipients_aggregate": [ - 189, + 191, { "distinct_on": [ - 209, + 211, "[award_recipients_select_column!]" ], "limit": [ @@ -162852,44 +163962,44 @@ export default { 40 ], "order_by": [ - 207, + 209, "[award_recipients_order_by!]" ], "where": [ - 197 + 199 ] } ], "award_recipients_by_pk": [ - 188, + 190, { "id": [ - 5053, + 5109, "uuid!" ] } ], "award_recipients_stream": [ - 188, + 190, { "batch_size": [ 40, "Int!" ], "cursor": [ - 217, + 219, "[award_recipients_stream_cursor_input]!" ], "where": [ - 197 + 199 ] } ], "awards": [ - 229, + 231, { "distinct_on": [ - 244, + 246, "[awards_select_column!]" ], "limit": [ @@ -162899,19 +164009,19 @@ export default { 40 ], "order_by": [ - 242, + 244, "[awards_order_by!]" ], "where": [ - 233 + 235 ] } ], "awards_aggregate": [ - 230, + 232, { "distinct_on": [ - 244, + 246, "[awards_select_column!]" ], "limit": [ @@ -162921,44 +164031,44 @@ export default { 40 ], "order_by": [ - 242, + 244, "[awards_order_by!]" ], "where": [ - 233 + 235 ] } ], "awards_by_pk": [ - 229, + 231, { "id": [ - 5053, + 5109, "uuid!" ] } ], "awards_stream": [ - 229, + 231, { "batch_size": [ 40, "Int!" ], "cursor": [ - 249, + 251, "[awards_stream_cursor_input]!" ], "where": [ - 233 + 235 ] } ], "clip_render_jobs": [ - 262, + 264, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -162968,19 +164078,19 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "clip_render_jobs_aggregate": [ - 263, + 265, { "distinct_on": [ - 290, + 292, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -162990,44 +164100,44 @@ export default { 40 ], "order_by": [ - 287, + 289, "[clip_render_jobs_order_by!]" ], "where": [ - 274 + 276 ] } ], "clip_render_jobs_by_pk": [ - 262, + 264, { "id": [ - 5053, + 5109, "uuid!" ] } ], "clip_render_jobs_stream": [ - 262, + 264, { "batch_size": [ 40, "Int!" ], "cursor": [ - 300, + 302, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 274 + 276 ] } ], "custom_pages": [ - 314, + 316, { "distinct_on": [ - 333, + 335, "[custom_pages_select_column!]" ], "limit": [ @@ -163037,19 +164147,19 @@ export default { 40 ], "order_by": [ - 330, + 332, "[custom_pages_order_by!]" ], "where": [ - 319 + 321 ] } ], "custom_pages_aggregate": [ - 315, + 317, { "distinct_on": [ - 333, + 335, "[custom_pages_select_column!]" ], "limit": [ @@ -163059,44 +164169,44 @@ export default { 40 ], "order_by": [ - 330, + 332, "[custom_pages_order_by!]" ], "where": [ - 319 + 321 ] } ], "custom_pages_by_pk": [ - 314, + 316, { "id": [ - 5053, + 5109, "uuid!" ] } ], "custom_pages_stream": [ - 314, + 316, { "batch_size": [ 40, "Int!" ], "cursor": [ - 338, + 340, "[custom_pages_stream_cursor_input]!" ], "where": [ - 319 + 321 ] } ], "db_backups": [ - 346, + 348, { "distinct_on": [ - 360, + 362, "[db_backups_select_column!]" ], "limit": [ @@ -163106,19 +164216,19 @@ export default { 40 ], "order_by": [ - 358, + 360, "[db_backups_order_by!]" ], "where": [ - 350 + 352 ] } ], "db_backups_aggregate": [ - 347, + 349, { "distinct_on": [ - 360, + 362, "[db_backups_select_column!]" ], "limit": [ @@ -163128,44 +164238,44 @@ export default { 40 ], "order_by": [ - 358, + 360, "[db_backups_order_by!]" ], "where": [ - 350 + 352 ] } ], "db_backups_by_pk": [ - 346, + 348, { "id": [ - 5053, + 5109, "uuid!" ] } ], "db_backups_stream": [ - 346, + 348, { "batch_size": [ 40, "Int!" ], "cursor": [ - 365, + 367, "[db_backups_stream_cursor_input]!" ], "where": [ - 350 + 352 ] } ], "draft_game_picks": [ - 373, + 375, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -163175,19 +164285,19 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "draft_game_picks_aggregate": [ - 374, + 376, { "distinct_on": [ - 396, + 398, "[draft_game_picks_select_column!]" ], "limit": [ @@ -163197,44 +164307,44 @@ export default { 40 ], "order_by": [ - 394, + 396, "[draft_game_picks_order_by!]" ], "where": [ - 384 + 386 ] } ], "draft_game_picks_by_pk": [ - 373, + 375, { "id": [ - 5053, + 5109, "uuid!" ] } ], "draft_game_picks_stream": [ - 373, + 375, { "batch_size": [ 40, "Int!" ], "cursor": [ - 406, + 408, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 384 + 386 ] } ], "draft_game_players": [ - 418, + 420, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -163244,19 +164354,19 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "draft_game_players_aggregate": [ - 419, + 421, { "distinct_on": [ - 441, + 443, "[draft_game_players_select_column!]" ], "limit": [ @@ -163266,48 +164376,48 @@ export default { 40 ], "order_by": [ - 439, + 441, "[draft_game_players_order_by!]" ], "where": [ - 429 + 431 ] } ], "draft_game_players_by_pk": [ - 418, + 420, { "draft_game_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "draft_game_players_stream": [ - 418, + 420, { "batch_size": [ 40, "Int!" ], "cursor": [ - 451, + 453, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 429 + 431 ] } ], "draft_games": [ - 463, + 465, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -163317,19 +164427,19 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "draft_games_aggregate": [ - 464, + 466, { "distinct_on": [ - 487, + 489, "[draft_games_select_column!]" ], "limit": [ @@ -163339,44 +164449,44 @@ export default { 40 ], "order_by": [ - 485, + 487, "[draft_games_order_by!]" ], "where": [ - 474 + 476 ] } ], "draft_games_by_pk": [ - 463, + 465, { "id": [ - 5053, + 5109, "uuid!" ] } ], "draft_games_stream": [ - 463, + 465, { "batch_size": [ 40, "Int!" ], "cursor": [ - 497, + 499, "[draft_games_stream_cursor_input]!" ], "where": [ - 474 + 476 ] } ], "e_award_sources": [ - 509, + 511, { "distinct_on": [ - 523, + 525, "[e_award_sources_select_column!]" ], "limit": [ @@ -163386,19 +164496,19 @@ export default { 40 ], "order_by": [ - 521, + 523, "[e_award_sources_order_by!]" ], "where": [ - 512 + 514 ] } ], "e_award_sources_aggregate": [ - 510, + 512, { "distinct_on": [ - 523, + 525, "[e_award_sources_select_column!]" ], "limit": [ @@ -163408,16 +164518,16 @@ export default { 40 ], "order_by": [ - 521, + 523, "[e_award_sources_order_by!]" ], "where": [ - 512 + 514 ] } ], "e_award_sources_by_pk": [ - 509, + 511, { "value": [ 80, @@ -163426,26 +164536,26 @@ export default { } ], "e_award_sources_stream": [ - 509, + 511, { "batch_size": [ 40, "Int!" ], "cursor": [ - 525, + 527, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 512 + 514 ] } ], "e_award_tiers": [ - 529, + 531, { "distinct_on": [ - 543, + 545, "[e_award_tiers_select_column!]" ], "limit": [ @@ -163455,19 +164565,19 @@ export default { 40 ], "order_by": [ - 541, + 543, "[e_award_tiers_order_by!]" ], "where": [ - 532 + 534 ] } ], "e_award_tiers_aggregate": [ - 530, + 532, { "distinct_on": [ - 543, + 545, "[e_award_tiers_select_column!]" ], "limit": [ @@ -163477,16 +164587,16 @@ export default { 40 ], "order_by": [ - 541, + 543, "[e_award_tiers_order_by!]" ], "where": [ - 532 + 534 ] } ], "e_award_tiers_by_pk": [ - 529, + 531, { "value": [ 80, @@ -163495,26 +164605,26 @@ export default { } ], "e_award_tiers_stream": [ - 529, + 531, { "batch_size": [ 40, "Int!" ], "cursor": [ - 545, + 547, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 532 + 534 ] } ], "e_check_in_settings": [ - 549, + 551, { "distinct_on": [ - 563, + 565, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -163524,19 +164634,19 @@ export default { 40 ], "order_by": [ - 561, + 563, "[e_check_in_settings_order_by!]" ], "where": [ - 552 + 554 ] } ], "e_check_in_settings_aggregate": [ - 550, + 552, { "distinct_on": [ - 563, + 565, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -163546,16 +164656,16 @@ export default { 40 ], "order_by": [ - 561, + 563, "[e_check_in_settings_order_by!]" ], "where": [ - 552 + 554 ] } ], "e_check_in_settings_by_pk": [ - 549, + 551, { "value": [ 80, @@ -163564,26 +164674,26 @@ export default { } ], "e_check_in_settings_stream": [ - 549, + 551, { "batch_size": [ 40, "Int!" ], "cursor": [ - 565, + 567, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 552 + 554 ] } ], "e_draft_game_captain_selection": [ - 569, + 571, { "distinct_on": [ - 584, + 586, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -163593,19 +164703,19 @@ export default { 40 ], "order_by": [ - 582, + 584, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 572 + 574 ] } ], "e_draft_game_captain_selection_aggregate": [ - 570, + 572, { "distinct_on": [ - 584, + 586, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -163615,16 +164725,16 @@ export default { 40 ], "order_by": [ - 582, + 584, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 572 + 574 ] } ], "e_draft_game_captain_selection_by_pk": [ - 569, + 571, { "value": [ 80, @@ -163633,26 +164743,26 @@ export default { } ], "e_draft_game_captain_selection_stream": [ - 569, + 571, { "batch_size": [ 40, "Int!" ], "cursor": [ - 586, + 588, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 572 + 574 ] } ], "e_draft_game_draft_order": [ - 590, + 592, { "distinct_on": [ - 605, + 607, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -163662,19 +164772,19 @@ export default { 40 ], "order_by": [ - 603, + 605, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 593 + 595 ] } ], "e_draft_game_draft_order_aggregate": [ - 591, + 593, { "distinct_on": [ - 605, + 607, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -163684,16 +164794,16 @@ export default { 40 ], "order_by": [ - 603, + 605, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 593 + 595 ] } ], "e_draft_game_draft_order_by_pk": [ - 590, + 592, { "value": [ 80, @@ -163702,26 +164812,26 @@ export default { } ], "e_draft_game_draft_order_stream": [ - 590, + 592, { "batch_size": [ 40, "Int!" ], "cursor": [ - 607, + 609, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 593 + 595 ] } ], "e_draft_game_mode": [ - 611, + 613, { "distinct_on": [ - 626, + 628, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -163731,19 +164841,19 @@ export default { 40 ], "order_by": [ - 624, + 626, "[e_draft_game_mode_order_by!]" ], "where": [ - 614 + 616 ] } ], "e_draft_game_mode_aggregate": [ - 612, + 614, { "distinct_on": [ - 626, + 628, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -163753,16 +164863,16 @@ export default { 40 ], "order_by": [ - 624, + 626, "[e_draft_game_mode_order_by!]" ], "where": [ - 614 + 616 ] } ], "e_draft_game_mode_by_pk": [ - 611, + 613, { "value": [ 80, @@ -163771,26 +164881,26 @@ export default { } ], "e_draft_game_mode_stream": [ - 611, + 613, { "batch_size": [ 40, "Int!" ], "cursor": [ - 628, + 630, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 614 + 616 ] } ], "e_draft_game_player_status": [ - 632, + 634, { "distinct_on": [ - 647, + 649, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -163800,19 +164910,19 @@ export default { 40 ], "order_by": [ - 645, + 647, "[e_draft_game_player_status_order_by!]" ], "where": [ - 635 + 637 ] } ], "e_draft_game_player_status_aggregate": [ - 633, + 635, { "distinct_on": [ - 647, + 649, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -163822,16 +164932,16 @@ export default { 40 ], "order_by": [ - 645, + 647, "[e_draft_game_player_status_order_by!]" ], "where": [ - 635 + 637 ] } ], "e_draft_game_player_status_by_pk": [ - 632, + 634, { "value": [ 80, @@ -163840,26 +164950,26 @@ export default { } ], "e_draft_game_player_status_stream": [ - 632, + 634, { "batch_size": [ 40, "Int!" ], "cursor": [ - 649, + 651, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 635 + 637 ] } ], "e_draft_game_status": [ - 653, + 655, { "distinct_on": [ - 668, + 670, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -163869,19 +164979,19 @@ export default { 40 ], "order_by": [ - 666, + 668, "[e_draft_game_status_order_by!]" ], "where": [ - 656 + 658 ] } ], "e_draft_game_status_aggregate": [ - 654, + 656, { "distinct_on": [ - 668, + 670, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -163891,16 +165001,16 @@ export default { 40 ], "order_by": [ - 666, + 668, "[e_draft_game_status_order_by!]" ], "where": [ - 656 + 658 ] } ], "e_draft_game_status_by_pk": [ - 653, + 655, { "value": [ 80, @@ -163909,26 +165019,26 @@ export default { } ], "e_draft_game_status_stream": [ - 653, + 655, { "batch_size": [ 40, "Int!" ], "cursor": [ - 670, + 672, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 656 + 658 ] } ], "e_event_media_access": [ - 674, + 676, { "distinct_on": [ - 688, + 690, "[e_event_media_access_select_column!]" ], "limit": [ @@ -163938,19 +165048,19 @@ export default { 40 ], "order_by": [ - 686, + 688, "[e_event_media_access_order_by!]" ], "where": [ - 677 + 679 ] } ], "e_event_media_access_aggregate": [ - 675, + 677, { "distinct_on": [ - 688, + 690, "[e_event_media_access_select_column!]" ], "limit": [ @@ -163960,16 +165070,16 @@ export default { 40 ], "order_by": [ - 686, + 688, "[e_event_media_access_order_by!]" ], "where": [ - 677 + 679 ] } ], "e_event_media_access_by_pk": [ - 674, + 676, { "value": [ 80, @@ -163978,26 +165088,26 @@ export default { } ], "e_event_media_access_stream": [ - 674, + 676, { "batch_size": [ 40, "Int!" ], "cursor": [ - 690, + 692, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 677 + 679 ] } ], "e_event_visibility": [ - 694, + 696, { "distinct_on": [ - 708, + 710, "[e_event_visibility_select_column!]" ], "limit": [ @@ -164007,19 +165117,19 @@ export default { 40 ], "order_by": [ - 706, + 708, "[e_event_visibility_order_by!]" ], "where": [ - 697 + 699 ] } ], "e_event_visibility_aggregate": [ - 695, + 697, { "distinct_on": [ - 708, + 710, "[e_event_visibility_select_column!]" ], "limit": [ @@ -164029,16 +165139,16 @@ export default { 40 ], "order_by": [ - 706, + 708, "[e_event_visibility_order_by!]" ], "where": [ - 697 + 699 ] } ], "e_event_visibility_by_pk": [ - 694, + 696, { "value": [ 80, @@ -164047,26 +165157,26 @@ export default { } ], "e_event_visibility_stream": [ - 694, + 696, { "batch_size": [ 40, "Int!" ], "cursor": [ - 710, + 712, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 697 + 699 ] } ], "e_friend_status": [ - 714, + 716, { "distinct_on": [ - 729, + 731, "[e_friend_status_select_column!]" ], "limit": [ @@ -164076,19 +165186,19 @@ export default { 40 ], "order_by": [ - 727, + 729, "[e_friend_status_order_by!]" ], "where": [ - 717 + 719 ] } ], "e_friend_status_aggregate": [ - 715, + 717, { "distinct_on": [ - 729, + 731, "[e_friend_status_select_column!]" ], "limit": [ @@ -164098,16 +165208,16 @@ export default { 40 ], "order_by": [ - 727, + 729, "[e_friend_status_order_by!]" ], "where": [ - 717 + 719 ] } ], "e_friend_status_by_pk": [ - 714, + 716, { "value": [ 80, @@ -164116,26 +165226,26 @@ export default { } ], "e_friend_status_stream": [ - 714, + 716, { "batch_size": [ 40, "Int!" ], "cursor": [ - 731, + 733, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 717 + 719 ] } ], "e_game_cfg_types": [ - 735, + 737, { "distinct_on": [ - 749, + 751, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -164145,19 +165255,19 @@ export default { 40 ], "order_by": [ - 747, + 749, "[e_game_cfg_types_order_by!]" ], "where": [ - 738 + 740 ] } ], "e_game_cfg_types_aggregate": [ - 736, + 738, { "distinct_on": [ - 749, + 751, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -164167,16 +165277,16 @@ export default { 40 ], "order_by": [ - 747, + 749, "[e_game_cfg_types_order_by!]" ], "where": [ - 738 + 740 ] } ], "e_game_cfg_types_by_pk": [ - 735, + 737, { "value": [ 80, @@ -164185,26 +165295,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 735, + 737, { "batch_size": [ 40, "Int!" ], "cursor": [ - 751, + 753, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 738 + 740 ] } ], "e_game_server_node_statuses": [ - 755, + 757, { "distinct_on": [ - 770, + 772, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -164214,19 +165324,19 @@ export default { 40 ], "order_by": [ - 768, + 770, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 758 + 760 ] } ], "e_game_server_node_statuses_aggregate": [ - 756, + 758, { "distinct_on": [ - 770, + 772, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -164236,16 +165346,16 @@ export default { 40 ], "order_by": [ - 768, + 770, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 758 + 760 ] } ], "e_game_server_node_statuses_by_pk": [ - 755, + 757, { "value": [ 80, @@ -164254,26 +165364,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 755, + 757, { "batch_size": [ 40, "Int!" ], "cursor": [ - 772, + 774, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 758 + 760 ] } ], "e_league_movement_types": [ - 776, + 778, { "distinct_on": [ - 791, + 793, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -164283,19 +165393,19 @@ export default { 40 ], "order_by": [ - 789, + 791, "[e_league_movement_types_order_by!]" ], "where": [ - 779 + 781 ] } ], "e_league_movement_types_aggregate": [ - 777, + 779, { "distinct_on": [ - 791, + 793, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -164305,16 +165415,16 @@ export default { 40 ], "order_by": [ - 789, + 791, "[e_league_movement_types_order_by!]" ], "where": [ - 779 + 781 ] } ], "e_league_movement_types_by_pk": [ - 776, + 778, { "value": [ 80, @@ -164323,26 +165433,26 @@ export default { } ], "e_league_movement_types_stream": [ - 776, + 778, { "batch_size": [ 40, "Int!" ], "cursor": [ - 793, + 795, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 779 + 781 ] } ], "e_league_proposal_statuses": [ - 797, + 799, { "distinct_on": [ - 812, + 814, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -164352,19 +165462,19 @@ export default { 40 ], "order_by": [ - 810, + 812, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 800 + 802 ] } ], "e_league_proposal_statuses_aggregate": [ - 798, + 800, { "distinct_on": [ - 812, + 814, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -164374,16 +165484,16 @@ export default { 40 ], "order_by": [ - 810, + 812, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 800 + 802 ] } ], "e_league_proposal_statuses_by_pk": [ - 797, + 799, { "value": [ 80, @@ -164392,26 +165502,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 797, + 799, { "batch_size": [ 40, "Int!" ], "cursor": [ - 814, + 816, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 800 + 802 ] } ], "e_league_registration_statuses": [ - 818, + 820, { "distinct_on": [ - 833, + 835, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -164421,19 +165531,19 @@ export default { 40 ], "order_by": [ - 831, + 833, "[e_league_registration_statuses_order_by!]" ], "where": [ - 821 + 823 ] } ], "e_league_registration_statuses_aggregate": [ - 819, + 821, { "distinct_on": [ - 833, + 835, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -164443,16 +165553,16 @@ export default { 40 ], "order_by": [ - 831, + 833, "[e_league_registration_statuses_order_by!]" ], "where": [ - 821 + 823 ] } ], "e_league_registration_statuses_by_pk": [ - 818, + 820, { "value": [ 80, @@ -164461,26 +165571,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 818, + 820, { "batch_size": [ 40, "Int!" ], "cursor": [ - 835, + 837, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 821 + 823 ] } ], "e_league_season_statuses": [ - 839, + 841, { "distinct_on": [ - 854, + 856, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -164490,19 +165600,19 @@ export default { 40 ], "order_by": [ - 852, + 854, "[e_league_season_statuses_order_by!]" ], "where": [ - 842 + 844 ] } ], "e_league_season_statuses_aggregate": [ - 840, + 842, { "distinct_on": [ - 854, + 856, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -164512,16 +165622,16 @@ export default { 40 ], "order_by": [ - 852, + 854, "[e_league_season_statuses_order_by!]" ], "where": [ - 842 + 844 ] } ], "e_league_season_statuses_by_pk": [ - 839, + 841, { "value": [ 80, @@ -164530,26 +165640,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 839, + 841, { "batch_size": [ 40, "Int!" ], "cursor": [ - 856, + 858, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 842 + 844 ] } ], "e_lobby_access": [ - 860, + 862, { "distinct_on": [ - 875, + 877, "[e_lobby_access_select_column!]" ], "limit": [ @@ -164559,19 +165669,19 @@ export default { 40 ], "order_by": [ - 873, + 875, "[e_lobby_access_order_by!]" ], "where": [ - 863 + 865 ] } ], "e_lobby_access_aggregate": [ - 861, + 863, { "distinct_on": [ - 875, + 877, "[e_lobby_access_select_column!]" ], "limit": [ @@ -164581,16 +165691,16 @@ export default { 40 ], "order_by": [ - 873, + 875, "[e_lobby_access_order_by!]" ], "where": [ - 863 + 865 ] } ], "e_lobby_access_by_pk": [ - 860, + 862, { "value": [ 80, @@ -164599,26 +165709,26 @@ export default { } ], "e_lobby_access_stream": [ - 860, + 862, { "batch_size": [ 40, "Int!" ], "cursor": [ - 877, + 879, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 863 + 865 ] } ], "e_lobby_player_status": [ - 881, + 883, { "distinct_on": [ - 895, + 897, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -164628,19 +165738,19 @@ export default { 40 ], "order_by": [ - 893, + 895, "[e_lobby_player_status_order_by!]" ], "where": [ - 884 + 886 ] } ], "e_lobby_player_status_aggregate": [ - 882, + 884, { "distinct_on": [ - 895, + 897, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -164650,16 +165760,16 @@ export default { 40 ], "order_by": [ - 893, + 895, "[e_lobby_player_status_order_by!]" ], "where": [ - 884 + 886 ] } ], "e_lobby_player_status_by_pk": [ - 881, + 883, { "value": [ 80, @@ -164668,26 +165778,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 881, + 883, { "batch_size": [ 40, "Int!" ], "cursor": [ - 897, + 899, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 884 + 886 ] } ], "e_map_pool_types": [ - 901, + 903, { "distinct_on": [ - 916, + 918, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -164697,19 +165807,19 @@ export default { 40 ], "order_by": [ - 914, + 916, "[e_map_pool_types_order_by!]" ], "where": [ - 904 + 906 ] } ], "e_map_pool_types_aggregate": [ - 902, + 904, { "distinct_on": [ - 916, + 918, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -164719,16 +165829,16 @@ export default { 40 ], "order_by": [ - 914, + 916, "[e_map_pool_types_order_by!]" ], "where": [ - 904 + 906 ] } ], "e_map_pool_types_by_pk": [ - 901, + 903, { "value": [ 80, @@ -164737,26 +165847,26 @@ export default { } ], "e_map_pool_types_stream": [ - 901, + 903, { "batch_size": [ 40, "Int!" ], "cursor": [ - 918, + 920, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 904 + 906 ] } ], "e_match_clip_visibility": [ - 922, + 924, { "distinct_on": [ - 936, + 938, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -164766,19 +165876,19 @@ export default { 40 ], "order_by": [ - 934, + 936, "[e_match_clip_visibility_order_by!]" ], "where": [ - 925 + 927 ] } ], "e_match_clip_visibility_aggregate": [ - 923, + 925, { "distinct_on": [ - 936, + 938, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -164788,16 +165898,16 @@ export default { 40 ], "order_by": [ - 934, + 936, "[e_match_clip_visibility_order_by!]" ], "where": [ - 925 + 927 ] } ], "e_match_clip_visibility_by_pk": [ - 922, + 924, { "value": [ 80, @@ -164806,26 +165916,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 922, + 924, { "batch_size": [ 40, "Int!" ], "cursor": [ - 938, + 940, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 925 + 927 ] } ], "e_match_map_status": [ - 942, + 944, { "distinct_on": [ - 957, + 959, "[e_match_map_status_select_column!]" ], "limit": [ @@ -164835,19 +165945,19 @@ export default { 40 ], "order_by": [ - 955, + 957, "[e_match_map_status_order_by!]" ], "where": [ - 945 + 947 ] } ], "e_match_map_status_aggregate": [ - 943, + 945, { "distinct_on": [ - 957, + 959, "[e_match_map_status_select_column!]" ], "limit": [ @@ -164857,16 +165967,16 @@ export default { 40 ], "order_by": [ - 955, + 957, "[e_match_map_status_order_by!]" ], "where": [ - 945 + 947 ] } ], "e_match_map_status_by_pk": [ - 942, + 944, { "value": [ 80, @@ -164875,26 +165985,26 @@ export default { } ], "e_match_map_status_stream": [ - 942, + 944, { "batch_size": [ 40, "Int!" ], "cursor": [ - 959, + 961, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 945 + 947 ] } ], "e_match_mode": [ - 963, + 965, { "distinct_on": [ - 977, + 979, "[e_match_mode_select_column!]" ], "limit": [ @@ -164904,19 +166014,19 @@ export default { 40 ], "order_by": [ - 975, + 977, "[e_match_mode_order_by!]" ], "where": [ - 966 + 968 ] } ], "e_match_mode_aggregate": [ - 964, + 966, { "distinct_on": [ - 977, + 979, "[e_match_mode_select_column!]" ], "limit": [ @@ -164926,16 +166036,16 @@ export default { 40 ], "order_by": [ - 975, + 977, "[e_match_mode_order_by!]" ], "where": [ - 966 + 968 ] } ], "e_match_mode_by_pk": [ - 963, + 965, { "value": [ 80, @@ -164944,26 +166054,26 @@ export default { } ], "e_match_mode_stream": [ - 963, + 965, { "batch_size": [ 40, "Int!" ], "cursor": [ - 979, + 981, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 966 + 968 ] } ], "e_match_party_sources": [ - 983, + 985, { "distinct_on": [ - 997, + 999, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -164973,19 +166083,19 @@ export default { 40 ], "order_by": [ - 995, + 997, "[e_match_party_sources_order_by!]" ], "where": [ - 986 + 988 ] } ], "e_match_party_sources_aggregate": [ - 984, + 986, { "distinct_on": [ - 997, + 999, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -164995,16 +166105,16 @@ export default { 40 ], "order_by": [ - 995, + 997, "[e_match_party_sources_order_by!]" ], "where": [ - 986 + 988 ] } ], "e_match_party_sources_by_pk": [ - 983, + 985, { "value": [ 80, @@ -165013,26 +166123,26 @@ export default { } ], "e_match_party_sources_stream": [ - 983, + 985, { "batch_size": [ 40, "Int!" ], "cursor": [ - 999, + 1001, "[e_match_party_sources_stream_cursor_input]!" ], "where": [ - 986 + 988 ] } ], "e_match_status": [ - 1003, + 1005, { "distinct_on": [ - 1018, + 1020, "[e_match_status_select_column!]" ], "limit": [ @@ -165042,19 +166152,19 @@ export default { 40 ], "order_by": [ - 1016, + 1018, "[e_match_status_order_by!]" ], "where": [ - 1006 + 1008 ] } ], "e_match_status_aggregate": [ - 1004, + 1006, { "distinct_on": [ - 1018, + 1020, "[e_match_status_select_column!]" ], "limit": [ @@ -165064,16 +166174,16 @@ export default { 40 ], "order_by": [ - 1016, + 1018, "[e_match_status_order_by!]" ], "where": [ - 1006 + 1008 ] } ], "e_match_status_by_pk": [ - 1003, + 1005, { "value": [ 80, @@ -165082,26 +166192,26 @@ export default { } ], "e_match_status_stream": [ - 1003, + 1005, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1020, + 1022, "[e_match_status_stream_cursor_input]!" ], "where": [ - 1006 + 1008 ] } ], "e_match_types": [ - 1024, + 1026, { "distinct_on": [ - 1039, + 1041, "[e_match_types_select_column!]" ], "limit": [ @@ -165111,19 +166221,19 @@ export default { 40 ], "order_by": [ - 1037, + 1039, "[e_match_types_order_by!]" ], "where": [ - 1027 + 1029 ] } ], "e_match_types_aggregate": [ - 1025, + 1027, { "distinct_on": [ - 1039, + 1041, "[e_match_types_select_column!]" ], "limit": [ @@ -165133,16 +166243,16 @@ export default { 40 ], "order_by": [ - 1037, + 1039, "[e_match_types_order_by!]" ], "where": [ - 1027 + 1029 ] } ], "e_match_types_by_pk": [ - 1024, + 1026, { "value": [ 80, @@ -165151,26 +166261,26 @@ export default { } ], "e_match_types_stream": [ - 1024, + 1026, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1041, + 1043, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1027 + 1029 ] } ], "e_notification_types": [ - 1045, + 1047, { "distinct_on": [ - 1059, + 1061, "[e_notification_types_select_column!]" ], "limit": [ @@ -165180,19 +166290,19 @@ export default { 40 ], "order_by": [ - 1057, + 1059, "[e_notification_types_order_by!]" ], "where": [ - 1048 + 1050 ] } ], "e_notification_types_aggregate": [ - 1046, + 1048, { "distinct_on": [ - 1059, + 1061, "[e_notification_types_select_column!]" ], "limit": [ @@ -165202,16 +166312,16 @@ export default { 40 ], "order_by": [ - 1057, + 1059, "[e_notification_types_order_by!]" ], "where": [ - 1048 + 1050 ] } ], "e_notification_types_by_pk": [ - 1045, + 1047, { "value": [ 80, @@ -165220,26 +166330,26 @@ export default { } ], "e_notification_types_stream": [ - 1045, + 1047, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1061, + 1063, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1048 + 1050 ] } ], "e_objective_types": [ - 1065, + 1067, { "distinct_on": [ - 1079, + 1081, "[e_objective_types_select_column!]" ], "limit": [ @@ -165249,19 +166359,19 @@ export default { 40 ], "order_by": [ - 1077, + 1079, "[e_objective_types_order_by!]" ], "where": [ - 1068 + 1070 ] } ], "e_objective_types_aggregate": [ - 1066, + 1068, { "distinct_on": [ - 1079, + 1081, "[e_objective_types_select_column!]" ], "limit": [ @@ -165271,16 +166381,16 @@ export default { 40 ], "order_by": [ - 1077, + 1079, "[e_objective_types_order_by!]" ], "where": [ - 1068 + 1070 ] } ], "e_objective_types_by_pk": [ - 1065, + 1067, { "value": [ 80, @@ -165289,26 +166399,26 @@ export default { } ], "e_objective_types_stream": [ - 1065, + 1067, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1081, + 1083, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1068 + 1070 ] } ], "e_player_roles": [ - 1085, + 1087, { "distinct_on": [ - 1099, + 1101, "[e_player_roles_select_column!]" ], "limit": [ @@ -165318,19 +166428,19 @@ export default { 40 ], "order_by": [ - 1097, + 1099, "[e_player_roles_order_by!]" ], "where": [ - 1088 + 1090 ] } ], "e_player_roles_aggregate": [ - 1086, + 1088, { "distinct_on": [ - 1099, + 1101, "[e_player_roles_select_column!]" ], "limit": [ @@ -165340,16 +166450,16 @@ export default { 40 ], "order_by": [ - 1097, + 1099, "[e_player_roles_order_by!]" ], "where": [ - 1088 + 1090 ] } ], "e_player_roles_by_pk": [ - 1085, + 1087, { "value": [ 80, @@ -165358,26 +166468,26 @@ export default { } ], "e_player_roles_stream": [ - 1085, + 1087, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1101, + 1103, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1088 + 1090 ] } ], "e_plugin_runtimes": [ - 1105, + 1107, { "distinct_on": [ - 1119, + 1121, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -165387,19 +166497,19 @@ export default { 40 ], "order_by": [ - 1117, + 1119, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1108 + 1110 ] } ], "e_plugin_runtimes_aggregate": [ - 1106, + 1108, { "distinct_on": [ - 1119, + 1121, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -165409,16 +166519,16 @@ export default { 40 ], "order_by": [ - 1117, + 1119, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1108 + 1110 ] } ], "e_plugin_runtimes_by_pk": [ - 1105, + 1107, { "value": [ 80, @@ -165427,26 +166537,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 1105, + 1107, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1121, + 1123, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1108 + 1110 ] } ], "e_ready_settings": [ - 1125, + 1127, { "distinct_on": [ - 1139, + 1141, "[e_ready_settings_select_column!]" ], "limit": [ @@ -165456,19 +166566,19 @@ export default { 40 ], "order_by": [ - 1137, + 1139, "[e_ready_settings_order_by!]" ], "where": [ - 1128 + 1130 ] } ], "e_ready_settings_aggregate": [ - 1126, + 1128, { "distinct_on": [ - 1139, + 1141, "[e_ready_settings_select_column!]" ], "limit": [ @@ -165478,16 +166588,16 @@ export default { 40 ], "order_by": [ - 1137, + 1139, "[e_ready_settings_order_by!]" ], "where": [ - 1128 + 1130 ] } ], "e_ready_settings_by_pk": [ - 1125, + 1127, { "value": [ 80, @@ -165496,26 +166606,26 @@ export default { } ], "e_ready_settings_stream": [ - 1125, + 1127, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1141, + 1143, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1128 + 1130 ] } ], "e_sanction_types": [ - 1145, + 1147, { "distinct_on": [ - 1160, + 1162, "[e_sanction_types_select_column!]" ], "limit": [ @@ -165525,19 +166635,19 @@ export default { 40 ], "order_by": [ - 1158, + 1160, "[e_sanction_types_order_by!]" ], "where": [ - 1148 + 1150 ] } ], "e_sanction_types_aggregate": [ - 1146, + 1148, { "distinct_on": [ - 1160, + 1162, "[e_sanction_types_select_column!]" ], "limit": [ @@ -165547,16 +166657,16 @@ export default { 40 ], "order_by": [ - 1158, + 1160, "[e_sanction_types_order_by!]" ], "where": [ - 1148 + 1150 ] } ], "e_sanction_types_by_pk": [ - 1145, + 1147, { "value": [ 80, @@ -165565,26 +166675,26 @@ export default { } ], "e_sanction_types_stream": [ - 1145, + 1147, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1162, + 1164, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1148 + 1150 ] } ], "e_scrim_request_statuses": [ - 1166, + 1168, { "distinct_on": [ - 1180, + 1182, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -165594,19 +166704,19 @@ export default { 40 ], "order_by": [ - 1178, + 1180, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1169 + 1171 ] } ], "e_scrim_request_statuses_aggregate": [ - 1167, + 1169, { "distinct_on": [ - 1180, + 1182, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -165616,16 +166726,16 @@ export default { 40 ], "order_by": [ - 1178, + 1180, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1169 + 1171 ] } ], "e_scrim_request_statuses_by_pk": [ - 1166, + 1168, { "value": [ 80, @@ -165634,26 +166744,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 1166, + 1168, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1182, + 1184, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1169 + 1171 ] } ], "e_server_types": [ - 1186, + 1188, { "distinct_on": [ - 1200, + 1202, "[e_server_types_select_column!]" ], "limit": [ @@ -165663,19 +166773,19 @@ export default { 40 ], "order_by": [ - 1198, + 1200, "[e_server_types_order_by!]" ], "where": [ - 1189 + 1191 ] } ], "e_server_types_aggregate": [ - 1187, + 1189, { "distinct_on": [ - 1200, + 1202, "[e_server_types_select_column!]" ], "limit": [ @@ -165685,16 +166795,16 @@ export default { 40 ], "order_by": [ - 1198, + 1200, "[e_server_types_order_by!]" ], "where": [ - 1189 + 1191 ] } ], "e_server_types_by_pk": [ - 1186, + 1188, { "value": [ 80, @@ -165703,26 +166813,26 @@ export default { } ], "e_server_types_stream": [ - 1186, + 1188, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1202, + 1204, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1189 + 1191 ] } ], "e_sides": [ - 1206, + 1208, { "distinct_on": [ - 1220, + 1222, "[e_sides_select_column!]" ], "limit": [ @@ -165732,19 +166842,19 @@ export default { 40 ], "order_by": [ - 1218, + 1220, "[e_sides_order_by!]" ], "where": [ - 1209 + 1211 ] } ], "e_sides_aggregate": [ - 1207, + 1209, { "distinct_on": [ - 1220, + 1222, "[e_sides_select_column!]" ], "limit": [ @@ -165754,16 +166864,16 @@ export default { 40 ], "order_by": [ - 1218, + 1220, "[e_sides_order_by!]" ], "where": [ - 1209 + 1211 ] } ], "e_sides_by_pk": [ - 1206, + 1208, { "value": [ 80, @@ -165772,26 +166882,26 @@ export default { } ], "e_sides_stream": [ - 1206, + 1208, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1222, + 1224, "[e_sides_stream_cursor_input]!" ], "where": [ - 1209 + 1211 ] } ], "e_system_alert_types": [ - 1226, + 1228, { "distinct_on": [ - 1240, + 1242, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -165801,19 +166911,19 @@ export default { 40 ], "order_by": [ - 1238, + 1240, "[e_system_alert_types_order_by!]" ], "where": [ - 1229 + 1231 ] } ], "e_system_alert_types_aggregate": [ - 1227, + 1229, { "distinct_on": [ - 1240, + 1242, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -165823,16 +166933,16 @@ export default { 40 ], "order_by": [ - 1238, + 1240, "[e_system_alert_types_order_by!]" ], "where": [ - 1229 + 1231 ] } ], "e_system_alert_types_by_pk": [ - 1226, + 1228, { "value": [ 80, @@ -165841,26 +166951,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1226, + 1228, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1242, + 1244, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1229 + 1231 ] } ], "e_team_roles": [ - 1246, + 1248, { "distinct_on": [ - 1261, + 1263, "[e_team_roles_select_column!]" ], "limit": [ @@ -165870,19 +166980,19 @@ export default { 40 ], "order_by": [ - 1259, + 1261, "[e_team_roles_order_by!]" ], "where": [ - 1249 + 1251 ] } ], "e_team_roles_aggregate": [ - 1247, + 1249, { "distinct_on": [ - 1261, + 1263, "[e_team_roles_select_column!]" ], "limit": [ @@ -165892,16 +167002,16 @@ export default { 40 ], "order_by": [ - 1259, + 1261, "[e_team_roles_order_by!]" ], "where": [ - 1249 + 1251 ] } ], "e_team_roles_by_pk": [ - 1246, + 1248, { "value": [ 80, @@ -165910,26 +167020,26 @@ export default { } ], "e_team_roles_stream": [ - 1246, + 1248, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1263, + 1265, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1249 + 1251 ] } ], "e_team_roster_statuses": [ - 1267, + 1269, { "distinct_on": [ - 1281, + 1283, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -165939,19 +167049,19 @@ export default { 40 ], "order_by": [ - 1279, + 1281, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1270 + 1272 ] } ], "e_team_roster_statuses_aggregate": [ - 1268, + 1270, { "distinct_on": [ - 1281, + 1283, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -165961,16 +167071,16 @@ export default { 40 ], "order_by": [ - 1279, + 1281, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1270 + 1272 ] } ], "e_team_roster_statuses_by_pk": [ - 1267, + 1269, { "value": [ 80, @@ -165979,26 +167089,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1267, + 1269, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1283, + 1285, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1270 + 1272 ] } ], "e_timeout_settings": [ - 1287, + 1289, { "distinct_on": [ - 1301, + 1303, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -166008,19 +167118,19 @@ export default { 40 ], "order_by": [ - 1299, + 1301, "[e_timeout_settings_order_by!]" ], "where": [ - 1290 + 1292 ] } ], "e_timeout_settings_aggregate": [ - 1288, + 1290, { "distinct_on": [ - 1301, + 1303, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -166030,16 +167140,16 @@ export default { 40 ], "order_by": [ - 1299, + 1301, "[e_timeout_settings_order_by!]" ], "where": [ - 1290 + 1292 ] } ], "e_timeout_settings_by_pk": [ - 1287, + 1289, { "value": [ 80, @@ -166048,26 +167158,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1287, + 1289, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1303, + 1305, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1290 + 1292 ] } ], "e_tournament_categories": [ - 1307, + 1309, { "distinct_on": [ - 1322, + 1324, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -166077,19 +167187,19 @@ export default { 40 ], "order_by": [ - 1320, + 1322, "[e_tournament_categories_order_by!]" ], "where": [ - 1310 + 1312 ] } ], "e_tournament_categories_aggregate": [ - 1308, + 1310, { "distinct_on": [ - 1322, + 1324, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -166099,16 +167209,16 @@ export default { 40 ], "order_by": [ - 1320, + 1322, "[e_tournament_categories_order_by!]" ], "where": [ - 1310 + 1312 ] } ], "e_tournament_categories_by_pk": [ - 1307, + 1309, { "value": [ 80, @@ -166117,26 +167227,26 @@ export default { } ], "e_tournament_categories_stream": [ - 1307, + 1309, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1324, + 1326, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1310 + 1312 ] } ], "e_tournament_stage_types": [ - 1328, + 1330, { "distinct_on": [ - 1343, + 1345, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -166146,19 +167256,19 @@ export default { 40 ], "order_by": [ - 1341, + 1343, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1331 + 1333 ] } ], "e_tournament_stage_types_aggregate": [ - 1329, + 1331, { "distinct_on": [ - 1343, + 1345, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -166168,16 +167278,16 @@ export default { 40 ], "order_by": [ - 1341, + 1343, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1331 + 1333 ] } ], "e_tournament_stage_types_by_pk": [ - 1328, + 1330, { "value": [ 80, @@ -166186,26 +167296,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1328, + 1330, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1345, + 1347, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1331 + 1333 ] } ], "e_tournament_status": [ - 1349, + 1351, { "distinct_on": [ - 1364, + 1366, "[e_tournament_status_select_column!]" ], "limit": [ @@ -166215,19 +167325,19 @@ export default { 40 ], "order_by": [ - 1362, + 1364, "[e_tournament_status_order_by!]" ], "where": [ - 1352 + 1354 ] } ], "e_tournament_status_aggregate": [ - 1350, + 1352, { "distinct_on": [ - 1364, + 1366, "[e_tournament_status_select_column!]" ], "limit": [ @@ -166237,16 +167347,16 @@ export default { 40 ], "order_by": [ - 1362, + 1364, "[e_tournament_status_order_by!]" ], "where": [ - 1352 + 1354 ] } ], "e_tournament_status_by_pk": [ - 1349, + 1351, { "value": [ 80, @@ -166255,26 +167365,26 @@ export default { } ], "e_tournament_status_stream": [ - 1349, + 1351, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1366, + 1368, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1352 + 1354 ] } ], "e_utility_types": [ - 1370, + 1372, { "distinct_on": [ - 1384, + 1386, "[e_utility_types_select_column!]" ], "limit": [ @@ -166284,19 +167394,19 @@ export default { 40 ], "order_by": [ - 1382, + 1384, "[e_utility_types_order_by!]" ], "where": [ - 1373 + 1375 ] } ], "e_utility_types_aggregate": [ - 1371, + 1373, { "distinct_on": [ - 1384, + 1386, "[e_utility_types_select_column!]" ], "limit": [ @@ -166306,16 +167416,16 @@ export default { 40 ], "order_by": [ - 1382, + 1384, "[e_utility_types_order_by!]" ], "where": [ - 1373 + 1375 ] } ], "e_utility_types_by_pk": [ - 1370, + 1372, { "value": [ 80, @@ -166324,26 +167434,26 @@ export default { } ], "e_utility_types_stream": [ - 1370, + 1372, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1386, + 1388, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1373 + 1375 ] } ], "e_veto_pick_types": [ - 1390, + 1392, { "distinct_on": [ - 1404, + 1406, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -166353,19 +167463,19 @@ export default { 40 ], "order_by": [ - 1402, + 1404, "[e_veto_pick_types_order_by!]" ], "where": [ - 1393 + 1395 ] } ], "e_veto_pick_types_aggregate": [ - 1391, + 1393, { "distinct_on": [ - 1404, + 1406, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -166375,16 +167485,16 @@ export default { 40 ], "order_by": [ - 1402, + 1404, "[e_veto_pick_types_order_by!]" ], "where": [ - 1393 + 1395 ] } ], "e_veto_pick_types_by_pk": [ - 1390, + 1392, { "value": [ 80, @@ -166393,26 +167503,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1390, + 1392, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1406, + 1408, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1393 + 1395 ] } ], "e_winning_reasons": [ - 1410, + 1412, { "distinct_on": [ - 1424, + 1426, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -166422,19 +167532,19 @@ export default { 40 ], "order_by": [ - 1422, + 1424, "[e_winning_reasons_order_by!]" ], "where": [ - 1413 + 1415 ] } ], "e_winning_reasons_aggregate": [ - 1411, + 1413, { "distinct_on": [ - 1424, + 1426, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -166444,16 +167554,16 @@ export default { 40 ], "order_by": [ - 1422, + 1424, "[e_winning_reasons_order_by!]" ], "where": [ - 1413 + 1415 ] } ], "e_winning_reasons_by_pk": [ - 1410, + 1412, { "value": [ 80, @@ -166462,26 +167572,26 @@ export default { } ], "e_winning_reasons_stream": [ - 1410, + 1412, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1426, + 1428, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1413 + 1415 ] } ], "event_match_links": [ - 1430, + 1432, { "distinct_on": [ - 1442, + 1444, "[event_match_links_select_column!]" ], "limit": [ @@ -166491,19 +167601,19 @@ export default { 40 ], "order_by": [ - 1440, + 1442, "[event_match_links_order_by!]" ], "where": [ - 1433 + 1435 ] } ], "event_match_links_aggregate": [ - 1431, + 1433, { "distinct_on": [ - 1442, + 1444, "[event_match_links_select_column!]" ], "limit": [ @@ -166513,48 +167623,48 @@ export default { 40 ], "order_by": [ - 1440, + 1442, "[event_match_links_order_by!]" ], "where": [ - 1433 + 1435 ] } ], "event_match_links_by_pk": [ - 1430, + 1432, { "event_id": [ - 5053, + 5109, "uuid!" ], "match_id": [ - 5053, + 5109, "uuid!" ] } ], "event_match_links_stream": [ - 1430, + 1432, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1444, + 1446, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1433 + 1435 ] } ], "event_media": [ - 1448, + 1450, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -166564,19 +167674,19 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], "event_media_aggregate": [ - 1449, + 1451, { "distinct_on": [ - 1511, + 1513, "[event_media_select_column!]" ], "limit": [ @@ -166586,28 +167696,28 @@ export default { 40 ], "order_by": [ - 1468, + 1470, "[event_media_order_by!]" ], "where": [ - 1457 + 1459 ] } ], "event_media_by_pk": [ - 1448, + 1450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "event_media_players": [ - 1470, + 1472, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -166617,19 +167727,19 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "event_media_players_aggregate": [ - 1471, + 1473, { "distinct_on": [ - 1491, + 1493, "[event_media_players_select_column!]" ], "limit": [ @@ -166639,64 +167749,64 @@ export default { 40 ], "order_by": [ - 1489, + 1491, "[event_media_players_order_by!]" ], "where": [ - 1479 + 1481 ] } ], "event_media_players_by_pk": [ - 1470, + 1472, { "media_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_media_players_stream": [ - 1470, + 1472, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1499, + 1501, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1479 + 1481 ] } ], "event_media_stream": [ - 1448, + 1450, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1519, + 1521, "[event_media_stream_cursor_input]!" ], "where": [ - 1457 + 1459 ] } ], "event_organizers": [ - 1531, + 1533, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -166706,19 +167816,19 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "event_organizers_aggregate": [ - 1532, + 1534, { "distinct_on": [ - 1552, + 1554, "[event_organizers_select_column!]" ], "limit": [ @@ -166728,48 +167838,48 @@ export default { 40 ], "order_by": [ - 1550, + 1552, "[event_organizers_order_by!]" ], "where": [ - 1540 + 1542 ] } ], "event_organizers_by_pk": [ - 1531, + 1533, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_organizers_stream": [ - 1531, + 1533, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1560, + 1562, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1540 + 1542 ] } ], "event_players": [ - 1572, + 1574, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -166779,19 +167889,19 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "event_players_aggregate": [ - 1573, + 1575, { "distinct_on": [ - 1593, + 1595, "[event_players_select_column!]" ], "limit": [ @@ -166801,48 +167911,48 @@ export default { 40 ], "order_by": [ - 1591, + 1593, "[event_players_order_by!]" ], "where": [ - 1581 + 1583 ] } ], "event_players_by_pk": [ - 1572, + 1574, { "event_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "event_players_stream": [ - 1572, + 1574, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1601, + 1603, "[event_players_stream_cursor_input]!" ], "where": [ - 1581 + 1583 ] } ], "event_teams": [ - 1613, + 1615, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -166852,19 +167962,19 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "event_teams_aggregate": [ - 1614, + 1616, { "distinct_on": [ - 1631, + 1633, "[event_teams_select_column!]" ], "limit": [ @@ -166874,48 +167984,48 @@ export default { 40 ], "order_by": [ - 1629, + 1631, "[event_teams_order_by!]" ], "where": [ - 1620 + 1622 ] } ], "event_teams_by_pk": [ - 1613, + 1615, { "event_id": [ - 5053, + 5109, "uuid!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "event_teams_stream": [ - 1613, + 1615, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1633, + 1635, "[event_teams_stream_cursor_input]!" ], "where": [ - 1620 + 1622 ] } ], "event_tournaments": [ - 1637, + 1639, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -166925,19 +168035,19 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "event_tournaments_aggregate": [ - 1638, + 1640, { "distinct_on": [ - 1655, + 1657, "[event_tournaments_select_column!]" ], "limit": [ @@ -166947,48 +168057,48 @@ export default { 40 ], "order_by": [ - 1653, + 1655, "[event_tournaments_order_by!]" ], "where": [ - 1644 + 1646 ] } ], "event_tournaments_by_pk": [ - 1637, + 1639, { "event_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "event_tournaments_stream": [ - 1637, + 1639, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1657, + 1659, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1644 + 1646 ] } ], "events": [ - 1661, + 1663, { "distinct_on": [ - 1676, + 1678, "[events_select_column!]" ], "limit": [ @@ -166998,19 +168108,19 @@ export default { 40 ], "order_by": [ - 1674, + 1676, "[events_order_by!]" ], "where": [ - 1665 + 1667 ] } ], "events_aggregate": [ - 1662, + 1664, { "distinct_on": [ - 1676, + 1678, "[events_select_column!]" ], "limit": [ @@ -167020,44 +168130,44 @@ export default { 40 ], "order_by": [ - 1674, + 1676, "[events_order_by!]" ], "where": [ - 1665 + 1667 ] } ], "events_by_pk": [ - 1661, + 1663, { "id": [ - 5053, + 5109, "uuid!" ] } ], "events_stream": [ - 1661, + 1663, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1681, + 1683, "[events_stream_cursor_input]!" ], "where": [ - 1665 + 1667 ] } ], "friends": [ - 1691, + 1693, { "distinct_on": [ - 1705, + 1707, "[friends_select_column!]" ], "limit": [ @@ -167067,19 +168177,19 @@ export default { 40 ], "order_by": [ - 1703, + 1705, "[friends_order_by!]" ], "where": [ - 1695 + 1697 ] } ], "friends_aggregate": [ - 1692, + 1694, { "distinct_on": [ - 1705, + 1707, "[friends_select_column!]" ], "limit": [ @@ -167089,48 +168199,48 @@ export default { 40 ], "order_by": [ - 1703, + 1705, "[friends_order_by!]" ], "where": [ - 1695 + 1697 ] } ], "friends_by_pk": [ - 1691, + 1693, { "other_player_steam_id": [ - 257, + 259, "bigint!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "friends_stream": [ - 1691, + 1693, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1710, + 1712, "[friends_stream_cursor_input]!" ], "where": [ - 1695 + 1697 ] } ], "game_server_nodes": [ - 1718, + 1720, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -167140,19 +168250,19 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], "game_server_nodes_aggregate": [ - 1719, + 1721, { "distinct_on": [ - 1747, + 1749, "[game_server_nodes_select_column!]" ], "limit": [ @@ -167162,16 +168272,16 @@ export default { 40 ], "order_by": [ - 1744, + 1746, "[game_server_nodes_order_by!]" ], "where": [ - 1730 + 1732 ] } ], "game_server_nodes_by_pk": [ - 1718, + 1720, { "id": [ 80, @@ -167180,26 +168290,26 @@ export default { } ], "game_server_nodes_stream": [ - 1718, + 1720, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1757, + 1759, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1730 + 1732 ] } ], "game_versions": [ - 1769, + 1771, { "distinct_on": [ - 1789, + 1791, "[game_versions_select_column!]" ], "limit": [ @@ -167209,19 +168319,19 @@ export default { 40 ], "order_by": [ - 1786, + 1788, "[game_versions_order_by!]" ], "where": [ - 1774 + 1776 ] } ], "game_versions_aggregate": [ - 1770, + 1772, { "distinct_on": [ - 1789, + 1791, "[game_versions_select_column!]" ], "limit": [ @@ -167231,16 +168341,16 @@ export default { 40 ], "order_by": [ - 1786, + 1788, "[game_versions_order_by!]" ], "where": [ - 1774 + 1776 ] } ], "game_versions_by_pk": [ - 1769, + 1771, { "build_id": [ 40, @@ -167249,26 +168359,26 @@ export default { } ], "game_versions_stream": [ - 1769, + 1771, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1794, + 1796, "[game_versions_stream_cursor_input]!" ], "where": [ - 1774 + 1776 ] } ], "gamedata_signature_validations": [ - 1802, + 1804, { "distinct_on": [ - 1821, + 1823, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -167278,19 +168388,19 @@ export default { 40 ], "order_by": [ - 1818, + 1820, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1807 + 1809 ] } ], "gamedata_signature_validations_aggregate": [ - 1803, + 1805, { "distinct_on": [ - 1821, + 1823, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -167300,48 +168410,48 @@ export default { 40 ], "order_by": [ - 1818, + 1820, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1807 + 1809 ] } ], "gamedata_signature_validations_by_pk": [ - 1802, + 1804, { "id": [ - 5053, + 5109, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1802, + 1804, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1826, + 1828, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1807 + 1809 ] } ], "get_event_leaderboard": [ - 1845, + 1847, { "args": [ - 1834, + 1836, "get_event_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167351,23 +168461,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_event_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1834, + 1836, "get_event_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167377,23 +168487,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_leaderboard": [ - 1845, + 1847, { "args": [ - 1835, + 1837, "get_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167403,23 +168513,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1835, + 1837, "get_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167429,23 +168539,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_league_season_leaderboard": [ - 1845, + 1847, { "args": [ - 1836, + 1838, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167455,23 +168565,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_league_season_leaderboard_aggregate": [ - 1846, + 1848, { "args": [ - 1836, + 1838, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167481,23 +168591,23 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "get_player_leaderboard_rank": [ - 3447, + 3476, { "args": [ - 1837, + 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -167507,23 +168617,23 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3448, + 3477, { "args": [ - 1837, + 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -167533,19 +168643,19 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "leaderboard_entries": [ - 1845, + 1847, { "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167555,19 +168665,19 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "leaderboard_entries_aggregate": [ - 1846, + 1848, { "distinct_on": [ - 1856, + 1858, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -167577,35 +168687,35 @@ export default { 40 ], "order_by": [ - 1855, + 1857, "[leaderboard_entries_order_by!]" ], "where": [ - 1849 + 1851 ] } ], "leaderboard_entries_stream": [ - 1845, + 1847, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1861, + 1863, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1849 + 1851 ] } ], "league_divisions": [ - 1869, + 1871, { "distinct_on": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "limit": [ @@ -167615,19 +168725,19 @@ export default { 40 ], "order_by": [ - 1882, + 1884, "[league_divisions_order_by!]" ], "where": [ - 1873 + 1875 ] } ], "league_divisions_aggregate": [ - 1870, + 1872, { "distinct_on": [ - 1884, + 1886, "[league_divisions_select_column!]" ], "limit": [ @@ -167637,44 +168747,44 @@ export default { 40 ], "order_by": [ - 1882, + 1884, "[league_divisions_order_by!]" ], "where": [ - 1873 + 1875 ] } ], "league_divisions_by_pk": [ - 1869, + 1871, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_divisions_stream": [ - 1869, + 1871, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1889, + 1891, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1873 + 1875 ] } ], "league_match_weeks": [ - 1897, + 1899, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -167684,19 +168794,19 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], "league_match_weeks_aggregate": [ - 1898, + 1900, { "distinct_on": [ - 1918, + 1920, "[league_match_weeks_select_column!]" ], "limit": [ @@ -167706,44 +168816,44 @@ export default { 40 ], "order_by": [ - 1916, + 1918, "[league_match_weeks_order_by!]" ], "where": [ - 1906 + 1908 ] } ], "league_match_weeks_by_pk": [ - 1897, + 1899, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_match_weeks_stream": [ - 1897, + 1899, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1926, + 1928, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1906 + 1908 ] } ], "league_relegation_playoffs": [ - 1938, + 1940, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -167753,19 +168863,19 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], "league_relegation_playoffs_aggregate": [ - 1939, + 1941, { "distinct_on": [ - 1959, + 1961, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -167775,44 +168885,44 @@ export default { 40 ], "order_by": [ - 1957, + 1959, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1947 + 1949 ] } ], "league_relegation_playoffs_by_pk": [ - 1938, + 1940, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1938, + 1940, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1967, + 1969, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1947 + 1949 ] } ], "league_scheduling_proposals": [ - 1979, + 1981, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -167822,19 +168932,19 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "league_scheduling_proposals_aggregate": [ - 1980, + 1982, { "distinct_on": [ - 2000, + 2002, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -167844,44 +168954,44 @@ export default { 40 ], "order_by": [ - 1998, + 2000, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1988 + 1990 ] } ], "league_scheduling_proposals_by_pk": [ - 1979, + 1981, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1979, + 1981, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2008, + 2010, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1988 + 1990 ] } ], "league_season_divisions": [ - 2020, + 2022, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -167891,19 +169001,19 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "league_season_divisions_aggregate": [ - 2021, + 2023, { "distinct_on": [ - 2039, + 2041, "[league_season_divisions_select_column!]" ], "limit": [ @@ -167913,44 +169023,44 @@ export default { 40 ], "order_by": [ - 2037, + 2039, "[league_season_divisions_order_by!]" ], "where": [ - 2027 + 2029 ] } ], "league_season_divisions_by_pk": [ - 2020, + 2022, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_season_divisions_stream": [ - 2020, + 2022, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2041, + 2043, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2027 + 2029 ] } ], "league_seasons": [ - 2045, + 2047, { "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -167960,19 +169070,19 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], "league_seasons_aggregate": [ - 2046, + 2048, { "distinct_on": [ - 2065, + 2067, "[league_seasons_select_column!]" ], "limit": [ @@ -167982,44 +169092,44 @@ export default { 40 ], "order_by": [ - 2062, + 2064, "[league_seasons_order_by!]" ], "where": [ - 2050 + 2052 ] } ], "league_seasons_by_pk": [ - 2045, + 2047, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_seasons_stream": [ - 2045, + 2047, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2070, + 2072, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2050 + 2052 ] } ], "league_team_movements": [ - 2078, + 2080, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -168029,19 +169139,19 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "league_team_movements_aggregate": [ - 2079, + 2081, { "distinct_on": [ - 2099, + 2101, "[league_team_movements_select_column!]" ], "limit": [ @@ -168051,44 +169161,44 @@ export default { 40 ], "order_by": [ - 2097, + 2099, "[league_team_movements_order_by!]" ], "where": [ - 2087 + 2089 ] } ], "league_team_movements_by_pk": [ - 2078, + 2080, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_team_movements_stream": [ - 2078, + 2080, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2107, + 2109, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2087 + 2089 ] } ], "league_team_rosters": [ - 2119, + 2121, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -168098,19 +169208,19 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "league_team_rosters_aggregate": [ - 2120, + 2122, { "distinct_on": [ - 2140, + 2142, "[league_team_rosters_select_column!]" ], "limit": [ @@ -168120,48 +169230,48 @@ export default { 40 ], "order_by": [ - 2138, + 2140, "[league_team_rosters_order_by!]" ], "where": [ - 2128 + 2130 ] } ], "league_team_rosters_by_pk": [ - 2119, + 2121, { "league_team_season_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "league_team_rosters_stream": [ - 2119, + 2121, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2148, + 2150, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2128 + 2130 ] } ], "league_team_seasons": [ - 2160, + 2162, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -168171,19 +169281,19 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "league_team_seasons_aggregate": [ - 2161, + 2163, { "distinct_on": [ - 2182, + 2184, "[league_team_seasons_select_column!]" ], "limit": [ @@ -168193,44 +169303,44 @@ export default { 40 ], "order_by": [ - 2180, + 2182, "[league_team_seasons_order_by!]" ], "where": [ - 2169 + 2171 ] } ], "league_team_seasons_by_pk": [ - 2160, + 2162, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_team_seasons_stream": [ - 2160, + 2162, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2190, + 2192, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2169 + 2171 ] } ], "league_teams": [ - 2202, + 2204, { "distinct_on": [ - 2215, + 2217, "[league_teams_select_column!]" ], "limit": [ @@ -168240,19 +169350,19 @@ export default { 40 ], "order_by": [ - 2213, + 2215, "[league_teams_order_by!]" ], "where": [ - 2205 + 2207 ] } ], "league_teams_aggregate": [ - 2203, + 2205, { "distinct_on": [ - 2215, + 2217, "[league_teams_select_column!]" ], "limit": [ @@ -168262,44 +169372,44 @@ export default { 40 ], "order_by": [ - 2213, + 2215, "[league_teams_order_by!]" ], "where": [ - 2205 + 2207 ] } ], "league_teams_by_pk": [ - 2202, + 2204, { "id": [ - 5053, + 5109, "uuid!" ] } ], "league_teams_stream": [ - 2202, + 2204, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2217, + 2219, "[league_teams_stream_cursor_input]!" ], "where": [ - 2205 + 2207 ] } ], "lobbies": [ - 2221, + 2223, { "distinct_on": [ - 2234, + 2236, "[lobbies_select_column!]" ], "limit": [ @@ -168309,19 +169419,19 @@ export default { 40 ], "order_by": [ - 2232, + 2234, "[lobbies_order_by!]" ], "where": [ - 2224 + 2226 ] } ], "lobbies_aggregate": [ - 2222, + 2224, { "distinct_on": [ - 2234, + 2236, "[lobbies_select_column!]" ], "limit": [ @@ -168331,44 +169441,44 @@ export default { 40 ], "order_by": [ - 2232, + 2234, "[lobbies_order_by!]" ], "where": [ - 2224 + 2226 ] } ], "lobbies_by_pk": [ - 2221, + 2223, { "id": [ - 5053, + 5109, "uuid!" ] } ], "lobbies_stream": [ - 2221, + 2223, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2236, + 2238, "[lobbies_stream_cursor_input]!" ], "where": [ - 2224 + 2226 ] } ], "lobby_players": [ - 2240, + 2242, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -168378,19 +169488,19 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "lobby_players_aggregate": [ - 2241, + 2243, { "distinct_on": [ - 2263, + 2265, "[lobby_players_select_column!]" ], "limit": [ @@ -168400,48 +169510,48 @@ export default { 40 ], "order_by": [ - 2261, + 2263, "[lobby_players_order_by!]" ], "where": [ - 2251 + 2253 ] } ], "lobby_players_by_pk": [ - 2240, + 2242, { "lobby_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "lobby_players_stream": [ - 2240, + 2242, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2273, + 2275, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2251 + 2253 ] } ], "map_pools": [ - 2285, + 2287, { "distinct_on": [ - 2298, + 2300, "[map_pools_select_column!]" ], "limit": [ @@ -168451,19 +169561,19 @@ export default { 40 ], "order_by": [ - 2296, + 2298, "[map_pools_order_by!]" ], "where": [ - 2288 + 2290 ] } ], "map_pools_aggregate": [ - 2286, + 2288, { "distinct_on": [ - 2298, + 2300, "[map_pools_select_column!]" ], "limit": [ @@ -168473,44 +169583,44 @@ export default { 40 ], "order_by": [ - 2296, + 2298, "[map_pools_order_by!]" ], "where": [ - 2288 + 2290 ] } ], "map_pools_by_pk": [ - 2285, + 2287, { "id": [ - 5053, + 5109, "uuid!" ] } ], "map_pools_stream": [ - 2285, + 2287, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2300, + 2302, "[map_pools_stream_cursor_input]!" ], "where": [ - 2288 + 2290 ] } ], "maps": [ - 2304, + 2306, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -168520,19 +169630,19 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], "maps_aggregate": [ - 2305, + 2307, { "distinct_on": [ - 2325, + 2327, "[maps_select_column!]" ], "limit": [ @@ -168542,44 +169652,44 @@ export default { 40 ], "order_by": [ - 2323, + 2325, "[maps_order_by!]" ], "where": [ - 2313 + 2315 ] } ], "maps_by_pk": [ - 2304, + 2306, { "id": [ - 5053, + 5109, "uuid!" ] } ], "maps_stream": [ - 2304, + 2306, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2329, + 2331, "[maps_stream_cursor_input]!" ], "where": [ - 2313 + 2315 ] } ], "match_camera_tokens": [ - 2333, + 2335, { "distinct_on": [ - 2347, + 2349, "[match_camera_tokens_select_column!]" ], "limit": [ @@ -168589,19 +169699,19 @@ export default { 40 ], "order_by": [ - 2345, + 2347, "[match_camera_tokens_order_by!]" ], "where": [ - 2337 + 2339 ] } ], "match_camera_tokens_aggregate": [ - 2334, + 2336, { "distinct_on": [ - 2347, + 2349, "[match_camera_tokens_select_column!]" ], "limit": [ @@ -168611,44 +169721,44 @@ export default { 40 ], "order_by": [ - 2345, + 2347, "[match_camera_tokens_order_by!]" ], "where": [ - 2337 + 2339 ] } ], "match_camera_tokens_by_pk": [ - 2333, + 2335, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_camera_tokens_stream": [ - 2333, + 2335, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2352, + 2354, "[match_camera_tokens_stream_cursor_input]!" ], "where": [ - 2337 + 2339 ] } ], "match_clips": [ - 2360, + 2362, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -168658,19 +169768,19 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_aggregate": [ - 2361, + 2363, { "distinct_on": [ - 2382, + 2384, "[match_clips_select_column!]" ], "limit": [ @@ -168680,44 +169790,44 @@ export default { 40 ], "order_by": [ - 2380, + 2382, "[match_clips_order_by!]" ], "where": [ - 2369 + 2371 ] } ], "match_clips_by_pk": [ - 2360, + 2362, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_clips_stream": [ - 2360, + 2362, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2390, + 2392, "[match_clips_stream_cursor_input]!" ], "where": [ - 2369 + 2371 ] } ], "match_demo_sessions": [ - 2402, + 2404, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -168727,19 +169837,19 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], "match_demo_sessions_aggregate": [ - 2403, + 2405, { "distinct_on": [ - 2428, + 2430, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -168749,44 +169859,44 @@ export default { 40 ], "order_by": [ - 2425, + 2427, "[match_demo_sessions_order_by!]" ], "where": [ - 2412 + 2414 ] } ], "match_demo_sessions_by_pk": [ - 2402, + 2404, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2402, + 2404, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2436, + 2438, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2412 + 2414 ] } ], "match_lineup_players": [ - 2448, + 2450, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -168796,19 +169906,19 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match_lineup_players_aggregate": [ - 2449, + 2451, { "distinct_on": [ - 2471, + 2473, "[match_lineup_players_select_column!]" ], "limit": [ @@ -168818,44 +169928,44 @@ export default { 40 ], "order_by": [ - 2469, + 2471, "[match_lineup_players_order_by!]" ], "where": [ - 2459 + 2461 ] } ], "match_lineup_players_by_pk": [ - 2448, + 2450, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_lineup_players_stream": [ - 2448, + 2450, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2481, + 2483, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2459 + 2461 ] } ], "match_lineups": [ - 2493, + 2495, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -168865,19 +169975,19 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "match_lineups_aggregate": [ - 2494, + 2496, { "distinct_on": [ - 2515, + 2517, "[match_lineups_select_column!]" ], "limit": [ @@ -168887,44 +169997,44 @@ export default { 40 ], "order_by": [ - 2513, + 2515, "[match_lineups_order_by!]" ], "where": [ - 2502 + 2504 ] } ], "match_lineups_by_pk": [ - 2493, + 2495, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_lineups_stream": [ - 2493, + 2495, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2523, + 2525, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2502 + 2504 ] } ], "match_map_demos": [ - 2535, + 2537, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -168934,19 +170044,19 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "match_map_demos_aggregate": [ - 2536, + 2538, { "distinct_on": [ - 2564, + 2566, "[match_map_demos_select_column!]" ], "limit": [ @@ -168956,44 +170066,44 @@ export default { 40 ], "order_by": [ - 2561, + 2563, "[match_map_demos_order_by!]" ], "where": [ - 2547 + 2549 ] } ], "match_map_demos_by_pk": [ - 2535, + 2537, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_demos_stream": [ - 2535, + 2537, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2574, + 2576, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2547 + 2549 ] } ], "match_map_rounds": [ - 2586, + 2588, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -169003,19 +170113,19 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "match_map_rounds_aggregate": [ - 2587, + 2589, { "distinct_on": [ - 2607, + 2609, "[match_map_rounds_select_column!]" ], "limit": [ @@ -169025,44 +170135,44 @@ export default { 40 ], "order_by": [ - 2605, + 2607, "[match_map_rounds_order_by!]" ], "where": [ - 2595 + 2597 ] } ], "match_map_rounds_by_pk": [ - 2586, + 2588, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_rounds_stream": [ - 2586, + 2588, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2615, + 2617, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2595 + 2597 ] } ], "match_map_veto_picks": [ - 2627, + 2629, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -169072,19 +170182,19 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_map_veto_picks_aggregate": [ - 2628, + 2630, { "distinct_on": [ - 2647, + 2649, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -169094,44 +170204,44 @@ export default { 40 ], "order_by": [ - 2645, + 2647, "[match_map_veto_picks_order_by!]" ], "where": [ - 2636 + 2638 ] } ], "match_map_veto_picks_by_pk": [ - 2627, + 2629, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2627, + 2629, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2651, + 2653, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2636 + 2638 ] } ], "match_maps": [ - 2655, + 2657, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -169141,19 +170251,19 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_aggregate": [ - 2656, + 2658, { "distinct_on": [ - 2677, + 2679, "[match_maps_select_column!]" ], "limit": [ @@ -169163,44 +170273,44 @@ export default { 40 ], "order_by": [ - 2675, + 2677, "[match_maps_order_by!]" ], "where": [ - 2664 + 2666 ] } ], "match_maps_by_pk": [ - 2655, + 2657, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_maps_stream": [ - 2655, + 2657, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2685, + 2687, "[match_maps_stream_cursor_input]!" ], "where": [ - 2664 + 2666 ] } ], "match_options": [ - 2697, + 2699, { "distinct_on": [ - 2712, + 2714, "[match_options_select_column!]" ], "limit": [ @@ -169210,19 +170320,19 @@ export default { 40 ], "order_by": [ - 2710, + 2712, "[match_options_order_by!]" ], "where": [ - 2701 + 2703 ] } ], "match_options_aggregate": [ - 2698, + 2700, { "distinct_on": [ - 2712, + 2714, "[match_options_select_column!]" ], "limit": [ @@ -169232,44 +170342,44 @@ export default { 40 ], "order_by": [ - 2710, + 2712, "[match_options_order_by!]" ], "where": [ - 2701 + 2703 ] } ], "match_options_by_pk": [ - 2697, + 2699, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_options_stream": [ - 2697, + 2699, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2717, + 2719, "[match_options_stream_cursor_input]!" ], "where": [ - 2701 + 2703 ] } ], "match_region_veto_picks": [ - 2725, + 2727, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -169279,19 +170389,19 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], "match_region_veto_picks_aggregate": [ - 2726, + 2728, { "distinct_on": [ - 2745, + 2747, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -169301,44 +170411,44 @@ export default { 40 ], "order_by": [ - 2743, + 2745, "[match_region_veto_picks_order_by!]" ], "where": [ - 2734 + 2736 ] } ], "match_region_veto_picks_by_pk": [ - 2725, + 2727, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2725, + 2727, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2749, + 2751, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2734 + 2736 ] } ], "match_streams": [ - 2753, + 2755, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -169348,19 +170458,19 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "match_streams_aggregate": [ - 2754, + 2756, { "distinct_on": [ - 2781, + 2783, "[match_streams_select_column!]" ], "limit": [ @@ -169370,44 +170480,44 @@ export default { 40 ], "order_by": [ - 2778, + 2780, "[match_streams_order_by!]" ], "where": [ - 2765 + 2767 ] } ], "match_streams_by_pk": [ - 2753, + 2755, { "id": [ - 5053, + 5109, "uuid!" ] } ], "match_streams_stream": [ - 2753, + 2755, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2791, + 2793, "[match_streams_stream_cursor_input]!" ], "where": [ - 2765 + 2767 ] } ], "match_type_cfgs": [ - 2803, + 2805, { "distinct_on": [ - 2815, + 2817, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -169417,19 +170527,19 @@ export default { 40 ], "order_by": [ - 2813, + 2815, "[match_type_cfgs_order_by!]" ], "where": [ - 2806 + 2808 ] } ], "match_type_cfgs_aggregate": [ - 2804, + 2806, { "distinct_on": [ - 2815, + 2817, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -169439,44 +170549,44 @@ export default { 40 ], "order_by": [ - 2813, + 2815, "[match_type_cfgs_order_by!]" ], "where": [ - 2806 + 2808 ] } ], "match_type_cfgs_by_pk": [ - 2803, + 2805, { "type": [ - 740, + 742, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2803, + 2805, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2817, + 2819, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2806 + 2808 ] } ], "matches": [ - 2821, + 2823, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -169486,19 +170596,19 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_aggregate": [ - 2822, + 2824, { "distinct_on": [ - 2843, + 2845, "[matches_select_column!]" ], "limit": [ @@ -169508,44 +170618,44 @@ export default { 40 ], "order_by": [ - 2841, + 2843, "[matches_order_by!]" ], "where": [ - 2830 + 2832 ] } ], "matches_by_pk": [ - 2821, + 2823, { "id": [ - 5053, + 5109, "uuid!" ] } ], "matches_stream": [ - 2821, + 2823, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2851, + 2853, "[matches_stream_cursor_input]!" ], "where": [ - 2830 + 2832 ] } ], "migration_hashes_hashes": [ - 2863, + 2865, { "distinct_on": [ - 2875, + 2877, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -169555,19 +170665,19 @@ export default { 40 ], "order_by": [ - 2873, + 2875, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2866 + 2868 ] } ], "migration_hashes_hashes_aggregate": [ - 2864, + 2866, { "distinct_on": [ - 2875, + 2877, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -169577,16 +170687,16 @@ export default { 40 ], "order_by": [ - 2873, + 2875, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2866 + 2868 ] } ], "migration_hashes_hashes_by_pk": [ - 2863, + 2865, { "name": [ 80, @@ -169595,26 +170705,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2863, + 2865, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2877, + 2879, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2866 + 2868 ] } ], "my_friends": [ - 2881, + 2883, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -169624,19 +170734,19 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], "my_friends_aggregate": [ - 2882, + 2884, { "distinct_on": [ - 2906, + 2908, "[my_friends_select_column!]" ], "limit": [ @@ -169646,35 +170756,35 @@ export default { 40 ], "order_by": [ - 2904, + 2906, "[my_friends_order_by!]" ], "where": [ - 2893 + 2895 ] } ], "my_friends_stream": [ - 2881, + 2883, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2916, + 2918, "[my_friends_stream_cursor_input]!" ], "where": [ - 2893 + 2895 ] } ], "news_articles": [ - 2927, + 2929, { "distinct_on": [ - 2941, + 2943, "[news_articles_select_column!]" ], "limit": [ @@ -169684,19 +170794,19 @@ export default { 40 ], "order_by": [ - 2939, + 2941, "[news_articles_order_by!]" ], "where": [ - 2931 + 2933 ] } ], "news_articles_aggregate": [ - 2928, + 2930, { "distinct_on": [ - 2941, + 2943, "[news_articles_select_column!]" ], "limit": [ @@ -169706,44 +170816,121 @@ export default { 40 ], "order_by": [ - 2939, + 2941, "[news_articles_order_by!]" ], "where": [ - 2931 + 2933 ] } ], "news_articles_by_pk": [ - 2927, + 2929, { "id": [ - 5053, + 5109, "uuid!" ] } ], "news_articles_stream": [ - 2927, + 2929, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2946, + 2948, "[news_articles_stream_cursor_input]!" ], "where": [ - 2931 + 2933 + ] + } + ], + "notification_preferences": [ + 2956, + { + "distinct_on": [ + 2970, + "[notification_preferences_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2968, + "[notification_preferences_order_by!]" + ], + "where": [ + 2960 + ] + } + ], + "notification_preferences_aggregate": [ + 2957, + { + "distinct_on": [ + 2970, + "[notification_preferences_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2968, + "[notification_preferences_order_by!]" + ], + "where": [ + 2960 + ] + } + ], + "notification_preferences_by_pk": [ + 2956, + { + "channel": [ + 80, + "String!" + ], + "key": [ + 80, + "String!" + ], + "steam_id": [ + 259, + "bigint!" + ] + } + ], + "notification_preferences_stream": [ + 2956, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 2975, + "[notification_preferences_stream_cursor_input]!" + ], + "where": [ + 2960 ] } ], "notifications": [ - 2954, + 2983, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -169753,19 +170940,19 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "notifications_aggregate": [ - 2955, + 2984, { "distinct_on": [ - 2982, + 3011, "[notifications_select_column!]" ], "limit": [ @@ -169775,44 +170962,44 @@ export default { 40 ], "order_by": [ - 2979, + 3008, "[notifications_order_by!]" ], "where": [ - 2966 + 2995 ] } ], "notifications_by_pk": [ - 2954, + 2983, { "id": [ - 5053, + 5109, "uuid!" ] } ], "notifications_stream": [ - 2954, + 2983, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2992, + 3021, "[notifications_stream_cursor_input]!" ], "where": [ - 2966 + 2995 ] } ], "pending_match_import_players": [ - 3007, + 3036, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -169822,19 +171009,19 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "pending_match_import_players_aggregate": [ - 3008, + 3037, { "distinct_on": [ - 3028, + 3057, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -169844,48 +171031,48 @@ export default { 40 ], "order_by": [ - 3026, + 3055, "[pending_match_import_players_order_by!]" ], "where": [ - 3016 + 3045 ] } ], "pending_match_import_players_by_pk": [ - 3007, + 3036, { "steam_id": [ - 257, + 259, "bigint!" ], "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3007, + 3036, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3036, + 3065, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3016 + 3045 ] } ], "pending_match_imports": [ - 3048, + 3077, { "distinct_on": [ - 3063, + 3092, "[pending_match_imports_select_column!]" ], "limit": [ @@ -169895,19 +171082,19 @@ export default { 40 ], "order_by": [ - 3061, + 3090, "[pending_match_imports_order_by!]" ], "where": [ - 3052 + 3081 ] } ], "pending_match_imports_aggregate": [ - 3049, + 3078, { "distinct_on": [ - 3063, + 3092, "[pending_match_imports_select_column!]" ], "limit": [ @@ -169917,44 +171104,44 @@ export default { 40 ], "order_by": [ - 3061, + 3090, "[pending_match_imports_order_by!]" ], "where": [ - 3052 + 3081 ] } ], "pending_match_imports_by_pk": [ - 3048, + 3077, { "valve_match_id": [ - 3004, + 3033, "numeric!" ] } ], "pending_match_imports_stream": [ - 3048, + 3077, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3068, + 3097, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3052 + 3081 ] } ], "player_aim_stats_demo": [ - 3076, + 3105, { "distinct_on": [ - 3090, + 3119, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -169964,19 +171151,19 @@ export default { 40 ], "order_by": [ - 3088, + 3117, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3080 + 3109 ] } ], "player_aim_stats_demo_aggregate": [ - 3077, + 3106, { "distinct_on": [ - 3090, + 3119, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -169986,48 +171173,48 @@ export default { 40 ], "order_by": [ - 3088, + 3117, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3080 + 3109 ] } ], "player_aim_stats_demo_by_pk": [ - 3076, + 3105, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3076, + 3105, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3095, + 3124, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3080 + 3109 ] } ], "player_aim_weapon_stats": [ - 3103, + 3132, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -170037,19 +171224,19 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "player_aim_weapon_stats_aggregate": [ - 3104, + 3133, { "distinct_on": [ - 3124, + 3153, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -170059,23 +171246,23 @@ export default { 40 ], "order_by": [ - 3122, + 3151, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3112 + 3141 ] } ], "player_aim_weapon_stats_by_pk": [ - 3103, + 3132, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "weapon_class": [ @@ -170085,26 +171272,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 3103, + 3132, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3132, + 3161, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3112 + 3141 ] } ], "player_assists": [ - 3144, + 3173, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -170114,19 +171301,19 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_aggregate": [ - 3145, + 3174, { "distinct_on": [ - 3167, + 3196, "[player_assists_select_column!]" ], "limit": [ @@ -170136,56 +171323,56 @@ export default { 40 ], "order_by": [ - 3165, + 3194, "[player_assists_order_by!]" ], "where": [ - 3155 + 3184 ] } ], "player_assists_by_pk": [ - 3144, + 3173, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_assists_stream": [ - 3144, + 3173, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3177, + 3206, "[player_assists_stream_cursor_input]!" ], "where": [ - 3155 + 3184 ] } ], "player_career_stats_v": [ - 3189, + 3218, { "distinct_on": [ - 3197, + 3226, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -170195,19 +171382,19 @@ export default { 40 ], "order_by": [ - 3196, + 3225, "[player_career_stats_v_order_by!]" ], "where": [ - 3193 + 3222 ] } ], "player_career_stats_v_aggregate": [ - 3190, + 3219, { "distinct_on": [ - 3197, + 3226, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -170217,35 +171404,35 @@ export default { 40 ], "order_by": [ - 3196, + 3225, "[player_career_stats_v_order_by!]" ], "where": [ - 3193 + 3222 ] } ], "player_career_stats_v_stream": [ - 3189, + 3218, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3201, + 3230, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3193 + 3222 ] } ], "player_damages": [ - 3207, + 3236, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -170255,19 +171442,19 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_aggregate": [ - 3208, + 3237, { "distinct_on": [ - 3228, + 3257, "[player_damages_select_column!]" ], "limit": [ @@ -170277,52 +171464,52 @@ export default { 40 ], "order_by": [ - 3226, + 3255, "[player_damages_order_by!]" ], "where": [ - 3216 + 3245 ] } ], "player_damages_by_pk": [ - 3207, + 3236, { "id": [ - 5053, + 5109, "uuid!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_damages_stream": [ - 3207, + 3236, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3236, + 3265, "[player_damages_stream_cursor_input]!" ], "where": [ - 3216 + 3245 ] } ], "player_elo": [ - 3248, + 3277, { "distinct_on": [ - 3262, + 3291, "[player_elo_select_column!]" ], "limit": [ @@ -170332,19 +171519,19 @@ export default { 40 ], "order_by": [ - 3260, + 3289, "[player_elo_order_by!]" ], "where": [ - 3252 + 3281 ] } ], "player_elo_aggregate": [ - 3249, + 3278, { "distinct_on": [ - 3262, + 3291, "[player_elo_select_column!]" ], "limit": [ @@ -170354,52 +171541,52 @@ export default { 40 ], "order_by": [ - 3260, + 3289, "[player_elo_order_by!]" ], "where": [ - 3252 + 3281 ] } ], "player_elo_by_pk": [ - 3248, + 3277, { "match_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ], "type": [ - 1029, + 1031, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3248, + 3277, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3267, + 3296, "[player_elo_stream_cursor_input]!" ], "where": [ - 3252 + 3281 ] } ], "player_faceit_rank_history": [ - 3275, + 3304, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -170409,19 +171596,19 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], "player_faceit_rank_history_aggregate": [ - 3276, + 3305, { "distinct_on": [ - 3296, + 3325, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -170431,44 +171618,44 @@ export default { 40 ], "order_by": [ - 3294, + 3323, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3284 + 3313 ] } ], "player_faceit_rank_history_by_pk": [ - 3275, + 3304, { "id": [ - 5053, + 5109, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3275, + 3304, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3304, + 3333, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3284 + 3313 ] } ], "player_flashes": [ - 3316, + 3345, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -170478,19 +171665,19 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_flashes_aggregate": [ - 3317, + 3346, { "distinct_on": [ - 3339, + 3368, "[player_flashes_select_column!]" ], "limit": [ @@ -170500,56 +171687,56 @@ export default { 40 ], "order_by": [ - 3337, + 3366, "[player_flashes_order_by!]" ], "where": [ - 3327 + 3356 ] } ], "player_flashes_by_pk": [ - 3316, + 3345, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_flashes_stream": [ - 3316, + 3345, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3349, + 3378, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3327 + 3356 ] } ], "player_kills": [ - 3361, + 3390, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -170559,19 +171746,19 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_aggregate": [ - 3362, + 3391, { "distinct_on": [ - 3425, + 3454, "[player_kills_select_column!]" ], "limit": [ @@ -170581,40 +171768,40 @@ export default { 40 ], "order_by": [ - 3423, + 3452, "[player_kills_order_by!]" ], "where": [ - 3372 + 3401 ] } ], "player_kills_by_pk": [ - 3361, + 3390, { "attacked_steam_id": [ - 257, + 259, "bigint!" ], "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3373, + 3402, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -170624,19 +171811,19 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], "player_kills_by_weapon_aggregate": [ - 3374, + 3403, { "distinct_on": [ - 3394, + 3423, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -170646,19 +171833,19 @@ export default { 40 ], "order_by": [ - 3392, + 3421, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3382 + 3411 ] } ], "player_kills_by_weapon_by_pk": [ - 3373, + 3402, { "player_steam_id": [ - 257, + 259, "bigint!" ], "with": [ @@ -170668,42 +171855,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3373, + 3402, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3402, + 3431, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3382 + 3411 ] } ], "player_kills_stream": [ - 3361, + 3390, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3435, + 3464, "[player_kills_stream_cursor_input]!" ], "where": [ - 3372 + 3401 ] } ], "player_leaderboard_rank": [ - 3447, + 3476, { "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170713,19 +171900,19 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "player_leaderboard_rank_aggregate": [ - 3448, + 3477, { "distinct_on": [ - 3458, + 3487, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170735,35 +171922,35 @@ export default { 40 ], "order_by": [ - 3457, + 3486, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3451 + 3480 ] } ], "player_leaderboard_rank_stream": [ - 3447, + 3476, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3463, + 3492, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3451 + 3480 ] } ], "player_match_map_stats": [ - 3470, + 3499, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -170773,19 +171960,19 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "player_match_map_stats_aggregate": [ - 3471, + 3500, { "distinct_on": [ - 3491, + 3520, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -170795,48 +171982,48 @@ export default { 40 ], "order_by": [ - 3489, + 3518, "[player_match_map_stats_order_by!]" ], "where": [ - 3479 + 3508 ] } ], "player_match_map_stats_by_pk": [ - 3470, + 3499, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3470, + 3499, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3499, + 3528, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3479 + 3508 ] } ], "player_match_performance_v": [ - 3511, + 3540, { "distinct_on": [ - 3519, + 3548, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -170846,19 +172033,19 @@ export default { 40 ], "order_by": [ - 3518, + 3547, "[player_match_performance_v_order_by!]" ], "where": [ - 3515 + 3544 ] } ], "player_match_performance_v_aggregate": [ - 3512, + 3541, { "distinct_on": [ - 3519, + 3548, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -170868,35 +172055,35 @@ export default { 40 ], "order_by": [ - 3518, + 3547, "[player_match_performance_v_order_by!]" ], "where": [ - 3515 + 3544 ] } ], "player_match_performance_v_stream": [ - 3511, + 3540, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3523, + 3552, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3515 + 3544 ] } ], "player_match_stats_v": [ - 3529, + 3558, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -170906,19 +172093,19 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "player_match_stats_v_aggregate": [ - 3530, + 3559, { "distinct_on": [ - 3545, + 3574, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -170928,35 +172115,35 @@ export default { 40 ], "order_by": [ - 3544, + 3573, "[player_match_stats_v_order_by!]" ], "where": [ - 3538 + 3567 ] } ], "player_match_stats_v_stream": [ - 3529, + 3558, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3552, + 3581, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3538 + 3567 ] } ], "player_objectives": [ - 3562, + 3591, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -170966,19 +172153,19 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_aggregate": [ - 3563, + 3592, { "distinct_on": [ - 3583, + 3612, "[player_objectives_select_column!]" ], "limit": [ @@ -170988,52 +172175,52 @@ export default { 40 ], "order_by": [ - 3581, + 3610, "[player_objectives_order_by!]" ], "where": [ - 3571 + 3600 ] } ], "player_objectives_by_pk": [ - 3562, + 3591, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_objectives_stream": [ - 3562, + 3591, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3591, + 3620, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3571 + 3600 ] } ], "player_performance_v": [ - 3603, + 3632, { "distinct_on": [ - 3611, + 3640, "[player_performance_v_select_column!]" ], "limit": [ @@ -171043,19 +172230,19 @@ export default { 40 ], "order_by": [ - 3610, + 3639, "[player_performance_v_order_by!]" ], "where": [ - 3607 + 3636 ] } ], "player_performance_v_aggregate": [ - 3604, + 3633, { "distinct_on": [ - 3611, + 3640, "[player_performance_v_select_column!]" ], "limit": [ @@ -171065,35 +172252,35 @@ export default { 40 ], "order_by": [ - 3610, + 3639, "[player_performance_v_order_by!]" ], "where": [ - 3607 + 3636 ] } ], "player_performance_v_stream": [ - 3603, + 3632, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3615, + 3644, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3607 + 3636 ] } ], "player_premier_rank_history": [ - 3621, + 3650, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -171103,19 +172290,19 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "player_premier_rank_history_aggregate": [ - 3622, + 3651, { "distinct_on": [ - 3642, + 3671, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -171125,44 +172312,44 @@ export default { 40 ], "order_by": [ - 3640, + 3669, "[player_premier_rank_history_order_by!]" ], "where": [ - 3630 + 3659 ] } ], "player_premier_rank_history_by_pk": [ - 3621, + 3650, { "id": [ - 5053, + 5109, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3621, + 3650, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3650, + 3679, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3630 + 3659 ] } ], "player_sanctions": [ - 3662, + 3691, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -171172,19 +172359,19 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "player_sanctions_aggregate": [ - 3663, + 3692, { "distinct_on": [ - 3683, + 3712, "[player_sanctions_select_column!]" ], "limit": [ @@ -171194,48 +172381,48 @@ export default { 40 ], "order_by": [ - 3681, + 3710, "[player_sanctions_order_by!]" ], "where": [ - 3671 + 3700 ] } ], "player_sanctions_by_pk": [ - 3662, + 3691, { "created_at": [ - 4553, + 4609, "timestamptz!" ], "id": [ - 5053, + 5109, "uuid!" ] } ], "player_sanctions_stream": [ - 3662, + 3691, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3691, + 3720, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3671 + 3700 ] } ], "player_season_stats": [ - 3703, + 3732, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -171245,19 +172432,19 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "player_season_stats_aggregate": [ - 3704, + 3733, { "distinct_on": [ - 3734, + 3763, "[player_season_stats_select_column!]" ], "limit": [ @@ -171267,48 +172454,48 @@ export default { 40 ], "order_by": [ - 3732, + 3761, "[player_season_stats_order_by!]" ], "where": [ - 3722 + 3751 ] } ], "player_season_stats_by_pk": [ - 3703, + 3732, { "player_steam_id": [ - 257, + 259, "bigint!" ], "season_id": [ - 5053, + 5109, "uuid!" ] } ], "player_season_stats_stream": [ - 3703, + 3732, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3750, + 3779, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3722 + 3751 ] } ], "player_stats": [ - 3762, + 3791, { "distinct_on": [ - 3777, + 3806, "[player_stats_select_column!]" ], "limit": [ @@ -171318,19 +172505,19 @@ export default { 40 ], "order_by": [ - 3775, + 3804, "[player_stats_order_by!]" ], "where": [ - 3766 + 3795 ] } ], "player_stats_aggregate": [ - 3763, + 3792, { "distinct_on": [ - 3777, + 3806, "[player_stats_select_column!]" ], "limit": [ @@ -171340,44 +172527,44 @@ export default { 40 ], "order_by": [ - 3775, + 3804, "[player_stats_order_by!]" ], "where": [ - 3766 + 3795 ] } ], "player_stats_by_pk": [ - 3762, + 3791, { "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "player_stats_stream": [ - 3762, + 3791, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3782, + 3811, "[player_stats_stream_cursor_input]!" ], "where": [ - 3766 + 3795 ] } ], "player_steam_bot_friend": [ - 3790, + 3819, { "distinct_on": [ - 3809, + 3838, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -171387,19 +172574,19 @@ export default { 40 ], "order_by": [ - 3806, + 3835, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3795 + 3824 ] } ], "player_steam_bot_friend_aggregate": [ - 3791, + 3820, { "distinct_on": [ - 3809, + 3838, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -171409,44 +172596,44 @@ export default { 40 ], "order_by": [ - 3806, + 3835, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3795 + 3824 ] } ], "player_steam_bot_friend_by_pk": [ - 3790, + 3819, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3790, + 3819, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3814, + 3843, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3795 + 3824 ] } ], "player_steam_match_auth": [ - 3822, + 3851, { "distinct_on": [ - 3836, + 3865, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -171456,19 +172643,19 @@ export default { 40 ], "order_by": [ - 3834, + 3863, "[player_steam_match_auth_order_by!]" ], "where": [ - 3826 + 3855 ] } ], "player_steam_match_auth_aggregate": [ - 3823, + 3852, { "distinct_on": [ - 3836, + 3865, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -171478,44 +172665,44 @@ export default { 40 ], "order_by": [ - 3834, + 3863, "[player_steam_match_auth_order_by!]" ], "where": [ - 3826 + 3855 ] } ], "player_steam_match_auth_by_pk": [ - 3822, + 3851, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3822, + 3851, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3841, + 3870, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3826 + 3855 ] } ], "player_unused_utility": [ - 3849, + 3878, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -171525,19 +172712,19 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utility_aggregate": [ - 3850, + 3879, { "distinct_on": [ - 3870, + 3899, "[player_unused_utility_select_column!]" ], "limit": [ @@ -171547,48 +172734,48 @@ export default { 40 ], "order_by": [ - 3868, + 3897, "[player_unused_utility_order_by!]" ], "where": [ - 3858 + 3887 ] } ], "player_unused_utility_by_pk": [ - 3849, + 3878, { "match_map_id": [ - 5053, + 5109, "uuid!" ], "player_steam_id": [ - 257, + 259, "bigint!" ] } ], "player_unused_utility_stream": [ - 3849, + 3878, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3878, + 3907, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3858 + 3887 ] } ], "player_utility": [ - 3890, + 3919, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -171598,19 +172785,19 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utility_aggregate": [ - 3891, + 3920, { "distinct_on": [ - 3911, + 3940, "[player_utility_select_column!]" ], "limit": [ @@ -171620,52 +172807,52 @@ export default { 40 ], "order_by": [ - 3909, + 3938, "[player_utility_order_by!]" ], "where": [ - 3899 + 3928 ] } ], "player_utility_by_pk": [ - 3890, + 3919, { "attacker_steam_id": [ - 257, + 259, "bigint!" ], "match_map_id": [ - 5053, + 5109, "uuid!" ], "time": [ - 4553, + 4609, "timestamptz!" ] } ], "player_utility_stream": [ - 3890, + 3919, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3919, + 3948, "[player_utility_stream_cursor_input]!" ], "where": [ - 3899 + 3928 ] } ], "player_weapon_stats_v": [ - 3931, + 3960, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -171675,19 +172862,19 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], "player_weapon_stats_v_aggregate": [ - 3932, + 3961, { "distinct_on": [ - 3947, + 3976, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -171697,35 +172884,35 @@ export default { 40 ], "order_by": [ - 3946, + 3975, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3940 + 3969 ] } ], "player_weapon_stats_v_stream": [ - 3931, + 3960, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3954, + 3983, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3940 + 3969 ] } ], "players": [ - 3964, + 3993, { "distinct_on": [ - 3979, + 4008, "[players_select_column!]" ], "limit": [ @@ -171735,19 +172922,19 @@ export default { 40 ], "order_by": [ - 3977, + 4006, "[players_order_by!]" ], "where": [ - 3968 + 3997 ] } ], "players_aggregate": [ - 3965, + 3994, { "distinct_on": [ - 3979, + 4008, "[players_select_column!]" ], "limit": [ @@ -171757,44 +172944,44 @@ export default { 40 ], "order_by": [ - 3977, + 4006, "[players_order_by!]" ], "where": [ - 3968 + 3997 ] } ], "players_by_pk": [ - 3964, + 3993, { "steam_id": [ - 257, + 259, "bigint!" ] } ], "players_stream": [ - 3964, + 3993, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3984, + 4013, "[players_stream_cursor_input]!" ], "where": [ - 3968 + 3997 ] } ], "plugin_versions": [ - 3992, + 4021, { "distinct_on": [ - 4006, + 4035, "[plugin_versions_select_column!]" ], "limit": [ @@ -171804,19 +172991,19 @@ export default { 40 ], "order_by": [ - 4004, + 4033, "[plugin_versions_order_by!]" ], "where": [ - 3996 + 4025 ] } ], "plugin_versions_aggregate": [ - 3993, + 4022, { "distinct_on": [ - 4006, + 4035, "[plugin_versions_select_column!]" ], "limit": [ @@ -171826,19 +173013,19 @@ export default { 40 ], "order_by": [ - 4004, + 4033, "[plugin_versions_order_by!]" ], "where": [ - 3996 + 4025 ] } ], "plugin_versions_by_pk": [ - 3992, + 4021, { "runtime": [ - 1110, + 1112, "e_plugin_runtimes_enum!" ], "version": [ @@ -171848,26 +173035,95 @@ export default { } ], "plugin_versions_stream": [ - 3992, + 4021, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4011, + 4040, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3996 + 4025 + ] + } + ], + "push_subscriptions": [ + 4048, + { + "distinct_on": [ + 4062, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4060, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4052 + ] + } + ], + "push_subscriptions_aggregate": [ + 4049, + { + "distinct_on": [ + 4062, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4060, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4052 + ] + } + ], + "push_subscriptions_by_pk": [ + 4048, + { + "id": [ + 5109, + "uuid!" + ] + } + ], + "push_subscriptions_stream": [ + 4048, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 4067, + "[push_subscriptions_stream_cursor_input]!" + ], + "where": [ + 4052 ] } ], "seasons": [ - 4023, + 4079, { "distinct_on": [ - 4038, + 4094, "[seasons_select_column!]" ], "limit": [ @@ -171877,19 +173133,19 @@ export default { 40 ], "order_by": [ - 4036, + 4092, "[seasons_order_by!]" ], "where": [ - 4027 + 4083 ] } ], "seasons_aggregate": [ - 4024, + 4080, { "distinct_on": [ - 4038, + 4094, "[seasons_select_column!]" ], "limit": [ @@ -171899,44 +173155,44 @@ export default { 40 ], "order_by": [ - 4036, + 4092, "[seasons_order_by!]" ], "where": [ - 4027 + 4083 ] } ], "seasons_by_pk": [ - 4023, + 4079, { "id": [ - 5053, + 5109, "uuid!" ] } ], "seasons_stream": [ - 4023, + 4079, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4043, + 4099, "[seasons_stream_cursor_input]!" ], "where": [ - 4027 + 4083 ] } ], "server_regions": [ - 4051, + 4107, { "distinct_on": [ - 4065, + 4121, "[server_regions_select_column!]" ], "limit": [ @@ -171946,19 +173202,19 @@ export default { 40 ], "order_by": [ - 4063, + 4119, "[server_regions_order_by!]" ], "where": [ - 4055 + 4111 ] } ], "server_regions_aggregate": [ - 4052, + 4108, { "distinct_on": [ - 4065, + 4121, "[server_regions_select_column!]" ], "limit": [ @@ -171968,16 +173224,16 @@ export default { 40 ], "order_by": [ - 4063, + 4119, "[server_regions_order_by!]" ], "where": [ - 4055 + 4111 ] } ], "server_regions_by_pk": [ - 4051, + 4107, { "value": [ 80, @@ -171986,26 +173242,26 @@ export default { } ], "server_regions_stream": [ - 4051, + 4107, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4070, + 4126, "[server_regions_stream_cursor_input]!" ], "where": [ - 4055 + 4111 ] } ], "servers": [ - 4078, + 4134, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -172015,19 +173271,19 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_aggregate": [ - 4079, + 4135, { "distinct_on": [ - 4102, + 4158, "[servers_select_column!]" ], "limit": [ @@ -172037,44 +173293,44 @@ export default { 40 ], "order_by": [ - 4100, + 4156, "[servers_order_by!]" ], "where": [ - 4089 + 4145 ] } ], "servers_by_pk": [ - 4078, + 4134, { "id": [ - 5053, + 5109, "uuid!" ] } ], "servers_stream": [ - 4078, + 4134, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4112, + 4168, "[servers_stream_cursor_input]!" ], "where": [ - 4089 + 4145 ] } ], "settings": [ - 4124, + 4180, { "distinct_on": [ - 4136, + 4192, "[settings_select_column!]" ], "limit": [ @@ -172084,19 +173340,19 @@ export default { 40 ], "order_by": [ - 4134, + 4190, "[settings_order_by!]" ], "where": [ - 4127 + 4183 ] } ], "settings_aggregate": [ - 4125, + 4181, { "distinct_on": [ - 4136, + 4192, "[settings_select_column!]" ], "limit": [ @@ -172106,16 +173362,16 @@ export default { 40 ], "order_by": [ - 4134, + 4190, "[settings_order_by!]" ], "where": [ - 4127 + 4183 ] } ], "settings_by_pk": [ - 4124, + 4180, { "name": [ 80, @@ -172124,26 +173380,26 @@ export default { } ], "settings_stream": [ - 4124, + 4180, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4138, + 4194, "[settings_stream_cursor_input]!" ], "where": [ - 4127 + 4183 ] } ], "steam_account_claims": [ - 4144, + 4200, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -172153,19 +173409,19 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "steam_account_claims_aggregate": [ - 4145, + 4201, { "distinct_on": [ - 4162, + 4218, "[steam_account_claims_select_column!]" ], "limit": [ @@ -172175,44 +173431,44 @@ export default { 40 ], "order_by": [ - 4160, + 4216, "[steam_account_claims_order_by!]" ], "where": [ - 4151 + 4207 ] } ], "steam_account_claims_by_pk": [ - 4144, + 4200, { "id": [ - 5053, + 5109, "uuid!" ] } ], "steam_account_claims_stream": [ - 4144, + 4200, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4164, + 4220, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4151 + 4207 ] } ], "steam_accounts": [ - 4168, + 4224, { "distinct_on": [ - 4183, + 4239, "[steam_accounts_select_column!]" ], "limit": [ @@ -172222,19 +173478,19 @@ export default { 40 ], "order_by": [ - 4181, + 4237, "[steam_accounts_order_by!]" ], "where": [ - 4172 + 4228 ] } ], "steam_accounts_aggregate": [ - 4169, + 4225, { "distinct_on": [ - 4183, + 4239, "[steam_accounts_select_column!]" ], "limit": [ @@ -172244,44 +173500,44 @@ export default { 40 ], "order_by": [ - 4181, + 4237, "[steam_accounts_order_by!]" ], "where": [ - 4172 + 4228 ] } ], "steam_accounts_by_pk": [ - 4168, + 4224, { "id": [ - 5053, + 5109, "uuid!" ] } ], "steam_accounts_stream": [ - 4168, + 4224, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4188, + 4244, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4172 + 4228 ] } ], "system_alerts": [ - 4196, + 4252, { "distinct_on": [ - 4210, + 4266, "[system_alerts_select_column!]" ], "limit": [ @@ -172291,19 +173547,19 @@ export default { 40 ], "order_by": [ - 4208, + 4264, "[system_alerts_order_by!]" ], "where": [ - 4200 + 4256 ] } ], "system_alerts_aggregate": [ - 4197, + 4253, { "distinct_on": [ - 4210, + 4266, "[system_alerts_select_column!]" ], "limit": [ @@ -172313,44 +173569,44 @@ export default { 40 ], "order_by": [ - 4208, + 4264, "[system_alerts_order_by!]" ], "where": [ - 4200 + 4256 ] } ], "system_alerts_by_pk": [ - 4196, + 4252, { "id": [ - 5053, + 5109, "uuid!" ] } ], "system_alerts_stream": [ - 4196, + 4252, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4215, + 4271, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4200 + 4256 ] } ], "team_invites": [ - 4223, + 4279, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -172360,19 +173616,19 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_invites_aggregate": [ - 4224, + 4280, { "distinct_on": [ - 4244, + 4300, "[team_invites_select_column!]" ], "limit": [ @@ -172382,44 +173638,44 @@ export default { 40 ], "order_by": [ - 4242, + 4298, "[team_invites_order_by!]" ], "where": [ - 4232 + 4288 ] } ], "team_invites_by_pk": [ - 4223, + 4279, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_invites_stream": [ - 4223, + 4279, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4252, + 4308, "[team_invites_stream_cursor_input]!" ], "where": [ - 4232 + 4288 ] } ], "team_roster": [ - 4264, + 4320, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -172429,19 +173685,19 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_roster_aggregate": [ - 4265, + 4321, { "distinct_on": [ - 4287, + 4343, "[team_roster_select_column!]" ], "limit": [ @@ -172451,48 +173707,48 @@ export default { 40 ], "order_by": [ - 4285, + 4341, "[team_roster_order_by!]" ], "where": [ - 4275 + 4331 ] } ], "team_roster_by_pk": [ - 4264, + 4320, { "player_steam_id": [ - 257, + 259, "bigint!" ], "team_id": [ - 5053, + 5109, "uuid!" ] } ], "team_roster_stream": [ - 4264, + 4320, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4297, + 4353, "[team_roster_stream_cursor_input]!" ], "where": [ - 4275 + 4331 ] } ], "team_scrim_alerts": [ - 4309, + 4365, { "distinct_on": [ - 4323, + 4379, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -172502,19 +173758,19 @@ export default { 40 ], "order_by": [ - 4321, + 4377, "[team_scrim_alerts_order_by!]" ], "where": [ - 4313 + 4369 ] } ], "team_scrim_alerts_aggregate": [ - 4310, + 4366, { "distinct_on": [ - 4323, + 4379, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -172524,44 +173780,44 @@ export default { 40 ], "order_by": [ - 4321, + 4377, "[team_scrim_alerts_order_by!]" ], "where": [ - 4313 + 4369 ] } ], "team_scrim_alerts_by_pk": [ - 4309, + 4365, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4309, + 4365, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4328, + 4384, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4313 + 4369 ] } ], "team_scrim_availability": [ - 4336, + 4392, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -172571,19 +173827,19 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "team_scrim_availability_aggregate": [ - 4337, + 4393, { "distinct_on": [ - 4356, + 4412, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -172593,44 +173849,44 @@ export default { 40 ], "order_by": [ - 4354, + 4410, "[team_scrim_availability_order_by!]" ], "where": [ - 4345 + 4401 ] } ], "team_scrim_availability_by_pk": [ - 4336, + 4392, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4336, + 4392, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4360, + 4416, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4345 + 4401 ] } ], "team_scrim_request_proposals": [ - 4364, + 4420, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -172640,19 +173896,19 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "team_scrim_request_proposals_aggregate": [ - 4365, + 4421, { "distinct_on": [ - 4385, + 4441, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -172662,44 +173918,44 @@ export default { 40 ], "order_by": [ - 4383, + 4439, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4373 + 4429 ] } ], "team_scrim_request_proposals_by_pk": [ - 4364, + 4420, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4364, + 4420, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4393, + 4449, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4373 + 4429 ] } ], "team_scrim_requests": [ - 4405, + 4461, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -172709,19 +173965,19 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], "team_scrim_requests_aggregate": [ - 4406, + 4462, { "distinct_on": [ - 4429, + 4485, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -172731,44 +173987,44 @@ export default { 40 ], "order_by": [ - 4427, + 4483, "[team_scrim_requests_order_by!]" ], "where": [ - 4416 + 4472 ] } ], "team_scrim_requests_by_pk": [ - 4405, + 4461, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4405, + 4461, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4439, + 4495, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4416 + 4472 ] } ], "team_scrim_settings": [ - 4451, + 4507, { "distinct_on": [ - 4466, + 4522, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -172778,19 +174034,19 @@ export default { 40 ], "order_by": [ - 4464, + 4520, "[team_scrim_settings_order_by!]" ], "where": [ - 4455 + 4511 ] } ], "team_scrim_settings_aggregate": [ - 4452, + 4508, { "distinct_on": [ - 4466, + 4522, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -172800,44 +174056,44 @@ export default { 40 ], "order_by": [ - 4464, + 4520, "[team_scrim_settings_order_by!]" ], "where": [ - 4455 + 4511 ] } ], "team_scrim_settings_by_pk": [ - 4451, + 4507, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4451, + 4507, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4471, + 4527, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4455 + 4511 ] } ], "team_suggestions": [ - 4479, + 4535, { "distinct_on": [ - 4493, + 4549, "[team_suggestions_select_column!]" ], "limit": [ @@ -172847,19 +174103,19 @@ export default { 40 ], "order_by": [ - 4491, + 4547, "[team_suggestions_order_by!]" ], "where": [ - 4483 + 4539 ] } ], "team_suggestions_aggregate": [ - 4480, + 4536, { "distinct_on": [ - 4493, + 4549, "[team_suggestions_select_column!]" ], "limit": [ @@ -172869,44 +174125,44 @@ export default { 40 ], "order_by": [ - 4491, + 4547, "[team_suggestions_order_by!]" ], "where": [ - 4483 + 4539 ] } ], "team_suggestions_by_pk": [ - 4479, + 4535, { "id": [ - 5053, + 5109, "uuid!" ] } ], "team_suggestions_stream": [ - 4479, + 4535, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4498, + 4554, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4483 + 4539 ] } ], "teams": [ - 4506, + 4562, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -172916,19 +174172,19 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "teams_aggregate": [ - 4507, + 4563, { "distinct_on": [ - 4530, + 4586, "[teams_select_column!]" ], "limit": [ @@ -172938,44 +174194,44 @@ export default { 40 ], "order_by": [ - 4528, + 4584, "[teams_order_by!]" ], "where": [ - 4517 + 4573 ] } ], "teams_by_pk": [ - 4506, + 4562, { "id": [ - 5053, + 5109, "uuid!" ] } ], "teams_stream": [ - 4506, + 4562, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4540, + 4596, "[teams_stream_cursor_input]!" ], "where": [ - 4517 + 4573 ] } ], "tournament_awards": [ - 4555, + 4611, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -172985,19 +174241,19 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_awards_aggregate": [ - 4556, + 4612, { "distinct_on": [ - 4577, + 4633, "[tournament_awards_select_column!]" ], "limit": [ @@ -173007,44 +174263,44 @@ export default { 40 ], "order_by": [ - 4575, + 4631, "[tournament_awards_order_by!]" ], "where": [ - 4564 + 4620 ] } ], "tournament_awards_by_pk": [ - 4555, + 4611, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_awards_stream": [ - 4555, + 4611, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4585, + 4641, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4564 + 4620 ] } ], "tournament_brackets": [ - 4597, + 4653, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -173054,19 +174310,19 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "tournament_brackets_aggregate": [ - 4598, + 4654, { "distinct_on": [ - 4621, + 4677, "[tournament_brackets_select_column!]" ], "limit": [ @@ -173076,44 +174332,44 @@ export default { 40 ], "order_by": [ - 4619, + 4675, "[tournament_brackets_order_by!]" ], "where": [ - 4608 + 4664 ] } ], "tournament_brackets_by_pk": [ - 4597, + 4653, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_brackets_stream": [ - 4597, + 4653, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4631, + 4687, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4608 + 4664 ] } ], "tournament_categories": [ - 4643, + 4699, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -173123,19 +174379,19 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "tournament_categories_aggregate": [ - 4644, + 4700, { "distinct_on": [ - 4661, + 4717, "[tournament_categories_select_column!]" ], "limit": [ @@ -173145,48 +174401,48 @@ export default { 40 ], "order_by": [ - 4659, + 4715, "[tournament_categories_order_by!]" ], "where": [ - 4650 + 4706 ] } ], "tournament_categories_by_pk": [ - 4643, + 4699, { "category": [ - 1312, + 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_categories_stream": [ - 4643, + 4699, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4663, + 4719, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4650 + 4706 ] } ], "tournament_organizer_teams": [ - 4667, + 4723, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -173196,19 +174452,19 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "tournament_organizer_teams_aggregate": [ - 4668, + 4724, { "distinct_on": [ - 4685, + 4741, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -173218,48 +174474,48 @@ export default { 40 ], "order_by": [ - 4683, + 4739, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4674 + 4730 ] } ], "tournament_organizer_teams_by_pk": [ - 4667, + 4723, { "team_id": [ - 5053, + 5109, "uuid!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4667, + 4723, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4687, + 4743, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4674 + 4730 ] } ], "tournament_organizers": [ - 4691, + 4747, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -173269,19 +174525,19 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_organizers_aggregate": [ - 4692, + 4748, { "distinct_on": [ - 4712, + 4768, "[tournament_organizers_select_column!]" ], "limit": [ @@ -173291,48 +174547,48 @@ export default { 40 ], "order_by": [ - 4710, + 4766, "[tournament_organizers_order_by!]" ], "where": [ - 4700 + 4756 ] } ], "tournament_organizers_by_pk": [ - 4691, + 4747, { "steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_organizers_stream": [ - 4691, + 4747, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4720, + 4776, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4700 + 4756 ] } ], "tournament_prizes": [ - 4732, + 4788, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -173342,19 +174598,19 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "tournament_prizes_aggregate": [ - 4733, + 4789, { "distinct_on": [ - 4753, + 4809, "[tournament_prizes_select_column!]" ], "limit": [ @@ -173364,44 +174620,44 @@ export default { 40 ], "order_by": [ - 4751, + 4807, "[tournament_prizes_order_by!]" ], "where": [ - 4741 + 4797 ] } ], "tournament_prizes_by_pk": [ - 4732, + 4788, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_prizes_stream": [ - 4732, + 4788, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4761, + 4817, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4741 + 4797 ] } ], "tournament_stage_windows": [ - 4773, + 4829, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -173411,19 +174667,19 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], "tournament_stage_windows_aggregate": [ - 4774, + 4830, { "distinct_on": [ - 4794, + 4850, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -173433,44 +174689,44 @@ export default { 40 ], "order_by": [ - 4792, + 4848, "[tournament_stage_windows_order_by!]" ], "where": [ - 4782 + 4838 ] } ], "tournament_stage_windows_by_pk": [ - 4773, + 4829, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4773, + 4829, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4802, + 4858, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4782 + 4838 ] } ], "tournament_stages": [ - 4814, + 4870, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -173480,19 +174736,19 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "tournament_stages_aggregate": [ - 4815, + 4871, { "distinct_on": [ - 4843, + 4899, "[tournament_stages_select_column!]" ], "limit": [ @@ -173502,44 +174758,44 @@ export default { 40 ], "order_by": [ - 4840, + 4896, "[tournament_stages_order_by!]" ], "where": [ - 4826 + 4882 ] } ], "tournament_stages_by_pk": [ - 4814, + 4870, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_stages_stream": [ - 4814, + 4870, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4853, + 4909, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4826 + 4882 ] } ], "tournament_team_invites": [ - 4865, + 4921, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -173549,19 +174805,19 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], "tournament_team_invites_aggregate": [ - 4866, + 4922, { "distinct_on": [ - 4886, + 4942, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -173571,44 +174827,44 @@ export default { 40 ], "order_by": [ - 4884, + 4940, "[tournament_team_invites_order_by!]" ], "where": [ - 4874 + 4930 ] } ], "tournament_team_invites_by_pk": [ - 4865, + 4921, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4865, + 4921, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4894, + 4950, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4874 + 4930 ] } ], "tournament_team_roster": [ - 4906, + 4962, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -173618,19 +174874,19 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_team_roster_aggregate": [ - 4907, + 4963, { "distinct_on": [ - 4927, + 4983, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -173640,48 +174896,48 @@ export default { 40 ], "order_by": [ - 4925, + 4981, "[tournament_team_roster_order_by!]" ], "where": [ - 4915 + 4971 ] } ], "tournament_team_roster_by_pk": [ - 4906, + 4962, { "player_steam_id": [ - 257, + 259, "bigint!" ], "tournament_id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4906, + 4962, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4935, + 4991, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4915 + 4971 ] } ], "tournament_teams": [ - 4947, + 5003, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -173691,19 +174947,19 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "tournament_teams_aggregate": [ - 4948, + 5004, { "distinct_on": [ - 4969, + 5025, "[tournament_teams_select_column!]" ], "limit": [ @@ -173713,44 +174969,44 @@ export default { 40 ], "order_by": [ - 4967, + 5023, "[tournament_teams_order_by!]" ], "where": [ - 4956 + 5012 ] } ], "tournament_teams_by_pk": [ - 4947, + 5003, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournament_teams_stream": [ - 4947, + 5003, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4977, + 5033, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4956 + 5012 ] } ], "tournaments": [ - 4989, + 5045, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -173760,19 +175016,19 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_aggregate": [ - 4990, + 5046, { "distinct_on": [ - 5023, + 5079, "[tournaments_select_column!]" ], "limit": [ @@ -173782,44 +175038,44 @@ export default { 40 ], "order_by": [ - 5021, + 5077, "[tournaments_order_by!]" ], "where": [ - 5010 + 5066 ] } ], "tournaments_by_pk": [ - 4989, + 5045, { "id": [ - 5053, + 5109, "uuid!" ] } ], "tournaments_stream": [ - 4989, + 5045, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5041, + 5097, "[tournaments_stream_cursor_input]!" ], "where": [ - 5010 + 5066 ] } ], "v_event_player_stats": [ - 5056, + 5112, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -173829,19 +175085,19 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "v_event_player_stats_aggregate": [ - 5057, + 5113, { "distinct_on": [ - 5082, + 5138, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -173851,35 +175107,35 @@ export default { 40 ], "order_by": [ - 5081, + 5137, "[v_event_player_stats_order_by!]" ], "where": [ - 5075 + 5131 ] } ], "v_event_player_stats_stream": [ - 5056, + 5112, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5097, + 5153, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5075 + 5131 ] } ], "v_gpu_pool_status": [ - 5107, + 5163, { "distinct_on": [ - 5115, + 5171, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -173889,19 +175145,19 @@ export default { 40 ], "order_by": [ - 5114, + 5170, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5111 + 5167 ] } ], "v_gpu_pool_status_aggregate": [ - 5108, + 5164, { "distinct_on": [ - 5115, + 5171, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -173911,35 +175167,35 @@ export default { 40 ], "order_by": [ - 5114, + 5170, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5111 + 5167 ] } ], "v_gpu_pool_status_stream": [ - 5107, + 5163, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5119, + 5175, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5111 + 5167 ] } ], "v_league_division_standings": [ - 5125, + 5181, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -173949,19 +175205,19 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "v_league_division_standings_aggregate": [ - 5126, + 5182, { "distinct_on": [ - 5141, + 5197, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -173971,35 +175227,35 @@ export default { 40 ], "order_by": [ - 5140, + 5196, "[v_league_division_standings_order_by!]" ], "where": [ - 5134 + 5190 ] } ], "v_league_division_standings_stream": [ - 5125, + 5181, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5148, + 5204, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5134 + 5190 ] } ], "v_league_season_player_stats": [ - 5158, + 5214, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -174009,19 +175265,19 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], "v_league_season_player_stats_aggregate": [ - 5159, + 5215, { "distinct_on": [ - 5184, + 5240, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -174031,35 +175287,35 @@ export default { 40 ], "order_by": [ - 5183, + 5239, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5177 + 5233 ] } ], "v_league_season_player_stats_stream": [ - 5158, + 5214, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5199, + 5255, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5177 + 5233 ] } ], "v_match_captains": [ - 5209, + 5265, { "distinct_on": [ - 5221, + 5277, "[v_match_captains_select_column!]" ], "limit": [ @@ -174069,19 +175325,19 @@ export default { 40 ], "order_by": [ - 5220, + 5276, "[v_match_captains_order_by!]" ], "where": [ - 5213 + 5269 ] } ], "v_match_captains_aggregate": [ - 5210, + 5266, { "distinct_on": [ - 5221, + 5277, "[v_match_captains_select_column!]" ], "limit": [ @@ -174091,35 +175347,35 @@ export default { 40 ], "order_by": [ - 5220, + 5276, "[v_match_captains_order_by!]" ], "where": [ - 5213 + 5269 ] } ], "v_match_captains_stream": [ - 5209, + 5265, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5226, + 5282, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5213 + 5269 ] } ], "v_match_clutches": [ - 5233, + 5289, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -174129,19 +175385,19 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], "v_match_clutches_aggregate": [ - 5234, + 5290, { "distinct_on": [ - 5249, + 5305, "[v_match_clutches_select_column!]" ], "limit": [ @@ -174151,35 +175407,35 @@ export default { 40 ], "order_by": [ - 5248, + 5304, "[v_match_clutches_order_by!]" ], "where": [ - 5242 + 5298 ] } ], "v_match_clutches_stream": [ - 5233, + 5289, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5256, + 5312, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5242 + 5298 ] } ], "v_match_kill_pairs": [ - 5266, + 5322, { "distinct_on": [ - 5274, + 5330, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -174189,19 +175445,19 @@ export default { 40 ], "order_by": [ - 5273, + 5329, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5270 + 5326 ] } ], "v_match_kill_pairs_aggregate": [ - 5267, + 5323, { "distinct_on": [ - 5274, + 5330, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -174211,35 +175467,35 @@ export default { 40 ], "order_by": [ - 5273, + 5329, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5270 + 5326 ] } ], "v_match_kill_pairs_stream": [ - 5266, + 5322, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5278, + 5334, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5270 + 5326 ] } ], "v_match_lineup_buy_types": [ - 5284, + 5340, { "distinct_on": [ - 5292, + 5348, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -174249,19 +175505,19 @@ export default { 40 ], "order_by": [ - 5291, + 5347, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5288 + 5344 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5285, + 5341, { "distinct_on": [ - 5292, + 5348, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -174271,35 +175527,35 @@ export default { 40 ], "order_by": [ - 5291, + 5347, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5288 + 5344 ] } ], "v_match_lineup_buy_types_stream": [ - 5284, + 5340, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5296, + 5352, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5288 + 5344 ] } ], "v_match_lineup_map_stats": [ - 5302, + 5358, { "distinct_on": [ - 5310, + 5366, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -174309,19 +175565,19 @@ export default { 40 ], "order_by": [ - 5309, + 5365, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5306 + 5362 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5303, + 5359, { "distinct_on": [ - 5310, + 5366, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -174331,35 +175587,35 @@ export default { 40 ], "order_by": [ - 5309, + 5365, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5306 + 5362 ] } ], "v_match_lineup_map_stats_stream": [ - 5302, + 5358, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5314, + 5370, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5306 + 5362 ] } ], "v_match_map_backup_rounds": [ - 5320, + 5376, { "distinct_on": [ - 5331, + 5387, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -174369,19 +175625,19 @@ export default { 40 ], "order_by": [ - 5330, + 5386, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5324 + 5380 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5321, + 5377, { "distinct_on": [ - 5331, + 5387, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -174391,35 +175647,35 @@ export default { 40 ], "order_by": [ - 5330, + 5386, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5324 + 5380 ] } ], "v_match_map_backup_rounds_stream": [ - 5320, + 5376, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5336, + 5392, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5324 + 5380 ] } ], "v_match_player_buy_types": [ - 5343, + 5399, { "distinct_on": [ - 5351, + 5407, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -174429,19 +175685,19 @@ export default { 40 ], "order_by": [ - 5350, + 5406, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5347 + 5403 ] } ], "v_match_player_buy_types_aggregate": [ - 5344, + 5400, { "distinct_on": [ - 5351, + 5407, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -174451,35 +175707,35 @@ export default { 40 ], "order_by": [ - 5350, + 5406, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5347 + 5403 ] } ], "v_match_player_buy_types_stream": [ - 5343, + 5399, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5355, + 5411, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5347 + 5403 ] } ], "v_match_player_opening_duels": [ - 5361, + 5417, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -174489,19 +175745,19 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "v_match_player_opening_duels_aggregate": [ - 5362, + 5418, { "distinct_on": [ - 5377, + 5433, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -174511,35 +175767,35 @@ export default { 40 ], "order_by": [ - 5376, + 5432, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5370 + 5426 ] } ], "v_match_player_opening_duels_stream": [ - 5361, + 5417, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5384, + 5440, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5370 + 5426 ] } ], "v_player_arch_nemesis": [ - 5394, + 5450, { "distinct_on": [ - 5402, + 5458, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -174549,19 +175805,19 @@ export default { 40 ], "order_by": [ - 5401, + 5457, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5398 + 5454 ] } ], "v_player_arch_nemesis_aggregate": [ - 5395, + 5451, { "distinct_on": [ - 5402, + 5458, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -174571,35 +175827,35 @@ export default { 40 ], "order_by": [ - 5401, + 5457, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5398 + 5454 ] } ], "v_player_arch_nemesis_stream": [ - 5394, + 5450, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5406, + 5462, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5398 + 5454 ] } ], "v_player_damage": [ - 5412, + 5468, { "distinct_on": [ - 5420, + 5476, "[v_player_damage_select_column!]" ], "limit": [ @@ -174609,19 +175865,19 @@ export default { 40 ], "order_by": [ - 5419, + 5475, "[v_player_damage_order_by!]" ], "where": [ - 5416 + 5472 ] } ], "v_player_damage_aggregate": [ - 5413, + 5469, { "distinct_on": [ - 5420, + 5476, "[v_player_damage_select_column!]" ], "limit": [ @@ -174631,35 +175887,35 @@ export default { 40 ], "order_by": [ - 5419, + 5475, "[v_player_damage_order_by!]" ], "where": [ - 5416 + 5472 ] } ], "v_player_damage_stream": [ - 5412, + 5468, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5424, + 5480, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5416 + 5472 ] } ], "v_player_elo": [ - 5430, + 5486, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -174669,19 +175925,19 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "v_player_elo_aggregate": [ - 5431, + 5487, { "distinct_on": [ - 5456, + 5512, "[v_player_elo_select_column!]" ], "limit": [ @@ -174691,35 +175947,35 @@ export default { 40 ], "order_by": [ - 5455, + 5511, "[v_player_elo_order_by!]" ], "where": [ - 5449 + 5505 ] } ], "v_player_elo_stream": [ - 5430, + 5486, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5471, + 5527, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5449 + 5505 ] } ], "v_player_map_losses": [ - 5481, + 5537, { "distinct_on": [ - 5489, + 5545, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -174729,19 +175985,19 @@ export default { 40 ], "order_by": [ - 5488, + 5544, "[v_player_map_losses_order_by!]" ], "where": [ - 5485 + 5541 ] } ], "v_player_map_losses_aggregate": [ - 5482, + 5538, { "distinct_on": [ - 5489, + 5545, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -174751,35 +176007,35 @@ export default { 40 ], "order_by": [ - 5488, + 5544, "[v_player_map_losses_order_by!]" ], "where": [ - 5485 + 5541 ] } ], "v_player_map_losses_stream": [ - 5481, + 5537, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5493, + 5549, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5485 + 5541 ] } ], "v_player_map_wins": [ - 5499, + 5555, { "distinct_on": [ - 5507, + 5563, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -174789,19 +176045,19 @@ export default { 40 ], "order_by": [ - 5506, + 5562, "[v_player_map_wins_order_by!]" ], "where": [ - 5503 + 5559 ] } ], "v_player_map_wins_aggregate": [ - 5500, + 5556, { "distinct_on": [ - 5507, + 5563, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -174811,35 +176067,35 @@ export default { 40 ], "order_by": [ - 5506, + 5562, "[v_player_map_wins_order_by!]" ], "where": [ - 5503 + 5559 ] } ], "v_player_map_wins_stream": [ - 5499, + 5555, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5511, + 5567, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5503 + 5559 ] } ], "v_player_match_head_to_head": [ - 5517, + 5573, { "distinct_on": [ - 5525, + 5581, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -174849,19 +176105,19 @@ export default { 40 ], "order_by": [ - 5524, + 5580, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5521 + 5577 ] } ], "v_player_match_head_to_head_aggregate": [ - 5518, + 5574, { "distinct_on": [ - 5525, + 5581, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -174871,35 +176127,35 @@ export default { 40 ], "order_by": [ - 5524, + 5580, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5521 + 5577 ] } ], "v_player_match_head_to_head_stream": [ - 5517, + 5573, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5529, + 5585, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5521 + 5577 ] } ], "v_player_match_map_hltv": [ - 5535, + 5591, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -174909,19 +176165,19 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "v_player_match_map_hltv_aggregate": [ - 5536, + 5592, { "distinct_on": [ - 5553, + 5609, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -174931,35 +176187,35 @@ export default { 40 ], "order_by": [ - 5552, + 5608, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5544 + 5600 ] } ], "v_player_match_map_hltv_stream": [ - 5535, + 5591, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5561, + 5617, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5544 + 5600 ] } ], "v_player_match_map_roles": [ - 5572, + 5628, { "distinct_on": [ - 5580, + 5636, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -174969,19 +176225,19 @@ export default { 40 ], "order_by": [ - 5579, + 5635, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5576 + 5632 ] } ], "v_player_match_map_roles_aggregate": [ - 5573, + 5629, { "distinct_on": [ - 5580, + 5636, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -174991,35 +176247,35 @@ export default { 40 ], "order_by": [ - 5579, + 5635, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5576 + 5632 ] } ], "v_player_match_map_roles_stream": [ - 5572, + 5628, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5584, + 5640, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5576 + 5632 ] } ], "v_player_match_performance": [ - 5590, + 5646, { "distinct_on": [ - 5598, + 5654, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -175029,19 +176285,19 @@ export default { 40 ], "order_by": [ - 5597, + 5653, "[v_player_match_performance_order_by!]" ], "where": [ - 5594 + 5650 ] } ], "v_player_match_performance_aggregate": [ - 5591, + 5647, { "distinct_on": [ - 5598, + 5654, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -175051,35 +176307,35 @@ export default { 40 ], "order_by": [ - 5597, + 5653, "[v_player_match_performance_order_by!]" ], "where": [ - 5594 + 5650 ] } ], "v_player_match_performance_stream": [ - 5590, + 5646, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5602, + 5658, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5594 + 5650 ] } ], "v_player_match_rating": [ - 5608, + 5664, { "distinct_on": [ - 5616, + 5672, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -175089,19 +176345,19 @@ export default { 40 ], "order_by": [ - 5615, + 5671, "[v_player_match_rating_order_by!]" ], "where": [ - 5612 + 5668 ] } ], "v_player_match_rating_aggregate": [ - 5609, + 5665, { "distinct_on": [ - 5616, + 5672, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -175111,35 +176367,35 @@ export default { 40 ], "order_by": [ - 5615, + 5671, "[v_player_match_rating_order_by!]" ], "where": [ - 5612 + 5668 ] } ], "v_player_match_rating_stream": [ - 5608, + 5664, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5620, + 5676, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5612 + 5668 ] } ], "v_player_multi_kills": [ - 5626, + 5682, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -175149,19 +176405,19 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], "v_player_multi_kills_aggregate": [ - 5627, + 5683, { "distinct_on": [ - 5642, + 5698, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -175171,35 +176427,35 @@ export default { 40 ], "order_by": [ - 5641, + 5697, "[v_player_multi_kills_order_by!]" ], "where": [ - 5635 + 5691 ] } ], "v_player_multi_kills_stream": [ - 5626, + 5682, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5649, + 5705, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5635 + 5691 ] } ], "v_player_queue_partners": [ - 5659, + 5715, { "distinct_on": [ - 5667, + 5723, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -175209,19 +176465,19 @@ export default { 40 ], "order_by": [ - 5666, + 5722, "[v_player_queue_partners_order_by!]" ], "where": [ - 5663 + 5719 ] } ], "v_player_queue_partners_aggregate": [ - 5660, + 5716, { "distinct_on": [ - 5667, + 5723, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -175231,35 +176487,35 @@ export default { 40 ], "order_by": [ - 5666, + 5722, "[v_player_queue_partners_order_by!]" ], "where": [ - 5663 + 5719 ] } ], "v_player_queue_partners_stream": [ - 5659, + 5715, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5671, + 5727, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5663 + 5719 ] } ], "v_player_weapon_damage": [ - 5677, + 5733, { "distinct_on": [ - 5685, + 5741, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -175269,19 +176525,19 @@ export default { 40 ], "order_by": [ - 5684, + 5740, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5681 + 5737 ] } ], "v_player_weapon_damage_aggregate": [ - 5678, + 5734, { "distinct_on": [ - 5685, + 5741, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -175291,35 +176547,35 @@ export default { 40 ], "order_by": [ - 5684, + 5740, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5681 + 5737 ] } ], "v_player_weapon_damage_stream": [ - 5677, + 5733, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5689, + 5745, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5681 + 5737 ] } ], "v_player_weapon_kills": [ - 5695, + 5751, { "distinct_on": [ - 5703, + 5759, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -175329,19 +176585,19 @@ export default { 40 ], "order_by": [ - 5702, + 5758, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5699 + 5755 ] } ], "v_player_weapon_kills_aggregate": [ - 5696, + 5752, { "distinct_on": [ - 5703, + 5759, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -175351,35 +176607,35 @@ export default { 40 ], "order_by": [ - 5702, + 5758, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5699 + 5755 ] } ], "v_player_weapon_kills_stream": [ - 5695, + 5751, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5707, + 5763, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5699 + 5755 ] } ], "v_pool_maps": [ - 5713, + 5769, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -175389,19 +176645,19 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], "v_pool_maps_aggregate": [ - 5714, + 5770, { "distinct_on": [ - 5730, + 5786, "[v_pool_maps_select_column!]" ], "limit": [ @@ -175411,35 +176667,35 @@ export default { 40 ], "order_by": [ - 5729, + 5785, "[v_pool_maps_order_by!]" ], "where": [ - 5722 + 5778 ] } ], "v_pool_maps_stream": [ - 5713, + 5769, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5734, + 5790, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5722 + 5778 ] } ], "v_steam_account_pool_status": [ - 5737, + 5793, { "distinct_on": [ - 5745, + 5801, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -175449,19 +176705,19 @@ export default { 40 ], "order_by": [ - 5744, + 5800, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5741 + 5797 ] } ], "v_steam_account_pool_status_aggregate": [ - 5738, + 5794, { "distinct_on": [ - 5745, + 5801, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -175471,35 +176727,35 @@ export default { 40 ], "order_by": [ - 5744, + 5800, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5741 + 5797 ] } ], "v_steam_account_pool_status_stream": [ - 5737, + 5793, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5749, + 5805, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5741 + 5797 ] } ], "v_team_ranks": [ - 5755, + 5811, { "distinct_on": [ - 5765, + 5821, "[v_team_ranks_select_column!]" ], "limit": [ @@ -175509,19 +176765,19 @@ export default { 40 ], "order_by": [ - 5764, + 5820, "[v_team_ranks_order_by!]" ], "where": [ - 5759 + 5815 ] } ], "v_team_ranks_aggregate": [ - 5756, + 5812, { "distinct_on": [ - 5765, + 5821, "[v_team_ranks_select_column!]" ], "limit": [ @@ -175531,35 +176787,35 @@ export default { 40 ], "order_by": [ - 5764, + 5820, "[v_team_ranks_order_by!]" ], "where": [ - 5759 + 5815 ] } ], "v_team_ranks_stream": [ - 5755, + 5811, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5769, + 5825, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5759 + 5815 ] } ], "v_team_reputation": [ - 5775, + 5831, { "distinct_on": [ - 5785, + 5841, "[v_team_reputation_select_column!]" ], "limit": [ @@ -175569,19 +176825,19 @@ export default { 40 ], "order_by": [ - 5784, + 5840, "[v_team_reputation_order_by!]" ], "where": [ - 5779 + 5835 ] } ], "v_team_reputation_aggregate": [ - 5776, + 5832, { "distinct_on": [ - 5785, + 5841, "[v_team_reputation_select_column!]" ], "limit": [ @@ -175591,35 +176847,35 @@ export default { 40 ], "order_by": [ - 5784, + 5840, "[v_team_reputation_order_by!]" ], "where": [ - 5779 + 5835 ] } ], "v_team_reputation_stream": [ - 5775, + 5831, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5789, + 5845, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5779 + 5835 ] } ], "v_team_stage_results": [ - 5795, + 5851, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -175629,19 +176885,19 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "v_team_stage_results_aggregate": [ - 5796, + 5852, { "distinct_on": [ - 5827, + 5883, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -175651,48 +176907,48 @@ export default { 40 ], "order_by": [ - 5825, + 5881, "[v_team_stage_results_order_by!]" ], "where": [ - 5814 + 5870 ] } ], "v_team_stage_results_by_pk": [ - 5795, + 5851, { "tournament_stage_id": [ - 5053, + 5109, "uuid!" ], "tournament_team_id": [ - 5053, + 5109, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5795, + 5851, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5843, + 5899, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5814 + 5870 ] } ], "v_team_tournament_results": [ - 5855, + 5911, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -175702,19 +176958,19 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "v_team_tournament_results_aggregate": [ - 5856, + 5912, { "distinct_on": [ - 5881, + 5937, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -175724,35 +176980,35 @@ export default { 40 ], "order_by": [ - 5880, + 5936, "[v_team_tournament_results_order_by!]" ], "where": [ - 5874 + 5930 ] } ], "v_team_tournament_results_stream": [ - 5855, + 5911, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5896, + 5952, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5874 + 5930 ] } ], "v_tournament_player_stats": [ - 5906, + 5962, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -175762,19 +177018,19 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], "v_tournament_player_stats_aggregate": [ - 5907, + 5963, { "distinct_on": [ - 5932, + 5988, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -175784,27 +177040,27 @@ export default { 40 ], "order_by": [ - 5931, + 5987, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5925 + 5981 ] } ], "v_tournament_player_stats_stream": [ - 5906, + 5962, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5947, + 6003, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5925 + 5981 ] } ], diff --git a/hasura/enums/notification-types.sql b/hasura/enums/notification-types.sql index 8e90ff3d..c3329b11 100644 --- a/hasura/enums/notification-types.sql +++ b/hasura/enums/notification-types.sql @@ -28,6 +28,10 @@ INSERT INTO e_notification_types ("value", "description") VALUES ('LeagueProposalDeclined', 'Your league match time proposal was declined'), ('LeagueMatchUnscheduled', 'A league matchup is unscheduled and will default soon'), ('LeagueRegistrationDecision', 'Your league registration was reviewed'), - ('LeagueRosterUndersized', 'Your league team no longer meets the minimum roster size') + ('LeagueRosterUndersized', 'Your league team no longer meets the minimum roster size'), + ('ChatMessage', 'A new message in a chat you are part of'), + ('TournamentCreated', 'Registration opened for a tournament'), + ('TournamentReminder', 'A tournament you are registered for starts soon'), + ('NewsPublished', 'A news article was published') ON CONFLICT("value") DO UPDATE SET "description" = EXCLUDED."description"; diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 801d8e9b..1f24aa42 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -74,6 +74,14 @@ type Mutation { attachDemo: WatchDemoOutput } +type Query { + webPushStatus: WebPushStatusOutput +} + +type Mutation { + generateWebPushKeys: WebPushKeysOutput +} + type Mutation { bakeShaders( game_server_node_id: uuid! @@ -979,6 +987,16 @@ type SuccessOutput { success: Boolean! } +type WebPushStatusOutput { + configured: Boolean! + managed_by_environment: Boolean! + subscriptions: Int! +} + +type WebPushKeysOutput { + success: Boolean! +} + type DraftGamePreviewPlayer { steam_id: String! name: String diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index a2e08502..7026a208 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -149,6 +149,22 @@ actions: permissions: - role: streamer comment: Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) + - name: webPushStatus + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Web push setup status for the application settings page; never returns the private key + - name: generateWebPushKeys + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Generates a fresh self-signed VAPID keypair; invalidates every existing subscription - name: bakeShaders definition: kind: synchronous @@ -1318,6 +1334,8 @@ custom_types: source: default type: object - name: SuccessOutput + - name: WebPushStatusOutput + - name: WebPushKeysOutput - name: ScanStartedOutput - name: OrphanObject - name: OrphanScanResultOutput diff --git a/hasura/metadata/databases/default/tables/public_notification_preferences.yaml b/hasura/metadata/databases/default/tables/public_notification_preferences.yaml new file mode 100644 index 00000000..0c5727bb --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_notification_preferences.yaml @@ -0,0 +1,3 @@ +table: + name: notification_preferences + schema: public diff --git a/hasura/metadata/databases/default/tables/public_notifications.yaml b/hasura/metadata/databases/default/tables/public_notifications.yaml index 95bd4fc3..367de4c0 100644 --- a/hasura/metadata/databases/default/tables/public_notifications.yaml +++ b/hasura/metadata/databases/default/tables/public_notifications.yaml @@ -1,6 +1,17 @@ table: name: notifications schema: public +event_triggers: + - name: notification_events + definition: + enable_manual: false + insert: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 3 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' object_relationships: - name: player using: diff --git a/hasura/metadata/databases/default/tables/public_push_subscriptions.yaml b/hasura/metadata/databases/default/tables/public_push_subscriptions.yaml new file mode 100644 index 00000000..eddce644 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_push_subscriptions.yaml @@ -0,0 +1,3 @@ +table: + name: push_subscriptions + schema: public diff --git a/hasura/metadata/databases/default/tables/public_settings.yaml b/hasura/metadata/databases/default/tables/public_settings.yaml index f321a4d1..734b3d21 100644 --- a/hasura/metadata/databases/default/tables/public_settings.yaml +++ b/hasura/metadata/databases/default/tables/public_settings.yaml @@ -15,7 +15,10 @@ select_permissions: columns: - name - value - filter: {} + filter: + name: + _nin: + - web_push_private_key comment: "" - role: guest permission: diff --git a/hasura/metadata/databases/default/tables/public_v_my_friends.yaml b/hasura/metadata/databases/default/tables/public_v_my_friends.yaml index 758038f6..c9b288f1 100644 --- a/hasura/metadata/databases/default/tables/public_v_my_friends.yaml +++ b/hasura/metadata/databases/default/tables/public_v_my_friends.yaml @@ -30,6 +30,7 @@ select_permissions: - avatar_url - country - created_at + - custom_avatar_url - discord_id - elo - invited_by_steam_id diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 9005ab12..da30c6fa 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -97,6 +97,7 @@ - "!include public_match_type_cfgs.yaml" - "!include public_matches.yaml" - "!include public_news_articles.yaml" +- "!include public_notification_preferences.yaml" - "!include public_notifications.yaml" - "!include public_pending_match_import_players.yaml" - "!include public_pending_match_imports.yaml" @@ -127,6 +128,7 @@ - "!include public_player_utility.yaml" - "!include public_players.yaml" - "!include public_plugin_versions.yaml" +- "!include public_push_subscriptions.yaml" - "!include public_seasons.yaml" - "!include public_server_regions.yaml" - "!include public_servers.yaml" diff --git a/hasura/migrations/default/1877000000000_push_subscriptions/down.sql b/hasura/migrations/default/1877000000000_push_subscriptions/down.sql new file mode 100644 index 00000000..0da39588 --- /dev/null +++ b/hasura/migrations/default/1877000000000_push_subscriptions/down.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS "public"."push_subscriptions"; diff --git a/hasura/migrations/default/1877000000000_push_subscriptions/up.sql b/hasura/migrations/default/1877000000000_push_subscriptions/up.sql new file mode 100644 index 00000000..d83cca0e --- /dev/null +++ b/hasura/migrations/default/1877000000000_push_subscriptions/up.sql @@ -0,0 +1,20 @@ +-- One row per browser/device push subscription. A single steam_id can have +-- several rows (phone + desktop), and every matching one gets sent to. +-- Uniqueness is on endpoint -- the browser's own push-service URL -- rather +-- than on steam_id, precisely to allow that multi-device fan-out. +CREATE TABLE IF NOT EXISTS "public"."push_subscriptions" ( + "id" uuid DEFAULT gen_random_uuid() NOT NULL, + "steam_id" bigint NOT NULL, + "endpoint" text NOT NULL, + "p256dh" text NOT NULL, + "auth" text NOT NULL, + "user_agent" text, + "created_at" timestamp with time zone DEFAULT now() NOT NULL, + "last_used_at" timestamp with time zone, + PRIMARY KEY ("id"), + FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, + UNIQUE ("endpoint") +); + +CREATE INDEX IF NOT EXISTS "push_subscriptions_steam_id_idx" + ON "public"."push_subscriptions" ("steam_id"); diff --git a/hasura/migrations/default/1877000000100_notification_preferences/down.sql b/hasura/migrations/default/1877000000100_notification_preferences/down.sql new file mode 100644 index 00000000..5c6f985c --- /dev/null +++ b/hasura/migrations/default/1877000000100_notification_preferences/down.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS "public"."notification_preferences"; diff --git a/hasura/migrations/default/1877000000100_notification_preferences/up.sql b/hasura/migrations/default/1877000000100_notification_preferences/up.sql new file mode 100644 index 00000000..112e5249 --- /dev/null +++ b/hasura/migrations/default/1877000000100_notification_preferences/up.sql @@ -0,0 +1,21 @@ +-- Per-player notification opt-out, for both delivery channels at once. +-- +-- Absence of a row means "use this key's own default", so no backfill is ever +-- needed and every existing and future player stays on whatever the default +-- is. Only explicit choices are stored. +-- +-- `key` means different things per channel and that is deliberate: push groups +-- the ~34 notification types into a handful of coarse categories a player can +-- mute, while the in-app bell exposes a small hand-picked set of individual +-- types. See src/notifications/preferences/notification-categories.ts. +CREATE TABLE IF NOT EXISTS "public"."notification_preferences" ( + "steam_id" bigint NOT NULL, + "channel" text NOT NULL, + "key" text NOT NULL, + "enabled" boolean NOT NULL, + "updated_at" timestamp with time zone DEFAULT now() NOT NULL, + PRIMARY KEY ("steam_id", "channel", "key"), + FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, + CONSTRAINT "notification_preferences_channel_check" + CHECK ("channel" IN ('push', 'in_app')) +); diff --git a/hasura/migrations/default/1877000000200_notification_indexes/down.sql b/hasura/migrations/default/1877000000200_notification_indexes/down.sql new file mode 100644 index 00000000..6a026328 --- /dev/null +++ b/hasura/migrations/default/1877000000200_notification_indexes/down.sql @@ -0,0 +1,2 @@ +DROP INDEX IF EXISTS "public"."notifications_unread_steam_id_idx"; +DROP INDEX IF EXISTS "public"."notifications_type_entity_id_idx"; diff --git a/hasura/migrations/default/1877000000200_notification_indexes/up.sql b/hasura/migrations/default/1877000000200_notification_indexes/up.sql new file mode 100644 index 00000000..587d710f --- /dev/null +++ b/hasura/migrations/default/1877000000200_notification_indexes/up.sql @@ -0,0 +1,10 @@ +-- notifications had no index beyond its primary key. Three separate features +-- now dedupe by (type, entity_id) via NOT EXISTS -- LeagueWeekReminders, +-- TournamentReminders, and the ChatMessage bell collapse -- and the bell reads +-- unread rows per player on every page load. +CREATE INDEX IF NOT EXISTS "notifications_type_entity_id_idx" + ON "public"."notifications" ("type", "entity_id"); + +CREATE INDEX IF NOT EXISTS "notifications_unread_steam_id_idx" + ON "public"."notifications" ("steam_id") + WHERE "is_read" = false AND "deleted_at" IS NULL; diff --git a/hasura/migrations/default/1877000000300_name_registered_default/down.sql b/hasura/migrations/default/1877000000300_name_registered_default/down.sql new file mode 100644 index 00000000..ecd37ffc --- /dev/null +++ b/hasura/migrations/default/1877000000300_name_registered_default/down.sql @@ -0,0 +1,2 @@ +ALTER TABLE "public"."players" ALTER COLUMN "name_registered" DROP NOT NULL; +ALTER TABLE "public"."players" ALTER COLUMN "name_registered" DROP DEFAULT; diff --git a/hasura/migrations/default/1877000000300_name_registered_default/up.sql b/hasura/migrations/default/1877000000300_name_registered_default/up.sql new file mode 100644 index 00000000..29b2ac52 --- /dev/null +++ b/hasura/migrations/default/1877000000300_name_registered_default/up.sql @@ -0,0 +1,8 @@ +-- name_registered was added nullable with no default, so most rows are NULL. +-- Anything checking it has to spell out `IS NULL OR = false`, and a plain +-- `= false` silently matches nothing -- see the on_conflict guards in +-- src/matches/events/PlayerConnected.ts and friends. +UPDATE "public"."players" SET "name_registered" = false WHERE "name_registered" IS NULL; + +ALTER TABLE "public"."players" ALTER COLUMN "name_registered" SET DEFAULT false; +ALTER TABLE "public"."players" ALTER COLUMN "name_registered" SET NOT NULL; diff --git a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql new file mode 100644 index 00000000..3826f17f --- /dev/null +++ b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql @@ -0,0 +1,2 @@ +ALTER TABLE "public"."push_subscriptions" + DROP CONSTRAINT IF EXISTS "push_subscriptions_endpoint_is_push_service"; diff --git a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql new file mode 100644 index 00000000..e88f5bf8 --- /dev/null +++ b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql @@ -0,0 +1,21 @@ +-- Endpoints were stored unvalidated before src/notifications/push/push-endpoint.ts +-- existed, so anything already in the table bypassed the subscribe-time check. +-- Sweep them: a row that does not point at a real push service is either junk +-- or an attempt to aim the API at something it should not reach. +-- +-- Deleting rather than flagging is safe -- a legitimate browser simply +-- re-subscribes on its next visit. +DELETE FROM "public"."push_subscriptions" + WHERE "endpoint" !~* '^https://([a-z0-9-]+\.)*(push\.apple\.com|notify\.windows\.com|push\.services\.mozilla\.com)(/|$)' + AND "endpoint" !~* '^https://(fcm|android)\.googleapis\.com(/|$)'; + +-- Keeps the invariant true for anything inserted outside the application, and +-- makes the intent visible in the schema rather than only in TypeScript. +ALTER TABLE "public"."push_subscriptions" + DROP CONSTRAINT IF EXISTS "push_subscriptions_endpoint_is_push_service"; + +ALTER TABLE "public"."push_subscriptions" + ADD CONSTRAINT "push_subscriptions_endpoint_is_push_service" CHECK ( + "endpoint" ~* '^https://([a-z0-9-]+\.)*(push\.apple\.com|notify\.windows\.com|push\.services\.mozilla\.com)(/|$)' + OR "endpoint" ~* '^https://(fcm|android)\.googleapis\.com(/|$)' + ); diff --git a/package.json b/package.json index 7fe457d7..1a521a08 100644 --- a/package.json +++ b/package.json @@ -81,6 +81,7 @@ "turndown": "^7.2.0", "typesense": "^2.0.3", "uuid": "^14.0.0", + "web-push": "^3.6.7", "ws": "^8.16.0" }, "devDependencies": { @@ -106,6 +107,7 @@ "@types/sanitize-html": "^2.13.0", "@types/supertest": "^6.0.2", "@types/turndown": "^5.0.5", + "@types/web-push": "^3.6.4", "@typescript-eslint/eslint-plugin": "^8.1.0", "@typescript-eslint/parser": "^8.1.0", "eslint": "^9.9.0", diff --git a/src/chat/chat.controller.ts b/src/chat/chat.controller.ts index 85d1f075..fe2bb318 100644 --- a/src/chat/chat.controller.ts +++ b/src/chat/chat.controller.ts @@ -1,5 +1,7 @@ -import { Controller } from "@nestjs/common"; +import { Controller, Get, Req, UseGuards } from "@nestjs/common"; +import { Request } from "express"; import { HasuraEvent } from "src/hasura/hasura.controller"; +import { SteamGuard } from "src/auth/strategies/SteamGuard"; import { ChatService } from "./chat.service"; import { lobbies_set_input } from "generated/schema"; import { HasuraEventData } from "src/hasura/types/HasuraEventData"; @@ -9,6 +11,19 @@ import { ChatLobbyType } from "./enums/ChatLobbyTypes"; export class ChatController { constructor(private readonly chatService: ChatService) {} + // Hydrates the DM tab bar on login. This is also where DM tabs persist: + // the client keeps no storage of its own, and the server already knows every + // conversation and its unread count. + @Get("direct/conversations") + @UseGuards(SteamGuard) + public async directConversations(@Req() request: Request) { + return { + conversations: await this.chatService.getDirectConversations( + request.user, + ), + }; + } + @HasuraEvent() public async chat_lobbies_removed(data: HasuraEventData) { await this.chatService.removeLobby(ChatLobbyType.MatchMaking, data.old.id); diff --git a/src/chat/chat.gateway.ts b/src/chat/chat.gateway.ts index 35c68d01..7e96f3c9 100644 --- a/src/chat/chat.gateway.ts +++ b/src/chat/chat.gateway.ts @@ -47,6 +47,22 @@ export class ChatGateway { void this.chat.removeFromLobby(data.type, data.id, client); } + @SubscribeMessage("lobby:read") + async markRead( + @MessageBody() + data: { + id: string; + type: ChatLobbyType; + }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + if (!client.user || data.type !== ChatLobbyType.Direct) { + return; + } + + await this.chat.markDirectRead(data.id, client.user); + } + @SubscribeMessage("lobby:chat") async lobby( @MessageBody() diff --git a/src/chat/chat.module.ts b/src/chat/chat.module.ts index c513c518..631dd0fe 100644 --- a/src/chat/chat.module.ts +++ b/src/chat/chat.module.ts @@ -6,9 +6,15 @@ import { RconModule } from "src/rcon/rcon.module"; import { RedisModule } from "src/redis/redis.module"; import { loggerFactory } from "src/utilities/LoggerFactory"; import { ChatController } from "./chat.controller"; +import { NotificationsModule } from "src/notifications/notifications.module"; @Module({ - imports: [HasuraModule, RedisModule, forwardRef(() => RconModule)], + imports: [ + HasuraModule, + RedisModule, + forwardRef(() => RconModule), + NotificationsModule, + ], providers: [ChatService, ChatGateway, loggerFactory()], exports: [ChatService], controllers: [ChatController], diff --git a/src/chat/chat.service.spec.ts b/src/chat/chat.service.spec.ts new file mode 100644 index 00000000..029af497 --- /dev/null +++ b/src/chat/chat.service.spec.ts @@ -0,0 +1,199 @@ +import { ChatService } from "./chat.service"; +import { ChatLobbyType } from "./enums/ChatLobbyTypes"; +import { directRoomId } from "./utilities/directRoomId"; + +const ME = "76561198000000001"; +const FRIEND = "76561198000000002"; +const STRANGER = "76561198000000003"; + +describe("ChatService direct messages", () => { + const logger = { log: jest.fn(), warn: jest.fn(), error: jest.fn() }; + const redis = { + hset: jest.fn(), + hget: jest.fn().mockResolvedValue(null), + hgetall: jest.fn().mockResolvedValue({}), + hdel: jest.fn(), + get: jest.fn().mockResolvedValue(null), + set: jest.fn(), + del: jest.fn(), + expire: jest.fn(), + zadd: jest.fn(), + zrevrange: jest.fn().mockResolvedValue([]), + publish: jest.fn(), + sadd: jest.fn().mockResolvedValue(1), + srem: jest.fn().mockResolvedValue(1), + smembers: jest.fn().mockResolvedValue([]), + scard: jest.fn().mockResolvedValue(1), + sendCommand: jest.fn(), + eval: jest.fn().mockResolvedValue([1, 1]), + }; + + let service: ChatService; + let acceptedFriendships: Array<[string, string]>; + let role: string; + + const client = (steamId: string) => + ({ + id: "client-1", + user: { steam_id: steamId, name: "Someone", role }, + send: jest.fn(), + on: jest.fn(), + }) as any; + + const hasuraService = { + query: jest.fn(async (query: any) => { + if (query.players_by_pk) { + return { + players_by_pk: { + steam_id: query.players_by_pk.__args.steam_id, + name: "Someone", + role, + }, + }; + } + + if (query.friends) { + const where = query.friends.__args.where; + const [first, second] = where._or; + const pair = [ + first.player_steam_id._eq, + first.other_player_steam_id._eq, + ].map(String); + + const matches = acceptedFriendships.some( + ([a, b]) => + (a === pair[0] && b === pair[1]) || (a === pair[1] && b === pair[0]), + ); + + expect(where.status._eq).toBe("Accepted"); + expect(second.player_steam_id._eq).toBe(first.other_player_steam_id._eq); + + return { friends: matches ? [{ status: "Accepted" }] : [] }; + } + + return {}; + }), + }; + + beforeEach(() => { + jest.clearAllMocks(); + acceptedFriendships = [[ME, FRIEND]]; + role = "user"; + service = new ChatService( + logger as any, + { } as any, + hasuraService as any, + { getConnection: () => redis } as any, + { notifyPlayers: jest.fn(), markConversationRead: jest.fn() } as any, + ); + }); + + // Registering a session is the point of no return in joinMatchLobby -- every + // rejection path returns before it. + const joined = () => redis.eval.mock.calls.length > 0; + + describe("joining", () => { + it("lets accepted friends into their conversation", async () => { + await service.joinMatchLobby( + client(ME), + ChatLobbyType.Direct, + directRoomId(ME, FRIEND), + ); + + expect(joined()).toBe(true); + }); + + it("refuses a pair with no accepted friendship", async () => { + // The room id is just a sorted pair of steam ids, so anyone can compute + // one for anyone. The friendship is the only real gate. + acceptedFriendships = []; + + await service.joinMatchLobby( + client(ME), + ChatLobbyType.Direct, + directRoomId(ME, STRANGER), + ); + + expect(joined()).toBe(false); + }); + + it("refuses someone who is not a party to the conversation", async () => { + acceptedFriendships = [[FRIEND, STRANGER]]; + + await service.joinMatchLobby( + client(ME), + ChatLobbyType.Direct, + directRoomId(FRIEND, STRANGER), + ); + + expect(joined()).toBe(false); + }); + + it("gives an administrator no way in", async () => { + // Deliberately unlike Draft and Organizer, which do let organizers in -- + // those are group rooms, a DM is a private conversation. + acceptedFriendships = []; + role = "administrator"; + + await service.joinMatchLobby( + client(ME), + ChatLobbyType.Direct, + directRoomId(ME, STRANGER), + ); + + expect(joined()).toBe(false); + }); + + it("refuses a malformed room id", async () => { + await service.joinMatchLobby( + client(ME), + ChatLobbyType.Direct, + "not-a-room", + ); + + expect(joined()).toBe(false); + }); + }); + + describe("rosters", () => { + it("resolves both parties of a conversation", async () => { + expect( + await service.getLobbyMemberSteamIds( + ChatLobbyType.Direct, + directRoomId(ME, FRIEND), + ), + ).toEqual([ME, FRIEND]); + }); + + it("has nobody to notify in role-based rooms", async () => { + expect( + await service.getLobbyMemberSteamIds(ChatLobbyType.Organizer, "x"), + ).toEqual([]); + expect( + await service.getLobbyMemberSteamIds(ChatLobbyType.Team, "x"), + ).toEqual([]); + }); + }); + + describe("read state", () => { + it("ignores a room the caller is not part of", async () => { + await service.markDirectRead(directRoomId(FRIEND, STRANGER), { + steam_id: ME, + } as any); + + expect(redis.hset).not.toHaveBeenCalled(); + }); + + it("records a read for a conversation the caller is in", async () => { + await service.markDirectRead(directRoomId(ME, FRIEND), { + steam_id: ME, + } as any); + + expect(redis.hset).toHaveBeenCalledWith( + `chat:direct:read:${ME}`, + directRoomId(ME, FRIEND), + expect.any(String), + ); + }); + }); +}); diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index a799f92c..5ae5e6dd 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -9,17 +9,24 @@ import { FiveStackWebSocketClient } from "src/sockets/types/FiveStackWebSocketCl import { ChatLobbyType } from "./enums/ChatLobbyTypes"; import { e_player_roles_enum } from "generated/schema"; import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { NotificationsService } from "src/notifications/notifications.service"; +import { parseDirectRoomId } from "./utilities/directRoomId"; @Injectable() export class ChatService { private redis: Redis; - private expiresIn = 60 * 60; + private expiresIn = 60 * 60 * 24; + + // A direct message is a conversation, not lobby chatter -- losing it after a + // day would make DMs useless. Everything else keeps the shared TTL. + private directExpiresIn = 60 * 60 * 24 * 30; constructor( private readonly logger: Logger, private readonly rcon: RconService, private readonly hasuraService: HasuraService, private readonly redisManager: RedisManagerService, + private readonly notifications: NotificationsService, ) { this.redis = this.redisManager.getConnection(); } @@ -28,6 +35,14 @@ export class ChatService { this.expiresIn = expiresIn; } + public async updateDirectChatMessageTTL(expiresIn: number) { + this.directExpiresIn = expiresIn; + } + + private ttlFor(type: ChatLobbyType): number { + return type === ChatLobbyType.Direct ? this.directExpiresIn : this.expiresIn; + } + public async joinMatchLobby( client: FiveStackWebSocketClient, type: ChatLobbyType, @@ -198,6 +213,52 @@ export class ChatService { } break; + case ChatLobbyType.Direct: { + const parties = parseDirectRoomId(id); + + if (!parties || !parties.includes(String(user.steam_id))) { + return; + } + + // Being one of the two parties is not on its own an authorization: + // anyone can build the id for any pair of steam ids, since it is just + // their sorted pair. The friendship is the only thing standing between + // this and unsolicited messages from strangers. + // + // No administrator bypass, unlike Draft/Organizer above -- those are + // group rooms an organizer runs, this is a private conversation. + const otherSteamId = parties.find( + (party) => party !== String(user.steam_id), + ); + + const { friends } = await this.hasuraService.query({ + friends: { + __args: { + where: { + status: { _eq: "Accepted" }, + _or: [ + { + player_steam_id: { _eq: user.steam_id }, + other_player_steam_id: { _eq: otherSteamId }, + }, + { + player_steam_id: { _eq: otherSteamId }, + other_player_steam_id: { _eq: user.steam_id }, + }, + ], + }, + limit: 1, + }, + status: true, + }, + }); + + if (friends.length === 0) { + return; + } + + break; + } default: this.logger.warn(`Unknown lobby type: ${type}`); return; @@ -410,7 +471,7 @@ export class ChatService { await this.redis.sendCommand( new Redis.Command("HEXPIRE", [ messageKey, - this.expiresIn, + this.ttlFor(type), "FIELDS", 1, messageField, @@ -418,6 +479,373 @@ export class ChatService { ); void this.to(type, id, "chat", message); + + if (type === ChatLobbyType.Direct) { + void this.deliverDirectMessage(id, player, message); + } + + // Best effort, and never allowed to take a message delivery down with it. + void this.notifyLobbyMembers( + type, + id, + player, + message.from.name, + _message, + ).catch( + (error) => { + this.logger.warn(`unable to notify ${type}:${id} of a message`, error); + }, + ); + } + + // Deliberately does NOT skip members who are "present" in the lobby. + // + // The presence hash tracks whether a client holds an open socket to the room, + // which is tied to the chat widget's mount lifecycle rather than to anyone + // actually reading it -- on a match page the connection outlives the panel + // being open. Filtering on it silently suppressed the notification for anyone + // who had merely visited the page earlier, which is the whole audience it + // exists for. An occasional redundant notification while actively chatting is + // the cheaper mistake. + private async notifyLobbyMembers( + type: ChatLobbyType, + id: string, + sender: User, + senderName: string, + message: string, + ) { + const members = await this.getLobbyMemberSteamIds(type, id); + const senderSteamId = String(sender.steam_id); + + const targets = members.filter((steamId) => steamId !== senderSteamId); + + if (targets.length === 0) { + return; + } + + const entityId = `${type}:${id}`; + + await this.notifications.notifyPlayers("ChatMessage", { + title: senderName, + message: NotificationsService.escapeHtml( + message.length > 140 ? `${message.slice(0, 140)}…` : message, + ), + role: "user", + entity_id: entityId, + steamIds: targets, + }); + + // Collapse to one unread bell row per conversation, and only after the + // insert above. Editing an existing row instead would produce no INSERT, + // and the INSERT is what the push event trigger fires on -- so the bell + // would be tidy and the phone would stay silent. + await this.notifications.collapseOlderUnread( + "ChatMessage", + entityId, + targets, + ); + } + + // The fixed roster of a lobby, as opposed to getAllUsersInLobby's "who is + // connected right now". + // + // Mirrors joinMatchLobby's authorization switch above -- that switch is the + // definition of who belongs in a room, so the two have to move together. + public async getLobbyMemberSteamIds( + type: ChatLobbyType, + id: string, + ): Promise { + const steamIds = new Set(); + const add = (value: unknown) => { + if (value !== null && value !== undefined) { + steamIds.add(String(value)); + } + }; + + switch (type) { + case ChatLobbyType.Match: { + const { matches_by_pk } = await this.hasuraService.query({ + matches_by_pk: { + __args: { id }, + organizer_steam_id: true, + lineup_1: { + coach_steam_id: true, + lineup_players: { steam_id: true }, + }, + lineup_2: { + coach_steam_id: true, + lineup_players: { steam_id: true }, + }, + }, + }); + + if (!matches_by_pk) { + break; + } + + add(matches_by_pk.organizer_steam_id); + + for (const lineup of [matches_by_pk.lineup_1, matches_by_pk.lineup_2]) { + add(lineup?.coach_steam_id); + for (const lineupPlayer of lineup?.lineup_players ?? []) { + add(lineupPlayer.steam_id); + } + } + + break; + } + case ChatLobbyType.MatchTeam: { + const [, lineupId] = id.split(":"); + + if (!lineupId) { + break; + } + + const { match_lineups_by_pk } = await this.hasuraService.query({ + match_lineups_by_pk: { + __args: { id: lineupId }, + coach_steam_id: true, + lineup_players: { steam_id: true }, + }, + }); + + add(match_lineups_by_pk?.coach_steam_id); + + for (const lineupPlayer of match_lineups_by_pk?.lineup_players ?? []) { + add(lineupPlayer.steam_id); + } + + break; + } + case ChatLobbyType.MatchMaking: { + const { lobby_players } = await this.hasuraService.query({ + lobby_players: { + __args: { + where: { + lobby_id: { _eq: id }, + status: { _eq: "Accepted" }, + }, + }, + steam_id: true, + }, + }); + + for (const lobbyPlayer of lobby_players ?? []) { + add(lobbyPlayer.steam_id); + } + + break; + } + case ChatLobbyType.Tournament: { + const { tournaments_by_pk } = await this.hasuraService.query({ + tournaments_by_pk: { + __args: { id }, + organizer_steam_id: true, + organizers: { steam_id: true }, + teams: { + owner_steam_id: true, + roster: { player_steam_id: true }, + }, + }, + }); + + add(tournaments_by_pk?.organizer_steam_id); + + for (const organizer of tournaments_by_pk?.organizers ?? []) { + add(organizer.steam_id); + } + + for (const team of tournaments_by_pk?.teams ?? []) { + add(team.owner_steam_id); + for (const roster of team.roster ?? []) { + add(roster.player_steam_id); + } + } + + break; + } + case ChatLobbyType.Draft: { + const { draft_games_by_pk } = await this.hasuraService.query({ + draft_games_by_pk: { + __args: { id }, + host_steam_id: true, + players: { + steam_id: true, + status: true, + lineup: true, + }, + }, + }); + + add(draft_games_by_pk?.host_steam_id); + + // Same predicate as canSendDraftMessage: a waitlisted backup seated in + // a lineup is playing, whatever their status still says. + for (const draftPlayer of draft_games_by_pk?.players ?? []) { + if (draftPlayer.status === "Accepted" || draftPlayer.lineup != null) { + add(draftPlayer.steam_id); + } + } + + break; + } + case ChatLobbyType.Direct: { + for (const party of parseDirectRoomId(id) ?? []) { + add(party); + } + + break; + } + default: + // Organizer membership is role-based rather than a fixed roster, and + // nothing ever opens a Team room. Neither has anyone to notify. + break; + } + + return [...steamIds]; + } + + // `to()` only reaches steam ids currently sitting in the lobby hash, and the + // other side of a DM usually isn't -- they have no tab open for a + // conversation they don't know exists yet. So the recipient is addressed + // directly, which is what makes a first-contact message arrive at all. + private async deliverDirectMessage( + id: string, + sender: User, + message: Record, + ) { + const parties = parseDirectRoomId(id); + + if (!parties) { + return; + } + + const now = Date.now(); + + for (const steamId of parties) { + // Newest-conversation-first ordering, so listing someone's DMs is one + // ZREVRANGE rather than a scan over every room they have ever opened. + await this.redis.zadd(ChatService.DIRECT_INDEX_KEY(steamId), now, id); + await this.redis.expire( + ChatService.DIRECT_INDEX_KEY(steamId), + this.directExpiresIn, + ); + + if (steamId === String(sender.steam_id)) { + continue; + } + + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ + steamId, + event: "direct:incoming", + data: { + roomId: id, + from: message.from, + message, + }, + }), + ); + } + } + + private static DIRECT_INDEX_KEY(steamId: string) { + return `chat:direct:index:${steamId}`; + } + + private static DIRECT_READ_KEY(steamId: string) { + return `chat:direct:read:${steamId}`; + } + + // Server-side read state, so unread counts survive a reload instead of + // living only in the tab bar's memory. + public async markDirectRead(id: string, user: User) { + const parties = parseDirectRoomId(id); + + if (!parties || !parties.includes(String(user.steam_id))) { + return; + } + + await this.redis.hset( + ChatService.DIRECT_READ_KEY(user.steam_id), + id, + new Date().toISOString(), + ); + await this.redis.expire( + ChatService.DIRECT_READ_KEY(user.steam_id), + this.directExpiresIn, + ); + + await this.notifications.markConversationRead( + "ChatMessage", + `${ChatLobbyType.Direct}:${id}`, + user.steam_id, + ); + } + + // Every conversation a player has, newest first, with the unread count each + // one carries. + public async getDirectConversations(user: User) { + const roomIds = await this.redis.zrevrange( + ChatService.DIRECT_INDEX_KEY(user.steam_id), + 0, + 99, + ); + + if (roomIds.length === 0) { + return []; + } + + const readState = await this.redis.hgetall( + ChatService.DIRECT_READ_KEY(user.steam_id), + ); + + const conversations = []; + + for (const roomId of roomIds) { + const parties = parseDirectRoomId(roomId); + + if (!parties) { + continue; + } + + const peerSteamId = parties.find( + (party) => party !== String(user.steam_id), + ); + + const messages = Object.values( + await this.redis.hgetall(`chat_${ChatLobbyType.Direct}_${roomId}`), + ).map((value) => JSON.parse(value)); + + if (messages.length === 0) { + continue; + } + + const readAt = readState[roomId] ? new Date(readState[roomId]) : null; + + const unread = messages.filter( + (message) => + String(message.from?.steam_id) !== String(user.steam_id) && + (!readAt || new Date(message.timestamp) > readAt), + ).length; + + const peer = messages.find( + (message) => String(message.from?.steam_id) === peerSteamId, + )?.from; + + conversations.push({ + roomId, + unread, + peer: peer ?? { steam_id: peerSteamId }, + lastMessageAt: messages + .map((message) => message.timestamp) + .sort() + .pop(), + }); + } + + return conversations; } public async to( @@ -713,7 +1141,7 @@ export class ChatService { await this.redis.sendCommand( new Redis.Command("HEXPIRE", [ toKey, - this.expiresIn, + this.ttlFor(toType), "FIELDS", 1, field, diff --git a/src/chat/enums/ChatLobbyTypes.ts b/src/chat/enums/ChatLobbyTypes.ts index a0f2c24c..9ac4a234 100644 --- a/src/chat/enums/ChatLobbyTypes.ts +++ b/src/chat/enums/ChatLobbyTypes.ts @@ -9,4 +9,8 @@ export enum ChatLobbyType { Tournament = "tournament", Organizer = "organizers", Draft = "draft", + // A 1:1 private conversation. The id is the two participants' steam ids + // sorted ascending and joined with ":", so both sides derive the same room + // with no lookup and no row to allocate. See utilities/directRoomId.ts. + Direct = "direct", } diff --git a/src/chat/utilities/directRoomId.spec.ts b/src/chat/utilities/directRoomId.spec.ts new file mode 100644 index 00000000..8d81dbb8 --- /dev/null +++ b/src/chat/utilities/directRoomId.spec.ts @@ -0,0 +1,42 @@ +import { directRoomId, parseDirectRoomId } from "./directRoomId"; + +describe("directRoomId", () => { + const a = "76561198000000001"; + const b = "76561198000000002"; + + it("derives the same room whichever side asks", () => { + // The entire design rests on this: neither side looks anything up, they + // both just compute the id. If they disagree, each sits in a room the + // other never publishes to and nothing appears to be broken. + expect(directRoomId(a, b)).toBe(directRoomId(b, a)); + }); + + it("sorts numerically, not lexicographically", () => { + // Steam ids are all 17 digits today, so a string sort agrees by accident. + // It stops agreeing the moment one isn't -- shorter ids sort before longer + // ones as strings, and after them as numbers. + expect(directRoomId("900", "1000")).toBe("900:1000"); + expect(["900", "1000"].sort().join(":")).toBe("1000:900"); + }); + + it("accepts bigint input", () => { + expect(directRoomId(BigInt(a), BigInt(b))).toBe(`${a}:${b}`); + }); + + describe("parsing", () => { + it("round-trips a real room id", () => { + expect(parseDirectRoomId(directRoomId(b, a))).toEqual([a, b]); + }); + + it("rejects anything that is not a pair of steam ids", () => { + expect(parseDirectRoomId("only-one")).toBeNull(); + expect(parseDirectRoomId(`${a}:${b}:${a}`)).toBeNull(); + expect(parseDirectRoomId(`${a}:not-a-number`)).toBeNull(); + expect(parseDirectRoomId("")).toBeNull(); + }); + + it("rejects a conversation with yourself", () => { + expect(parseDirectRoomId(`${a}:${a}`)).toBeNull(); + }); + }); +}); diff --git a/src/chat/utilities/directRoomId.ts b/src/chat/utilities/directRoomId.ts new file mode 100644 index 00000000..a9061afa --- /dev/null +++ b/src/chat/utilities/directRoomId.ts @@ -0,0 +1,32 @@ +// A direct-message room is identified by its two participants rather than by a +// stored row: sort the steam ids ascending and join them with ":". Both sides +// derive the identical id from nothing but the pair, so opening a conversation +// needs no allocation and no lookup. +// +// Sorted as BigInt, deliberately. Steam ids are 17 digits today so a plain +// string sort happens to agree, and would silently disagree the moment one +// isn't -- which is exactly the kind of bug that shows up as "my messages go +// somewhere nobody reads". +export function directRoomId(a: string | bigint, b: string | bigint): string { + return [BigInt(a), BigInt(b)] + .sort((left, right) => (left < right ? -1 : left > right ? 1 : 0)) + .join(":"); +} + +export function parseDirectRoomId(id: string): [string, string] | null { + const parties = id.split(":"); + + if (parties.length !== 2) { + return null; + } + + if (!parties.every((party) => /^\d{1,20}$/.test(party))) { + return null; + } + + if (parties[0] === parties[1]) { + return null; + } + + return [parties[0], parties[1]]; +} diff --git a/src/configs/index.ts b/src/configs/index.ts index afa29594..8ce626c4 100644 --- a/src/configs/index.ts +++ b/src/configs/index.ts @@ -9,6 +9,7 @@ import gameServers from "./game-servers"; import typesense from "./typesense"; import tailscale from "./tailscale"; import faceit from "./faceit"; +import webPush from "./web-push"; export default [ app, @@ -22,4 +23,5 @@ export default [ typesense, tailscale, faceit, + webPush, ]; diff --git a/src/configs/types/WebPushConfig.ts b/src/configs/types/WebPushConfig.ts new file mode 100644 index 00000000..913e1959 --- /dev/null +++ b/src/configs/types/WebPushConfig.ts @@ -0,0 +1,5 @@ +export type WebPushConfig = { + publicKey?: string; + privateKey?: string; + subject: string; +}; diff --git a/src/configs/web-push.ts b/src/configs/web-push.ts new file mode 100644 index 00000000..33ad166a --- /dev/null +++ b/src/configs/web-push.ts @@ -0,0 +1,13 @@ +import { WebPushConfig } from "./types/WebPushConfig"; + +export default (): { + webPush: WebPushConfig; +} => ({ + webPush: { + publicKey: process.env.WEB_PUSH_PUBLIC_KEY, + privateKey: process.env.WEB_PUSH_PRIVATE_KEY, + // VAPID requires a contact the push service can reach if a subscription + // starts misbehaving. A URL is as valid as a mailto: here. + subject: process.env.WEB_PUSH_SUBJECT || `https://${process.env.WEB_DOMAIN}`, + }, +}); diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index e8b417e8..64006622 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -41,6 +41,9 @@ export type CameraHealth = "live" | "stalled" | "down"; export type CameraPlayerStatus = { steamId: string; name: string | null; + // Surfaces do not all have the player row to hand -- the stream deck keys off + // GSI, which carries no avatar -- so it rides along with the camera status. + avatarUrl: string | null; lineupId: string; ready: boolean; // "stalled" is a path that is still up but has stopped delivering — it looks @@ -427,20 +430,36 @@ export class CameraService { lineup_1: { id: true, name: true, + team_id: true, + team: { + roster: { + player_steam_id: true, + roster_image_url: true, + }, + }, lineup_players: { steam_id: true, player: { name: true, + avatar_url: true, }, }, }, lineup_2: { id: true, name: true, + team_id: true, + team: { + roster: { + player_steam_id: true, + roster_image_url: true, + }, + }, lineup_players: { steam_id: true, player: { name: true, + avatar_url: true, }, }, }, @@ -481,13 +500,33 @@ export class CameraService { lineup: { id: string; name: string; + team_id?: string | null; + team?: { + roster?: Array<{ + player_steam_id: string | number; + roster_image_url?: string | null; + }> | null; + } | null; lineup_players?: Array<{ steam_id: string; - player?: { name?: string | null } | null; + player?: { name?: string | null; avatar_url?: string | null } | null; }>; }, health: Map, ) { + // A team's roster image wins over the player's own steam avatar, matching + // what every other roster surface shows. Resolved here rather than per + // client because the stream deck keys off GSI and never loads the team. + const rosterImages = new Map(); + + if (lineup.team_id) { + for (const entry of lineup.team?.roster ?? []) { + if (entry.roster_image_url) { + rosterImages.set(String(entry.player_steam_id), entry.roster_image_url); + } + } + } + return { id: lineup.id, name: lineup.name, @@ -500,6 +539,10 @@ export class CameraService { return { steamId: lineupPlayer.steam_id, name: lineupPlayer.player?.name ?? null, + avatarUrl: + rosterImages.get(String(lineupPlayer.steam_id)) ?? + lineupPlayer.player?.avatar_url ?? + null, lineupId: lineup.id, ready, // Fall back to the live path check when the monitor has no sample: diff --git a/src/matches/events/MatchUpdatedLineupsEvent.ts b/src/matches/events/MatchUpdatedLineupsEvent.ts index e5cfe1dc..d93e1c10 100644 --- a/src/matches/events/MatchUpdatedLineupsEvent.ts +++ b/src/matches/events/MatchUpdatedLineupsEvent.ts @@ -57,6 +57,14 @@ export default class MatchUpdatedLineupsEvent extends MatchEventProcessor<{ on_conflict: { constraint: "players_steam_id_key", update_columns: ["name"], + // See PlayerConnected.ts -- the _or is load bearing because + // name_registered is nullable with no default. + where: { + _or: [ + { name_registered: { _is_null: true } }, + { name_registered: { _eq: false } }, + ], + }, }, }, __typename: true, diff --git a/src/matches/events/PlayerConnected.ts b/src/matches/events/PlayerConnected.ts index 97eb44f4..f6da215c 100644 --- a/src/matches/events/PlayerConnected.ts +++ b/src/matches/events/PlayerConnected.ts @@ -15,6 +15,20 @@ export default class PlayerConnected extends MatchEventProcessor<{ on_conflict: { constraint: "players_steam_id_key", update_columns: ["name"], + // Only refill name for a player who hasn't been through + // registerName/approveNameChange -- otherwise every connect + // reverts a deliberately chosen, admin-approved name back to + // whatever Steam persona the game server reports. + // + // name_registered is nullable with no default, so most rows are + // NULL. A bare _eq: false would evaluate to NULL and update + // nothing, silently ending name refresh for everyone. + where: { + _or: [ + { name_registered: { _is_null: true } }, + { name_registered: { _eq: false } }, + ], + }, }, }, __typename: true, diff --git a/src/matches/events/PlayersConnected.ts b/src/matches/events/PlayersConnected.ts index 80d8d30c..5516b305 100644 --- a/src/matches/events/PlayersConnected.ts +++ b/src/matches/events/PlayersConnected.ts @@ -37,6 +37,14 @@ export default class PlayersConnected extends MatchEventProcessor<{ on_conflict: { constraint: "players_steam_id_key", update_columns: ["name"], + // See PlayerConnected.ts -- the _or is load bearing because + // name_registered is nullable with no default. + where: { + _or: [ + { name_registered: { _is_null: true } }, + { name_registered: { _eq: false } }, + ], + }, }, }, affected_rows: true, diff --git a/src/matches/jobs/CancelExpiredMatches.spec.ts b/src/matches/jobs/CancelExpiredMatches.spec.ts index 8892221a..c2b4db09 100644 --- a/src/matches/jobs/CancelExpiredMatches.spec.ts +++ b/src/matches/jobs/CancelExpiredMatches.spec.ts @@ -429,6 +429,70 @@ describe("CancelExpiredMatches", () => { expect(order.indexOf("cancel")).toBeGreaterThanOrEqual(0); expect(order.indexOf("abandon")).toBeGreaterThan(order.indexOf("cancel")); }); + + it("penalises tournament no-shows too, not just matchmaking ones", async () => { + // A tournament no-show used to cost nothing while abandoning the same + // match mid-game cost an escalating cooldown -- an accident of which + // code path fired, not a decision. + tournamentMatches = [expiredTournamentMatch()]; + + await job.process(); + + expect(abandonedFor().sort()).toEqual(["1", "2"]); + }); + + it("penalises nobody while an organizer is still deciding", async () => { + tournamentMatches = [ + expiredTournamentMatch({ + options: { + match_mode: "admin", + }, + }), + ]; + + await job.process(); + + expect(abandonedFor()).toEqual([]); + }); + + it("penalises nobody when a tournament match that went live is cleaned up", async () => { + tournamentMatches = [ + expiredTournamentMatch({ + match_maps: [{ status: "Live" }], + lineup_1: { + id: "lineup-1", + is_ready: true, + lineup_players: [{ steam_id: "played-a", is_connected: false }], + }, + lineup_2: { + id: "lineup-2", + is_ready: true, + lineup_players: [{ steam_id: "played-b", is_connected: false }], + }, + }), + ]; + + await job.process(); + + expect(abandonedFor()).toEqual([]); + }); + + it("records tournament no-shows only after the forfeit lands", async () => { + tournamentMatches = [expiredTournamentMatch()]; + + await job.process(); + + const order = hasura.mutation.mock.calls.map(([arg]: [any]) => + arg?.insert_abandoned_matches + ? "abandon" + : arg?.update_matches_by_pk?.__args?._set?.status === "Forfeit" + ? "forfeit" + : "other", + ); + + expect(order.indexOf("forfeit")).toBeGreaterThanOrEqual(0); + expect(order.indexOf("abandon")).toBeGreaterThan(order.indexOf("forfeit")); + }); }); describe("force starting ahead of the deadline", () => { diff --git a/src/matches/jobs/CancelExpiredMatches.ts b/src/matches/jobs/CancelExpiredMatches.ts index aa9cc0d3..206f2f8d 100644 --- a/src/matches/jobs/CancelExpiredMatches.ts +++ b/src/matches/jobs/CancelExpiredMatches.ts @@ -273,6 +273,14 @@ export class CancelExpiredMatches extends WorkerHost { } await this.forfeitMatch(match); + + // Same ordering as cancelMatch, and for the same reason: the matches + // trigger clears cancels_at on the Forfeit/Finished transition and + // getExpiredMatches requires cancels_at IS NOT NULL, so the match leaves + // the window and this runs exactly once. abandoned_matches has no unique + // constraint, so a second insert would silently double the escalating + // cooldown. + await this.recordNoShows(match); } private async forfeitMatch( diff --git a/src/matches/jobs/TournamentReminders.ts b/src/matches/jobs/TournamentReminders.ts new file mode 100644 index 00000000..659384a2 --- /dev/null +++ b/src/matches/jobs/TournamentReminders.ts @@ -0,0 +1,93 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { MatchQueues } from "../enums/MatchQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { PostgresService } from "../../postgres/postgres.service"; +import { NotificationsService } from "../../notifications/notifications.service"; + +type DueTournament = { + id: string; + name: string; + start: string; + label: string; + window: string; +}; + +@UseQueue("Matches", MatchQueues.ScheduledMatches) +export class TournamentReminders extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly notifications: NotificationsService, + ) { + super(); + } + + async process(): Promise { + // Two reminder windows, each deduped the way LeagueWeekReminders dedupes + // its own: a distinct entity_id per (tournament, window) makes a NOT EXISTS + // check enough, with no extra state on the tournament itself. + // + // The floor is what stops both windows firing in the same pass for a + // tournament created 90 minutes before it starts. + const due = await this.postgres.query( + `WITH reminder_windows(window_key, label, lead_time, floor_time) AS ( + VALUES ('1d', 'starts in about a day', interval '24 hours', interval '2 hours'), + ('2h', 'starts in about 2 hours', interval '2 hours', interval '0') + ) + SELECT t.id::text AS id, t.name, t."start", w.label, w.window_key AS window + FROM tournaments t + CROSS JOIN reminder_windows w + WHERE t.status IN ('RegistrationOpen', 'RegistrationClosed') + AND t."start" > now() + w.floor_time + AND t."start" <= now() + w.lead_time + AND NOT EXISTS ( + SELECT 1 FROM notifications n + WHERE n.type = 'TournamentReminder' + AND n.entity_id = t.id::text || ':' || w.window_key + )`, + ); + + let sent = 0; + for (const tournament of due) { + const recipients = await this.postgres.query< + Array<{ steam_id: string }> + >( + `SELECT DISTINCT steam_id::text AS steam_id FROM ( + SELECT tt.owner_steam_id AS steam_id + FROM tournament_teams tt + WHERE tt.tournament_id = $1::uuid + AND tt.owner_steam_id IS NOT NULL + UNION + SELECT ttr.player_steam_id AS steam_id + FROM tournament_team_roster ttr + WHERE ttr.tournament_id = $1::uuid + AND ttr.player_steam_id IS NOT NULL + ) roster`, + [tournament.id], + ); + + if (recipients.length === 0) { + continue; + } + + await this.notifications.notifyPlayers("TournamentReminder", { + title: "Tournament starting soon", + message: `${NotificationsService.escapeHtml( + tournament.name, + )} ${tournament.label}.`, + role: "user", + entity_id: `${tournament.id}:${tournament.window}`, + steamIds: recipients.map((recipient) => recipient.steam_id), + }); + + sent++; + } + + if (sent > 0) { + this.logger.log(`${sent} tournament start reminders sent`); + } + + return sent; + } +} diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index 7a259107..b5fe07f4 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -38,6 +38,7 @@ import { CheckForScheduledTournamentBrackets } from "./jobs/CheckForScheduledTou import { CheckLeagueSeasonTransitions } from "./jobs/CheckLeagueSeasonTransitions"; import { ApplyLeagueDefaultSchedules } from "./jobs/ApplyLeagueDefaultSchedules"; import { LeagueWeekReminders } from "./jobs/LeagueWeekReminders"; +import { TournamentReminders } from "./jobs/TournamentReminders"; import { EncryptionModule } from "../encryption/encryption.module"; import { getQueuesProcessors } from "../utilities/QueueProcessors"; import { CancelInvalidTournaments } from "./jobs/CancelInvalidTournaments"; @@ -172,6 +173,7 @@ import { CameraMonitorService } from "./camera/camera-monitor.service"; CheckLeagueSeasonTransitions, ApplyLeagueDefaultSchedules, LeagueWeekReminders, + TournamentReminders, CheckForScheduledMatches, RemoveCancelledMatches, StopOnDemandServer, @@ -242,6 +244,18 @@ export class MatchesModule implements NestModule { }, ); + // More often than the league reminder above, because the 2h window is far + // tighter than its 48h one. + void scheduleMatchQueue.add( + TournamentReminders.name, + {}, + { + repeat: { + pattern: "*/5 * * * *", + }, + }, + ); + void scheduleMatchQueue.add( CheckForScheduledMatches.name, {}, diff --git a/src/news/news.module.ts b/src/news/news.module.ts index 219c1151..77a1517f 100644 --- a/src/news/news.module.ts +++ b/src/news/news.module.ts @@ -4,11 +4,18 @@ import { PostgresModule } from "src/postgres/postgres.module"; import { SystemModule } from "src/system/system.module"; import { S3Module } from "src/s3/s3.module"; import { loggerFactory } from "src/utilities/LoggerFactory"; +import { NotificationsModule } from "src/notifications/notifications.module"; import { NewsService } from "./news.service"; import { NewsController } from "./news.controller"; @Module({ - imports: [HasuraModule, PostgresModule, SystemModule, S3Module], + imports: [ + HasuraModule, + PostgresModule, + SystemModule, + S3Module, + NotificationsModule, + ], controllers: [NewsController], providers: [NewsService, loggerFactory()], exports: [NewsService], diff --git a/src/news/news.service.ts b/src/news/news.service.ts index aefafb84..410824ca 100644 --- a/src/news/news.service.ts +++ b/src/news/news.service.ts @@ -3,6 +3,7 @@ import { Readable } from "stream"; import { Injectable, Logger, BadRequestException } from "@nestjs/common"; import { PostgresService } from "src/postgres/postgres.service"; import { S3Service } from "src/s3/s3.service"; +import { NotificationsService } from "src/notifications/notifications.service"; export interface NewsPostRow { id: string; @@ -43,8 +44,19 @@ export class NewsService { private readonly logger: Logger, private readonly postgres: PostgresService, private readonly s3: S3Service, + private readonly notifications: NotificationsService, ) {} + private async announcePublished(article: NewsPostRow): Promise { + await this.notifications.notifyActivePlayers("NewsPublished", { + title: "New article", + message: `${NotificationsService.escapeHtml( + article.title, + )} was just published.`, + entity_id: article.id, + }); + } + public async listPosts(limit = 200): Promise { return await this.postgres.query( `SELECT * FROM public.news_articles ORDER BY created_at DESC LIMIT $1`, @@ -170,14 +182,17 @@ export class NewsService { return row; } - const [current] = await this.postgres.query>( - `SELECT title FROM public.news_articles WHERE id = $1`, - [id], - ); + const [current] = await this.postgres.query< + Array<{ title: string; status: string }> + >(`SELECT title, status FROM public.news_articles WHERE id = $1`, [id]); if (!current) { throw new BadRequestException("News post not found"); } + // Only a real draft -> published transition announces. Without this, every + // subsequent save of a published article re-notifies everyone. + const isFirstPublish = current.status !== "published"; + const baseSlug = this.slugify(current.title); for (let attempt = 0; attempt < 5; attempt++) { const slug = @@ -198,6 +213,16 @@ export class NewsService { RETURNING *`, [id, slug], ); + + if (isFirstPublish) { + void this.announcePublished(row).catch((error) => { + this.logger.warn( + `unable to announce published article ${id}`, + error, + ); + }); + } + return row; } catch (error) { if (this.isSlugConflict(error) && attempt < 4) { diff --git a/src/notifications/enums/NotificationsQueues.ts b/src/notifications/enums/NotificationsQueues.ts index 584a8738..8302742a 100644 --- a/src/notifications/enums/NotificationsQueues.ts +++ b/src/notifications/enums/NotificationsQueues.ts @@ -1,3 +1,4 @@ export enum NotificationsQueues { SanctionNotifications = "sanction-notifications", + PushBroadcast = "push-broadcast", } diff --git a/src/notifications/jobs/SendPushBroadcast.ts b/src/notifications/jobs/SendPushBroadcast.ts new file mode 100644 index 00000000..ff2d3571 --- /dev/null +++ b/src/notifications/jobs/SendPushBroadcast.ts @@ -0,0 +1,25 @@ +import { WorkerHost } from "@nestjs/bullmq"; +import { Job } from "bullmq"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { NotificationsQueues } from "../enums/NotificationsQueues"; +import { PushNotificationsService } from "../push/push-notifications.service"; + +// A fan-out notification writes one row per player, and the Hasura event +// trigger fires for every one of them. Each of those enqueues this job under +// the same jobId, so all but the first are dropped and the survivor resolves +// every recipient in one pass. +@UseQueue("Notifications", NotificationsQueues.PushBroadcast) +export class SendPushBroadcast extends WorkerHost { + constructor(private readonly pushNotifications: PushNotificationsService) { + super(); + } + + async process( + job: Job<{ + type: string; + entityId: string; + }>, + ): Promise { + await this.pushNotifications.sendForBatch(job.data.type, job.data.entityId); + } +} diff --git a/src/notifications/notifications.module.ts b/src/notifications/notifications.module.ts index 70664738..38b4bf5a 100644 --- a/src/notifications/notifications.module.ts +++ b/src/notifications/notifications.module.ts @@ -1,4 +1,4 @@ -import { Module } from "@nestjs/common"; +import { Module, OnModuleInit } from "@nestjs/common"; import { ConfigModule } from "@nestjs/config"; import { BullModule } from "@nestjs/bullmq"; import { BullBoardModule } from "@bull-board/nestjs"; @@ -10,6 +10,11 @@ import { loggerFactory } from "src/utilities/LoggerFactory"; import { getQueuesProcessors } from "src/utilities/QueueProcessors"; import { NotificationsQueues } from "./enums/NotificationsQueues"; import { SendSanctionNotifications } from "./jobs/SendSanctionNotifications"; +import { SendPushBroadcast } from "./jobs/SendPushBroadcast"; +import { PushNotificationsService } from "./push/push-notifications.service"; +import { PushNotificationsController } from "./push/push-notifications.controller"; +import { NotificationPreferencesService } from "./preferences/notification-preferences.service"; +import { NotificationPreferencesController } from "./preferences/notification-preferences.controller"; @Module({ imports: [ @@ -23,13 +28,35 @@ import { SendSanctionNotifications } from "./jobs/SendSanctionNotifications"; name: NotificationsQueues.SanctionNotifications, adapter: BullMQAdapter, }), + BullModule.registerQueue({ + name: NotificationsQueues.PushBroadcast, + }), + BullBoardModule.forFeature({ + name: NotificationsQueues.PushBroadcast, + adapter: BullMQAdapter, + }), ], + controllers: [PushNotificationsController, NotificationPreferencesController], providers: [ NotificationsService, + PushNotificationsService, + NotificationPreferencesService, SendSanctionNotifications, + SendPushBroadcast, ...getQueuesProcessors("Notifications"), loggerFactory(), ], - exports: [NotificationsService], + exports: [ + NotificationsService, + PushNotificationsService, + NotificationPreferencesService, + ], }) -export class NotificationsModule {} +export class NotificationsModule implements OnModuleInit { + constructor(private readonly pushNotifications: PushNotificationsService) {} + + public async onModuleInit() { + // Keys can live in `settings`, so they aren't known at construction. + await this.pushNotifications.loadKeys(); + } +} diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts index 4ab1ecff..6145a089 100644 --- a/src/notifications/notifications.service.ts +++ b/src/notifications/notifications.service.ts @@ -13,6 +13,8 @@ import { } from "generated/schema"; import { DISCORD_COLORS } from "./utilities/constants"; import { NotificationsQueues } from "./enums/NotificationsQueues"; +import { NotificationPreferencesService } from "./preferences/notification-preferences.service"; +import { inAppKeyForType } from "./preferences/notification-categories"; @Injectable() export class NotificationsService { @@ -29,13 +31,22 @@ export class NotificationsService { "ScrimTimeChanged", "ScrimAlertMatch", "FormTeamSuggestion", + // Relaying every chat line to a Discord webhook would be unusable, and + // the people in the lobby are already the ones being notified. + "ChatMessage", ]); + // Nobody has seen a notification in six months who hasn't signed in, and a + // broadcast to every player row would include shadow rows created by match + // imports. + private static readonly ACTIVE_PLAYER_WINDOW = "30 days"; + constructor( private readonly hasura: HasuraService, private readonly postgres: PostgresService, private readonly logger: Logger, private readonly configService: ConfigService, + private readonly preferences: NotificationPreferencesService, @InjectQueue(NotificationsQueues.SanctionNotifications) private readonly sanctionNotificationsQueue: Queue, ) { @@ -348,7 +359,13 @@ export class NotificationsService { }>, color?: number, ) { - const steamIds = Array.from(new Set(notification.steamIds)); + // Filtered before the insert rather than at read time: the bell reads + // `notifications` straight through Hasura, and "hide rows whose type the + // viewer muted" isn't expressible as a select_permission. + const steamIds = await this.preferences.filterInAppRecipients( + type, + Array.from(new Set(notification.steamIds)), + ); if (steamIds.length > 0) { await this.hasura.mutation({ @@ -382,6 +399,100 @@ export class NotificationsService { } } + // Soft-deletes every unread row for an entity except the newest, so a busy + // conversation shows one bell entry rather than one per message. Push is + // unaffected -- each message already fired its own INSERT. + async collapseOlderUnread( + type: e_notification_types_enum, + entityId: string, + steamIds: string[], + ) { + if (steamIds.length === 0) { + return; + } + + await this.postgres.query( + `UPDATE public.notifications n + SET deleted_at = now() + WHERE n.type = $1 + AND n.entity_id = $2 + AND n.steam_id = ANY($3::bigint[]) + AND n.is_read = false + AND n.deleted_at IS NULL + AND n.id <> ( + SELECT newest.id + FROM public.notifications newest + WHERE newest.type = n.type + AND newest.entity_id = n.entity_id + AND newest.steam_id = n.steam_id + AND newest.deleted_at IS NULL + ORDER BY newest.created_at DESC + LIMIT 1 + )`, + [type, entityId, steamIds], + ); + } + + // Opening a conversation should clear its badge everywhere, not just in the + // tab that was open. + async markConversationRead( + type: e_notification_types_enum, + entityId: string, + steamId: string, + ) { + await this.postgres.query( + `UPDATE public.notifications + SET is_read = true + WHERE type = $1 + AND entity_id = $2 + AND steam_id = $3::bigint + AND is_read = false`, + [type, entityId, steamId], + ); + } + + // Announce something to the whole player base. + // + // This deliberately writes one row per player rather than a single + // role-targeted row: our notifications select_permissions are a per-role + // enumeration, and `user` only ever matches on steam_id -- so a + // `role: 'user'` broadcast with a null steam_id is visible to nobody. + // + // Written as one INSERT..SELECT because the recipient list is the whole + // players table, and the in-app preference filter is inlined for the same + // reason. + async notifyActivePlayers( + type: e_notification_types_enum, + notification: { + title: string; + message: string; + entity_id?: string; + }, + ) { + const key = inAppKeyForType(type); + + await this.postgres.query( + `INSERT INTO public.notifications (type, title, message, role, steam_id, entity_id) + SELECT $1, $2, $3, 'user', p.steam_id, $4 + FROM public.players p + LEFT JOIN public.notification_preferences np + ON np.steam_id = p.steam_id + AND np.channel = 'in_app' + AND np.key = $5 + WHERE p.last_sign_in_at >= now() - $6::interval + AND COALESCE(np.enabled, $7::boolean) = true`, + [ + type, + notification.title, + notification.message, + notification.entity_id ?? null, + key?.key ?? "", + NotificationsService.ACTIVE_PLAYER_WINDOW, + key?.defaultEnabled ?? true, + ], + ); + } + private async getSettingValue(name: string): Promise { const { settings_by_pk } = await this.hasura.query({ settings_by_pk: { diff --git a/src/notifications/preferences/notification-categories.spec.ts b/src/notifications/preferences/notification-categories.spec.ts new file mode 100644 index 00000000..7df605f1 --- /dev/null +++ b/src/notifications/preferences/notification-categories.spec.ts @@ -0,0 +1,126 @@ +import { readFileSync, readdirSync, existsSync } from "fs"; +import { join } from "path"; +import { + PUSH_CATEGORIES, + PUSH_KEYS, + IN_APP_KEYS, + pushCategoryForType, + inAppKeyForType, +} from "./notification-categories"; + +const HASURA_DIR = join(__dirname, "../../../hasura"); + +// Notification types come from two places, and missing the second is how +// MatchImported ended up live but absent from the enum seed file. +const notificationTypesInTree = (): string[] => { + const sources = [join(HASURA_DIR, "enums/notification-types.sql")]; + + const migrations = join(HASURA_DIR, "migrations/default"); + for (const dir of readdirSync(migrations)) { + const up = join(migrations, dir, "up.sql"); + if (existsSync(up)) { + sources.push(up); + } + } + + const types = new Set(); + for (const source of sources) { + const sql = readFileSync(source, "utf8"); + if (!sql.includes("e_notification_types")) { + continue; + } + for (const [, value] of sql.matchAll(/\('([A-Za-z]+)',\s*'/g)) { + types.add(value); + } + } + + return [...types].sort(); +}; + +describe("notification categories", () => { + const types = notificationTypesInTree(); + + it("finds the notification types declared in the tree", () => { + // Guards the parser itself -- a regex that silently matched nothing would + // make every assertion below vacuously pass. + expect(types.length).toBeGreaterThan(30); + expect(types).toContain("ChatMessage"); + expect(types).toContain("MatchImported"); + }); + + it("maps every notification type to a push category", () => { + const unmapped = types.filter((type) => !pushCategoryForType(type)); + + expect(unmapped).toEqual([]); + }); + + it("does not map types that do not exist", () => { + const known = new Set(types); + const phantom = Object.values(PUSH_CATEGORIES) + .flat() + .filter((type) => !known.has(type)); + + expect(phantom).toEqual([]); + }); + + it("assigns each type to exactly one push category", () => { + const seen = new Map(); + const duplicated: string[] = []; + + for (const [category, categoryTypes] of Object.entries(PUSH_CATEGORIES)) { + for (const type of categoryTypes) { + if (seen.has(type)) { + duplicated.push(`${type} (${seen.get(type)} + ${category})`); + } + seen.set(type, category); + } + } + + expect(duplicated).toEqual([]); + }); + + it("declares a preference key for every push category", () => { + expect(Object.keys(PUSH_CATEGORIES).sort()).toEqual( + PUSH_KEYS.map((entry) => entry.key).sort(), + ); + }); + + it("only exposes real notification types as in-app keys", () => { + const known = new Set(types); + const phantom = IN_APP_KEYS.filter((entry) => !known.has(entry.key)); + + expect(phantom).toEqual([]); + }); + + it("only exposes per-player types as in-app keys", () => { + // In-app preferences are enforced at insert time against a known recipient + // list. A role-broadcast type has no such list, so a toggle for one would + // silently do nothing. + const roleBroadcastOnly = [ + "GameUpdate", + "GameNodeStatus", + "DedicatedServerStatus", + "DedicatedServerRconStatus", + "StorageScan", + "EloRecompute", + "PlayerReindex", + "MatchSupport", + "MatchAbandoned", + "NameChangeRequest", + ]; + + const offenders = IN_APP_KEYS.filter((entry) => + roleBroadcastOnly.includes(entry.key), + ); + + expect(offenders).toEqual([]); + }); + + it("resolves in-app keys back to their own type", () => { + for (const entry of IN_APP_KEYS) { + expect(inAppKeyForType(entry.key)).toEqual(entry); + } + + expect(inAppKeyForType("GameUpdate")).toBeNull(); + }); +}); diff --git a/src/notifications/preferences/notification-categories.ts b/src/notifications/preferences/notification-categories.ts new file mode 100644 index 00000000..8dcd4df3 --- /dev/null +++ b/src/notifications/preferences/notification-categories.ts @@ -0,0 +1,121 @@ +import { e_notification_types_enum } from "generated/schema"; + +export type NotificationChannel = "push" | "in_app"; + +export const NOTIFICATION_CHANNELS: NotificationChannel[] = ["push", "in_app"]; + +export type PreferenceKey = { + key: string; + defaultEnabled: boolean; + // Only ever reaches staff, so the frontend hides it from everyone else + // rather than offering a toggle that can never do anything. + adminOnly?: boolean; +}; + +// Push groups every notification type into a coarse category. There are ~35 +// types and a switch per type would be unusable, so a player mutes a whole +// category at once. +// +// Keep this exhaustive: notification-categories.spec.ts reads the real type +// list out of hasura/enums/notification-types.sql *and* the migrations that +// insert into e_notification_types (MatchImported only exists in the latter), +// and fails if anything is unmapped. +export const PUSH_CATEGORIES: Record = { + matches: ["MatchStatusChange", "MatchImported"], + chat: ["ChatMessage"], + tournaments: ["TournamentCreated", "TournamentReminder"], + scrims: [ + "ScrimRequestReceived", + "ScrimRequestCountered", + "ScrimRequestAccepted", + "ScrimRequestDeclined", + "ScrimRequestExpired", + "ScrimMatchScheduled", + "ScrimMatchCanceled", + "ScrimTimeChanged", + "ScrimAlertMatch", + ], + leagues: [ + "LeagueProposalReceived", + "LeagueProposalAccepted", + "LeagueProposalDeclined", + "LeagueMatchUnscheduled", + "LeagueRegistrationDecision", + "LeagueRosterUndersized", + ], + teams: ["FormTeamSuggestion"], + account: ["NameChangeApproved", "NameChangeDenied", "PlayerSanctioned"], + news: ["NewsPublished"], + staff_moderation: ["MatchSupport", "MatchAbandoned", "NameChangeRequest"], + staff_infrastructure: [ + "GameUpdate", + "GameNodeStatus", + "DedicatedServerStatus", + "DedicatedServerRconStatus", + "StorageScan", + "EloRecompute", + "PlayerReindex", + ], +}; + +export const PUSH_KEYS: PreferenceKey[] = [ + { key: "matches", defaultEnabled: true }, + { key: "chat", defaultEnabled: true }, + { key: "tournaments", defaultEnabled: true }, + { key: "scrims", defaultEnabled: true }, + { key: "leagues", defaultEnabled: true }, + { key: "teams", defaultEnabled: true }, + { key: "account", defaultEnabled: true }, + { key: "news", defaultEnabled: true }, + { key: "staff_moderation", defaultEnabled: true, adminOnly: true }, + // Infrastructure chatter is constant and rarely actionable on a phone. + { key: "staff_infrastructure", defaultEnabled: false, adminOnly: true }, +]; + +// The in-app bell is toggleable per individual type rather than per category, +// but only for a small hand-picked set -- everything else keeps firing with no +// user-facing control. +// +// Every key here must be a type that carries a steam_id. Enforcement happens at +// insert time against a known recipient list, and a role-broadcast row has no +// such list to filter against. +export const IN_APP_KEYS: PreferenceKey[] = [ + { key: "ChatMessage", defaultEnabled: true }, + { key: "MatchImported", defaultEnabled: false }, + { key: "NewsPublished", defaultEnabled: true }, + { key: "TournamentReminder", defaultEnabled: true }, + { key: "FormTeamSuggestion", defaultEnabled: true }, + { key: "ScrimAlertMatch", defaultEnabled: true }, + { key: "LeagueMatchUnscheduled", defaultEnabled: true }, +]; + +const PUSH_CATEGORY_BY_TYPE: Record = Object.fromEntries( + Object.entries(PUSH_CATEGORIES).flatMap(([category, types]) => + types.map((type) => [type, category]), + ), +); + +const PUSH_KEY_BY_NAME = new Map(PUSH_KEYS.map((entry) => [entry.key, entry])); +const IN_APP_KEY_BY_NAME = new Map( + IN_APP_KEYS.map((entry) => [entry.key, entry]), +); + +export function pushCategoryForType(type: string): PreferenceKey | null { + const category = PUSH_CATEGORY_BY_TYPE[type]; + return category ? (PUSH_KEY_BY_NAME.get(category) ?? null) : null; +} + +export function inAppKeyForType(type: string): PreferenceKey | null { + return IN_APP_KEY_BY_NAME.get(type) ?? null; +} + +export function keysForChannel(channel: NotificationChannel): PreferenceKey[] { + return channel === "push" ? PUSH_KEYS : IN_APP_KEYS; +} + +export function isKnownKey( + channel: NotificationChannel, + key: string, +): boolean { + return keysForChannel(channel).some((entry) => entry.key === key); +} diff --git a/src/notifications/preferences/notification-preferences.controller.ts b/src/notifications/preferences/notification-preferences.controller.ts new file mode 100644 index 00000000..ab2f4f58 --- /dev/null +++ b/src/notifications/preferences/notification-preferences.controller.ts @@ -0,0 +1,88 @@ +import { + BadRequestException, + Body, + Controller, + Delete, + Get, + Param, + Put, + Req, + UseGuards, +} from "@nestjs/common"; +import { Request } from "express"; +import { SteamGuard } from "../../auth/strategies/SteamGuard"; +import { + NOTIFICATION_CHANNELS, + NotificationChannel, + isKnownKey, +} from "./notification-categories"; +import { NotificationPreferencesService } from "./notification-preferences.service"; + +@Controller("notifications/preferences") +@UseGuards(SteamGuard) +export class NotificationPreferencesController { + constructor(private readonly preferences: NotificationPreferencesService) {} + + @Get(":channel") + public async list( + @Req() request: Request, + @Param("channel") channel: string, + ) { + return { + preferences: await this.preferences.list( + request.user.steam_id, + this.assertChannel(channel), + ), + }; + } + + @Put(":channel/:key") + public async set( + @Req() request: Request, + @Param("channel") channel: string, + @Param("key") key: string, + @Body() body: { enabled: boolean }, + ) { + await this.preferences.set( + request.user.steam_id, + this.assertChannel(channel), + this.assertKey(channel, key), + Boolean(body?.enabled), + ); + + return { success: true }; + } + + @Delete(":channel/:key") + public async reset( + @Req() request: Request, + @Param("channel") channel: string, + @Param("key") key: string, + ) { + await this.preferences.reset( + request.user.steam_id, + this.assertChannel(channel), + this.assertKey(channel, key), + ); + + return { success: true }; + } + + private assertChannel(channel: string): NotificationChannel { + if (!NOTIFICATION_CHANNELS.includes(channel as NotificationChannel)) { + throw new BadRequestException(`unknown channel: ${channel}`); + } + + return channel as NotificationChannel; + } + + // Without this the table happily accumulates rows for keys nothing will ever + // read again. + private assertKey(channel: string, key: string): string { + if (!isKnownKey(channel as NotificationChannel, key)) { + throw new BadRequestException(`unknown ${channel} preference: ${key}`); + } + + return key; + } +} diff --git a/src/notifications/preferences/notification-preferences.service.ts b/src/notifications/preferences/notification-preferences.service.ts new file mode 100644 index 00000000..26df998c --- /dev/null +++ b/src/notifications/preferences/notification-preferences.service.ts @@ -0,0 +1,99 @@ +import { Injectable } from "@nestjs/common"; +import { PostgresService } from "../../postgres/postgres.service"; +import { + NotificationChannel, + PreferenceKey, + keysForChannel, + inAppKeyForType, +} from "./notification-categories"; + +export type ResolvedPreference = PreferenceKey & { + enabled: boolean; +}; + +@Injectable() +export class NotificationPreferencesService { + constructor(private readonly postgres: PostgresService) {} + + // Returns the whole catalogue merged with the player's stored choices, so + // the frontend renders toggles without needing its own copy of the key list + // or of what each key defaults to. + public async list( + steamId: string, + channel: NotificationChannel, + ): Promise { + const rows = await this.postgres.query< + Array<{ key: string; enabled: boolean }> + >( + `SELECT key, enabled + FROM public.notification_preferences + WHERE steam_id = $1::bigint AND channel = $2`, + [steamId, channel], + ); + + const stored = new Map(rows.map((row) => [row.key, row.enabled])); + + return keysForChannel(channel).map((entry) => ({ + ...entry, + enabled: stored.get(entry.key) ?? entry.defaultEnabled, + })); + } + + public async set( + steamId: string, + channel: NotificationChannel, + key: string, + enabled: boolean, + ): Promise { + await this.postgres.query( + `INSERT INTO public.notification_preferences (steam_id, channel, key, enabled) + VALUES ($1::bigint, $2, $3, $4) + ON CONFLICT (steam_id, channel, key) DO UPDATE + SET enabled = EXCLUDED.enabled, updated_at = now()`, + [steamId, channel, key, enabled], + ); + } + + // Deleting restores default-by-absence, which is the whole point of storing + // only explicit choices. + public async reset( + steamId: string, + channel: NotificationChannel, + key: string, + ): Promise { + await this.postgres.query( + `DELETE FROM public.notification_preferences + WHERE steam_id = $1::bigint AND channel = $2 AND key = $3`, + [steamId, channel, key], + ); + } + + // Narrows a recipient list to those who haven't muted this type in the bell. + // + // Unlike push, this has to happen before the rows are written: the bell reads + // `notifications` straight through Hasura, and "hide rows whose type the + // viewer muted" isn't expressible as a select_permission. + public async filterInAppRecipients( + type: string, + steamIds: string[], + ): Promise { + const key = inAppKeyForType(type); + + if (!key || steamIds.length === 0) { + return steamIds; + } + + const rows = await this.postgres.query>( + `SELECT s.steam_id::text AS steam_id + FROM unnest($1::bigint[]) AS s(steam_id) + LEFT JOIN public.notification_preferences np + ON np.steam_id = s.steam_id + AND np.channel = 'in_app' + AND np.key = $2 + WHERE COALESCE(np.enabled, $3::boolean) = true`, + [steamIds, key.key, key.defaultEnabled], + ); + + return rows.map((row) => row.steam_id); + } +} diff --git a/src/notifications/push/push-endpoint.spec.ts b/src/notifications/push/push-endpoint.spec.ts new file mode 100644 index 00000000..b383fb3d --- /dev/null +++ b/src/notifications/push/push-endpoint.spec.ts @@ -0,0 +1,82 @@ +import { isAllowedPushEndpoint } from "./push-endpoint"; + +describe("isAllowedPushEndpoint", () => { + describe("real push services", () => { + it.each([ + "https://fcm.googleapis.com/fcm/send/abc123", + "https://fcm.googleapis.com/wp/abc123", + "https://android.googleapis.com/gcm/send/abc123", + "https://updates.push.services.mozilla.com/wpush/v2/abc123", + "https://autopush.stage.push.services.mozilla.com/wpush/v2/abc", + "https://web.push.apple.com/QRSTUV", + "https://sin.notify.windows.com/w/?token=abc", + ])("accepts %s", (endpoint) => { + expect(isAllowedPushEndpoint(endpoint)).toBe(true); + }); + }); + + describe("the SSRF this exists to stop", () => { + it.each([ + "http://10.0.0.5:8080/internal", + "https://10.0.0.5/internal", + "https://127.0.0.1/", + "https://169.254.169.254/latest/meta-data/", + "https://timescaledb.5stack.svc.cluster.local/", + "https://hasura:8080/v1/graphql", + ])("rejects %s", (endpoint) => { + expect(isAllowedPushEndpoint(endpoint)).toBe(false); + }); + }); + + describe("attempts to walk around the allowlist", () => { + it("rejects a lookalike domain that merely ends with the brand", () => { + // endsWith on a suffix that does not start with "." would let this pass. + expect( + isAllowedPushEndpoint("https://push.apple.com.attacker.test/x"), + ).toBe(false); + expect( + isAllowedPushEndpoint("https://notfcm.googleapis.com/fcm/send/x"), + ).toBe(false); + }); + + it("rejects an allowed host smuggled into userinfo", () => { + // The real host here is attacker.test; the browser-style URL parser is + // what makes this unambiguous. + expect( + isAllowedPushEndpoint("https://fcm.googleapis.com@attacker.test/x"), + ).toBe(false); + }); + + it("rejects credentials even on an allowed host", () => { + expect( + isAllowedPushEndpoint("https://user:pass@fcm.googleapis.com/fcm/send/x"), + ).toBe(false); + }); + + it("rejects plain http on an allowed host", () => { + expect(isAllowedPushEndpoint("http://fcm.googleapis.com/fcm/send/x")).toBe( + false, + ); + }); + + it("ignores case in the hostname", () => { + expect(isAllowedPushEndpoint("https://FCM.GoogleAPIs.com/fcm/send/x")).toBe( + true, + ); + }); + + it("rejects other schemes entirely", () => { + expect(isAllowedPushEndpoint("file:///etc/passwd")).toBe(false); + expect(isAllowedPushEndpoint("gopher://fcm.googleapis.com/")).toBe(false); + }); + }); + + describe("malformed input", () => { + it.each([["" as unknown], [null], [undefined], [{}], [42], ["not a url"]])( + "rejects %p", + (endpoint) => { + expect(isAllowedPushEndpoint(endpoint)).toBe(false); + }, + ); + }); +}); diff --git a/src/notifications/push/push-endpoint.ts b/src/notifications/push/push-endpoint.ts new file mode 100644 index 00000000..bc5ee69a --- /dev/null +++ b/src/notifications/push/push-endpoint.ts @@ -0,0 +1,69 @@ +// A push subscription endpoint is a URL this server will later POST to, and it +// arrives from the browser -- which means from anyone who can authenticate. +// Stored unchecked it is a blind SSRF primitive: register +// http://10.0.0.5:8080/x and the API makes requests to internal hosts, from +// inside the cluster, on a schedule the attacker doesn't even need to control. +// +// The defence is an allowlist of the real push services rather than a +// block-list of private ranges. A block-list can be walked around with DNS +// rebinding (resolve public on validation, private on send); an attacker +// cannot make fcm.googleapis.com resolve anywhere they choose. +const ALLOWED_PUSH_HOSTS = [ + // Chrome, Edge, Brave, Opera, Samsung Internet + "fcm.googleapis.com", + "android.googleapis.com", + // Firefox + "updates.push.services.mozilla.com", +]; + +// Vendors that shard across subdomains. Matched as a suffix, so +// "web.push.apple.com" passes and "push.apple.com.attacker.test" does not. +const ALLOWED_PUSH_HOST_SUFFIXES = [ + ".push.apple.com", + ".notify.windows.com", + ".push.services.mozilla.com", +]; + +export function isAllowedPushEndpoint(endpoint: unknown): boolean { + if (typeof endpoint !== "string" || endpoint.length === 0) { + return false; + } + + let url: URL; + try { + url = new URL(endpoint); + } catch { + return false; + } + + // Plain http would also let an attacker reach anything the pod can. + if (url.protocol !== "https:") { + return false; + } + + // Credentials in the URL are never part of a real push endpoint and would be + // sent onward on every notification. + if (url.username || url.password) { + return false; + } + + const hostname = url.hostname.toLowerCase(); + + // No push service is ever addressed by a bare IP, and allowing one would + // reopen the internal-network path the allowlist exists to close. + if (/^\d{1,3}(\.\d{1,3}){3}$/.test(hostname) || hostname.includes(":")) { + return false; + } + + if (ALLOWED_PUSH_HOSTS.includes(hostname)) { + return true; + } + + return ALLOWED_PUSH_HOST_SUFFIXES.some((suffix) => + hostname.endsWith(suffix), + ); +} + +// Shared with the migration that sweeps rows stored before this check existed. +export const ALLOWED_PUSH_HOST_LIST = ALLOWED_PUSH_HOSTS; +export const ALLOWED_PUSH_HOST_SUFFIX_LIST = ALLOWED_PUSH_HOST_SUFFIXES; diff --git a/src/notifications/push/push-notifications.controller.ts b/src/notifications/push/push-notifications.controller.ts new file mode 100644 index 00000000..bd7bfaaf --- /dev/null +++ b/src/notifications/push/push-notifications.controller.ts @@ -0,0 +1,118 @@ +import { + Body, + Controller, + Delete, + Get, + Post, + Req, + UseGuards, +} from "@nestjs/common"; +import { InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { Request } from "express"; +import { SteamGuard } from "../../auth/strategies/SteamGuard"; +import { HasuraAction, HasuraEvent } from "../../hasura/hasura.controller"; +import { HasuraEventData } from "../../hasura/types/HasuraEventData"; +import { NotificationsQueues } from "../enums/NotificationsQueues"; +import { + PushNotificationsService, + PushSubscriptionPayload, +} from "./push-notifications.service"; + +@Controller("notifications/push") +export class PushNotificationsController { + constructor( + private readonly pushNotifications: PushNotificationsService, + @InjectQueue(NotificationsQueues.PushBroadcast) + private readonly pushBroadcastQueue: Queue, + ) {} + + @Get("vapid-public-key") + public getPublicKey() { + // Null rather than an error when unconfigured, so the frontend can hide + // the toggle instead of surfacing a 500 at the player. + return { publicKey: this.pushNotifications.getPublicKey() }; + } + + // Admin-facing setup status for the application settings page. Deliberately + // never returns the private key. + @HasuraAction() + public async webPushStatus() { + const [subscriptions] = await this.pushNotifications.countSubscriptions(); + + return { + configured: this.pushNotifications.isConfigured(), + managed_by_environment: this.pushNotifications.isManagedByEnvironment(), + subscriptions, + }; + } + + @HasuraAction() + public async generateWebPushKeys() { + await this.pushNotifications.generateKeys(); + + return { success: true }; + } + + @Post("subscribe") + @UseGuards(SteamGuard) + public async subscribe( + @Req() request: Request, + @Body() body: { subscription: PushSubscriptionPayload }, + ) { + await this.pushNotifications.subscribe( + request.user.steam_id, + body.subscription, + request.headers["user-agent"], + ); + + return { success: true }; + } + + @Delete("subscribe") + @UseGuards(SteamGuard) + public async unsubscribe( + @Req() request: Request, + @Body() body: { endpoint: string }, + ) { + await this.pushNotifications.unsubscribe( + request.user.steam_id, + body.endpoint, + ); + + return { success: true }; + } + + // Hasura event trigger on public.notifications (INSERT only) -- see + // hasura/metadata/databases/default/tables/public_notifications.yaml. + // + // The method name must match the trigger name exactly; the registry in + // HasuraController is keyed by it, and only searches modules' `controllers`, + // which is why this lives here rather than on the service. + @HasuraEvent() + public async notification_events( + data: HasuraEventData<{ id: string; type: string; entity_id?: string }>, + ) { + if (data.op !== "INSERT") { + return; + } + + // A fan-out type inserts one row per player, and this fires per row. + // The jobId collapses them into a single send. + if (PushNotificationsService.isBatched(data.new.type)) { + await this.pushBroadcastQueue.add( + "PushBroadcast", + { type: data.new.type, entityId: data.new.entity_id }, + { + jobId: `push-broadcast.${data.new.type}.${data.new.entity_id}`, + delay: 5000, + removeOnComplete: { age: 3600 }, + removeOnFail: { age: 3600 }, + }, + ); + return; + } + + await this.pushNotifications.sendForNotification(data.new); + } +} diff --git a/src/notifications/push/push-notifications.service.spec.ts b/src/notifications/push/push-notifications.service.spec.ts new file mode 100644 index 00000000..6319cbd0 --- /dev/null +++ b/src/notifications/push/push-notifications.service.spec.ts @@ -0,0 +1,329 @@ +import * as webPush from "web-push"; +import { PushNotificationsService } from "./push-notifications.service"; +import { stripHtml } from "../utilities/stripHtml"; +import { notificationUrl } from "../utilities/notificationUrl"; + +jest.mock("web-push", () => ({ + setVapidDetails: jest.fn(), + sendNotification: jest.fn(), + generateVAPIDKeys: jest.fn(), +})); + +const notification = (overrides: Record = {}) => ({ + id: "00000000-0000-0000-0000-0000000000ff", + type: "MatchStatusChange", + role: "user", + title: "Match ready", + message: 'Your match is ready', + entity_id: "m-1", + ...overrides, +}); + +const subscription = (id: string) => ({ + id, + endpoint: `https://push.example.com/${id}`, + p256dh: "p256dh", + auth: "auth", +}); + +describe("PushNotificationsService", () => { + const logger = { log: jest.fn(), warn: jest.fn(), error: jest.fn() }; + const postgres = { query: jest.fn() }; + const configService = { + get: jest.fn, [string]>(), + }; + + // Re-applied per test: clearAllMocks resets calls but not implementations, so + // a test that swaps this out would otherwise leak into the next one. + const withEnvKeys = () => + configService.get.mockImplementation((key) => + key === "app" + ? { webDomain: "https://example.com" } + : { + publicKey: "public-key", + privateKey: "private-key", + subject: "https://example.com", + }, + ); + + let service: PushNotificationsService; + let notificationRow: Record | undefined; + let subscriptions: Array>; + let updates: Array<{ sql: string; bindings: any[] }>; + + // Keys are resolved from settings (with env taking precedence), so they are + // not known until loadKeys() runs. + const build = async () => { + const service = new PushNotificationsService( + logger as any, + postgres as any, + configService as any, + ); + await service.loadKeys(); + return service; + }; + + beforeEach(async () => { + jest.clearAllMocks(); + withEnvKeys(); + notificationRow = notification(); + subscriptions = [subscription("sub-1")]; + updates = []; + + postgres.query.mockImplementation(async (sql: string, bindings: any[]) => { + if (sql.includes("FROM public.notifications\n")) { + return notificationRow ? [notificationRow] : []; + } + if (sql.includes("push_subscriptions ps")) { + return subscriptions; + } + updates.push({ sql, bindings }); + return []; + }); + + (webPush.sendNotification as jest.Mock).mockResolvedValue({}); + service = await build(); + }); + + it("sends to a targeted player's devices", async () => { + subscriptions = [subscription("sub-1"), subscription("sub-2")]; + + await service.sendForNotification({ + id: notificationRow.id, + type: "MatchStatusChange", + }); + + expect(webPush.sendNotification).toHaveBeenCalledTimes(2); + }); + + describe("role broadcasts", () => { + const rolesQueriedFor = () => + postgres.query.mock.calls.find(([sql]: [string]) => + sql.includes("push_subscriptions ps"), + )?.[1][1]; + + it("reaches nobody for a user-role broadcast", async () => { + // Our notifications select_permissions never let `user` see a + // role-targeted row, so pushing one would notify people about something + // they cannot open. + notificationRow = notification({ role: "user" }); + + await service.sendForNotification({ + id: notificationRow.id, + type: "MatchStatusChange", + }); + + expect(rolesQueriedFor()).toEqual([]); + }); + + it("mirrors the bell's per-role enumeration rather than a hierarchy", async () => { + notificationRow = notification({ role: "match_organizer" }); + + await service.sendForNotification({ + id: notificationRow.id, + type: "MatchStatusChange", + }); + + // Excludes administrator, matching public_notifications.yaml. Widening + // this without also widening the *update* permission is what left admins + // staring at 100+ broadcasts they could not dismiss. + expect(rolesQueriedFor()).toEqual([ + "match_organizer", + "tournament_organizer", + ]); + }); + + it("does not widen an administrator broadcast", async () => { + notificationRow = notification({ role: "administrator" }); + + await service.sendForNotification({ + id: notificationRow.id, + type: "GameUpdate", + }); + + expect(rolesQueriedFor()).toEqual(["administrator"]); + }); + }); + + describe("delivery bookkeeping", () => { + it("removes subscriptions the push service reports as gone", async () => { + subscriptions = [subscription("gone"), subscription("alive")]; + (webPush.sendNotification as jest.Mock).mockImplementation( + async (target: { endpoint: string }) => { + if (target.endpoint.endsWith("gone")) { + throw { statusCode: 410 }; + } + return {}; + }, + ); + + await service.sendForNotification({ + id: notificationRow.id, + type: "MatchStatusChange", + }); + + const deleted = updates.find(({ sql }) => sql.includes("DELETE")); + expect(deleted?.bindings[0]).toEqual(["gone"]); + + const touched = updates.find(({ sql }) => sql.includes("last_used_at")); + expect(touched?.bindings[0]).toEqual(["alive"]); + }); + + it("keeps subscriptions after a transient failure", async () => { + subscriptions = [subscription("flaky")]; + (webPush.sendNotification as jest.Mock).mockRejectedValue({ + statusCode: 500, + }); + + await service.sendForNotification({ + id: notificationRow.id, + type: "MatchStatusChange", + }); + + expect(updates.find(({ sql }) => sql.includes("DELETE"))).toBeUndefined(); + expect(logger.warn).toHaveBeenCalled(); + }); + + it("does nothing when the notification row is gone", async () => { + notificationRow = undefined; + + await service.sendForNotification({ id: "missing", type: "GameUpdate" }); + + expect(webPush.sendNotification).not.toHaveBeenCalled(); + }); + }); + + describe("key resolution", () => { + const withoutEnvKeys = () => + configService.get.mockImplementation((key: string) => + key === "app" + ? { webDomain: "https://example.com" } + : { subject: "https://example.com" }, + ); + + it("generates a keypair when nothing is configured", async () => { + // The panel writes keys into api-secrets on install, but an older install + // -- or one deployed without it -- must not sit permanently disabled. + withoutEnvKeys(); + (webPush.generateVAPIDKeys as jest.Mock).mockReturnValue({ + publicKey: "generated-public", + privateKey: "generated-private", + }); + + const service = await build(); + + expect(service.isConfigured()).toBe(true); + expect(service.getPublicKey()).toBe("generated-public"); + expect( + updates.some( + ({ sql, bindings }) => + sql.includes("INSERT INTO public.settings") && + bindings[0] === "web_push_private_key", + ), + ).toBe(true); + }); + + it("stays inert when a keypair cannot be produced", async () => { + withoutEnvKeys(); + (webPush.generateVAPIDKeys as jest.Mock).mockImplementation(() => { + throw new Error("no crypto"); + }); + + const service = await build(); + + expect(service.isConfigured()).toBe(false); + expect(service.getPublicKey()).toBeNull(); + + await service.sendForNotification({ id: "x", type: "GameUpdate" }); + + expect(webPush.sendNotification).not.toHaveBeenCalled(); + }); + + it("prefers environment keys over stored ones", async () => { + const service = await build(); + + expect(service.isManagedByEnvironment()).toBe(true); + expect(service.getPublicKey()).toBe("public-key"); + expect(webPush.generateVAPIDKeys).not.toHaveBeenCalled(); + }); + }); + + it("batches the fan-out types", () => { + expect(PushNotificationsService.isBatched("NewsPublished")).toBe(true); + expect(PushNotificationsService.isBatched("TournamentCreated")).toBe(true); + expect(PushNotificationsService.isBatched("MatchStatusChange")).toBe(false); + }); +}); + +describe("stripHtml", () => { + it("renders markup as the plain text the bell shows", () => { + expect(stripHtml("Cool Team won")).toBe( + "Cool Team won", + ); + }); + + it("decodes the entities escapeHtml wrote", () => { + // A tag-stripping regex leaves "&" here, which is the whole reason + // this goes through a real HTML parser. + expect(stripHtml("Ratz & Catz won")).toBe("Ratz & Catz won"); + }); + + it("truncates rather than filling a lock screen", () => { + const long = stripHtml(`

${"a".repeat(500)}

`); + + expect(long.length).toBeLessThanOrEqual(160); + expect(long.endsWith("…")).toBe(true); + }); + + it("survives an empty message", () => { + expect(stripHtml(null)).toBe(""); + }); +}); + +describe("notificationUrl", () => { + const webDomain = "https://example.com"; + + it("reuses the link the message already carries", () => { + expect( + notificationUrl( + { + type: "NewsPublished", + message: 'Title', + entity_id: "article-1", + }, + webDomain, + ), + ).toBe("/news/a-slug"); + }); + + it("falls back to a route when the message has no link", () => { + expect( + notificationUrl( + { type: "MatchStatusChange", message: "Live now", entity_id: "m-1" }, + webDomain, + ), + ).toBe("/matches/m-1"); + }); + + it("strips the reminder window off a tournament entity id", () => { + expect( + notificationUrl( + { type: "TournamentReminder", message: "Soon", entity_id: "t-1:2h" }, + webDomain, + ), + ).toBe("/tournaments/t-1"); + }); + + it("ignores an off-site link", () => { + expect( + notificationUrl( + { + type: "GameUpdate", + message: 'click', + entity_id: "g-1", + }, + webDomain, + ), + ).toBe("/"); + }); +}); diff --git a/src/notifications/push/push-notifications.service.ts b/src/notifications/push/push-notifications.service.ts new file mode 100644 index 00000000..245144c0 --- /dev/null +++ b/src/notifications/push/push-notifications.service.ts @@ -0,0 +1,429 @@ +import { BadRequestException, Injectable, Logger } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import * as webPush from "web-push"; +import { PostgresService } from "../../postgres/postgres.service"; +import { AppConfig } from "src/configs/types/AppConfig"; +import { WebPushConfig } from "src/configs/types/WebPushConfig"; +import { e_player_roles_enum } from "generated/schema"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; +import { pushCategoryForType } from "../preferences/notification-categories"; +import { stripHtml } from "../utilities/stripHtml"; +import { notificationUrl } from "../utilities/notificationUrl"; +import { isAllowedPushEndpoint } from "./push-endpoint"; + +export type PushSubscriptionPayload = { + endpoint: string; + keys: { + p256dh: string; + auth: string; + }; +}; + +export type NotificationRow = { + id: string; + type: string; + role: e_player_roles_enum; + title: string; + message: string; + entity_id?: string | null; +}; + +type SubscriptionRow = { + id: string; + endpoint: string; + p256dh: string; + auth: string; +}; + +// Which roles can actually see a role-broadcast notification, mirroring the +// select_permissions in +// hasura/metadata/databases/default/tables/public_notifications.yaml. +// +// This is deliberately NOT isRoleAbove(). Our notification permissions are a +// hand-written per-role enumeration rather than a hierarchy -- an administrator +// does not see a tournament_organizer broadcast today -- and pushing something +// the player cannot then open in the bell is worse than not pushing at all. +// Any role absent here (notably `user`) sees no broadcasts at all, so a +// role-targeted row with no steam_id reaches nobody. +// +// Keep in lockstep with that yaml. +const RECIPIENT_ROLES: Record = { + administrator: ["administrator"], + tournament_organizer: ["tournament_organizer"], + match_organizer: ["match_organizer", "tournament_organizer"], +}; + +// Types that fan out to one row per player. The trigger fires per row, so for +// these the handler collapses into a single deduped job instead of doing a +// query and a send for each of thousands of inserts. +const BATCHED_TYPES = new Set(["TournamentCreated", "NewsPublished"]); + +const SEND_CHUNK_SIZE = 25; + +@Injectable() +export class PushNotificationsService { + private readonly appConfig: AppConfig; + private readonly webPushConfig: WebPushConfig; + private publicKey: string | null = null; + private configured = false; + + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly configService: ConfigService, + ) { + this.appConfig = this.configService.get("app"); + this.webPushConfig = this.configService.get("webPush"); + } + + // Keys live in `settings` so an operator can generate them from the panel -- + // VAPID is a self-signed keypair, not a vendor credential, so there is + // nothing to register and no reason to force an env var. Env still wins when + // set, for anyone who would rather manage secrets outside the database. + public async loadKeys(): Promise { + const publicKey = + this.webPushConfig?.publicKey || + (await this.getSetting(SystemSettingName.WebPushPublicKey)); + const privateKey = + this.webPushConfig?.privateKey || + (await this.getSetting(SystemSettingName.WebPushPrivateKey)); + + if (publicKey && privateKey) { + this.apply(publicKey, privateKey); + return; + } + + // Nothing configured. The panel generates a keypair into api-secrets on + // install, but an install that predates that -- or one deployed without the + // panel -- would otherwise sit here permanently disabled. VAPID keys are + // self-signed with nothing to register, so there is no reason to make an + // operator go and fetch one. + this.logger.log("no VAPID keys found; generating a keypair"); + + try { + const keys = webPush.generateVAPIDKeys(); + + await this.setSetting(SystemSettingName.WebPushPublicKey, keys.publicKey); + await this.setSetting( + SystemSettingName.WebPushPrivateKey, + keys.privateKey, + ); + + this.apply(keys.publicKey, keys.privateKey); + } catch (error) { + this.configured = false; + this.publicKey = null; + this.logger.warn( + "unable to generate VAPID keys; web push notifications are disabled", + error, + ); + } + } + + private apply(publicKey: string, privateKey: string) { + webPush.setVapidDetails(this.webPushConfig.subject, publicKey, privateKey); + this.configured = true; + this.publicKey = publicKey; + } + + // Generates a fresh keypair and stores it. + // + // Rotating invalidates every existing subscription -- the browser signed up + // against the old public key and the push service will reject sends signed by + // the new one -- so the stale rows are cleared out rather than left to fail + // one 403 at a time. + public async generateKeys(): Promise<{ publicKey: string }> { + if (this.webPushConfig?.publicKey || this.webPushConfig?.privateKey) { + throw new Error( + "web push keys are set through the environment; unset WEB_PUSH_PUBLIC_KEY/WEB_PUSH_PRIVATE_KEY to manage them here", + ); + } + + const keys = webPush.generateVAPIDKeys(); + + await this.setSetting(SystemSettingName.WebPushPublicKey, keys.publicKey); + await this.setSetting(SystemSettingName.WebPushPrivateKey, keys.privateKey); + await this.postgres.query(`DELETE FROM public.push_subscriptions`); + + await this.loadKeys(); + + return { publicKey: keys.publicKey }; + } + + public async countSubscriptions(): Promise<[number]> { + const [row] = await this.postgres.query>( + `SELECT count(*)::text AS count FROM public.push_subscriptions`, + ); + + return [Number(row?.count ?? 0)]; + } + + private async getSetting(name: string): Promise { + const [row] = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [name], + ); + + return row?.value || undefined; + } + + private async setSetting(name: string, value: string): Promise { + await this.postgres.query( + `INSERT INTO public.settings (name, value) VALUES ($1, $2) + ON CONFLICT (name) DO UPDATE SET value = EXCLUDED.value`, + [name, value], + ); + } + + public isConfigured(): boolean { + return this.configured; + } + + public isManagedByEnvironment(): boolean { + return Boolean( + this.webPushConfig?.publicKey || this.webPushConfig?.privateKey, + ); + } + + public getPublicKey(): string | null { + return this.publicKey; + } + + public static isBatched(type: string): boolean { + return BATCHED_TYPES.has(type); + } + + public async subscribe( + steamId: string, + subscription: PushSubscriptionPayload, + userAgent?: string, + ): Promise { + // The endpoint is a URL this server will POST to later, supplied by the + // client. See push-endpoint.ts for why this is an allowlist. + if (!isAllowedPushEndpoint(subscription?.endpoint)) { + this.logger.warn( + `rejected push subscription for an untrusted endpoint (steam_id ${steamId})`, + ); + throw new BadRequestException("invalid push subscription endpoint"); + } + + if (!subscription?.keys?.p256dh || !subscription?.keys?.auth) { + throw new BadRequestException("invalid push subscription keys"); + } + + await this.postgres.query( + `INSERT INTO public.push_subscriptions (steam_id, endpoint, p256dh, auth, user_agent) + VALUES ($1::bigint, $2, $3, $4, $5) + ON CONFLICT (endpoint) DO UPDATE + SET steam_id = EXCLUDED.steam_id, + p256dh = EXCLUDED.p256dh, + auth = EXCLUDED.auth, + user_agent = EXCLUDED.user_agent, + last_used_at = now()`, + [ + steamId, + subscription.endpoint, + subscription.keys.p256dh, + subscription.keys.auth, + userAgent?.slice(0, 512) ?? null, + ], + ); + } + + public async unsubscribe(steamId: string, endpoint: string): Promise { + await this.postgres.query( + `DELETE FROM public.push_subscriptions + WHERE endpoint = $1 AND steam_id = $2::bigint`, + [endpoint, steamId], + ); + } + + // Resolves recipients, role visibility and push preferences in one indexed + // statement. Note it joins back to `notifications` by id rather than reading + // steam_id from the event payload: Hasura builds that payload with + // row_to_json, and JSON.parse rounds anything past 2^53 -- which every steam + // id is, by about eight times. + public async sendForNotification( + notification: Pick, + ): Promise { + if (!this.configured) { + return; + } + + const [row] = await this.postgres.query( + `SELECT id::text AS id, type::text AS type, role::text AS role, + title, message, entity_id + FROM public.notifications + WHERE id = $1::uuid`, + [notification.id], + ); + + if (!row) { + return; + } + + const category = pushCategoryForType(row.type); + + if (!category) { + // Fail open: a type nobody has categorised yet still gets delivered. + // notification-categories.spec.ts is what stops this happening. + this.logger.warn(`no push category for notification type ${row.type}`); + } + + const subscriptions = await this.postgres.query( + `SELECT ps.id::text AS id, ps.endpoint, ps.p256dh, ps.auth + FROM public.notifications n + JOIN public.players p + ON (n.steam_id IS NOT NULL AND p.steam_id = n.steam_id) + OR (n.steam_id IS NULL AND p.role::text = ANY($2::text[])) + JOIN public.push_subscriptions ps ON ps.steam_id = p.steam_id + LEFT JOIN public.notification_preferences np + ON np.steam_id = p.steam_id + AND np.channel = 'push' + AND np.key = $3 + WHERE n.id = $1::uuid + AND COALESCE(np.enabled, $4::boolean) = true`, + [ + row.id, + RECIPIENT_ROLES[row.role] ?? [], + category?.key ?? "", + category?.defaultEnabled ?? true, + ], + ); + + await this.deliver(subscriptions, row); + } + + // The batched counterpart: one job per (type, entity_id) resolves every row + // that fan-out just inserted, rather than one query and send per row. + public async sendForBatch(type: string, entityId: string): Promise { + if (!this.configured) { + return; + } + + const [row] = await this.postgres.query( + `SELECT id::text AS id, type::text AS type, role::text AS role, + title, message, entity_id + FROM public.notifications + WHERE type = $1 AND entity_id = $2 + ORDER BY created_at DESC + LIMIT 1`, + [type, entityId], + ); + + if (!row) { + return; + } + + const category = pushCategoryForType(type); + + const subscriptions = await this.postgres.query( + `SELECT DISTINCT ps.id::text AS id, ps.endpoint, ps.p256dh, ps.auth + FROM public.notifications n + JOIN public.push_subscriptions ps ON ps.steam_id = n.steam_id + LEFT JOIN public.notification_preferences np + ON np.steam_id = n.steam_id + AND np.channel = 'push' + AND np.key = $3 + WHERE n.type = $1 + AND n.entity_id = $2 + AND n.created_at > now() - interval '15 minutes' + AND COALESCE(np.enabled, $4::boolean) = true`, + [type, entityId, category?.key ?? "", category?.defaultEnabled ?? true], + ); + + await this.deliver(subscriptions, row); + } + + private async deliver( + subscriptions: SubscriptionRow[], + notification: NotificationRow, + ): Promise { + if (subscriptions.length === 0) { + return; + } + + const payload = JSON.stringify({ + title: notification.title, + body: stripHtml(notification.message), + url: notificationUrl(notification, this.appConfig.webDomain), + // Lets a device collapse repeats of the same conversation or match + // rather than stacking a separate notification for each. + tag: `${notification.type}:${notification.entity_id ?? notification.id}`, + }); + + const delivered: string[] = []; + const expired: string[] = []; + + for (let i = 0; i < subscriptions.length; i += SEND_CHUNK_SIZE) { + const chunk = subscriptions.slice(i, i + SEND_CHUNK_SIZE); + + await Promise.all( + chunk.map(async (subscription) => { + // Checked again on the way out, not just on the way in: rows stored + // before the subscribe-time check existed would otherwise still be + // POSTed to. Dropped rather than skipped, so it self-heals. + if (!isAllowedPushEndpoint(subscription.endpoint)) { + this.logger.warn( + `dropping push subscription ${subscription.id} with an untrusted endpoint`, + ); + expired.push(subscription.id); + return; + } + + try { + await webPush.sendNotification( + { + endpoint: subscription.endpoint, + keys: { + p256dh: subscription.p256dh, + auth: subscription.auth, + }, + }, + payload, + ); + delivered.push(subscription.id); + } catch (error) { + const statusCode = (error as { statusCode?: number })?.statusCode; + + // The push service itself saying this subscription is gone -- + // uninstalled PWA, cleared site data. Anything else might be + // transient, so the row stays. + if (statusCode === 404 || statusCode === 410) { + expired.push(subscription.id); + return; + } + + this.logger.warn( + `unable to push notification to subscription ${subscription.id}`, + error, + ); + } + }), + ); + } + + if (delivered.length > 0) { + await this.postgres + .query( + `UPDATE public.push_subscriptions SET last_used_at = now() + WHERE id = ANY($1::uuid[])`, + [delivered], + ) + .catch((error) => { + this.logger.warn("unable to update push subscription rows", error); + }); + } + + if (expired.length > 0) { + await this.postgres + .query( + `DELETE FROM public.push_subscriptions WHERE id = ANY($1::uuid[])`, + [expired], + ) + .catch((error) => { + this.logger.warn("unable to update push subscription rows", error); + }); + } + } +} diff --git a/src/notifications/utilities/notificationUrl.ts b/src/notifications/utilities/notificationUrl.ts new file mode 100644 index 00000000..3fbf9a38 --- /dev/null +++ b/src/notifications/utilities/notificationUrl.ts @@ -0,0 +1,46 @@ +import { load } from "cheerio"; + +// Where a push notification should take you when tapped. +// +// Most notification messages already embed the correct in-app link (the bell +// renders them as real anchors), so the href is read straight back out rather +// than duplicating a type -> route map that would immediately drift. The map +// below is only the fallback for messages authored without a link. +const PATH_BY_TYPE: Record string> = { + MatchStatusChange: (id) => `/matches/${id}`, + MatchImported: (id) => `/matches/${id}`, + MatchSupport: (id) => `/matches/${id}`, + MatchAbandoned: (id) => `/matches/${id}`, + TournamentCreated: (id) => `/tournaments/${id}`, + TournamentReminder: (id) => `/tournaments/${id.split(":")[0]}`, + NewsPublished: () => `/news`, + ScrimRequestReceived: () => `/scrims`, + ScrimRequestCountered: () => `/scrims`, + ScrimRequestAccepted: () => `/scrims`, + ScrimRequestDeclined: () => `/scrims`, + ScrimMatchScheduled: () => `/scrims`, + ScrimMatchCanceled: () => `/scrims`, + ScrimTimeChanged: () => `/scrims`, + ScrimAlertMatch: () => `/scrims`, +}; + +export function notificationUrl( + notification: { type: string; message?: string; entity_id?: string | null }, + webDomain: string, +): string { + const href = load(String(notification.message ?? ""))("a[href]") + .first() + .attr("href"); + + if (href?.startsWith(webDomain)) { + return href.slice(webDomain.length) || "/"; + } + + if (href?.startsWith("/")) { + return href; + } + + const path = PATH_BY_TYPE[notification.type]; + + return notification.entity_id && path ? path(notification.entity_id) : "/"; +} diff --git a/src/notifications/utilities/stripHtml.ts b/src/notifications/utilities/stripHtml.ts new file mode 100644 index 00000000..fe955bff --- /dev/null +++ b/src/notifications/utilities/stripHtml.ts @@ -0,0 +1,22 @@ +import { load } from "cheerio"; + +// Notification messages are authored as HTML for the in-app bell -- links, +// bold, and escapeHtml()'d entities inside that markup. A native OS push +// notification has no HTML renderer, so the raw markup would show up verbatim +// on a lock screen. +// +// cheerio rather than a tag-stripping regex because the entities have to be +// decoded too: a regex leaves "&" on screen where the bell shows "&". +export function stripHtml(html: string | null | undefined, maxLength = 160) { + const text = load(String(html ?? "")) + .root() + .text() + .replace(/\s+/g, " ") + .trim(); + + if (text.length <= maxLength) { + return text; + } + + return `${text.slice(0, maxLength - 1).trimEnd()}…`; +} diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index ae8ed9da..c3d060ed 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -20,4 +20,10 @@ export enum SystemSettingName { LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", + // VAPID identifies this panel to the browser push services. The keypair is + // self-generated -- there is no vendor to register with -- so it is stored + // here rather than demanding an env var of every operator. The private half + // is never exposed to any role; see public_settings.yaml. + WebPushPublicKey = "web_push_public_key", + WebPushPrivateKey = "web_push_private_key", } diff --git a/src/system/system.controller.ts b/src/system/system.controller.ts index 93afd880..b5e5afda 100644 --- a/src/system/system.controller.ts +++ b/src/system/system.controller.ts @@ -329,7 +329,9 @@ export class SystemController { data.new.value !== data.old.value) ) { const ttl = parseInt(data.new.value, 10); - await this.chatService.updateChatMessageTTL(isNaN(ttl) ? 60 * 60 : ttl); + await this.chatService.updateChatMessageTTL( + isNaN(ttl) ? 60 * 60 * 24 : ttl, + ); } await this.system.updateDefaultOptions(); diff --git a/src/system/system.module.ts b/src/system/system.module.ts index c93b779a..46d47a5c 100644 --- a/src/system/system.module.ts +++ b/src/system/system.module.ts @@ -77,11 +77,11 @@ export class SystemModule { await this.chatService.updateChatMessageTTL( await this.systemService.getSetting( SystemSettingName.ChatMessageTtl, - 60 * 60, + 60 * 60 * 24, ), ); } catch { - // Default TTL (3600s) is already set on ChatService init — safe to continue + // Default TTL (86400s) is already set on ChatService init — safe to continue } } } diff --git a/src/tournaments/tournaments.controller.ts b/src/tournaments/tournaments.controller.ts index 9bde4947..8c45020e 100644 --- a/src/tournaments/tournaments.controller.ts +++ b/src/tournaments/tournaments.controller.ts @@ -7,6 +7,7 @@ import { ClipsService } from "../matches/clips/clips.service"; import { User } from "../auth/types/User"; import { DiscordTournamentVoiceService } from "../discord-bot/discord-tournament-voice/discord-tournament-voice.service"; import { tournaments_set_input } from "../../generated"; +import { NotificationsService } from "../notifications/notifications.service"; // These tables are newer than the generated GraphQL types; event payloads are // typed locally (mirrors the leagues controller). @@ -29,13 +30,46 @@ export class TournamentsController { private readonly demoMetadata: DemoMetadataService, private readonly clips: ClipsService, private readonly tournamentVoice: DiscordTournamentVoiceService, + private readonly notifications: NotificationsService, ) {} + private async announceRegistrationOpen( + tournamentId: string, + tournament: tournaments_set_input, + ) { + try { + const name = NotificationsService.escapeHtml( + (tournament.name as string) ?? "A tournament", + ); + + await this.notifications.notifyActivePlayers("TournamentCreated", { + title: "New tournament", + message: `${name} is open for signups.`, + entity_id: tournamentId, + }); + } catch (error) { + this.logger.warn( + `[${tournamentId}] unable to announce open registration`, + error, + ); + } + } + @HasuraEvent() public async tournament_events(data: HasuraEventData) { const tournamentId = (data.new.id || data.old.id) as string; const status = data.new.status as string; + // "Created", from a player's point of view, is when signups open. Firing + // on the table INSERT instead would announce tournaments an organizer is + // still halfway through configuring. + if ( + status === "RegistrationOpen" && + data.old.status !== "RegistrationOpen" + ) { + await this.announceRegistrationOpen(tournamentId, data.new); + } + if (status === "Live" && data.old.status !== "Live") { await this.tournamentVoice.createTournamentReadyRoom(tournamentId); } diff --git a/src/tournaments/tournaments.module.ts b/src/tournaments/tournaments.module.ts index ea6d0274..d2af5054 100644 --- a/src/tournaments/tournaments.module.ts +++ b/src/tournaments/tournaments.module.ts @@ -5,6 +5,7 @@ import { DemosModule } from "../demos/demos.module"; import { ClipsModule } from "../matches/clips/clips.module"; import { DiscordTournamentVoiceModule } from "../discord-bot/discord-tournament-voice/discord-tournament-voice.module"; import { loggerFactory } from "../utilities/LoggerFactory"; +import { NotificationsModule } from "../notifications/notifications.module"; @Module({ imports: [ @@ -12,6 +13,7 @@ import { loggerFactory } from "../utilities/LoggerFactory"; DemosModule, ClipsModule, DiscordTournamentVoiceModule, + NotificationsModule, ], controllers: [TournamentsController], providers: [loggerFactory()], diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts index e93cb1b1..3d941964 100644 --- a/src/voice/voice.service.spec.ts +++ b/src/voice/voice.service.spec.ts @@ -169,4 +169,82 @@ describe("VoiceService", () => { `voice-${LOBBY_ID}-${ME.steam_id}`, ); }); + + describe("match lineup channels", () => { + const LINEUP_ID = "22222222-2222-2222-2222-222222222222"; + + // Not in any lobby, but rostered on the lineup: the second lookup is what + // lets a match channel reuse the lobby transport. + const rostered = () => + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([]) + .mockResolvedValueOnce([{ exists: true }]); + + it("admits a player rostered on the lineup", async () => { + rostered(); + + await expect(service.publish(LINEUP_ID, ME, "offer")).resolves.toBe( + "answer-sdp", + ); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voice-${LINEUP_ID}-${ME.steam_id}`, + "whip", + "offer", + ); + }); + + it("refuses someone who is on neither the lobby nor the lineup", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([]) + .mockResolvedValueOnce([]); + + await expect(service.publish(LINEUP_ID, ME, "offer")).rejects.toThrow( + /not a member/i, + ); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // The whole point of scoping to a lineup rather than a match: the id is the + // team, so there is no path that resolves to the opposing side. + it("only ever addresses paths under the lineup it was given", async () => { + rostered(); + + await service.subscribe(LINEUP_ID, PEER, ME, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voice-${LINEUP_ID}-${PEER}`, + "whep", + "offer", + ); + }); + + it("excludes finished matches from membership", async () => { + rostered(); + + await service.publish(LINEUP_ID, ME, "offer"); + + const [sql] = postgres.query.mock.calls[2]; + expect(sql).toMatch(/match_lineup_players/); + expect(sql).toMatch(/Finished/); + expect(sql).toMatch(/Canceled/); + }); + + it("lists lineup members as participants", async () => { + rostered(); + postgres.query.mockResolvedValueOnce([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + mediaMtx.listPaths.mockResolvedValue( + new Map([[`voice-${LINEUP_ID}-${PEER}`, { ready: true }]]), + ); + + const participants = await service.participants(LINEUP_ID, ME); + + expect(participants.map((p) => p.steamId)).toEqual([ME.steam_id, PEER]); + expect(participants.find((p) => p.steamId === PEER)?.speaking).toBe(true); + }); + }); }); diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts index 1dceef09..18ccc367 100644 --- a/src/voice/voice.service.ts +++ b/src/voice/voice.service.ts @@ -7,6 +7,10 @@ import { User } from "../auth/types/User"; const UUID_PATTERN = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; +// One message for "lobby" and "match lineup" alike: which of the two a channel +// id belongs to is not something a caller who failed the check should learn. +const NOT_A_MEMBER = "not a member of this voice channel"; + export type VoiceParticipant = { steamId: string; name: string | null; @@ -41,26 +45,49 @@ export class VoiceService { return row?.value !== "false"; } - // Voice is only ever offered to a lobby you are actually in, and only for - // members who accepted — an invite that has not been taken up is not a seat - // at the table. - public async assertMember(lobbyId: string, user: User) { + // A channel id is either a lobby id or a match lineup id. Both are uuids and + // neither can collide, so match voice reuses the whole lobby transport rather + // than duplicating it — the only thing that differs is who counts as a member. + // + // Match voice is deliberately scoped to one lineup, never the whole match: an + // open channel between opposing teams is the same advantage the camera rules + // exist to prevent. + public async assertMember(channelId: string, user: User) { if (!(await this.isEnabled())) { throw new Error("voice chat is not enabled"); } - if (!UUID_PATTERN.test(lobbyId)) { - throw new Error("not a member of this lobby"); + if (!UUID_PATTERN.test(channelId)) { + throw new Error(NOT_A_MEMBER); } - const [row] = await this.postgres.query>( + const [lobby] = await this.postgres.query>( `SELECT status FROM lobby_players WHERE lobby_id = $1 AND steam_id = $2`, - [lobbyId, user.steam_id], + [channelId, user.steam_id], + ); + + if (lobby?.status === "Accepted") { + return; + } + + const [lineup] = await this.postgres.query>( + `SELECT true AS exists + FROM match_lineup_players mlp + INNER JOIN matches m + ON m.lineup_1_id = mlp.match_lineup_id + OR m.lineup_2_id = mlp.match_lineup_id + WHERE mlp.match_lineup_id = $1 + AND mlp.steam_id = $2 + AND m.status NOT IN ('Finished', 'Canceled', 'Forfeit', 'Surrendered', 'Tie') + LIMIT 1`, + [channelId, user.steam_id], ); - if (row?.status !== "Accepted") { - throw new Error("not a member of this lobby"); + if (lineup?.exists) { + return; } + + throw new Error(NOT_A_MEMBER); } public async publish(lobbyId: string, user: User, sdp: string) { @@ -105,14 +132,27 @@ export class VoiceService { public async participants(lobbyId: string, user: User) { await this.assertMember(lobbyId, user); + // Union rather than a branch on channel kind: a given id only ever matches + // one of the two tables, so this stays a single round trip and the caller + // never has to say which sort of channel it is asking about. const members = await this.postgres.query< Array<{ steam_id: string; name: string | null; avatar_url: string | null }> >( - `SELECT lp.steam_id::text AS steam_id, p.name, p.avatar_url - FROM lobby_players lp - LEFT JOIN players p ON p.steam_id = lp.steam_id - WHERE lp.lobby_id = $1 AND lp.status = 'Accepted' - ORDER BY p.name`, + `SELECT steam_id::text AS steam_id, name, avatar_url + FROM ( + SELECT lp.steam_id, p.name, p.avatar_url + FROM lobby_players lp + LEFT JOIN players p ON p.steam_id = lp.steam_id + WHERE lp.lobby_id = $1 AND lp.status = 'Accepted' + + UNION + + SELECT mlp.steam_id, p.name, p.avatar_url + FROM match_lineup_players mlp + LEFT JOIN players p ON p.steam_id = mlp.steam_id + WHERE mlp.match_lineup_id = $1 + ) members + ORDER BY name`, [lobbyId], ); diff --git a/test/notifications.spec.ts b/test/notifications.spec.ts new file mode 100644 index 00000000..8c5e516c --- /dev/null +++ b/test/notifications.spec.ts @@ -0,0 +1,383 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; +import { TournamentReminders } from "./../src/matches/jobs/TournamentReminders"; +import { NotificationsService } from "./../src/notifications/notifications.service"; +import { NotificationPreferencesService } from "./../src/notifications/preferences/notification-preferences.service"; +import { PushNotificationsService } from "./../src/notifications/push/push-notifications.service"; +import { isAllowedPushEndpoint } from "./../src/notifications/push/push-endpoint"; + +// Runs the raw SQL behind the notification work against a real Postgres. +// Everything here is hand-written SQL rather than generated queries, so a +// reserved word or a bad cast would otherwise only surface in production. +describe("notifications (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + const logger = { log: jest.fn(), warn: jest.fn(), error: jest.fn() }; + + beforeAll(async () => { + db = await bootMigratedDb("NotificationsTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199300000000n); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + jest.clearAllMocks(); + await postgres.query("DELETE FROM notifications"); + await postgres.query("DELETE FROM notification_preferences"); + await postgres.query("DELETE FROM push_subscriptions"); + await postgres.query("DELETE FROM tournaments"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM teams"); + await postgres.query("DELETE FROM players"); + }); + + const preferences = () => new NotificationPreferencesService(postgres); + + // notifyPlayers inserts through Hasura, so the dedupe assertions below only + // mean anything if the mutation actually lands in the table. + const hasuraWritingToPostgres = () => ({ + query: jest.fn().mockResolvedValue({ settings_by_pk: null }), + mutation: jest.fn(async (mutation: any) => { + const insert = mutation?.insert_notifications; + + if (!insert) { + return {}; + } + + for (const object of insert.__args.objects) { + await postgres.query( + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) + VALUES ($1, $2, $3, $4, $5::bigint, $6)`, + [ + object.type, + object.title, + object.message, + object.role, + object.steam_id, + object.entity_id ?? null, + ], + ); + } + + return { insert_notifications: { affected_rows: insert.length } }; + }), + }); + + const notifications = () => + new NotificationsService( + hasuraWritingToPostgres() as any, + postgres, + logger as any, + { get: () => ({ webDomain: "https://example.com" }) } as any, + preferences(), + { add: jest.fn() } as any, + ); + + const activePlayer = async () => { + const steamId = await fx.player(); + await postgres.query( + `UPDATE players SET last_sign_in_at = now() WHERE steam_id = $1::bigint`, + [steamId], + ); + return steamId; + }; + + describe("notification_preferences", () => { + it("reports defaults for a player who has never chosen", async () => { + const steamId = await fx.player(); + + const rows = await preferences().list(steamId, "push"); + const chat = rows.find((row) => row.key === "chat"); + const infrastructure = rows.find( + (row) => row.key === "staff_infrastructure", + ); + + expect(chat?.enabled).toBe(true); + expect(infrastructure?.enabled).toBe(false); + }); + + it("stores and then clears an explicit choice", async () => { + const steamId = await fx.player(); + const service = preferences(); + + await service.set(steamId, "push", "chat", false); + expect( + (await service.list(steamId, "push")).find((row) => row.key === "chat") + ?.enabled, + ).toBe(false); + + // Absence of a row is what "use the default" means, so a reset has to + // actually delete rather than write `true`. + await service.reset(steamId, "push", "chat"); + const [remaining] = await postgres.query>( + `SELECT count(*)::text AS count FROM notification_preferences + WHERE steam_id = $1::bigint`, + [steamId], + ); + expect(remaining.count).toBe("0"); + }); + + it("filters in-app recipients who muted the type", async () => { + const muted = await fx.player(); + const listening = await fx.player(); + const service = preferences(); + + await service.set(muted, "in_app", "ChatMessage", false); + + expect( + await service.filterInAppRecipients("ChatMessage", [muted, listening]), + ).toEqual([listening]); + }); + + it("leaves untoggleable types alone", async () => { + const steamId = await fx.player(); + + expect( + await preferences().filterInAppRecipients("GameUpdate", [steamId]), + ).toEqual([steamId]); + }); + }); + + describe("notifyActivePlayers", () => { + it("writes one row per recently active player", async () => { + const active = await activePlayer(); + const dormant = await fx.player(); + + await notifications().notifyActivePlayers("NewsPublished", { + title: "New article", + message: "something happened", + entity_id: "article-1", + }); + + const rows = await postgres.query>( + `SELECT steam_id::text AS steam_id FROM notifications WHERE type = 'NewsPublished'`, + ); + + expect(rows.map((row) => row.steam_id)).toEqual([active]); + expect(rows.map((row) => row.steam_id)).not.toContain(dormant); + }); + + it("skips a player who muted the type in the bell", async () => { + const active = await activePlayer(); + await preferences().set(active, "in_app", "NewsPublished", false); + + await notifications().notifyActivePlayers("NewsPublished", { + title: "New article", + message: "something happened", + entity_id: "article-2", + }); + + const [row] = await postgres.query>( + `SELECT count(*)::text AS count FROM notifications`, + ); + expect(row.count).toBe("0"); + }); + }); + + describe("collapseOlderUnread", () => { + it("keeps only the newest unread row for a conversation", async () => { + const steamId = await fx.player(); + + for (const body of ["first", "second", "third"]) { + await postgres.query( + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) + VALUES ('ChatMessage', 'Someone', $1, 'user', $2::bigint, 'match:m-1')`, + [body, steamId], + ); + } + + await notifications().collapseOlderUnread("ChatMessage", "match:m-1", [ + steamId, + ]); + + const rows = await postgres.query>( + `SELECT message FROM notifications + WHERE deleted_at IS NULL AND type = 'ChatMessage'`, + ); + + expect(rows.map((row) => row.message)).toEqual(["third"]); + }); + + it("leaves another conversation untouched", async () => { + const steamId = await fx.player(); + + for (const entity of ["match:m-1", "match:m-2"]) { + await postgres.query( + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) + VALUES ('ChatMessage', 'Someone', 'hi', 'user', $1::bigint, $2)`, + [steamId, entity], + ); + } + + await notifications().collapseOlderUnread("ChatMessage", "match:m-1", [ + steamId, + ]); + + const [row] = await postgres.query>( + `SELECT count(*)::text AS count FROM notifications WHERE deleted_at IS NULL`, + ); + expect(row.count).toBe("2"); + }); + }); + + describe("push recipient resolution", () => { + const service = () => + new PushNotificationsService(logger as any, postgres, { + get: (key: string) => + key === "app" + ? { webDomain: "https://example.com" } + : { publicKey: undefined, privateKey: undefined, subject: "x" }, + } as any); + + it("runs the recipient query without erroring", async () => { + // VAPID is unconfigured here so nothing is actually sent -- this is + // about the SQL parsing and casting cleanly. + await expect( + service().sendForNotification({ id: crypto.randomUUID(), type: "x" }), + ).resolves.toBeUndefined(); + }); + + it("stores a subscription and reassigns it on a shared browser", async () => { + const first = await fx.player(); + const second = await fx.player(); + const push = service(); + const subscription = { + endpoint: "https://fcm.googleapis.com/fcm/send/abc", + keys: { p256dh: "key", auth: "auth" }, + }; + + await push.subscribe(first, subscription, "a browser"); + await push.subscribe(second, subscription, "a browser"); + + const rows = await postgres.query>( + `SELECT steam_id::text AS steam_id FROM push_subscriptions`, + ); + + expect(rows).toHaveLength(1); + expect(rows[0].steam_id).toBe(second); + }); + + it("only unsubscribes the caller's own endpoint", async () => { + const owner = await fx.player(); + const other = await fx.player(); + const push = service(); + + await push.subscribe(owner, { + endpoint: "https://fcm.googleapis.com/fcm/send/xyz", + keys: { p256dh: "key", auth: "auth" }, + }); + + await push.unsubscribe(other, "https://fcm.googleapis.com/fcm/send/xyz"); + + const [row] = await postgres.query>( + `SELECT count(*)::text AS count FROM push_subscriptions`, + ); + expect(row.count).toBe("1"); + }); + }); + + describe("push_subscriptions endpoint constraint", () => { + // The CHECK constraint and isAllowedPushEndpoint() enforce the same rule in + // two languages. If they drift, either real browsers get rejected or the + // SSRF the allowlist exists to stop walks straight past the database. + const insertEndpoint = async (endpoint: string) => { + const steamId = await fx.player(); + return postgres.query( + `INSERT INTO push_subscriptions (steam_id, endpoint, p256dh, auth) + VALUES ($1::bigint, $2, 'k', 'a')`, + [steamId, endpoint], + ); + }; + + it.each([ + "https://fcm.googleapis.com/fcm/send/abc123", + "https://android.googleapis.com/gcm/send/abc123", + "https://updates.push.services.mozilla.com/wpush/v2/abc123", + "https://web.push.apple.com/QRSTUV", + "https://sin.notify.windows.com/w/?token=abc", + ])("accepts %s", async (endpoint) => { + await expect(insertEndpoint(endpoint)).resolves.toBeDefined(); + expect(isAllowedPushEndpoint(endpoint)).toBe(true); + }); + + it.each([ + "http://10.0.0.5:8080/internal", + "https://127.0.0.1/", + "https://169.254.169.254/latest/meta-data/", + "https://hasura:8080/v1/graphql", + "https://push.apple.com.attacker.test/x", + "https://notfcm.googleapis.com/fcm/send/x", + "http://fcm.googleapis.com/fcm/send/x", + ])("rejects %s", async (endpoint) => { + await expect(insertEndpoint(endpoint)).rejects.toThrow(); + expect(isAllowedPushEndpoint(endpoint)).toBe(false); + }); + }); + + describe("TournamentReminders", () => { + const createTournament = async (start: string) => { + const organizer = await fx.player(); + const [options] = await postgres.query>( + `INSERT INTO match_options (mr, best_of, type, map_pool_id, map_veto, region_veto, regions) + SELECT 8, 1, 'Wingman', id, false, true, '{TestA}' + FROM map_pools WHERE type = 'Wingman' AND seed = true RETURNING id`, + ); + const [tournament] = await postgres.query>( + `INSERT INTO tournaments (name, start, organizer_steam_id, match_options_id, status) + VALUES ($1, now() + $2::interval, $3, $4, 'RegistrationOpen') RETURNING id`, + [fx.nextName("cup"), start, organizer, options.id], + ); + return tournament.id; + }; + + const run = () => + new TournamentReminders( + logger as any, + postgres, + notifications() as any, + ).process(); + + it("finds nothing for a tournament that is far out", async () => { + await createTournament("5 days"); + + expect(await run()).toBe(0); + }); + + it("fires only the day window at 20 hours out", async () => { + // The floor on each window is what stops a tournament created shortly + // before it starts firing both reminders in the same pass. + const tournamentId = await createTournament("20 hours"); + await postgres.query( + `INSERT INTO tournament_teams (tournament_id, name, owner_steam_id) + VALUES ($1, 'A team', $2::bigint)`, + [tournamentId, await fx.player()], + ); + + expect(await run()).toBe(1); + + const rows = await postgres.query>( + `SELECT entity_id FROM notifications WHERE type = 'TournamentReminder'`, + ); + expect(rows[0]?.entity_id).toBe(`${tournamentId}:1d`); + }); + + it("does not send the same window twice", async () => { + const tournamentId = await createTournament("20 hours"); + await postgres.query( + `INSERT INTO tournament_teams (tournament_id, name, owner_steam_id) + VALUES ($1, 'A team', $2::bigint)`, + [tournamentId, await fx.player()], + ); + + expect(await run()).toBe(1); + expect(await run()).toBe(0); + }); + }); +}); diff --git a/yarn.lock b/yarn.lock index 6a5e09fa..c074daac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2179,6 +2179,13 @@ dependencies: uuid "*" +"@types/web-push@^3.6.4": + version "3.6.4" + resolved "https://registry.yarnpkg.com/@types/web-push/-/web-push-3.6.4.tgz#4c6e10d3963ba51e7b4b8fff185f43612c0d1346" + integrity sha512-GnJmSr40H3RAnj0s34FNTcJi1hmWFV5KXugE0mYWnYhgTAHLJ/dJKAwDmvPJYMke0RplY2XE9LnM4hqSqKIjhQ== + dependencies: + "@types/node" "*" + "@types/ws@^8.5.10": version "8.18.1" resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.1.tgz#48464e4bf2ddfd17db13d845467f6070ffea4aa9" @@ -2769,6 +2776,16 @@ asap@^2.0.0: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== +asn1.js@^5.3.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + asn1@^0.2.6: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -2968,6 +2985,11 @@ block-stream2@^2.1.0: dependencies: readable-stream "^3.4.0" +bn.js@^4.0.0: + version "4.12.5" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.5.tgz#74f119ffecd823168d188eae06d97ea40835c489" + integrity sha512-3aRg6/JxfffFD+OlOjOFR3Vo79l39ooBTFucxx+MT3dhCtzn3EmiUPQo+6/OZuI2jbXi3YKgmiTFBgChQMwIRQ== + body-parser@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-2.2.2.tgz#1a32cdb966beaf68de50a9dfbe5b58f83cb8890c" @@ -4654,6 +4676,19 @@ http-errors@^2.0.0, http-errors@^2.0.1, http-errors@~2.0.1: statuses "~2.0.2" toidentifier "~1.0.1" +http_ece@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http_ece/-/http_ece-1.2.0.tgz#84d5885f052eae8c9b075eee4d2eb5105f114479" + integrity sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA== + +https-proxy-agent@^7.0.0: + version "7.0.6" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== + dependencies: + agent-base "^7.1.2" + debug "4" + human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" @@ -4717,7 +4752,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -5400,7 +5435,7 @@ jwa@^2.0.1: ecdsa-sig-formatter "1.0.11" safe-buffer "^5.0.1" -jws@^4.0.1: +jws@^4.0.0, jws@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.1.tgz#07edc1be8fac20e677b283ece261498bd38f0690" integrity sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA== @@ -5758,6 +5793,11 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + minimatch@^10.2.2: version "10.2.5" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.5.tgz#bd48687a0be38ed2961399105600f832095861d1" @@ -6833,7 +6873,7 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -"safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -7981,6 +8021,17 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" +web-push@^3.6.7: + version "3.6.7" + resolved "https://registry.yarnpkg.com/web-push/-/web-push-3.6.7.tgz#5f5e645951153e37ef90a6ddea5c150ea0f709e1" + integrity sha512-OpiIUe8cuGjrj3mMBFWY+e4MMIkW3SVT+7vEIjvD9kejGUypv8GPDf84JdPWskK8zMRIJ6xYGm+Kxr8YkPyA0A== + dependencies: + asn1.js "^5.3.0" + http_ece "1.2.0" + https-proxy-agent "^7.0.0" + jws "^4.0.0" + minimist "^1.2.5" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" From df8a7df827fd3e88a85940fe5e8f91f87474a854 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 22:36:52 -0400 Subject: [PATCH 09/17] wip --- src/notifications/push/push-notifications.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications/push/push-notifications.service.spec.ts b/src/notifications/push/push-notifications.service.spec.ts index 6319cbd0..e634ece0 100644 --- a/src/notifications/push/push-notifications.service.spec.ts +++ b/src/notifications/push/push-notifications.service.spec.ts @@ -21,7 +21,7 @@ const notification = (overrides: Record = {}) => ({ const subscription = (id: string) => ({ id, - endpoint: `https://push.example.com/${id}`, + endpoint: `https://fcm.googleapis.com/fcm/send/${id}`, p256dh: "p256dh", auth: "auth", }); From 27e238e8690e717e8595b218ab75b86480a3c6da Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 23:20:22 -0400 Subject: [PATCH 10/17] wip --- generated/schema.ts | 10 +- hasura/enums/notification-types.sql | 10 +- .../notifications/is_quiet_hours.sql | 37 ++++ .../default/tables/public_team_invites.yaml | 11 ++ .../public_tournament_team_invites.yaml | 11 ++ .../down.sql | 3 + .../up.sql | 24 +++ .../1877000000600_player_quiet_hours/down.sql | 4 + .../1877000000600_player_quiet_hours/up.sql | 7 + src/awards/awards.module.ts | 4 +- src/awards/awards.service.ts | 37 ++++ src/demos/demos.controller.ts | 38 ++++ src/demos/demos.module.ts | 2 + src/draft-games/draft-game.service.ts | 33 ++++ src/draft-games/draft-games.module.ts | 2 + src/invites/invites.controller.ts | 116 +++++++++++- src/invites/invites.module.ts | 4 +- .../camera/camera-monitor.service.spec.ts | 40 ++++ src/matches/camera/camera-monitor.service.ts | 15 ++ src/matches/clips/clips.module.ts | 2 + src/matches/clips/clips.service.spec.ts | 1 + src/matches/clips/clips.service.ts | 39 ++++ src/matches/events/MatchMapStatusEvent.ts | 5 + src/matches/jobs/EventReminders.ts | 126 +++++++++++++ src/matches/matches.controller.ts | 12 ++ src/matches/matches.module.ts | 13 ++ src/notifications/notifications.service.ts | 21 +++ .../preferences/notification-categories.ts | 18 +- .../notification-preferences.controller.ts | 23 ++- .../notification-preferences.service.ts | 64 ++++++- .../push/push-notifications.service.ts | 11 +- src/sockets/sockets.module.ts | 2 +- test/notifications.spec.ts | 174 ++++++++++++++++++ 33 files changed, 905 insertions(+), 14 deletions(-) create mode 100644 hasura/functions/notifications/is_quiet_hours.sql create mode 100644 hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql create mode 100644 hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql create mode 100644 hasura/migrations/default/1877000000600_player_quiet_hours/down.sql create mode 100644 hasura/migrations/default/1877000000600_player_quiet_hours/up.sql create mode 100644 src/matches/jobs/EventReminders.ts diff --git a/generated/schema.ts b/generated/schema.ts index d3ee27c7..0397991d 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -4401,7 +4401,7 @@ export interface e_notification_types_aggregate_fields { /** unique or primary key constraints on table "e_notification_types" */ export type e_notification_types_constraint = 'e_notification_types_pkey' -export type e_notification_types_enum = 'ChatMessage' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'EloRecompute' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'StorageScan' | 'TournamentCreated' | 'TournamentReminder' +export type e_notification_types_enum = 'ChatMessage' | 'EventReminder' | 'SeasonEnded' | 'MatchStatsReady' | 'ClipReady' | 'AwardGranted' | 'TeamInvite' | 'TournamentTeamInvite' | 'DraftInvite' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'EloRecompute' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'StorageScan' | 'TournamentCreated' | 'TournamentReminder' /** aggregate max on columns */ @@ -120670,6 +120670,14 @@ export const enumENotificationTypesConstraint = { export const enumENotificationTypesEnum = { ChatMessage: 'ChatMessage' as const, + EventReminder: 'EventReminder' as const, + SeasonEnded: 'SeasonEnded' as const, + MatchStatsReady: 'MatchStatsReady' as const, + ClipReady: 'ClipReady' as const, + AwardGranted: 'AwardGranted' as const, + TeamInvite: 'TeamInvite' as const, + TournamentTeamInvite: 'TournamentTeamInvite' as const, + DraftInvite: 'DraftInvite' as const, DedicatedServerRconStatus: 'DedicatedServerRconStatus' as const, DedicatedServerStatus: 'DedicatedServerStatus' as const, EloRecompute: 'EloRecompute' as const, diff --git a/hasura/enums/notification-types.sql b/hasura/enums/notification-types.sql index c3329b11..f5fedd31 100644 --- a/hasura/enums/notification-types.sql +++ b/hasura/enums/notification-types.sql @@ -32,6 +32,14 @@ INSERT INTO e_notification_types ("value", "description") VALUES ('ChatMessage', 'A new message in a chat you are part of'), ('TournamentCreated', 'Registration opened for a tournament'), ('TournamentReminder', 'A tournament you are registered for starts soon'), - ('NewsPublished', 'A news article was published') + ('NewsPublished', 'A news article was published'), + ('TeamInvite', 'You were invited to a team'), + ('TournamentTeamInvite', 'You were invited to play in a tournament'), + ('DraftInvite', 'You were invited to a draft lobby'), + ('MatchStatsReady', 'Stats for a match you played are ready'), + ('ClipReady', 'A clip you requested finished rendering'), + ('AwardGranted', 'You received an award'), + ('EventReminder', 'An event you are attending starts soon'), + ('SeasonEnded', 'A season has ended') ON CONFLICT("value") DO UPDATE SET "description" = EXCLUDED."description"; diff --git a/hasura/functions/notifications/is_quiet_hours.sql b/hasura/functions/notifications/is_quiet_hours.sql new file mode 100644 index 00000000..91623477 --- /dev/null +++ b/hasura/functions/notifications/is_quiet_hours.sql @@ -0,0 +1,37 @@ +-- True when the player's local time falls inside their quiet window. +-- +-- Gates PUSH only. The bell keeps collecting, so nothing is lost -- quiet hours +-- silence the buzz, they don't drop the notification. +CREATE OR REPLACE FUNCTION public.is_quiet_hours( + _start time, + _end time, + _timezone text +) RETURNS boolean +LANGUAGE plpgsql +IMMUTABLE +AS $$ +DECLARE + _local time; +BEGIN + -- Unset, or a zero-width window, means quiet hours are off. + IF _start IS NULL OR _end IS NULL OR _start = _end THEN + RETURN false; + END IF; + + BEGIN + _local := (now() AT TIME ZONE COALESCE(_timezone, 'UTC'))::time; + EXCEPTION WHEN OTHERS THEN + -- An unrecognised zone would otherwise raise and take the whole + -- recipient query with it, silencing everyone rather than nobody. + _local := (now() AT TIME ZONE 'UTC')::time; + END; + + -- A window that wraps midnight (22:00 -> 07:00) is the common case, so it + -- gets its own branch rather than being handled by accident. + IF _start < _end THEN + RETURN _local >= _start AND _local < _end; + END IF; + + RETURN _local >= _start OR _local < _end; +END; +$$; diff --git a/hasura/metadata/databases/default/tables/public_team_invites.yaml b/hasura/metadata/databases/default/tables/public_team_invites.yaml index ab19e970..3b8bb15d 100644 --- a/hasura/metadata/databases/default/tables/public_team_invites.yaml +++ b/hasura/metadata/databases/default/tables/public_team_invites.yaml @@ -1,6 +1,17 @@ table: name: team_invites schema: public +event_triggers: + - name: team_invite_events + definition: + enable_manual: false + insert: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 3 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' object_relationships: - name: invited_by using: diff --git a/hasura/metadata/databases/default/tables/public_tournament_team_invites.yaml b/hasura/metadata/databases/default/tables/public_tournament_team_invites.yaml index 0ca78298..310ea3c5 100644 --- a/hasura/metadata/databases/default/tables/public_tournament_team_invites.yaml +++ b/hasura/metadata/databases/default/tables/public_tournament_team_invites.yaml @@ -1,6 +1,17 @@ table: name: tournament_team_invites schema: public +event_triggers: + - name: tournament_team_invite_events + definition: + enable_manual: false + insert: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 3 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' object_relationships: - name: invited_by using: diff --git a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql new file mode 100644 index 00000000..1ceab576 --- /dev/null +++ b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql @@ -0,0 +1,3 @@ +-- One-way: the sweep cannot distinguish rows it retracted from rows retracted +-- by the application, and un-deleting both would resurrect the backlog. +SELECT 1; diff --git a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql new file mode 100644 index 00000000..114149f2 --- /dev/null +++ b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql @@ -0,0 +1,24 @@ +-- One-off sweep of the alerts that accumulated before they were retracted on +-- resume/finish/cancel (see NotificationsService.resolveMatchAlerts). +-- +-- "Map is paused" and "waiting for a server" describe a condition, so any of +-- them still outstanding against a match that has since stopped is describing +-- nothing. Live matches are deliberately left alone -- their alerts may still +-- be true. +UPDATE public.notifications n + SET deleted_at = now() + FROM public.matches m + WHERE n.type = 'MatchStatusChange' + AND n.deleted_at IS NULL + AND m.id::text = n.entity_id + AND m.status IN ('Canceled', 'Finished', 'Forfeit', 'Tie', 'Surrendered'); + +-- Alerts whose match no longer exists at all can never be resolved by an event, +-- so they would otherwise sit in the bell forever. +UPDATE public.notifications n + SET deleted_at = now() + WHERE n.type = 'MatchStatusChange' + AND n.deleted_at IS NULL + AND NOT EXISTS ( + SELECT 1 FROM public.matches m WHERE m.id::text = n.entity_id + ); diff --git a/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql b/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql new file mode 100644 index 00000000..2ce15dc7 --- /dev/null +++ b/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql @@ -0,0 +1,4 @@ +ALTER TABLE "public"."players" + DROP COLUMN IF EXISTS "quiet_hours_start", + DROP COLUMN IF EXISTS "quiet_hours_end", + DROP COLUMN IF EXISTS "notification_timezone"; diff --git a/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql b/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql new file mode 100644 index 00000000..1020a51f --- /dev/null +++ b/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql @@ -0,0 +1,7 @@ +-- Quiet hours are stored as local wall-clock times plus the player's zone, +-- rather than as a UTC window, so the window keeps meaning "10pm to 7am" across +-- daylight-saving shifts and travel instead of drifting by an hour. +ALTER TABLE "public"."players" + ADD COLUMN IF NOT EXISTS "quiet_hours_start" time, + ADD COLUMN IF NOT EXISTS "quiet_hours_end" time, + ADD COLUMN IF NOT EXISTS "notification_timezone" text; diff --git a/src/awards/awards.module.ts b/src/awards/awards.module.ts index edafbe6a..bafb0572 100644 --- a/src/awards/awards.module.ts +++ b/src/awards/awards.module.ts @@ -1,4 +1,5 @@ import { Module } from "@nestjs/common"; +import { NotificationsModule } from "../notifications/notifications.module"; import { AwardsService } from "./awards.service"; import { AwardsController } from "./awards.controller"; import { S3Module } from "../s3/s3.module"; @@ -7,7 +8,8 @@ import { SystemModule } from "../system/system.module"; import { loggerFactory } from "../utilities/LoggerFactory"; @Module({ - imports: [S3Module, PostgresModule, SystemModule], + imports: [ + NotificationsModule,S3Module, PostgresModule, SystemModule], providers: [AwardsService, loggerFactory()], controllers: [AwardsController], exports: [AwardsService], diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts index 1bfa341e..5f1ef453 100644 --- a/src/awards/awards.service.ts +++ b/src/awards/awards.service.ts @@ -9,6 +9,7 @@ import { } from "@nestjs/common"; import { S3Service } from "../s3/s3.service"; import { PostgresService } from "../postgres/postgres.service"; +import { NotificationsService } from "../notifications/notifications.service"; import { User } from "../auth/types/User"; const EXTENSION_BY_MIMETYPE: Record = { @@ -65,6 +66,7 @@ export class AwardsService { private readonly logger: Logger, private readonly s3: S3Service, private readonly postgres: PostgresService, + private readonly notifications: NotificationsService, ) {} public async listAwards(): Promise { @@ -225,9 +227,44 @@ export class AwardsService { await this.grantToRoster(input, tournamentTeamId); } + // A team grant fans out to the roster through grantToRoster, which comes + // back through here per player, so notifying on the player branch alone + // covers both. + if (input.player_steam_id) { + void this.notifyAwarded(input.player_steam_id, input.award_id, granted.id); + } + return granted; } + private async notifyAwarded( + steamId: string, + awardId: string, + recipientId: string, + ) { + try { + const [award] = await this.postgres.query>( + `SELECT name FROM public.awards WHERE id = $1::uuid`, + [awardId], + ); + + await this.notifications.notifyPlayers("AwardGranted", { + title: "Award Received", + message: `You were awarded ${NotificationsService.escapeHtml( + award?.name ?? "an award", + )}.`, + role: "user", + entity_id: recipientId, + steamIds: [steamId], + }); + } catch (error) { + this.logger.warn( + `unable to notify ${steamId} of award ${awardId}`, + error, + ); + } + } + public assertSingleScope(input: { tournament_id?: string | null; event_id?: string | null; diff --git a/src/demos/demos.controller.ts b/src/demos/demos.controller.ts index 5c5dedb3..ca9ce867 100644 --- a/src/demos/demos.controller.ts +++ b/src/demos/demos.controller.ts @@ -16,6 +16,7 @@ import { HasuraService } from "../hasura/hasura.service"; import { HasuraAction } from "../hasura/hasura.controller"; import { S3Service } from "../s3/s3.service"; import { PostgresService } from "../postgres/postgres.service"; +import { NotificationsService } from "../notifications/notifications.service"; import archiver from "archiver"; import zlib from "zlib"; import path from "path"; @@ -31,6 +32,7 @@ export class DemosController { protected readonly postgres: PostgresService, protected readonly logger: Logger, protected readonly demoMetadata: DemoMetadataService, + private readonly notifications: NotificationsService, ) {} private static isValidDemoName(demo: unknown): demo is string { @@ -293,9 +295,45 @@ export class DemosController { await this.demoMetadata.persistParsed(matchMapDemoId, parsed); + // The end of the wait the stats-ready countdown has been showing since + // WaitingForTV (see the tbu_match_maps trigger). Everyone who played is + // waiting on exactly this. + void this.notifyStatsReady(matchId); + return response.status(200).json({ matchMapDemoId }); } + private async notifyStatsReady(matchId: string) { + try { + const players = await this.postgres.query>( + `SELECT DISTINCT mlp.steam_id::text AS steam_id + FROM public.matches m + JOIN public.match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE m.id = $1::uuid + AND mlp.steam_id IS NOT NULL`, + [matchId], + ); + + if (players.length === 0) { + return; + } + + await this.notifications.notifyPlayers("MatchStatsReady", { + title: "Match Stats Ready", + message: `Your match stats are ready. View Match`, + role: "user", + entity_id: matchId, + steamIds: players.map((player) => player.steam_id), + }); + } catch (error) { + this.logger.warn( + `unable to notify players that stats are ready for ${matchId}`, + error, + ); + } + } + private async upsertDemoRow( matchId: string, mapId: string, diff --git a/src/demos/demos.module.ts b/src/demos/demos.module.ts index 7098b17a..f4415275 100644 --- a/src/demos/demos.module.ts +++ b/src/demos/demos.module.ts @@ -1,4 +1,5 @@ import { Module } from "@nestjs/common"; +import { NotificationsModule } from "../notifications/notifications.module"; import { DemosController } from "../demos/demos.controller"; import { DemoReparseController } from "./demo-reparse.controller"; import { BullModule, InjectQueue } from "@nestjs/bullmq"; @@ -20,6 +21,7 @@ import { DemoReparseService } from "./demo-reparse.service"; @Module({ imports: [ + NotificationsModule, S3Module, AuthModule, HasuraModule, diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index 5e997ddc..90171426 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -13,6 +13,7 @@ import { e_draft_game_captain_selection_enum, } from "generated"; import { HasuraService } from "src/hasura/hasura.service"; +import { NotificationsService } from "../notifications/notifications.service"; import { CacheService } from "src/cache/cache.service"; import { ExpectedPlayers } from "src/discord-bot/enums/ExpectedPlayers"; import { isRoleAbove } from "src/utilities/isRoleAbove"; @@ -66,6 +67,7 @@ export class DraftGameService { @Inject(forwardRef(() => DraftService)) private readonly draftService: DraftService, @InjectQueue(DraftGameQueues.DraftGames) private queue: Queue, + private readonly notifications: NotificationsService, ) {} public static lockKey(draftGameId: string): string { @@ -860,10 +862,41 @@ export class DraftGameService { if (status === "Accepted") { await this.clearOtherRequests(steamId, draftGameId); } + + if (status === "Invited") { + // Notified from here rather than from a table trigger: + // draft_game_players is keyed (draft_game_id, steam_id) with no uuid + // of its own, and a trigger payload carries steam_id as a JSON number + // -- past 2^53, so there would be no safe way to tell which row fired. + void this.notifyOfDraftInvite(steamId, draftGameId, user); + } }); }); } + private async notifyOfDraftInvite( + steamId: string, + draftGameId: string, + invitedBy: User, + ) { + try { + await this.notifications.notifyPlayers("DraftInvite", { + title: "Draft Invite", + message: `${NotificationsService.escapeHtml(invitedBy?.name)} invited you to a draft lobby.`, + role: "user", + entity_id: draftGameId, + steamIds: [steamId], + }); + } catch (error) { + // The invite row is already written; a failed notification must not fail + // the invite. + this.logger.warn( + `unable to notify ${steamId} of draft invite ${draftGameId}`, + error, + ); + } + } + public async respondDraftInvite( user: User, draftGameId: string, diff --git a/src/draft-games/draft-games.module.ts b/src/draft-games/draft-games.module.ts index f91c90c0..1c77f8c5 100644 --- a/src/draft-games/draft-games.module.ts +++ b/src/draft-games/draft-games.module.ts @@ -6,6 +6,7 @@ import { HasuraModule } from "src/hasura/hasura.module"; import { RedisModule } from "src/redis/redis.module"; import { CacheModule } from "src/cache/cache.module"; import { ChatModule } from "src/chat/chat.module"; +import { NotificationsModule } from "../notifications/notifications.module"; import { MatchesModule } from "src/matches/matches.module"; import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; import { BullBoardModule } from "@bull-board/nestjs"; @@ -25,6 +26,7 @@ import { CleanExpiredDraftGames } from "./jobs/CleanExpiredDraftGames"; HasuraModule, CacheModule, ChatModule, + NotificationsModule, forwardRef(() => MatchesModule), BullModule.registerQueue({ name: DraftGameQueues.DraftGames, diff --git a/src/invites/invites.controller.ts b/src/invites/invites.controller.ts index 7e596ee3..4555e829 100644 --- a/src/invites/invites.controller.ts +++ b/src/invites/invites.controller.ts @@ -1,11 +1,121 @@ -import { Controller } from "@nestjs/common"; +import { Controller, Logger } from "@nestjs/common"; import { HasuraService } from "../hasura/hasura.service"; -import { HasuraAction } from "../hasura/hasura.controller"; +import { HasuraAction, HasuraEvent } from "../hasura/hasura.controller"; +import { HasuraEventData } from "../hasura/types/HasuraEventData"; +import { PostgresService } from "../postgres/postgres.service"; +import { NotificationsService } from "../notifications/notifications.service"; +import { e_notification_types_enum } from "generated/schema"; import { User } from "../auth/types/User"; @Controller("invites") export class InvitesController { - constructor(private readonly hasura: HasuraService) {} + constructor( + private readonly logger: Logger, + private readonly hasura: HasuraService, + private readonly postgres: PostgresService, + private readonly notifications: NotificationsService, + ) {} + + // Invites arrive as direct GraphQL inserts from the web, so a table trigger + // is the only hook that catches every path that can create one. + // + // Each handler re-reads the row by its uuid rather than trusting the event + // payload: Hasura serialises bigints as JSON numbers, and every steam id is + // far past the point where that stays exact. + @HasuraEvent() + public async team_invite_events(data: HasuraEventData<{ id: string }>) { + if (data.op !== "INSERT") { + return; + } + + const [invite] = await this.postgres.query< + Array<{ steam_id: string; team_name: string; invited_by: string }> + >( + `SELECT ti.steam_id::text AS steam_id, + t.name AS team_name, + COALESCE(p.name, 'Someone') AS invited_by + FROM public.team_invites ti + JOIN public.teams t ON t.id = ti.team_id + LEFT JOIN public.players p ON p.steam_id = ti.invited_by_player_steam_id + WHERE ti.id = $1::uuid`, + [data.new.id], + ); + + if (!invite) { + return; + } + + await this.notifyInvited("TeamInvite", { + steamId: invite.steam_id, + title: "Team Invite", + body: `${NotificationsService.escapeHtml(invite.invited_by)} invited you to ${NotificationsService.escapeHtml(invite.team_name)}.`, + entityId: data.new.id, + }); + } + + @HasuraEvent() + public async tournament_team_invite_events( + data: HasuraEventData<{ id: string }>, + ) { + if (data.op !== "INSERT") { + return; + } + + const [invite] = await this.postgres.query< + Array<{ + steam_id: string; + team_name: string; + tournament_name: string; + invited_by: string; + }> + >( + `SELECT tti.steam_id::text AS steam_id, + tt.name AS team_name, + tour.name AS tournament_name, + COALESCE(p.name, 'Someone') AS invited_by + FROM public.tournament_team_invites tti + JOIN public.tournament_teams tt ON tt.id = tti.tournament_team_id + JOIN public.tournaments tour ON tour.id = tt.tournament_id + LEFT JOIN public.players p ON p.steam_id = tti.invited_by_player_steam_id + WHERE tti.id = $1::uuid`, + [data.new.id], + ); + + if (!invite) { + return; + } + + await this.notifyInvited("TournamentTeamInvite", { + steamId: invite.steam_id, + title: "Tournament Invite", + body: `${NotificationsService.escapeHtml(invite.invited_by)} invited you to play for ${NotificationsService.escapeHtml(invite.team_name)} in ${NotificationsService.escapeHtml(invite.tournament_name)}.`, + entityId: data.new.id, + }); + } + + public async notifyInvited( + type: e_notification_types_enum, + invite: { + steamId: string; + title: string; + body: string; + entityId: string; + }, + ) { + try { + await this.notifications.notifyPlayers(type, { + title: invite.title, + message: invite.body, + role: "user", + entity_id: invite.entityId, + steamIds: [invite.steamId], + }); + } catch (error) { + // The invite itself is already written; losing its notification must not + // surface as a failed insert to whoever sent it. + this.logger.warn(`unable to notify of ${type} ${invite.entityId}`, error); + } + } @HasuraAction() public async acceptInvite(data: { diff --git a/src/invites/invites.module.ts b/src/invites/invites.module.ts index a248d7d1..40769b37 100644 --- a/src/invites/invites.module.ts +++ b/src/invites/invites.module.ts @@ -1,10 +1,12 @@ import { Module } from "@nestjs/common"; import { InvitesController } from "./invites.controller"; import { HasuraModule } from "src/hasura/hasura.module"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { NotificationsModule } from "src/notifications/notifications.module"; import { loggerFactory } from "src/utilities/LoggerFactory"; @Module({ - imports: [HasuraModule], + imports: [HasuraModule, PostgresModule, NotificationsModule], providers: [loggerFactory()], controllers: [InvitesController], }) diff --git a/src/matches/camera/camera-monitor.service.spec.ts b/src/matches/camera/camera-monitor.service.spec.ts index 27e9e63b..8ae26306 100644 --- a/src/matches/camera/camera-monitor.service.spec.ts +++ b/src/matches/camera/camera-monitor.service.spec.ts @@ -19,6 +19,7 @@ describe("CameraMonitorService", () => { let rconClient: { send: jest.Mock }; let rcon: { connect: jest.Mock }; let mediaMtx: { listPaths: jest.Mock }; + let sockets: { broadcastMessage: jest.Mock }; let service: CameraMonitorService; const path = (steamId: string) => `camera-${MATCH_ID}-${steamId}`; @@ -43,12 +44,14 @@ describe("CameraMonitorService", () => { rconClient = { send: jest.fn().mockResolvedValue("") }; rcon = { connect: jest.fn().mockResolvedValue(rconClient) }; mediaMtx = { listPaths: jest.fn() }; + sockets = { broadcastMessage: jest.fn().mockResolvedValue(undefined) }; service = new CameraMonitorService( new Logger("CameraMonitorTest"), postgres as any, rcon as any, mediaMtx as any, + sockets as any, { getConnection: () => redis } as any, ); }); @@ -172,4 +175,41 @@ describe("CameraMonitorService", () => { expect(redis.setex).not.toHaveBeenCalled(); }); + + it("pushes a camera-status change to watching clients", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(sockets.broadcastMessage).toHaveBeenCalledWith("camera-status", { + matchId: MATCH_ID, + }); + }); + + // The push is what stops a grid sitting stale for a whole poll, so it must + // not be coupled to the game server being reachable. + it("still pushes when rcon is unreachable", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + rcon.connect.mockResolvedValue(null); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(sockets.broadcastMessage).toHaveBeenCalledWith("camera-status", { + matchId: MATCH_ID, + }); + }); + + // Nothing changed means nothing to say: a push per pass would have every + // client refetching every 10s for no reason. + it("does not push when the offending set is unchanged", async () => { + redis.hgetall.mockResolvedValue({ [STEAM_ID]: "500:1000:live" }); + redis.get.mockResolvedValue(STEAM_ID); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(sockets.broadcastMessage).not.toHaveBeenCalled(); + }); }); diff --git a/src/matches/camera/camera-monitor.service.ts b/src/matches/camera/camera-monitor.service.ts index cc350cdb..8a54f115 100644 --- a/src/matches/camera/camera-monitor.service.ts +++ b/src/matches/camera/camera-monitor.service.ts @@ -4,6 +4,7 @@ import { PostgresService } from "../../postgres/postgres.service"; import { RedisManagerService } from "../../redis/redis-manager/redis-manager.service"; import { RconService } from "../../rcon/rcon.service"; import { MediaMtxService } from "../../mediamtx/mediamtx.service"; +import { SocketsService } from "../../sockets/sockets.service"; import { CameraService, type CameraHealth } from "./camera.service"; // How long a camera may be anything other than `live` before the match is @@ -35,6 +36,7 @@ export class CameraMonitorService { private readonly postgres: PostgresService, private readonly rcon: RconService, private readonly mediaMtx: MediaMtxService, + private readonly sockets: SocketsService, redisManager: RedisManagerService, ) { this.redis = redisManager.getConnection(); @@ -183,6 +185,19 @@ export class CameraMonitorService { return; } + // Tell every watching surface to re-read now rather than wait out its poll. + // Deliberately carries no player data: this reaches all connected clients, + // so the actual status still has to be fetched through the authorized + // endpoint. Emitted before the rcon call so the UI still updates when the + // game server is unreachable. + void this.sockets.broadcastMessage("camera-status", { matchId }).catch( + (error: unknown): void => { + this.logger.warn( + `[${matchId}] failed to push camera status: ${(error as Error)?.message ?? error}`, + ); + }, + ); + const rcon = await this.rcon.connect(serverId); if (!rcon) { diff --git a/src/matches/clips/clips.module.ts b/src/matches/clips/clips.module.ts index b34102c4..f69a1f5d 100644 --- a/src/matches/clips/clips.module.ts +++ b/src/matches/clips/clips.module.ts @@ -1,4 +1,5 @@ import { Module } from "@nestjs/common"; +import { NotificationsModule } from "../../notifications/notifications.module"; import { BullModule, InjectQueue } from "@nestjs/bullmq"; import { BullBoardModule } from "@bull-board/nestjs"; import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; @@ -24,6 +25,7 @@ import { ReconcileQueuedHighlights } from "./jobs/ReconcileQueuedHighlights"; @Module({ imports: [ + NotificationsModule, HasuraModule, PostgresModule, S3Module, diff --git a/src/matches/clips/clips.service.spec.ts b/src/matches/clips/clips.service.spec.ts index f63aa835..b7bb86bf 100644 --- a/src/matches/clips/clips.service.spec.ts +++ b/src/matches/clips/clips.service.spec.ts @@ -29,6 +29,7 @@ describe("ClipsService", () => { { release: jest.fn() } as any, { getConnection: jest.fn() } as any, batchQueue as any, + { notifyPlayers: jest.fn() } as any, ); }); diff --git a/src/matches/clips/clips.service.ts b/src/matches/clips/clips.service.ts index 26e34c92..e1ad0e11 100644 --- a/src/matches/clips/clips.service.ts +++ b/src/matches/clips/clips.service.ts @@ -4,6 +4,7 @@ import { Readable } from "node:stream"; import { e_player_roles_enum } from "generated/schema"; import { HasuraService } from "../../hasura/hasura.service"; import { PostgresService } from "../../postgres/postgres.service"; +import { NotificationsService } from "../../notifications/notifications.service"; import { S3Service } from "../../s3/s3.service"; import { GameStreamerService } from "../game-streamer/game-streamer.service"; import { SteamAccountService } from "../game-streamer/steam-account.service"; @@ -39,6 +40,7 @@ export class ClipsService { private readonly redisManager: RedisManagerService, @InjectQueue(MatchQueues.Clips) private readonly batchQueue: Queue, + private readonly notifications: NotificationsService, ) {} public static GetClipS3Key(userSteamId: string, jobId: string) { @@ -1528,6 +1530,43 @@ export class ClipsService { id: true, }, }); + + if (!isBoot && body.status === "completed") { + // Renders take minutes and people navigate away, so the finish is the + // whole reason to notify at all. + void this.notifyClipReady(jobId); + } + } + + private async notifyClipReady(jobId: string) { + try { + const [job] = await this.postgres.query< + Array<{ user_steam_id: string; match_id: string | null }> + >( + `SELECT crj.user_steam_id::text AS user_steam_id, + mm.match_id::text AS match_id + FROM public.clip_render_jobs crj + LEFT JOIN public.match_maps mm ON mm.id = crj.match_map_id + WHERE crj.id = $1::uuid`, + [jobId], + ); + + if (!job?.user_steam_id) { + return; + } + + await this.notifications.notifyPlayers("ClipReady", { + title: "Clip Ready", + message: job.match_id + ? `Your clip is ready. View Match` + : "Your clip is ready to watch.", + role: "user", + entity_id: jobId, + steamIds: [job.user_steam_id], + }); + } catch (error) { + this.logger.warn(`unable to notify of finished clip ${jobId}`, error); + } } private async resolveClipRound( diff --git a/src/matches/events/MatchMapStatusEvent.ts b/src/matches/events/MatchMapStatusEvent.ts index 2243df29..e8b37e68 100644 --- a/src/matches/events/MatchMapStatusEvent.ts +++ b/src/matches/events/MatchMapStatusEvent.ts @@ -100,6 +100,11 @@ export default class MatchMapStatusEvent extends MatchEventProcessor<{ if (this.data.status === "Paused") { void this.notifications.sendMatchMapPauseNotification(this.matchId); + } else { + // Any other status means the pause (or the wait for a server) is over, so + // the alert describing it is stale. Retracting here covers resume, knife, + // overtime and finish in one place. + void this.notifications.resolveMatchAlerts(this.matchId); } if (isFinished) { diff --git a/src/matches/jobs/EventReminders.ts b/src/matches/jobs/EventReminders.ts new file mode 100644 index 00000000..a5ad63dd --- /dev/null +++ b/src/matches/jobs/EventReminders.ts @@ -0,0 +1,126 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { MatchQueues } from "../enums/MatchQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { PostgresService } from "../../postgres/postgres.service"; +import { NotificationsService } from "../../notifications/notifications.service"; + +type DueEvent = { + id: string; + name: string; + label: string; + window: string; +}; + +type EndedSeason = { + id: string; + number: string | null; +}; + +@UseQueue("Matches", MatchQueues.ScheduledMatches) +export class EventReminders extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly notifications: NotificationsService, + ) { + super(); + } + + async process(): Promise { + return (await this.remindUpcomingEvents()) + (await this.announceEndedSeasons()); + } + + // Same shape as TournamentReminders: two windows, each with a floor so an + // event created a day out doesn't fire both in the same pass, and a distinct + // entity_id per (event, window) so NOT EXISTS is enough to dedupe. + private async remindUpcomingEvents(): Promise { + const due = await this.postgres.query( + `WITH reminder_windows(window_key, label, lead_time, floor_time) AS ( + VALUES ('1w', 'starts in about a week', interval '7 days', interval '1 day'), + ('1d', 'starts tomorrow', interval '1 day', interval '0') + ) + SELECT e.id::text AS id, e.name, w.label, w.window_key AS window + FROM public.events e + CROSS JOIN reminder_windows w + WHERE e.starts_at IS NOT NULL + AND e.starts_at > now() + w.floor_time + AND e.starts_at <= now() + w.lead_time + AND NOT EXISTS ( + SELECT 1 FROM public.notifications n + WHERE n.type = 'EventReminder' + AND n.entity_id = e.id::text || ':' || w.window_key + )`, + ); + + let sent = 0; + for (const event of due) { + const attendees = await this.postgres.query>( + `SELECT DISTINCT steam_id::text AS steam_id FROM ( + SELECT steam_id FROM public.event_players WHERE event_id = $1::uuid + UNION + SELECT steam_id FROM public.event_organizers WHERE event_id = $1::uuid + ) attending`, + [event.id], + ); + + if (attendees.length === 0) { + continue; + } + + await this.notifications.notifyPlayers("EventReminder", { + title: "Event Starting Soon", + message: `${NotificationsService.escapeHtml( + event.name, + )} ${event.label}.`, + role: "user", + entity_id: `${event.id}:${event.window}`, + steamIds: attendees.map((attendee) => attendee.steam_id), + }); + + sent++; + } + + return sent; + } + + // A season ends by its own clock rather than through an action, so there is + // no call site to hang this off -- it has to be noticed. + private async announceEndedSeasons(): Promise { + const ended = await this.postgres.query( + `SELECT s.id::text AS id, s.number::text AS number + FROM public.seasons s + WHERE s.ends_at IS NOT NULL + AND s.ends_at <= now() + -- Only just ended. Without this every historical season announces + -- itself the first time this job runs. + AND s.ends_at > now() - interval '1 day' + AND NOT EXISTS ( + SELECT 1 FROM public.notifications n + WHERE n.type = 'SeasonEnded' + AND n.entity_id = s.id::text + )`, + ); + + let sent = 0; + for (const season of ended) { + const label = season.number ? `Season ${season.number}` : "The season"; + + await this.notifications.notifyActivePlayers("SeasonEnded", { + title: "Season Ended", + message: `${NotificationsService.escapeHtml( + label, + )} has ended. See where you finished.`, + entity_id: season.id, + }); + + sent++; + } + + if (sent > 0) { + this.logger.log(`${sent} season-ended announcements sent`); + } + + return sent; + } +} diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index 6e5af88b..ce227921 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -582,6 +582,18 @@ export class MatchesController { void this.notifications.sendMatchWaitingForServerNotification(matchId); } + // A match that has stopped is a match whose alerts no longer describe + // anything -- the pause it was paused for and the server it was waiting on + // are both moot. See NotificationsService.resolveMatchAlerts. + if ( + data.op === "DELETE" || + ["Canceled", "Finished", "Forfeit", "Tie", "Surrendered"].includes( + status as string, + ) + ) { + void this.notifications.resolveMatchAlerts(matchId); + } + // Postgres owns the deadline; this mirrors every change to it onto the // delayed job. Entering Veto arms it, each pick re-arms it, and leaving // Veto nulls the column, which is what cancels. diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index b5fe07f4..cff9d15f 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -39,6 +39,7 @@ import { CheckLeagueSeasonTransitions } from "./jobs/CheckLeagueSeasonTransition import { ApplyLeagueDefaultSchedules } from "./jobs/ApplyLeagueDefaultSchedules"; import { LeagueWeekReminders } from "./jobs/LeagueWeekReminders"; import { TournamentReminders } from "./jobs/TournamentReminders"; +import { EventReminders } from "./jobs/EventReminders"; import { EncryptionModule } from "../encryption/encryption.module"; import { getQueuesProcessors } from "../utilities/QueueProcessors"; import { CancelInvalidTournaments } from "./jobs/CancelInvalidTournaments"; @@ -174,6 +175,7 @@ import { CameraMonitorService } from "./camera/camera-monitor.service"; ApplyLeagueDefaultSchedules, LeagueWeekReminders, TournamentReminders, + EventReminders, CheckForScheduledMatches, RemoveCancelledMatches, StopOnDemandServer, @@ -246,6 +248,17 @@ export class MatchesModule implements NestModule { // More often than the league reminder above, because the 2h window is far // tighter than its 48h one. + // Hourly: both windows here are days wide, unlike the tournament 2h one. + void scheduleMatchQueue.add( + EventReminders.name, + {}, + { + repeat: { + pattern: "15 * * * *", + }, + }, + ); + void scheduleMatchQueue.add( TournamentReminders.name, {}, diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts index 6145a089..36df12f0 100644 --- a/src/notifications/notifications.service.ts +++ b/src/notifications/notifications.service.ts @@ -399,6 +399,27 @@ export class NotificationsService { } } + // Retracts alerts that describe a condition rather than an event. + // + // "Map is paused" and "waiting for a server" are true only while they are + // true -- once the match resumes, ends or is cancelled they describe nothing. + // Left alone they pile up: a month of pauses on one match produced over a + // hundred rows nobody could act on. + // + // Cleared rather than collapsed, deliberately. Collapsing keeps one stale + // alert per match forever; clearing leaves the bell holding only conditions + // that currently hold. + async resolveMatchAlerts(matchId: string) { + await this.postgres.query( + `UPDATE public.notifications + SET deleted_at = now() + WHERE type = 'MatchStatusChange' + AND entity_id = $1 + AND deleted_at IS NULL`, + [matchId], + ); + } + // Soft-deletes every unread row for an entity except the newest, so a busy // conversation shows one bell entry rather than one per message. Push is // unaffected -- each message already fired its own INSERT. diff --git a/src/notifications/preferences/notification-categories.ts b/src/notifications/preferences/notification-categories.ts index 8dcd4df3..25af74b6 100644 --- a/src/notifications/preferences/notification-categories.ts +++ b/src/notifications/preferences/notification-categories.ts @@ -21,9 +21,11 @@ export type PreferenceKey = { // insert into e_notification_types (MatchImported only exists in the latter), // and fails if anything is unmapped. export const PUSH_CATEGORIES: Record = { - matches: ["MatchStatusChange", "MatchImported"], + matches: ["MatchStatusChange", "MatchImported", "MatchStatsReady", "ClipReady"], chat: ["ChatMessage"], tournaments: ["TournamentCreated", "TournamentReminder"], + events: ["EventReminder"], + seasons: ["SeasonEnded"], scrims: [ "ScrimRequestReceived", "ScrimRequestCountered", @@ -44,7 +46,8 @@ export const PUSH_CATEGORIES: Record = { "LeagueRosterUndersized", ], teams: ["FormTeamSuggestion"], - account: ["NameChangeApproved", "NameChangeDenied", "PlayerSanctioned"], + invites: ["TeamInvite", "TournamentTeamInvite", "DraftInvite"], + account: ["NameChangeApproved", "NameChangeDenied", "PlayerSanctioned", "AwardGranted"], news: ["NewsPublished"], staff_moderation: ["MatchSupport", "MatchAbandoned", "NameChangeRequest"], staff_infrastructure: [ @@ -62,9 +65,12 @@ export const PUSH_KEYS: PreferenceKey[] = [ { key: "matches", defaultEnabled: true }, { key: "chat", defaultEnabled: true }, { key: "tournaments", defaultEnabled: true }, + { key: "events", defaultEnabled: true }, + { key: "seasons", defaultEnabled: true }, { key: "scrims", defaultEnabled: true }, { key: "leagues", defaultEnabled: true }, { key: "teams", defaultEnabled: true }, + { key: "invites", defaultEnabled: true }, { key: "account", defaultEnabled: true }, { key: "news", defaultEnabled: true }, { key: "staff_moderation", defaultEnabled: true, adminOnly: true }, @@ -81,9 +87,17 @@ export const PUSH_KEYS: PreferenceKey[] = [ // such list to filter against. export const IN_APP_KEYS: PreferenceKey[] = [ { key: "ChatMessage", defaultEnabled: true }, + { key: "TeamInvite", defaultEnabled: true }, + { key: "TournamentTeamInvite", defaultEnabled: true }, + { key: "DraftInvite", defaultEnabled: true }, { key: "MatchImported", defaultEnabled: false }, + { key: "MatchStatsReady", defaultEnabled: true }, + { key: "ClipReady", defaultEnabled: true }, + { key: "AwardGranted", defaultEnabled: true }, { key: "NewsPublished", defaultEnabled: true }, { key: "TournamentReminder", defaultEnabled: true }, + { key: "EventReminder", defaultEnabled: true }, + { key: "SeasonEnded", defaultEnabled: true }, { key: "FormTeamSuggestion", defaultEnabled: true }, { key: "ScrimAlertMatch", defaultEnabled: true }, { key: "LeagueMatchUnscheduled", defaultEnabled: true }, diff --git a/src/notifications/preferences/notification-preferences.controller.ts b/src/notifications/preferences/notification-preferences.controller.ts index ab2f4f58..86aa6503 100644 --- a/src/notifications/preferences/notification-preferences.controller.ts +++ b/src/notifications/preferences/notification-preferences.controller.ts @@ -16,13 +16,34 @@ import { NotificationChannel, isKnownKey, } from "./notification-categories"; -import { NotificationPreferencesService } from "./notification-preferences.service"; +import { + NotificationPreferencesService, + QuietHours, +} from "./notification-preferences.service"; @Controller("notifications/preferences") @UseGuards(SteamGuard) export class NotificationPreferencesController { constructor(private readonly preferences: NotificationPreferencesService) {} + @Get("quiet-hours") + public async getQuietHours(@Req() request: Request) { + return { + quietHours: await this.preferences.getQuietHours(request.user.steam_id), + }; + } + + @Put("quiet-hours") + public async setQuietHours( + @Req() request: Request, + @Body() body: QuietHours, + ) { + await this.preferences.setQuietHours(request.user.steam_id, body); + + return { success: true }; + } + + // Declared after quiet-hours so ":channel" doesn't swallow it. @Get(":channel") public async list( @Req() request: Request, diff --git a/src/notifications/preferences/notification-preferences.service.ts b/src/notifications/preferences/notification-preferences.service.ts index 26df998c..db9f2ed6 100644 --- a/src/notifications/preferences/notification-preferences.service.ts +++ b/src/notifications/preferences/notification-preferences.service.ts @@ -1,4 +1,4 @@ -import { Injectable } from "@nestjs/common"; +import { BadRequestException, Injectable } from "@nestjs/common"; import { PostgresService } from "../../postgres/postgres.service"; import { NotificationChannel, @@ -7,6 +7,12 @@ import { inAppKeyForType, } from "./notification-categories"; +export type QuietHours = { + start: string | null; + end: string | null; + timezone: string | null; +}; + export type ResolvedPreference = PreferenceKey & { enabled: boolean; }; @@ -68,6 +74,62 @@ export class NotificationPreferencesService { ); } + public async getQuietHours(steamId: string): Promise { + const [row] = await this.postgres.query( + `SELECT to_char(quiet_hours_start, 'HH24:MI') AS start, + to_char(quiet_hours_end, 'HH24:MI') AS "end", + notification_timezone AS timezone + FROM public.players + WHERE steam_id = $1::bigint`, + [steamId], + ); + + return row ?? { start: null, end: null, timezone: null }; + } + + public async setQuietHours( + steamId: string, + quietHours: QuietHours, + ): Promise { + const start = quietHours.start || null; + const end = quietHours.end || null; + + if ((start === null) !== (end === null)) { + throw new BadRequestException("quiet hours need both a start and an end"); + } + + for (const value of [start, end]) { + if (value !== null && !/^([01]\d|2[0-3]):[0-5]\d$/.test(value)) { + throw new BadRequestException(`invalid time: ${value}`); + } + } + + // An unknown zone would make `AT TIME ZONE` raise inside the recipient + // query, which would silence push for everyone rather than for this player. + // is_quiet_hours falls back to UTC as a second line of defence, but a bad + // value should never get stored in the first place. + const timezone = quietHours.timezone || null; + if (timezone) { + const [known] = await this.postgres.query>( + `SELECT name FROM pg_timezone_names WHERE name = $1 LIMIT 1`, + [timezone], + ); + + if (!known) { + throw new BadRequestException(`unknown timezone: ${timezone}`); + } + } + + await this.postgres.query( + `UPDATE public.players + SET quiet_hours_start = $2::time, + quiet_hours_end = $3::time, + notification_timezone = $4 + WHERE steam_id = $1::bigint`, + [steamId, start, end, timezone], + ); + } + // Narrows a recipient list to those who haven't muted this type in the bell. // // Unlike push, this has to happen before the rows are written: the bell reads diff --git a/src/notifications/push/push-notifications.service.ts b/src/notifications/push/push-notifications.service.ts index 245144c0..575902e1 100644 --- a/src/notifications/push/push-notifications.service.ts +++ b/src/notifications/push/push-notifications.service.ts @@ -282,7 +282,11 @@ export class PushNotificationsService { AND np.channel = 'push' AND np.key = $3 WHERE n.id = $1::uuid - AND COALESCE(np.enabled, $4::boolean) = true`, + AND COALESCE(np.enabled, $4::boolean) = true + -- Push only. The bell row is already written either way, so a quiet + -- window silences the buzz without losing the notification. + AND NOT public.is_quiet_hours( + p.quiet_hours_start, p.quiet_hours_end, p.notification_timezone)`, [ row.id, RECIPIENT_ROLES[row.role] ?? [], @@ -321,6 +325,7 @@ export class PushNotificationsService { `SELECT DISTINCT ps.id::text AS id, ps.endpoint, ps.p256dh, ps.auth FROM public.notifications n JOIN public.push_subscriptions ps ON ps.steam_id = n.steam_id + JOIN public.players p ON p.steam_id = n.steam_id LEFT JOIN public.notification_preferences np ON np.steam_id = n.steam_id AND np.channel = 'push' @@ -328,7 +333,9 @@ export class PushNotificationsService { WHERE n.type = $1 AND n.entity_id = $2 AND n.created_at > now() - interval '15 minutes' - AND COALESCE(np.enabled, $4::boolean) = true`, + AND COALESCE(np.enabled, $4::boolean) = true + AND NOT public.is_quiet_hours( + p.quiet_hours_start, p.quiet_hours_end, p.notification_timezone)`, [type, entityId, category?.key ?? "", category?.defaultEnabled ?? true], ); diff --git a/src/sockets/sockets.module.ts b/src/sockets/sockets.module.ts index 4ff07e51..3cc332cd 100644 --- a/src/sockets/sockets.module.ts +++ b/src/sockets/sockets.module.ts @@ -9,7 +9,7 @@ import { SocketsService } from "./sockets.service"; import { GameStreamerModule } from "src/matches/game-streamer/game-streamer.module"; @Module({ - exports: [], + exports: [SocketsService], imports: [RedisModule, MatchMaking, HasuraModule, GameStreamerModule], providers: [SocketsGateway, loggerFactory(), SocketsService], controllers: [SocketsController], diff --git a/test/notifications.spec.ts b/test/notifications.spec.ts index 8c5e516c..79bf1dcb 100644 --- a/test/notifications.spec.ts +++ b/test/notifications.spec.ts @@ -283,6 +283,180 @@ describe("notifications (SQL-driven)", () => { }); }); + describe("quiet hours", () => { + const isQuiet = async (start: string, end: string, tz = "UTC") => { + const [row] = await postgres.query>( + `SELECT public.is_quiet_hours($1::time, $2::time, $3) AS quiet`, + [start, end, tz], + ); + return row.quiet; + }; + + // Anchored on the DB's own clock so the assertions hold whenever this runs. + const nowLocal = async (tz = "UTC") => { + const [row] = await postgres.query>( + `SELECT to_char((now() AT TIME ZONE $1)::time, 'HH24:MI') AS hhmm`, + [tz], + ); + return row.hhmm; + }; + + const shiftHours = (hhmm: string, hours: number) => { + const [h, m] = hhmm.split(":").map(Number); + const shifted = (((h + hours) % 24) + 24) % 24; + return `${String(shifted).padStart(2, "0")}:${String(m).padStart(2, "0")}`; + }; + + it("is off when unset", async () => { + const [row] = await postgres.query>( + `SELECT public.is_quiet_hours(NULL, NULL, 'UTC') AS quiet`, + ); + expect(row.quiet).toBe(false); + }); + + it("is off for a zero-width window", async () => { + const now = await nowLocal(); + expect(await isQuiet(now, now)).toBe(false); + }); + + it("catches a window the current time sits inside", async () => { + const now = await nowLocal(); + expect(await isQuiet(shiftHours(now, -1), shiftHours(now, 1))).toBe(true); + }); + + it("ignores a window the current time sits outside", async () => { + const now = await nowLocal(); + expect(await isQuiet(shiftHours(now, 2), shiftHours(now, 4))).toBe(false); + }); + + describe("windows that wrap midnight", () => { + // 22:00 -> 07:00 is the whole point of the feature, and it is the case a + // naive `time BETWEEN start AND end` gets backwards. + it("catches a time inside the wrapped window", async () => { + const now = await nowLocal(); + expect(await isQuiet(shiftHours(now, -1), shiftHours(now, -3))).toBe( + true, + ); + }); + + it("ignores a time outside the wrapped window", async () => { + const now = await nowLocal(); + expect(await isQuiet(shiftHours(now, 1), shiftHours(now, -1))).toBe( + false, + ); + }); + }); + + it("falls back to UTC rather than raising on an unknown timezone", async () => { + // Raising here would abort the whole recipient query and silence push for + // everyone, not just the player with the bad value. + const now = await nowLocal("UTC"); + await expect( + isQuiet(shiftHours(now, -1), shiftHours(now, 1), "Not/AZone"), + ).resolves.toBe(true); + }); + + it("stores and reads back a window", async () => { + const steamId = await fx.player(); + const service = preferences(); + + await service.setQuietHours(steamId, { + start: "22:00", + end: "07:00", + timezone: "America/New_York", + }); + + expect(await service.getQuietHours(steamId)).toEqual({ + start: "22:00", + end: "07:00", + timezone: "America/New_York", + }); + }); + + it("refuses a timezone Postgres does not know", async () => { + const steamId = await fx.player(); + + await expect( + preferences().setQuietHours(steamId, { + start: "22:00", + end: "07:00", + timezone: "Middle/Earth", + }), + ).rejects.toThrow(); + }); + + it("refuses half a window", async () => { + const steamId = await fx.player(); + + await expect( + preferences().setQuietHours(steamId, { + start: "22:00", + end: null, + timezone: "UTC", + }), + ).rejects.toThrow(); + }); + }); + + describe("resolveMatchAlerts", () => { + const raiseAlert = async (matchId: string, steamId: string) => + postgres.query( + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) + VALUES ('MatchStatusChange', 'Match Alert: Map Paused', 'paused', + 'user', $1::bigint, $2)`, + [steamId, matchId], + ); + + const liveAlerts = async () => { + const rows = await postgres.query>( + `SELECT entity_id FROM notifications + WHERE type = 'MatchStatusChange' AND deleted_at IS NULL`, + ); + return rows.map((row) => row.entity_id); + }; + + it("retracts every outstanding alert for the match", async () => { + // A month of pauses on one match is what produced 100+ rows nobody could + // act on. Resuming should leave none of them behind. + const steamId = await fx.player(); + for (let i = 0; i < 5; i++) { + await raiseAlert("match-1", steamId); + } + + await notifications().resolveMatchAlerts("match-1"); + + expect(await liveAlerts()).toEqual([]); + }); + + it("leaves another match's alerts alone", async () => { + const steamId = await fx.player(); + await raiseAlert("match-1", steamId); + await raiseAlert("match-2", steamId); + + await notifications().resolveMatchAlerts("match-1"); + + expect(await liveAlerts()).toEqual(["match-2"]); + }); + + it("does not touch other notification types for the same match", async () => { + const steamId = await fx.player(); + await postgres.query( + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) + VALUES ('MatchSupport', 'Help', 'help', 'user', $1::bigint, 'match-1')`, + [steamId], + ); + await raiseAlert("match-1", steamId); + + await notifications().resolveMatchAlerts("match-1"); + + const [row] = await postgres.query>( + `SELECT count(*)::text AS count FROM notifications + WHERE deleted_at IS NULL AND type = 'MatchSupport'`, + ); + expect(row.count).toBe("1"); + }); + }); + describe("push_subscriptions endpoint constraint", () => { // The CHECK constraint and isAllowedPushEndpoint() enforce the same rule in // two languages. If they drift, either real browsers get rejected or the From f7137a1b65d0cea21878e1850d9de4492e75f86d Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 13 Aug 2026 23:23:13 -0400 Subject: [PATCH 11/17] wip --- generated/schema.graphql | 79 + generated/schema.ts | 53 +- generated/types.ts | 14152 ++++++++++++++++---------------- src/awards/awards.service.ts | 28 +- src/demos/demos.controller.ts | 13 + 5 files changed, 7273 insertions(+), 7052 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index 46825f09..854b5613 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -11322,18 +11322,30 @@ enum e_notification_types_constraint { } enum e_notification_types_enum { + """You received an award""" + AwardGranted + """A new message in a chat you are part of""" ChatMessage + """A clip you requested finished rendering""" + ClipReady + """DedicatedServerRconStatus""" DedicatedServerRconStatus """DedicatedServerStatus""" DedicatedServerStatus + """You were invited to a draft lobby""" + DraftInvite + """Player ELO recompute finished""" EloRecompute + """An event you are attending starts soon""" + EventReminder + """You frequently play with these players""" FormTeamSuggestion @@ -11367,6 +11379,9 @@ enum e_notification_types_enum { """A Valve match you played was imported to 5stack""" MatchImported + """Stats for a match you played are ready""" + MatchStatsReady + """Match Status Change Notification""" MatchStatusChange @@ -11418,14 +11433,23 @@ enum e_notification_types_enum { """A scheduled scrim time changed""" ScrimTimeChanged + """A season has ended""" + SeasonEnded + """Storage Scan""" StorageScan + """You were invited to a team""" + TeamInvite + """Registration opened for a tournament""" TournamentCreated """A tournament you are registered for starts soon""" TournamentReminder + + """You were invited to play in a tournament""" + TournamentTeamInvite } """ @@ -68117,6 +68141,7 @@ type players { ): v_player_multi_kills_aggregate! name: String! name_registered: Boolean! + notification_timezone: String """An array relationship""" notifications( @@ -68380,6 +68405,8 @@ type players { ): player_premier_rank_history_aggregate! premier_rank_updated_at: timestamptz profile_url: String + quiet_hours_end: time + quiet_hours_start: time role: e_player_roles_enum! roster_image_url: String @@ -68930,6 +68957,7 @@ input players_bool_exp { multi_kills_aggregate: v_player_multi_kills_aggregate_bool_exp name: String_comparison_exp name_registered: Boolean_comparison_exp + notification_timezone: String_comparison_exp notifications: notifications_bool_exp notifications_aggregate: notifications_aggregate_bool_exp objectives: player_objectives_bool_exp @@ -68948,6 +68976,8 @@ input players_bool_exp { premier_rank_history_aggregate: player_premier_rank_history_aggregate_bool_exp premier_rank_updated_at: timestamptz_comparison_exp profile_url: String_comparison_exp + quiet_hours_end: time_comparison_exp + quiet_hours_start: time_comparison_exp role: e_player_roles_enum_comparison_exp roster_image_url: String_comparison_exp sanctions: player_sanctions_bool_exp @@ -69060,6 +69090,7 @@ input players_insert_input { multi_kills: v_player_multi_kills_arr_rel_insert_input name: String name_registered: Boolean + notification_timezone: String notifications: notifications_arr_rel_insert_input objectives: player_objectives_arr_rel_insert_input owned_teams: teams_arr_rel_insert_input @@ -69070,6 +69101,8 @@ input players_insert_input { premier_rank_history: player_premier_rank_history_arr_rel_insert_input premier_rank_updated_at: timestamptz profile_url: String + quiet_hours_end: time + quiet_hours_start: time role: e_player_roles_enum roster_image_url: String sanctions: player_sanctions_arr_rel_insert_input @@ -69143,6 +69176,7 @@ type players_max_fields { """ matchmaking_cooldown: timestamptz name: String + notification_timezone: String premier_rank: Int premier_rank_updated_at: timestamptz profile_url: String @@ -69231,6 +69265,7 @@ type players_min_fields { """ matchmaking_cooldown: timestamptz name: String + notification_timezone: String premier_rank: Int premier_rank_updated_at: timestamptz profile_url: String @@ -69355,6 +69390,7 @@ input players_order_by { multi_kills_aggregate: v_player_multi_kills_aggregate_order_by name: order_by name_registered: order_by + notification_timezone: order_by notifications_aggregate: notifications_aggregate_order_by objectives_aggregate: player_objectives_aggregate_order_by owned_teams_aggregate: teams_aggregate_order_by @@ -69366,6 +69402,8 @@ input players_order_by { premier_rank_history_aggregate: player_premier_rank_history_aggregate_order_by premier_rank_updated_at: order_by profile_url: order_by + quiet_hours_end: order_by + quiet_hours_start: order_by role: order_by roster_image_url: order_by sanctions_aggregate: player_sanctions_aggregate_order_by @@ -69454,6 +69492,9 @@ enum players_select_column { """column name""" name_registered + """column name""" + notification_timezone + """column name""" premier_rank @@ -69463,6 +69504,12 @@ enum players_select_column { """column name""" profile_url + """column name""" + quiet_hours_end + + """column name""" + quiet_hours_start + """column name""" role @@ -69507,9 +69554,12 @@ input players_set_input { last_sign_in_at: timestamptz name: String name_registered: Boolean + notification_timezone: String premier_rank: Int premier_rank_updated_at: timestamptz profile_url: String + quiet_hours_end: time + quiet_hours_start: time role: e_player_roles_enum roster_image_url: String show_match_ready_modal: Boolean @@ -69718,9 +69768,12 @@ input players_stream_cursor_value_input { last_sign_in_at: timestamptz name: String name_registered: Boolean + notification_timezone: String premier_rank: Int premier_rank_updated_at: timestamptz profile_url: String + quiet_hours_end: time + quiet_hours_start: time role: e_player_roles_enum roster_image_url: String show_match_ready_modal: Boolean @@ -69844,6 +69897,9 @@ enum players_update_column { """column name""" name_registered + """column name""" + notification_timezone + """column name""" premier_rank @@ -69853,6 +69909,12 @@ enum players_update_column { """column name""" profile_url + """column name""" + quiet_hours_end + + """column name""" + quiet_hours_start + """column name""" role @@ -97097,6 +97159,23 @@ input teams_variance_order_by { owner_steam_id: order_by } +scalar time + +""" +Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. +""" +input time_comparison_exp { + _eq: time + _gt: time + _gte: time + _in: [time!] + _is_null: Boolean + _lt: time + _lte: time + _neq: time + _nin: [time!] +} + scalar timestamp scalar timestamptz diff --git a/generated/schema.ts b/generated/schema.ts index 0397991d..7875b2bc 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -17,6 +17,7 @@ export type Scalars = { jsonb: any, numeric: any, smallint: any, + time: any, timestamp: any, timestamptz: any, uuid: any, @@ -4401,7 +4402,7 @@ export interface e_notification_types_aggregate_fields { /** unique or primary key constraints on table "e_notification_types" */ export type e_notification_types_constraint = 'e_notification_types_pkey' -export type e_notification_types_enum = 'ChatMessage' | 'EventReminder' | 'SeasonEnded' | 'MatchStatsReady' | 'ClipReady' | 'AwardGranted' | 'TeamInvite' | 'TournamentTeamInvite' | 'DraftInvite' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'EloRecompute' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'StorageScan' | 'TournamentCreated' | 'TournamentReminder' +export type e_notification_types_enum = 'AwardGranted' | 'ChatMessage' | 'ClipReady' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'DraftInvite' | 'EloRecompute' | 'EventReminder' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchImported' | 'MatchStatsReady' | 'MatchStatusChange' | 'MatchSupport' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'SeasonEnded' | 'StorageScan' | 'TeamInvite' | 'TournamentCreated' | 'TournamentReminder' | 'TournamentTeamInvite' /** aggregate max on columns */ @@ -22444,6 +22445,7 @@ export interface players { multi_kills_aggregate: v_player_multi_kills_aggregate name: Scalars['String'] name_registered: Scalars['Boolean'] + notification_timezone: (Scalars['String'] | null) /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -22477,6 +22479,8 @@ export interface players { premier_rank_history_aggregate: player_premier_rank_history_aggregate premier_rank_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) + quiet_hours_end: (Scalars['time'] | null) + quiet_hours_start: (Scalars['time'] | null) role: e_player_roles_enum roster_image_url: (Scalars['String'] | null) /** An array relationship */ @@ -22631,6 +22635,7 @@ export interface players_max_fields { /** A computed field, executes function "get_player_matchmaking_cooldown" */ matchmaking_cooldown: (Scalars['timestamptz'] | null) name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) premier_rank: (Scalars['Int'] | null) premier_rank_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) @@ -22685,6 +22690,7 @@ export interface players_min_fields { /** A computed field, executes function "get_player_matchmaking_cooldown" */ matchmaking_cooldown: (Scalars['timestamptz'] | null) name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) premier_rank: (Scalars['Int'] | null) premier_rank_updated_at: (Scalars['timestamptz'] | null) profile_url: (Scalars['String'] | null) @@ -22717,7 +22723,7 @@ export interface players_mutation_response { /** select columns of table "players" */ -export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate stddev on columns */ @@ -22845,7 +22851,7 @@ export interface players_sum_fields { /** update columns of table "players" */ -export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate var_pop on columns */ @@ -73597,6 +73603,7 @@ export interface playersGenqlSelection{ where?: (v_player_multi_kills_bool_exp | null)} }) name?: boolean | number name_registered?: boolean | number + notification_timezone?: boolean | number /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73772,6 +73779,8 @@ export interface playersGenqlSelection{ where?: (player_premier_rank_history_bool_exp | null)} }) premier_rank_updated_at?: boolean | number profile_url?: boolean | number + quiet_hours_end?: boolean | number + quiet_hours_start?: boolean | number role?: boolean | number roster_image_url?: boolean | number /** An array relationship */ @@ -74084,7 +74093,7 @@ export interface players_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ -export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),banned_until?: (timestamptz_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_admin_sanctioned?: (Boolean_comparison_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),is_registered?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} +export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),banned_until?: (timestamptz_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_admin_sanctioned?: (Boolean_comparison_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),is_registered?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notification_timezone?: (String_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),quiet_hours_end?: (time_comparison_exp | null),quiet_hours_start?: (time_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} /** input type for incrementing numeric columns in table "players" */ @@ -74092,7 +74101,7 @@ export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null /** input type for inserting data into table "players" */ -export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} +export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -74128,6 +74137,7 @@ export interface players_max_fieldsGenqlSelection{ /** A computed field, executes function "get_player_matchmaking_cooldown" */ matchmaking_cooldown?: boolean | number name?: boolean | number + notification_timezone?: boolean | number premier_rank?: boolean | number premier_rank_updated_at?: boolean | number profile_url?: boolean | number @@ -74183,6 +74193,7 @@ export interface players_min_fieldsGenqlSelection{ /** A computed field, executes function "get_player_matchmaking_cooldown" */ matchmaking_cooldown?: boolean | number name?: boolean | number + notification_timezone?: boolean | number premier_rank?: boolean | number premier_rank_updated_at?: boolean | number profile_url?: boolean | number @@ -74227,7 +74238,7 @@ export interface players_on_conflict {constraint: players_constraint,update_colu /** Ordering options when selecting data from "players". */ -export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),banned_until?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_admin_sanctioned?: (order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),is_registered?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} +export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),banned_until?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_admin_sanctioned?: (order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),is_registered?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notification_timezone?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),quiet_hours_end?: (order_by | null),quiet_hours_start?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} /** primary key columns input for table: players */ @@ -74235,7 +74246,7 @@ export interface players_pk_columns_input {steam_id: Scalars['bigint']} /** input type for updating data in table "players" */ -export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -74343,7 +74354,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -90370,6 +90381,10 @@ export interface teams_variance_fieldsGenqlSelection{ export interface teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} +/** Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. */ +export interface time_comparison_exp {_eq?: (Scalars['time'] | null),_gt?: (Scalars['time'] | null),_gte?: (Scalars['time'] | null),_in?: (Scalars['time'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['time'] | null),_lte?: (Scalars['time'] | null),_neq?: (Scalars['time'] | null),_nin?: (Scalars['time'][] | null)} + + /** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */ export interface timestamptz_comparison_exp {_eq?: (Scalars['timestamptz'] | null),_gt?: (Scalars['timestamptz'] | null),_gte?: (Scalars['timestamptz'] | null),_in?: (Scalars['timestamptz'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['timestamptz'] | null),_lte?: (Scalars['timestamptz'] | null),_neq?: (Scalars['timestamptz'] | null),_nin?: (Scalars['timestamptz'][] | null)} @@ -120669,18 +120684,14 @@ export const enumENotificationTypesConstraint = { } export const enumENotificationTypesEnum = { + AwardGranted: 'AwardGranted' as const, ChatMessage: 'ChatMessage' as const, - EventReminder: 'EventReminder' as const, - SeasonEnded: 'SeasonEnded' as const, - MatchStatsReady: 'MatchStatsReady' as const, ClipReady: 'ClipReady' as const, - AwardGranted: 'AwardGranted' as const, - TeamInvite: 'TeamInvite' as const, - TournamentTeamInvite: 'TournamentTeamInvite' as const, - DraftInvite: 'DraftInvite' as const, DedicatedServerRconStatus: 'DedicatedServerRconStatus' as const, DedicatedServerStatus: 'DedicatedServerStatus' as const, + DraftInvite: 'DraftInvite' as const, EloRecompute: 'EloRecompute' as const, + EventReminder: 'EventReminder' as const, FormTeamSuggestion: 'FormTeamSuggestion' as const, GameNodeStatus: 'GameNodeStatus' as const, GameUpdate: 'GameUpdate' as const, @@ -120692,6 +120703,7 @@ export const enumENotificationTypesEnum = { LeagueRosterUndersized: 'LeagueRosterUndersized' as const, MatchAbandoned: 'MatchAbandoned' as const, MatchImported: 'MatchImported' as const, + MatchStatsReady: 'MatchStatsReady' as const, MatchStatusChange: 'MatchStatusChange' as const, MatchSupport: 'MatchSupport' as const, NameChangeApproved: 'NameChangeApproved' as const, @@ -120709,9 +120721,12 @@ export const enumENotificationTypesEnum = { ScrimRequestExpired: 'ScrimRequestExpired' as const, ScrimRequestReceived: 'ScrimRequestReceived' as const, ScrimTimeChanged: 'ScrimTimeChanged' as const, + SeasonEnded: 'SeasonEnded' as const, StorageScan: 'StorageScan' as const, + TeamInvite: 'TeamInvite' as const, TournamentCreated: 'TournamentCreated' as const, - TournamentReminder: 'TournamentReminder' as const + TournamentReminder: 'TournamentReminder' as const, + TournamentTeamInvite: 'TournamentTeamInvite' as const } export const enumENotificationTypesSelectColumn = { @@ -123628,9 +123643,12 @@ export const enumPlayersSelectColumn = { last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, + notification_timezone: 'notification_timezone' as const, premier_rank: 'premier_rank' as const, premier_rank_updated_at: 'premier_rank_updated_at' as const, profile_url: 'profile_url' as const, + quiet_hours_end: 'quiet_hours_end' as const, + quiet_hours_start: 'quiet_hours_start' as const, role: 'role' as const, roster_image_url: 'roster_image_url' as const, show_match_ready_modal: 'show_match_ready_modal' as const, @@ -123659,9 +123677,12 @@ export const enumPlayersUpdateColumn = { last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, + notification_timezone: 'notification_timezone' as const, premier_rank: 'premier_rank' as const, premier_rank_updated_at: 'premier_rank_updated_at' as const, profile_url: 'profile_url' as const, + quiet_hours_end: 'quiet_hours_end' as const, + quiet_hours_start: 'quiet_hours_start' as const, role: 'role' as const, roster_image_url: 'roster_image_url' as const, show_match_ready_modal: 'show_match_ready_modal' as const, diff --git a/generated/types.ts b/generated/types.ts index deccfc3f..141fa4a2 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -541,47 +541,46 @@ export default { 4588, 4600, 4608, - 4609, - 4621, - 4633, - 4645, - 4665, - 4677, - 4678, + 4610, + 4611, + 4623, + 4635, + 4647, + 4667, 4679, - 4691, - 4707, - 4717, - 4721, - 4731, - 4741, - 4745, - 4757, - 4768, - 4780, - 4798, - 4809, - 4821, - 4839, - 4850, - 4862, - 4883, - 4899, - 4900, + 4680, + 4681, + 4693, + 4709, + 4719, + 4723, + 4733, + 4743, + 4747, + 4759, + 4770, + 4782, + 4800, + 4811, + 4823, + 4841, + 4852, + 4864, + 4885, 4901, - 4913, - 4931, - 4942, - 4954, - 4972, - 4983, - 4995, - 5013, - 5025, - 5037, - 5067, - 5079, - 5080, + 4902, + 4903, + 4915, + 4933, + 4944, + 4956, + 4974, + 4985, + 4997, + 5015, + 5027, + 5039, + 5069, 5081, 5082, 5083, @@ -591,10 +590,10 @@ export default { 5087, 5088, 5089, - 5101, - 5109, - 5138, - 5139, + 5090, + 5091, + 5103, + 5111, 5140, 5141, 5142, @@ -602,10 +601,10 @@ export default { 5144, 5145, 5146, - 5171, - 5197, - 5240, - 5241, + 5147, + 5148, + 5173, + 5199, 5242, 5243, 5244, @@ -613,18 +612,18 @@ export default { 5246, 5247, 5248, - 5277, - 5305, - 5330, - 5348, - 5366, - 5387, - 5407, - 5433, - 5458, - 5476, - 5512, - 5513, + 5249, + 5250, + 5279, + 5307, + 5332, + 5350, + 5368, + 5389, + 5409, + 5435, + 5460, + 5478, 5514, 5515, 5516, @@ -632,26 +631,26 @@ export default { 5518, 5519, 5520, - 5545, - 5563, - 5581, - 5609, - 5636, - 5654, - 5672, - 5698, - 5723, - 5741, - 5759, - 5786, - 5787, + 5521, + 5522, + 5547, + 5565, + 5583, + 5611, + 5638, + 5656, + 5674, + 5700, + 5725, + 5743, + 5761, 5788, - 5801, - 5821, - 5841, - 5871, - 5883, - 5884, + 5789, + 5790, + 5803, + 5823, + 5843, + 5873, 5885, 5886, 5887, @@ -659,9 +658,9 @@ export default { 5889, 5890, 5891, - 5903, - 5937, - 5938, + 5892, + 5893, + 5905, 5939, 5940, 5941, @@ -669,15 +668,17 @@ export default { 5943, 5944, 5945, - 5988, - 5989, + 5946, + 5947, 5990, 5991, 5992, 5993, 5994, 5995, - 5996 + 5996, + 5997, + 5998 ], "types": { "ActiveConnection": { @@ -694,7 +695,7 @@ export default { 80 ], "query_start": [ - 4608 + 4610 ], "state": [ 80 @@ -723,7 +724,7 @@ export default { 80 ], "query_start": [ - 4608 + 4610 ], "state": [ 80 @@ -763,22 +764,22 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -790,7 +791,7 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ 80 @@ -801,7 +802,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 5109 + 5111 ], "awarded_by_steam_id": [ 80 @@ -810,7 +811,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "note": [ 80 @@ -825,13 +826,13 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -943,7 +944,7 @@ export default { 80 ], "match_map_id": [ - 5109 + 5111 ], "output": [ 8 @@ -1003,7 +1004,7 @@ export default { }, "CpuStat": { "time": [ - 4608 + 4610 ], "total": [ 259 @@ -1020,7 +1021,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 5109 + 5111 ], "success": [ 5 @@ -1031,7 +1032,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 5109 + 5111 ], "__typename": [ 80 @@ -1039,7 +1040,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 5109 + 5111 ], "__typename": [ 80 @@ -1195,7 +1196,7 @@ export default { 22 ], "time": [ - 4608 + 4610 ], "__typename": [ 80 @@ -1221,7 +1222,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mode": [ 80 @@ -1300,7 +1301,7 @@ export default { 5 ], "modified": [ - 4608 + 4610 ], "name": [ 80 @@ -1404,7 +1405,7 @@ export default { 34 ], "time": [ - 4608 + 4610 ], "__typename": [ 80 @@ -1663,7 +1664,7 @@ export default { }, "MemoryStat": { "time": [ - 4608 + 4610 ], "total": [ 259 @@ -1680,7 +1681,7 @@ export default { 51 ], "time": [ - 4608 + 4610 ], "__typename": [ 80 @@ -1700,7 +1701,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "published_at": [ 80 @@ -2458,16 +2459,16 @@ export default { 40 ], "last_analyze": [ - 4608 + 4610 ], "last_autoanalyze": [ - 4608 + 4610 ], "last_autovacuum": [ - 4608 + 4610 ], "last_vacuum": [ - 4608 + 4610 ], "n_dead_tup": [ 40 @@ -2683,7 +2684,7 @@ export default { 80 ], "next_start": [ - 4608 + 4610 ], "__typename": [ 80 @@ -2705,13 +2706,13 @@ export default { }, "TournamentAward": { "award_id": [ - 5109 + 5111 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -2723,7 +2724,7 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2731,7 +2732,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 5109 + 5111 ], "depth": [ 40 @@ -2740,7 +2741,7 @@ export default { 5 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 @@ -2805,10 +2806,10 @@ export default { }, "_map_pool": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2859,10 +2860,10 @@ export default { 105 ], "map_id": [ - 5111 + 5113 ], "map_pool_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -2871,10 +2872,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2882,10 +2883,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2893,10 +2894,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2940,10 +2941,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2952,10 +2953,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2974,10 +2975,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -2998,16 +2999,16 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3175,16 +3176,16 @@ export default { 130 ], "abandoned_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "steam_id": [ 261 @@ -3204,16 +3205,16 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3224,13 +3225,13 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3258,13 +3259,13 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3337,7 +3338,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -3346,13 +3347,13 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3422,13 +3423,13 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -3518,16 +3519,16 @@ export default { }, "api_keys": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3613,16 +3614,16 @@ export default { 166 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "label": [ 82 ], "last_used_at": [ - 4610 + 4612 ], "steam_id": [ 261 @@ -3642,16 +3643,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3662,16 +3663,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3682,16 +3683,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3747,7 +3748,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -3756,16 +3757,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3811,16 +3812,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "last_used_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -3878,7 +3879,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -3889,7 +3890,7 @@ export default { 231 ], "award_id": [ - 5109 + 5111 ], "awarded_by": [ 3993 @@ -3898,22 +3899,22 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season": [ 2047 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -3934,7 +3935,7 @@ export default { 4079 ], "season_id": [ - 5109 + 5111 ], "source": [ 516 @@ -3943,22 +3944,22 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5045 + 5047 ], "tournament_award": [ - 4611 + 4613 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team": [ - 5003 + 5005 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4138,7 +4139,7 @@ export default { 235 ], "award_id": [ - 5111 + 5113 ], "awarded_by": [ 3997 @@ -4147,22 +4148,22 @@ export default { 261 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "id": [ - 5111 + 5113 ], "league_season": [ 2052 ], "league_season_id": [ - 5111 + 5113 ], "note": [ 82 @@ -4183,7 +4184,7 @@ export default { 4083 ], "season_id": [ - 5111 + 5113 ], "source": [ 517 @@ -4192,22 +4193,22 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "tournament": [ - 5066 + 5068 ], "tournament_award": [ - 4620 + 4622 ], "tournament_id": [ - 5111 + 5113 ], "tournament_team": [ - 5012 + 5014 ], "tournament_team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -4233,7 +4234,7 @@ export default { 242 ], "award_id": [ - 5109 + 5111 ], "awarded_by": [ 4004 @@ -4242,22 +4243,22 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season": [ 2062 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -4275,7 +4276,7 @@ export default { 4090 ], "season_id": [ - 5109 + 5111 ], "source": [ 516 @@ -4284,22 +4285,22 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5075 + 5077 ], "tournament_award": [ - 4629 + 4631 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team": [ - 5021 + 5023 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4307,22 +4308,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 5109 + 5111 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -4337,16 +4338,16 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4401,22 +4402,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 5109 + 5111 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -4431,16 +4432,16 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4580,16 +4581,16 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_award": [ - 4631 + 4633 ], "tournament_id": [ 3035 ], "tournament_team": [ - 5023 + 5025 ], "tournament_team_id": [ 3035 @@ -4600,7 +4601,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4609,22 +4610,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5109 + 5111 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -4636,19 +4637,19 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "source": [ 516 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4751,22 +4752,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5109 + 5111 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -4781,19 +4782,19 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "source": [ 516 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -4931,7 +4932,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by": [ 3993 @@ -4946,10 +4947,10 @@ export default { 1663 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -4958,7 +4959,7 @@ export default { 2047 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 @@ -5011,7 +5012,7 @@ export default { 4079 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5023,13 +5024,13 @@ export default { 536 ], "tournament": [ - 5045 + 5047 ], "tournament_configs": [ - 4611, + 4613, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -5039,19 +5040,19 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_configs_aggregate": [ - 4612, + 4614, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -5061,19 +5062,19 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5162,7 +5163,7 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "created_by": [ 3997 @@ -5177,10 +5178,10 @@ export default { 1667 ], "event_id": [ - 5111 + 5113 ], "id": [ - 5111 + 5113 ], "image_url": [ 82 @@ -5189,7 +5190,7 @@ export default { 2052 ], "league_season_id": [ - 5111 + 5113 ], "name": [ 82 @@ -5204,7 +5205,7 @@ export default { 4083 ], "season_id": [ - 5111 + 5113 ], "silhouette": [ 41 @@ -5216,19 +5217,19 @@ export default { 537 ], "tournament": [ - 5066 + 5068 ], "tournament_configs": [ - 4620 + 4622 ], "tournament_configs_aggregate": [ - 4613 + 4615 ], "tournament_id": [ - 5111 + 5113 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -5251,7 +5252,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by": [ 4004 @@ -5266,10 +5267,10 @@ export default { 1674 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -5278,7 +5279,7 @@ export default { 2062 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 @@ -5290,7 +5291,7 @@ export default { 4090 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5302,16 +5303,16 @@ export default { 536 ], "tournament": [ - 5075 + 5077 ], "tournament_configs": [ - 4617 + 4619 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5319,7 +5320,7 @@ export default { }, "awards_max_fields": { "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -5328,22 +5329,22 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5352,10 +5353,10 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5363,7 +5364,7 @@ export default { }, "awards_min_fields": { "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -5372,22 +5373,22 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5396,10 +5397,10 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5497,10 +5498,10 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_configs_aggregate": [ - 4616 + 4618 ], "tournament_id": [ 3035 @@ -5514,7 +5515,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -5526,7 +5527,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -5535,22 +5536,22 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5562,10 +5563,10 @@ export default { 536 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5620,7 +5621,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -5629,22 +5630,22 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80 ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -5656,10 +5657,10 @@ export default { 536 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -5833,10 +5834,10 @@ export default { 2362 ], "clip_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -5848,13 +5849,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map": [ 2657 @@ -5863,10 +5864,10 @@ export default { 2537 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "paused": [ 5 @@ -6134,10 +6135,10 @@ export default { 2371 ], "clip_id": [ - 5111 + 5113 ], "created_at": [ - 4610 + 4612 ], "error_message": [ 82 @@ -6149,13 +6150,13 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4610 + 4612 ], "match_map": [ 2666 @@ -6164,10 +6165,10 @@ export default { 2549 ], "match_map_demo_id": [ - 5111 + 5113 ], "match_map_id": [ - 5111 + 5113 ], "paused": [ 6 @@ -6253,10 +6254,10 @@ export default { 2380 ], "clip_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -6268,13 +6269,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map": [ 2675 @@ -6283,10 +6284,10 @@ export default { 2561 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "paused": [ 5 @@ -6321,10 +6322,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -6333,19 +6334,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "progress": [ 3033 @@ -6415,10 +6416,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -6427,19 +6428,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "progress": [ 3033 @@ -6605,7 +6606,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -6627,10 +6628,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": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -6639,19 +6640,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "paused": [ 5 @@ -6778,10 +6779,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -6790,19 +6791,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "paused": [ 5 @@ -6976,7 +6977,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -6985,7 +6986,7 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4609 + 4611 ], "deployments": [ 1844, @@ -7005,7 +7006,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_default": [ 5 @@ -7038,7 +7039,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7129,7 +7130,7 @@ export default { 321 ], "created_at": [ - 4610 + 4612 ], "deployments": [ 1846 @@ -7144,7 +7145,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "is_default": [ 6 @@ -7177,7 +7178,7 @@ export default { 82 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -7218,7 +7219,7 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4609 + 4611 ], "deployments": [ 1844 @@ -7233,7 +7234,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_default": [ 5 @@ -7266,7 +7267,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7274,7 +7275,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4609 + 4611 ], "exposed_module": [ 80 @@ -7283,7 +7284,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "manifest_url": [ 80 @@ -7310,7 +7311,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7318,7 +7319,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4609 + 4611 ], "exposed_module": [ 80 @@ -7327,7 +7328,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "manifest_url": [ 80 @@ -7354,7 +7355,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7443,7 +7444,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -7460,7 +7461,7 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4609 + 4611 ], "deployments": [ 1844 @@ -7475,7 +7476,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_default": [ 5 @@ -7508,7 +7509,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7551,7 +7552,7 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "deployments": [ 1844 @@ -7566,7 +7567,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_default": [ 5 @@ -7599,7 +7600,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -7669,10 +7670,10 @@ export default { }, "db_backups": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -7761,10 +7762,10 @@ export default { 352 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "name": [ 82 @@ -7787,10 +7788,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -7804,10 +7805,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -7821,10 +7822,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -7880,7 +7881,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -7889,10 +7890,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -7941,10 +7942,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -8014,16 +8015,16 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game": [ 465 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "is_organizer": [ 5 @@ -8261,16 +8262,16 @@ export default { 261 ], "created_at": [ - 4610 + 4612 ], "draft_game": [ 476 ], "draft_game_id": [ - 5111 + 5113 ], "id": [ - 5111 + 5113 ], "is_organizer": [ 6 @@ -8314,16 +8315,16 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game": [ 485 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "lineup": [ 40 @@ -8343,13 +8344,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "lineup": [ 40 @@ -8389,13 +8390,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "lineup": [ 40 @@ -8495,7 +8496,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -8512,13 +8513,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "lineup": [ 40 @@ -8633,13 +8634,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "draft_game_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "lineup": [ 40 @@ -8783,7 +8784,7 @@ export default { 465 ], "draft_game_id": [ - 5109 + 5111 ], "e_draft_game_player_status": [ 634 @@ -8798,7 +8799,7 @@ export default { 5 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9039,7 +9040,7 @@ export default { 476 ], "draft_game_id": [ - 5111 + 5113 ], "e_draft_game_player_status": [ 637 @@ -9054,7 +9055,7 @@ export default { 6 ], "joined_at": [ - 4610 + 4612 ], "lineup": [ 41 @@ -9098,7 +9099,7 @@ export default { 485 ], "draft_game_id": [ - 5109 + 5111 ], "e_draft_game_player_status": [ 645 @@ -9110,7 +9111,7 @@ export default { 5 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9133,13 +9134,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 5109 + 5111 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9179,13 +9180,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 5109 + 5111 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9291,7 +9292,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -9305,7 +9306,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": [ - 5109 + 5111 ], "elo_snapshot": [ 40 @@ -9314,7 +9315,7 @@ export default { 5 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9447,7 +9448,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5109 + 5111 ], "elo_snapshot": [ 40 @@ -9456,7 +9457,7 @@ export default { 5 ], "joined_at": [ - 4609 + 4611 ], "lineup": [ 40 @@ -9636,7 +9637,7 @@ export default { 576 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 @@ -9660,7 +9661,7 @@ export default { 862 ], "expires_at": [ - 4609 + 4611 ], "host": [ 3993 @@ -9669,13 +9670,13 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "inner_squad": [ 5 ], "invite_code": [ - 5109 + 5111 ], "is_organizer": [ 5 @@ -9684,16 +9685,16 @@ export default { 2287 ], "map_pool_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -9716,7 +9717,7 @@ export default { } ], "pick_deadline": [ - 4609 + 4611 ], "picks": [ 375, @@ -9813,7 +9814,7 @@ export default { 5 ], "scheduled_at": [ - 4609 + 4611 ], "status": [ 660 @@ -9822,19 +9823,19 @@ export default { 4562 ], "team_1_id": [ - 5109 + 5111 ], "team_2": [ 4562 ], "team_2_id": [ - 5109 + 5111 ], "type": [ 1031 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -10072,7 +10073,7 @@ export default { 577 ], "created_at": [ - 4610 + 4612 ], "current_pick_lineup": [ 41 @@ -10096,7 +10097,7 @@ export default { 865 ], "expires_at": [ - 4610 + 4612 ], "host": [ 3997 @@ -10105,13 +10106,13 @@ export default { 261 ], "id": [ - 5111 + 5113 ], "inner_squad": [ 6 ], "invite_code": [ - 5111 + 5113 ], "is_organizer": [ 6 @@ -10120,16 +10121,16 @@ export default { 2290 ], "map_pool_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_options_id": [ - 5111 + 5113 ], "max_elo": [ 41 @@ -10147,7 +10148,7 @@ export default { 1846 ], "pick_deadline": [ - 4610 + 4612 ], "picks": [ 386 @@ -10168,7 +10169,7 @@ export default { 6 ], "scheduled_at": [ - 4610 + 4612 ], "status": [ 661 @@ -10177,19 +10178,19 @@ export default { 4573 ], "team_1_id": [ - 5111 + 5113 ], "team_2": [ 4573 ], "team_2_id": [ - 5111 + 5113 ], "type": [ 1032 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -10227,7 +10228,7 @@ export default { 576 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 @@ -10251,7 +10252,7 @@ export default { 873 ], "expires_at": [ - 4609 + 4611 ], "host": [ 4004 @@ -10260,28 +10261,28 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "inner_squad": [ 5 ], "invite_code": [ - 5109 + 5111 ], "map_pool": [ 2296 ], "map_pool_id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -10296,7 +10297,7 @@ export default { 2710 ], "pick_deadline": [ - 4609 + 4611 ], "picks": [ 383 @@ -10311,7 +10312,7 @@ export default { 5 ], "scheduled_at": [ - 4609 + 4611 ], "status": [ 660 @@ -10320,19 +10321,19 @@ export default { 4582 ], "team_1_id": [ - 5109 + 5111 ], "team_2": [ 4582 ], "team_2_id": [ - 5109 + 5111 ], "type": [ 1031 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -10343,31 +10344,31 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4609 + 4611 ], "host_steam_id": [ 259 ], "id": [ - 5109 + 5111 ], "invite_code": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -10376,22 +10377,22 @@ export default { 40 ], "pick_deadline": [ - 4609 + 4611 ], "regions": [ 80 ], "scheduled_at": [ - 4609 + 4611 ], "team_1_id": [ - 5109 + 5111 ], "team_2_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -10461,31 +10462,31 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4609 + 4611 ], "host_steam_id": [ 259 ], "id": [ - 5109 + 5111 ], "invite_code": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -10494,22 +10495,22 @@ export default { 40 ], "pick_deadline": [ - 4609 + 4611 ], "regions": [ 80 ], "scheduled_at": [ - 4609 + 4611 ], "team_1_id": [ - 5109 + 5111 ], "team_2_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -10740,7 +10741,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -10760,7 +10761,7 @@ export default { 576 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 @@ -10769,28 +10770,28 @@ export default { 597 ], "expires_at": [ - 4609 + 4611 ], "host_steam_id": [ 259 ], "id": [ - 5109 + 5111 ], "inner_squad": [ 5 ], "invite_code": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -10802,7 +10803,7 @@ export default { 618 ], "pick_deadline": [ - 4609 + 4611 ], "regions": [ 80 @@ -10811,22 +10812,22 @@ export default { 5 ], "scheduled_at": [ - 4609 + 4611 ], "status": [ 660 ], "team_1_id": [ - 5109 + 5111 ], "team_2_id": [ - 5109 + 5111 ], "type": [ 1031 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -10974,7 +10975,7 @@ export default { 576 ], "created_at": [ - 4609 + 4611 ], "current_pick_lineup": [ 40 @@ -10983,28 +10984,28 @@ export default { 597 ], "expires_at": [ - 4609 + 4611 ], "host_steam_id": [ 259 ], "id": [ - 5109 + 5111 ], "inner_squad": [ 5 ], "invite_code": [ - 5109 + 5111 ], "map_pool_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_elo": [ 40 @@ -11016,7 +11017,7 @@ export default { 618 ], "pick_deadline": [ - 4609 + 4611 ], "regions": [ 80 @@ -11025,22 +11026,22 @@ export default { 5 ], "scheduled_at": [ - 4609 + 4611 ], "status": [ 660 ], "team_1_id": [ - 5109 + 5111 ], "team_2_id": [ - 5109 + 5111 ], "type": [ 1031 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -19577,10 +19578,10 @@ export default { } ], "tournament_team_rosters": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19590,19 +19591,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_team_rosters_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19612,11 +19613,11 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], @@ -19681,10 +19682,10 @@ export default { 4322 ], "tournament_team_rosters": [ - 4971 + 4973 ], "tournament_team_rosters_aggregate": [ - 4964 + 4966 ], "value": [ 82 @@ -19723,7 +19724,7 @@ export default { 4328 ], "tournament_team_rosters": [ - 4968 + 4970 ], "value": [ 80 @@ -19798,7 +19799,7 @@ export default { 4327 ], "tournament_team_rosters_aggregate": [ - 4967 + 4969 ], "value": [ 3035 @@ -20286,10 +20287,10 @@ export default { 80 ], "tournament_categories": [ - 4699, + 4701, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -20299,19 +20300,19 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "tournament_categories_aggregate": [ - 4700, + 4702, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -20321,11 +20322,11 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], @@ -20384,10 +20385,10 @@ export default { 82 ], "tournament_categories": [ - 4706 + 4708 ], "tournament_categories_aggregate": [ - 4701 + 4703 ], "value": [ 82 @@ -20423,7 +20424,7 @@ export default { 80 ], "tournament_categories": [ - 4705 + 4707 ], "value": [ 80 @@ -20495,7 +20496,7 @@ export default { 3035 ], "tournament_categories_aggregate": [ - 4704 + 4706 ], "value": [ 3035 @@ -20563,10 +20564,10 @@ export default { 80 ], "tournament_stages": [ - 4870, + 4872, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -20576,19 +20577,19 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "tournament_stages_aggregate": [ - 4871, + 4873, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -20598,11 +20599,11 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], @@ -20661,10 +20662,10 @@ export default { 82 ], "tournament_stages": [ - 4882 + 4884 ], "tournament_stages_aggregate": [ - 4872 + 4874 ], "value": [ 82 @@ -20700,7 +20701,7 @@ export default { 80 ], "tournament_stages": [ - 4879 + 4881 ], "value": [ 80 @@ -20772,7 +20773,7 @@ export default { 3035 ], "tournament_stages_aggregate": [ - 4877 + 4879 ], "value": [ 3035 @@ -20840,10 +20841,10 @@ export default { 80 ], "tournaments": [ - 5045, + 5047, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -20853,19 +20854,19 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_aggregate": [ - 5046, + 5048, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -20875,11 +20876,11 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], @@ -20938,10 +20939,10 @@ export default { 82 ], "tournaments": [ - 5066 + 5068 ], "tournaments_aggregate": [ - 5047 + 5049 ], "value": [ 82 @@ -20977,7 +20978,7 @@ export default { 80 ], "tournaments": [ - 5063 + 5065 ], "value": [ 80 @@ -21049,7 +21050,7 @@ export default { 3035 ], "tournaments_aggregate": [ - 5062 + 5064 ], "value": [ 3035 @@ -21856,19 +21857,19 @@ export default { }, "event_match_links": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -21919,19 +21920,19 @@ export default { 1435 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -21940,19 +21941,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -21960,13 +21961,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -21974,13 +21975,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -22033,10 +22034,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -22045,13 +22046,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -22070,13 +22071,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -22096,13 +22097,13 @@ export default { }, "event_media": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -22111,7 +22112,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -22344,13 +22345,13 @@ export default { 1459 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "external_url": [ 82 @@ -22359,7 +22360,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "mime_type": [ 82 @@ -22403,13 +22404,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -22418,7 +22419,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -22447,10 +22448,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -22459,7 +22460,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -22517,10 +22518,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -22529,7 +22530,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -22667,7 +22668,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -22675,13 +22676,13 @@ export default { }, "event_media_players": { "created_at": [ - 4609 + 4611 ], "media": [ 1450 ], "media_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -22852,13 +22853,13 @@ export default { 1481 ], "created_at": [ - 4610 + 4612 ], "media": [ 1459 ], "media_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -22881,13 +22882,13 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4609 + 4611 ], "media": [ 1468 ], "media_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -22901,10 +22902,10 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4609 + 4611 ], "media_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -22929,10 +22930,10 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4609 + 4611 ], "media_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23002,7 +23003,7 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23014,10 +23015,10 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4609 + 4611 ], "media_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23087,10 +23088,10 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "media_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23181,10 +23182,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -23193,7 +23194,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -23293,10 +23294,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "external_url": [ 80 @@ -23305,7 +23306,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "mime_type": [ 80 @@ -23431,13 +23432,13 @@ export default { }, "event_organizers": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "organizer": [ 3993 @@ -23608,13 +23609,13 @@ export default { 1542 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "organizer": [ 3997 @@ -23637,13 +23638,13 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "organizer": [ 4004 @@ -23657,10 +23658,10 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23685,10 +23686,10 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23758,7 +23759,7 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23770,10 +23771,10 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23843,10 +23844,10 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -23936,13 +23937,13 @@ export default { }, "event_players": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -24113,13 +24114,13 @@ export default { 1583 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -24142,13 +24143,13 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -24162,10 +24163,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -24190,10 +24191,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -24263,7 +24264,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -24275,10 +24276,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -24348,10 +24349,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -24441,19 +24442,19 @@ export default { }, "event_teams": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "team": [ 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24554,19 +24555,19 @@ export default { 1622 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "team": [ 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -24575,19 +24576,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "team": [ 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24595,13 +24596,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24623,13 +24624,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24696,10 +24697,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24708,13 +24709,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24733,13 +24734,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24759,19 +24760,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4609 + 4611 ], "event": [ 1663 ], "event_id": [ - 5109 + 5111 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24872,19 +24873,19 @@ export default { 1646 ], "created_at": [ - 4610 + 4612 ], "event": [ 1667 ], "event_id": [ - 5111 + 5113 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -24893,19 +24894,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4609 + 4611 ], "event": [ 1674 ], "event_id": [ - 5109 + 5111 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24913,13 +24914,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -24941,13 +24942,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -25003,7 +25004,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -25014,10 +25015,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -25026,13 +25027,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -25051,13 +25052,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "event_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -25124,7 +25125,7 @@ export default { 1450 ], "banner_media_id": [ - 5109 + 5111 ], "can_upload_media": [ 5 @@ -25133,19 +25134,19 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "hide_creator_organizer": [ 5 ], "id": [ - 5109 + 5111 ], "is_organizer": [ 5 @@ -25251,10 +25252,10 @@ export default { } ], "player_stats": [ - 5112, + 5114, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25264,19 +25265,19 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], "player_stats_aggregate": [ - 5113, + 5115, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25286,11 +25287,11 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], @@ -25339,7 +25340,7 @@ export default { } ], "starts_at": [ - 4609 + 4611 ], "teams": [ 1615, @@ -25522,7 +25523,7 @@ export default { 1459 ], "banner_media_id": [ - 5111 + 5113 ], "can_upload_media": [ 6 @@ -25531,19 +25532,19 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "description": [ 82 ], "ends_at": [ - 4610 + 4612 ], "hide_creator_organizer": [ 6 ], "id": [ - 5111 + 5113 ], "is_organizer": [ 6 @@ -25573,10 +25574,10 @@ export default { 1535 ], "player_stats": [ - 5131 + 5133 ], "player_stats_aggregate": [ - 5114 + 5116 ], "players": [ 1583 @@ -25585,7 +25586,7 @@ export default { 1576 ], "starts_at": [ - 4610 + 4612 ], "teams": [ 1622 @@ -25623,22 +25624,22 @@ export default { 1468 ], "banner_media_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "hide_creator_organizer": [ 5 ], "id": [ - 5109 + 5111 ], "media": [ 1456 @@ -25659,13 +25660,13 @@ export default { 1539 ], "player_stats": [ - 5128 + 5130 ], "players": [ 1580 ], "starts_at": [ - 4609 + 4611 ], "teams": [ 1621 @@ -25682,19 +25683,19 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -25703,7 +25704,7 @@ export default { 259 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -25711,19 +25712,19 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -25732,7 +25733,7 @@ export default { 259 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -25827,7 +25828,7 @@ export default { 1538 ], "player_stats_aggregate": [ - 5127 + 5129 ], "players_aggregate": [ 1579 @@ -25850,7 +25851,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -25859,22 +25860,22 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "hide_creator_organizer": [ 5 ], "id": [ - 5109 + 5111 ], "media_access": [ 681 @@ -25886,7 +25887,7 @@ export default { 259 ], "starts_at": [ - 4609 + 4611 ], "visibility": [ 701 @@ -25932,22 +25933,22 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "hide_creator_organizer": [ 5 ], "id": [ - 5109 + 5111 ], "media_access": [ 681 @@ -25959,7 +25960,7 @@ export default { 259 ], "starts_at": [ - 4609 + 4611 ], "visibility": [ 701 @@ -26512,7 +26513,7 @@ export default { 1840 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -27005,7 +27006,7 @@ export default { 1841 ], "offline_at": [ - 4610 + 4612 ], "pin_build_id": [ 41 @@ -27277,7 +27278,7 @@ export default { 1840 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -27375,7 +27376,7 @@ export default { 80 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -27523,7 +27524,7 @@ export default { 80 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -27935,7 +27936,7 @@ export default { 1840 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -28338,7 +28339,7 @@ export default { 1840 ], "offline_at": [ - 4609 + 4611 ], "pin_build_id": [ 40 @@ -28793,7 +28794,7 @@ export default { } ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -28902,7 +28903,7 @@ export default { 1846 ], "updated_at": [ - 4610 + 4612 ], "version": [ 82 @@ -28961,7 +28962,7 @@ export default { 1844 ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -28978,7 +28979,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -28995,7 +28996,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -29100,7 +29101,7 @@ export default { 1844 ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -29161,7 +29162,7 @@ export default { 1844 ], "updated_at": [ - 4609 + 4611 ], "version": [ 80 @@ -29243,7 +29244,7 @@ export default { 1771 ], "id": [ - 5109 + 5111 ], "results": [ 1844, @@ -29257,7 +29258,7 @@ export default { 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29357,7 +29358,7 @@ export default { 1776 ], "id": [ - 5111 + 5113 ], "results": [ 1846 @@ -29366,7 +29367,7 @@ export default { 82 ], "validated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -29416,7 +29417,7 @@ export default { 1786 ], "id": [ - 5109 + 5111 ], "results": [ 1844 @@ -29425,7 +29426,7 @@ export default { 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29439,13 +29440,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "status": [ 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29459,13 +29460,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "status": [ 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29524,7 +29525,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -29547,7 +29548,7 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "results": [ 1844 @@ -29556,7 +29557,7 @@ export default { 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29605,7 +29606,7 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "results": [ 1844 @@ -29614,7 +29615,7 @@ export default { 80 ], "validated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -29687,7 +29688,7 @@ export default { 80 ], "_event_id": [ - 5109 + 5111 ], "_match_type": [ 80 @@ -29713,7 +29714,7 @@ export default { 80 ], "_season_id": [ - 5109 + 5111 ], "_source": [ 80 @@ -29730,7 +29731,7 @@ export default { 80 ], "_league_season_id": [ - 5109 + 5111 ], "_role": [ 80 @@ -29753,7 +29754,7 @@ export default { 80 ], "_season_id": [ - 5109 + 5111 ], "_source": [ 80 @@ -30405,10 +30406,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5109 + 5111 ], "_winning_tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -30416,10 +30417,10 @@ export default { }, "league_divisions": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30552,10 +30553,10 @@ export default { 1875 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "name": [ 82 @@ -30584,10 +30585,10 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30604,10 +30605,10 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30621,10 +30622,10 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30694,7 +30695,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -30703,10 +30704,10 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30755,10 +30756,10 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -30819,22 +30820,22 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "season": [ 2047 @@ -31005,22 +31006,22 @@ export default { 1908 ], "closes_at": [ - 4610 + 4612 ], "created_at": [ - 4610 + 4612 ], "default_match_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "opens_at": [ - 4610 + 4612 ], "season": [ 2052 @@ -31043,22 +31044,22 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "season": [ 2062 @@ -31072,22 +31073,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "week_number": [ 40 @@ -31124,22 +31125,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "week_number": [ 40 @@ -31230,7 +31231,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31239,22 +31240,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "week_number": [ 40 @@ -31324,22 +31325,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "week_number": [ 40 @@ -31429,40 +31430,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4609 + 4611 ], "higher_division": [ 1871 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division": [ 1871 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "season": [ 2047 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31627,40 +31628,40 @@ export default { 1949 ], "created_at": [ - 4610 + 4612 ], "higher_division": [ 1875 ], "higher_division_id": [ - 5111 + 5113 ], "higher_slots": [ 41 ], "id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "lower_division": [ 1875 ], "lower_division_id": [ - 5111 + 5113 ], "resolved_at": [ - 4610 + 4612 ], "season": [ 2052 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -31677,40 +31678,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4609 + 4611 ], "higher_division": [ 1882 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division": [ 1882 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "season": [ 2062 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31718,28 +31719,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4609 + 4611 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31776,28 +31777,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4609 + 4611 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31889,7 +31890,7 @@ export default { 2064 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -31900,7 +31901,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31909,28 +31910,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4609 + 4611 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -31997,28 +31998,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "higher_division_id": [ - 5109 + 5111 ], "higher_slots": [ 40 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "lower_division_id": [ - 5109 + 5111 ], "resolved_at": [ - 4609 + 4611 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32105,16 +32106,16 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4653 + 4655 ], "created_at": [ - 4609 + 4611 ], "e_proposal_status": [ 799 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -32123,13 +32124,13 @@ export default { 3993 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by": [ 3993 @@ -32144,7 +32145,7 @@ export default { 2162 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32315,16 +32316,16 @@ export default { 1990 ], "bracket": [ - 4664 + 4666 ], "created_at": [ - 4610 + 4612 ], "e_proposal_status": [ 802 ], "id": [ - 5111 + 5113 ], "message": [ 82 @@ -32333,13 +32334,13 @@ export default { 3997 ], "proposed_by_league_team_season_id": [ - 5111 + 5113 ], "proposed_by_steam_id": [ 261 ], "proposed_time": [ - 4610 + 4612 ], "responded_by": [ 3997 @@ -32354,7 +32355,7 @@ export default { 2171 ], "tournament_bracket_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -32374,16 +32375,16 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4673 + 4675 ], "created_at": [ - 4609 + 4611 ], "e_proposal_status": [ 810 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -32392,13 +32393,13 @@ export default { 4004 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by": [ 4004 @@ -32413,7 +32414,7 @@ export default { 2180 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32421,28 +32422,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by_steam_id": [ 259 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32479,28 +32480,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by_steam_id": [ 259 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32562,7 +32563,7 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4675 + 4677 ], "created_at": [ 3035 @@ -32609,7 +32610,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32618,22 +32619,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by_steam_id": [ 259 @@ -32642,7 +32643,7 @@ export default { 804 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32727,22 +32728,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4609 + 4611 ], "responded_by_steam_id": [ 259 @@ -32751,7 +32752,7 @@ export default { 804 ], "tournament_bracket_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -32862,28 +32863,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4609 + 4611 ], "division": [ 1871 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "season": [ 2047 ], "standings": [ - 5181, + 5183, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32893,19 +32894,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "standings_aggregate": [ - 5182, + 5184, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32915,19 +32916,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33028,34 +33029,34 @@ export default { 2029 ], "created_at": [ - 4610 + 4612 ], "division": [ 1875 ], "id": [ - 5111 + 5113 ], "league_division_id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "season": [ 2052 ], "standings": [ - 5190 + 5192 ], "standings_aggregate": [ - 5183 + 5185 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -33064,31 +33065,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4609 + 4611 ], "division": [ 1882 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "season": [ 2062 ], "standings": [ - 5187 + 5189 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33096,19 +33097,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33136,19 +33137,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33230,10 +33231,10 @@ export default { 2064 ], "standings_aggregate": [ - 5186 + 5188 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -33244,7 +33245,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33253,19 +33254,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33284,19 +33285,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "league_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -33366,7 +33367,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -33387,7 +33388,7 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "is_league_admin": [ 5 @@ -33396,7 +33397,7 @@ export default { 5 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks": [ 1899, @@ -33524,10 +33525,10 @@ export default { 2699 ], "player_stats": [ - 5214, + 5216, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33537,19 +33538,19 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], "player_stats_aggregate": [ - 5215, + 5217, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33559,11 +33560,11 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], @@ -33647,7 +33648,7 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_divisions": [ 2022, @@ -33697,16 +33698,16 @@ export default { 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "standings": [ - 5181, + 5183, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33716,19 +33717,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "standings_aggregate": [ - 5182, + 5184, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33738,16 +33739,16 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "starts_at": [ - 4609 + 4611 ], "status": [ 846 @@ -33950,7 +33951,7 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "created_by_steam_id": [ 261 @@ -33971,7 +33972,7 @@ export default { 41 ], "id": [ - 5111 + 5113 ], "is_league_admin": [ 6 @@ -33980,7 +33981,7 @@ export default { 6 ], "match_options_id": [ - 5111 + 5113 ], "match_weeks": [ 1908 @@ -34013,10 +34014,10 @@ export default { 2703 ], "player_stats": [ - 5233 + 5235 ], "player_stats_aggregate": [ - 5216 + 5218 ], "playoff_best_of": [ 41 @@ -34055,7 +34056,7 @@ export default { 41 ], "roster_lock_at": [ - 4610 + 4612 ], "season_divisions": [ 2029 @@ -34067,19 +34068,19 @@ export default { 41 ], "signup_closes_at": [ - 4610 + 4612 ], "signup_opens_at": [ - 4610 + 4612 ], "standings": [ - 5190 + 5192 ], "standings_aggregate": [ - 5183 + 5185 ], "starts_at": [ - 4610 + 4612 ], "status": [ 847 @@ -34189,7 +34190,7 @@ export default { 196 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -34210,10 +34211,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks": [ 1905 @@ -34237,7 +34238,7 @@ export default { 2710 ], "player_stats": [ - 5230 + 5232 ], "playoff_best_of": [ 40 @@ -34273,7 +34274,7 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_divisions": [ 2028 @@ -34282,16 +34283,16 @@ export default { 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "standings": [ - 5187 + 5189 ], "starts_at": [ - 4609 + 4611 ], "status": [ 846 @@ -34308,7 +34309,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -34326,10 +34327,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks_count": [ 40 @@ -34362,19 +34363,19 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_number": [ 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -34382,7 +34383,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -34400,10 +34401,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks_count": [ 40 @@ -34436,19 +34437,19 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_number": [ 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -34558,7 +34559,7 @@ export default { 2712 ], "player_stats_aggregate": [ - 5229 + 5231 ], "playoff_best_of": [ 3035 @@ -34609,7 +34610,7 @@ export default { 3035 ], "standings_aggregate": [ - 5186 + 5188 ], "starts_at": [ 3035 @@ -34629,7 +34630,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -34652,7 +34653,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -34670,10 +34671,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks_count": [ 40 @@ -34718,19 +34719,19 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_number": [ 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "starts_at": [ - 4609 + 4611 ], "status": [ 846 @@ -34908,7 +34909,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "created_by_steam_id": [ 259 @@ -34926,10 +34927,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_weeks_count": [ 40 @@ -34974,19 +34975,19 @@ export default { 40 ], "roster_lock_at": [ - 4609 + 4611 ], "season_number": [ 40 ], "signup_closes_at": [ - 4609 + 4611 ], "signup_opens_at": [ - 4609 + 4611 ], "starts_at": [ - 4609 + 4611 ], "status": [ 846 @@ -35230,7 +35231,7 @@ export default { }, "league_team_movements": { "approved_at": [ - 4609 + 4611 ], "approved_by": [ 3993 @@ -35242,10 +35243,10 @@ export default { 1871 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "e_movement_type": [ 778 @@ -35257,25 +35258,25 @@ export default { 1871 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division": [ 1871 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2204 ], "league_team_id": [ - 5109 + 5111 ], "season": [ 2047 @@ -35452,7 +35453,7 @@ export default { 2089 ], "approved_at": [ - 4610 + 4612 ], "approved_by": [ 3997 @@ -35464,10 +35465,10 @@ export default { 1875 ], "computed_to_division_id": [ - 5111 + 5113 ], "created_at": [ - 4610 + 4612 ], "e_movement_type": [ 781 @@ -35479,25 +35480,25 @@ export default { 1875 ], "final_to_division_id": [ - 5111 + 5113 ], "from_division": [ 1875 ], "from_division_id": [ - 5111 + 5113 ], "id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "league_team": [ 2207 ], "league_team_id": [ - 5111 + 5113 ], "season": [ 2052 @@ -35523,7 +35524,7 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4609 + 4611 ], "approved_by": [ 4004 @@ -35535,10 +35536,10 @@ export default { 1882 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "e_movement_type": [ 789 @@ -35550,25 +35551,25 @@ export default { 1882 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division": [ 1882 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2213 ], "league_team_id": [ - 5109 + 5111 ], "season": [ 2062 @@ -35582,34 +35583,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4609 + 4611 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -35652,34 +35653,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4609 + 4611 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -35806,7 +35807,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -35815,34 +35816,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4609 + 4611 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "type": [ 783 @@ -35930,34 +35931,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4609 + 4611 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5109 + 5111 ], "from_division_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "type": [ 783 @@ -36071,10 +36072,10 @@ export default { }, "league_team_rosters": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -36083,7 +36084,7 @@ export default { 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36257,10 +36258,10 @@ export default { 2130 ], "added_at": [ - 4610 + 4612 ], "league_team_season_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -36269,7 +36270,7 @@ export default { 261 ], "removed_at": [ - 4610 + 4612 ], "removed_reason": [ 82 @@ -36295,10 +36296,10 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -36307,7 +36308,7 @@ export default { 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36324,16 +36325,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36364,16 +36365,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36458,7 +36459,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -36470,16 +36471,16 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36552,16 +36553,16 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4609 + 4611 ], "league_team_season_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 ], "removed_at": [ - 4609 + 4611 ], "removed_reason": [ 80 @@ -36657,7 +36658,7 @@ export default { 1871 ], "assigned_division_id": [ - 5109 + 5111 ], "captain": [ 3993 @@ -36666,7 +36667,7 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 @@ -36675,16 +36676,16 @@ export default { 820 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2204 ], "league_team_id": [ - 5109 + 5111 ], "registered_by": [ 3993 @@ -36696,7 +36697,7 @@ export default { 1871 ], "requested_division_id": [ - 5109 + 5111 ], "roster": [ 2121, @@ -36752,10 +36753,10 @@ export default { 825 ], "tournament_team": [ - 5003 + 5005 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -36935,7 +36936,7 @@ export default { 1875 ], "assigned_division_id": [ - 5111 + 5113 ], "captain": [ 3997 @@ -36944,7 +36945,7 @@ export default { 261 ], "created_at": [ - 4610 + 4612 ], "decline_reason": [ 82 @@ -36953,16 +36954,16 @@ export default { 823 ], "id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "league_team": [ 2207 ], "league_team_id": [ - 5111 + 5113 ], "registered_by": [ 3997 @@ -36974,7 +36975,7 @@ export default { 1875 ], "requested_division_id": [ - 5111 + 5113 ], "roster": [ 2130 @@ -36992,10 +36993,10 @@ export default { 826 ], "tournament_team": [ - 5012 + 5014 ], "tournament_team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -37021,7 +37022,7 @@ export default { 1882 ], "assigned_division_id": [ - 5109 + 5111 ], "captain": [ 4004 @@ -37030,7 +37031,7 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 @@ -37039,16 +37040,16 @@ export default { 831 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2213 ], "league_team_id": [ - 5109 + 5111 ], "registered_by": [ 4004 @@ -37060,7 +37061,7 @@ export default { 1882 ], "requested_division_id": [ - 5109 + 5111 ], "roster": [ 2127 @@ -37075,10 +37076,10 @@ export default { 825 ], "tournament_team": [ - 5021 + 5023 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37086,37 +37087,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5109 + 5111 ], "captain_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5109 + 5111 ], "seed": [ 40 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37162,37 +37163,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5109 + 5111 ], "captain_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5109 + 5111 ], "seed": [ 40 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37331,7 +37332,7 @@ export default { 3035 ], "tournament_team": [ - 5023 + 5025 ], "tournament_team_id": [ 3035 @@ -37342,7 +37343,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37351,31 +37352,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5109 + 5111 ], "captain_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5109 + 5111 ], "seed": [ 40 @@ -37384,7 +37385,7 @@ export default { 825 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37487,31 +37488,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5109 + 5111 ], "captain_steam_id": [ 259 ], "created_at": [ - 4609 + 4611 ], "decline_reason": [ 80 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5109 + 5111 ], "seed": [ 40 @@ -37520,7 +37521,7 @@ export default { 825 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37655,10 +37656,10 @@ export default { }, "league_teams": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "movements": [ 2080, @@ -37708,7 +37709,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "team_seasons": [ 2162, @@ -37803,10 +37804,10 @@ export default { 2207 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "movements": [ 2089 @@ -37818,7 +37819,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "team_seasons": [ 2171 @@ -37833,10 +37834,10 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "movements": [ 2086 @@ -37845,7 +37846,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "team_seasons": [ 2168 @@ -37856,13 +37857,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37870,13 +37871,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37943,7 +37944,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37952,13 +37953,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -37977,13 +37978,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38006,13 +38007,13 @@ export default { 867 ], "created_at": [ - 4609 + 4611 ], "e_lobby_access": [ 862 ], "id": [ - 5109 + 5111 ], "players": [ 2242, @@ -38110,13 +38111,13 @@ export default { 868 ], "created_at": [ - 4610 + 4612 ], "e_lobby_access": [ 865 ], "id": [ - 5111 + 5113 ], "players": [ 2253 @@ -38134,13 +38135,13 @@ export default { 867 ], "created_at": [ - 4609 + 4611 ], "e_lobby_access": [ 873 ], "id": [ - 5109 + 5111 ], "players": [ 2250 @@ -38151,10 +38152,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38162,10 +38163,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38229,7 +38230,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38241,10 +38242,10 @@ export default { 867 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38266,10 +38267,10 @@ export default { 867 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -38298,7 +38299,7 @@ export default { 2223 ], "lobby_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -38527,7 +38528,7 @@ export default { 2226 ], "lobby_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -38565,7 +38566,7 @@ export default { 2232 ], "lobby_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -38585,7 +38586,7 @@ export default { 259 ], "lobby_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -38613,7 +38614,7 @@ export default { 259 ], "lobby_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -38689,7 +38690,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -38709,7 +38710,7 @@ export default { 259 ], "lobby_id": [ - 5109 + 5111 ], "status": [ 888 @@ -38806,7 +38807,7 @@ export default { 259 ], "lobby_id": [ - 5109 + 5111 ], "status": [ 888 @@ -38929,13 +38930,13 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "maps": [ - 5769, + 5771, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38945,19 +38946,19 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], "maps_aggregate": [ - 5770, + 5772, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38967,11 +38968,11 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], @@ -39036,13 +39037,13 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "maps": [ - 5778 + 5780 ], "maps_aggregate": [ - 5771 + 5773 ], "seed": [ 6 @@ -39063,10 +39064,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "maps": [ - 5777 + 5779 ], "seed": [ 5 @@ -39080,7 +39081,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39088,7 +39089,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39141,7 +39142,7 @@ export default { 3035 ], "maps_aggregate": [ - 5776 + 5778 ], "seed": [ 3035 @@ -39155,7 +39156,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39167,7 +39168,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "seed": [ 5 @@ -39195,7 +39196,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "seed": [ 5 @@ -39230,7 +39231,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39486,7 +39487,7 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "label": [ 82 @@ -39534,7 +39535,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39566,7 +39567,7 @@ export default { }, "maps_max_fields": { "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39612,7 +39613,7 @@ export default { }, "maps_min_fields": { "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39735,7 +39736,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39752,7 +39753,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39795,7 +39796,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -39833,22 +39834,22 @@ export default { }, "match_camera_tokens": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39931,22 +39932,22 @@ export default { 2339 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "steam_id": [ 261 ], "token": [ - 5111 + 5113 ], "__typename": [ 80 @@ -39963,22 +39964,22 @@ export default { }, "match_camera_tokens_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -39986,19 +39987,19 @@ export default { }, "match_camera_tokens_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40006,19 +40007,19 @@ export default { }, "match_camera_tokens_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40074,7 +40075,7 @@ export default { }, "match_camera_tokens_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40083,19 +40084,19 @@ export default { "match_camera_tokens_select_column": {}, "match_camera_tokens_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40138,19 +40139,19 @@ export default { }, "match_camera_tokens_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "token": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40205,7 +40206,7 @@ export default { }, "match_clips": { "created_at": [ - 4609 + 4611 ], "download_url": [ 80 @@ -40217,7 +40218,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 @@ -40229,10 +40230,10 @@ export default { 2537 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "render_jobs": [ 264, @@ -40510,7 +40511,7 @@ export default { 2371 ], "created_at": [ - 4610 + 4612 ], "download_url": [ 82 @@ -40522,7 +40523,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "kills_count": [ 41 @@ -40534,10 +40535,10 @@ export default { 2549 ], "match_map_demo_id": [ - 5111 + 5113 ], "match_map_id": [ - 5111 + 5113 ], "render_jobs": [ 276 @@ -40611,7 +40612,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4609 + 4611 ], "duration_ms": [ 40 @@ -40620,7 +40621,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 @@ -40632,10 +40633,10 @@ export default { 2561 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "render_jobs": [ 273 @@ -40676,7 +40677,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4609 + 4611 ], "download_url": [ 80 @@ -40688,16 +40689,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -40776,7 +40777,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4609 + 4611 ], "download_url": [ 80 @@ -40788,16 +40789,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -40983,7 +40984,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -40992,7 +40993,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4609 + 4611 ], "duration_ms": [ 40 @@ -41001,16 +41002,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -41209,7 +41210,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "duration_ms": [ 40 @@ -41218,16 +41219,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -41482,7 +41483,7 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -41494,22 +41495,22 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 @@ -41518,10 +41519,10 @@ export default { 2537 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -41714,7 +41715,7 @@ export default { 2414 ], "created_at": [ - 4610 + 4612 ], "error_message": [ 82 @@ -41726,22 +41727,22 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4610 + 4612 ], "last_status_at": [ - 4610 + 4612 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 @@ -41750,10 +41751,10 @@ export default { 2549 ], "match_map_demo_id": [ - 5111 + 5113 ], "match_map_id": [ - 5111 + 5113 ], "status": [ 82 @@ -41809,7 +41810,7 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -41821,22 +41822,22 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 @@ -41845,10 +41846,10 @@ export default { 2561 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -41871,7 +41872,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -41880,25 +41881,25 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -41959,7 +41960,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -41968,25 +41969,25 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -42134,7 +42135,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -42151,7 +42152,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -42160,25 +42161,25 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -42257,7 +42258,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "error_message": [ 80 @@ -42266,25 +42267,25 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4609 + 4611 ], "last_status_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "status": [ 80 @@ -42407,7 +42408,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_connected": [ 5 @@ -42416,10 +42417,10 @@ export default { 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "party_source": [ 990 @@ -42645,7 +42646,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "is_connected": [ 6 @@ -42654,10 +42655,10 @@ export default { 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "party_id": [ - 5111 + 5113 ], "party_source": [ 991 @@ -42695,7 +42696,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_connected": [ 5 @@ -42704,10 +42705,10 @@ export default { 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "party_source": [ 990 @@ -42730,13 +42731,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -42776,13 +42777,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -42885,7 +42886,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -42905,16 +42906,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "party_source": [ 990 @@ -42999,16 +43000,16 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5109 + 5111 ], "party_id": [ - 5109 + 5111 ], "party_source": [ 990 @@ -43113,7 +43114,7 @@ export default { 5 ], "captain": [ - 5265 + 5267 ], "coach": [ 3993 @@ -43122,7 +43123,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "is_on_lineup": [ 5 @@ -43184,7 +43185,7 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_veto_picks": [ 2629, @@ -43237,7 +43238,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43414,7 +43415,7 @@ export default { 6 ], "captain": [ - 5269 + 5271 ], "coach": [ 3997 @@ -43423,7 +43424,7 @@ export default { 261 ], "id": [ - 5111 + 5113 ], "is_on_lineup": [ 6 @@ -43447,7 +43448,7 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_veto_picks": [ 2638 @@ -43462,7 +43463,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "team_name": [ 82 @@ -43482,7 +43483,7 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5275 + 5277 ], "coach": [ 4004 @@ -43491,7 +43492,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "lineup_players": [ 2458 @@ -43500,7 +43501,7 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_veto_picks": [ 2637 @@ -43509,7 +43510,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43523,16 +43524,16 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "name": [ 80 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43566,16 +43567,16 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "name": [ 80 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43651,7 +43652,7 @@ export default { 3035 ], "captain": [ - 5276 + 5278 ], "coach": [ 4006 @@ -43704,7 +43705,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -43716,13 +43717,13 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43795,13 +43796,13 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "team_name": [ 80 @@ -43943,7 +43944,7 @@ export default { } ], "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -44005,7 +44006,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "kills": [ 1844, @@ -44066,16 +44067,16 @@ export default { } ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -44367,7 +44368,7 @@ export default { 266 ], "created_at": [ - 4610 + 4612 ], "cs2_build": [ 82 @@ -44391,7 +44392,7 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "kills": [ 1846 @@ -44409,16 +44410,16 @@ export default { 2364 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "metadata_parsed_at": [ - 4610 + 4612 ], "playback_file": [ 82 @@ -44528,7 +44529,7 @@ export default { 273 ], "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -44543,7 +44544,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "kills": [ 1844 @@ -44558,16 +44559,16 @@ export default { 2368 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -44599,7 +44600,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -44614,19 +44615,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "map_name": [ 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -44705,7 +44706,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -44720,19 +44721,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "map_name": [ 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -44933,7 +44934,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -44964,7 +44965,7 @@ export default { 1844 ], "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -44976,7 +44977,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "kills": [ 1844 @@ -44985,13 +44986,13 @@ export default { 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -45157,7 +45158,7 @@ export default { 1844 ], "created_at": [ - 4609 + 4611 ], "cs2_build": [ 80 @@ -45172,7 +45173,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "kills": [ 1844 @@ -45181,13 +45182,13 @@ export default { 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "metadata_parsed_at": [ - 4609 + 4611 ], "playback_file": [ 80 @@ -45456,16 +45457,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "has_backup_file": [ 5 ], "id": [ - 5109 + 5111 ], "kills": [ 3390, @@ -45539,13 +45540,13 @@ export default { 2657 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_reason": [ 1417 @@ -45761,16 +45762,16 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "deleted_at": [ - 4610 + 4612 ], "has_backup_file": [ 6 ], "id": [ - 5111 + 5113 ], "kills": [ 3401 @@ -45806,13 +45807,13 @@ export default { 2666 ], "match_map_id": [ - 5111 + 5113 ], "round": [ 41 ], "time": [ - 4610 + 4612 ], "winning_reason": [ 1418 @@ -45859,13 +45860,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "kills": [ 3398 @@ -45898,13 +45899,13 @@ export default { 2675 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_reason": [ 1417 @@ -45921,13 +45922,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "lineup_1_money": [ 40 @@ -45948,13 +45949,13 @@ export default { 40 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_side": [ 80 @@ -46015,13 +46016,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "lineup_1_money": [ 40 @@ -46042,13 +46043,13 @@ export default { 40 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_side": [ 80 @@ -46199,7 +46200,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -46211,13 +46212,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "lineup_1_money": [ 40 @@ -46244,13 +46245,13 @@ export default { 40 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_reason": [ 1417 @@ -46434,13 +46435,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "lineup_1_money": [ 40 @@ -46467,13 +46468,13 @@ export default { 40 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "winning_reason": [ 1417 @@ -46713,28 +46714,28 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map": [ 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -46884,28 +46885,28 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "map": [ 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "side": [ 82 @@ -46923,28 +46924,28 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map": [ 2323 ], "map_id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -46958,19 +46959,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -47004,19 +47005,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -47113,7 +47114,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -47127,19 +47128,19 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -47167,19 +47168,19 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "side": [ 80 @@ -47208,10 +47209,10 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "demos": [ 2537, @@ -47267,7 +47268,7 @@ export default { 944 ], "ended_at": [ - 4609 + 4611 ], "flashes": [ 3345, @@ -47314,13 +47315,13 @@ export default { } ], "id": [ - 5109 + 5111 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_score": [ 40 @@ -47344,7 +47345,7 @@ export default { 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 @@ -47394,7 +47395,7 @@ export default { } ], "match_id": [ - 5109 + 5111 ], "objectives": [ 3591, @@ -47623,7 +47624,7 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "rounds": [ 2588, @@ -47670,7 +47671,7 @@ export default { } ], "started_at": [ - 4609 + 4611 ], "status": [ 949 @@ -47764,7 +47765,7 @@ export default { } ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -47965,10 +47966,10 @@ export default { 41 ], "created_at": [ - 4610 + 4612 ], "demo_processing_started_at": [ - 4610 + 4612 ], "demos": [ 2549 @@ -47986,7 +47987,7 @@ export default { 947 ], "ended_at": [ - 4610 + 4612 ], "flashes": [ 3356 @@ -47995,13 +47996,13 @@ export default { 3347 ], "id": [ - 5111 + 5113 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4610 + 4612 ], "lineup_1_score": [ 41 @@ -48025,7 +48026,7 @@ export default { 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 @@ -48037,7 +48038,7 @@ export default { 2364 ], "match_id": [ - 5111 + 5113 ], "objectives": [ 3600 @@ -48076,7 +48077,7 @@ export default { 41 ], "public_latest_clip_at": [ - 4610 + 4612 ], "rounds": [ 2597 @@ -48085,7 +48086,7 @@ export default { 2590 ], "started_at": [ - 4610 + 4612 ], "status": [ 950 @@ -48103,7 +48104,7 @@ export default { 2631 ], "winning_lineup_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -48135,10 +48136,10 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "demos": [ 2546 @@ -48147,16 +48148,16 @@ export default { 955 ], "ended_at": [ - 4609 + 4611 ], "flashes": [ 3353 ], "id": [ - 5109 + 5111 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_side": [ 1213 @@ -48174,7 +48175,7 @@ export default { 2323 ], "map_id": [ - 5109 + 5111 ], "match": [ 2841 @@ -48183,7 +48184,7 @@ export default { 2368 ], "match_id": [ - 5109 + 5111 ], "objectives": [ 3597 @@ -48207,13 +48208,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "rounds": [ 2594 ], "started_at": [ - 4609 + 4611 ], "status": [ 949 @@ -48225,7 +48226,7 @@ export default { 2637 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -48236,10 +48237,10 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "demos_download_url": [ 80 @@ -48248,13 +48249,13 @@ export default { 40 ], "ended_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_score": [ 40 @@ -48269,10 +48270,10 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "order": [ 40 @@ -48281,13 +48282,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "started_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -48348,10 +48349,10 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "demos_download_url": [ 80 @@ -48360,13 +48361,13 @@ export default { 40 ], "ended_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_score": [ 40 @@ -48381,10 +48382,10 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "order": [ 40 @@ -48393,13 +48394,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "started_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -48609,7 +48610,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -48621,19 +48622,19 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_side": [ 1213 @@ -48648,10 +48649,10 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "order": [ 40 @@ -48660,16 +48661,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "started_at": [ - 4609 + 4611 ], "status": [ 949 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -48838,19 +48839,19 @@ export default { 40 ], "created_at": [ - 4609 + 4611 ], "demo_processing_started_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "latest_clip_at": [ - 4609 + 4611 ], "lineup_1_side": [ 1213 @@ -48865,10 +48866,10 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "order": [ 40 @@ -48877,16 +48878,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4609 + 4611 ], "started_at": [ - 4609 + 4611 ], "status": [ 949 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -49135,7 +49136,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -49150,7 +49151,7 @@ export default { 2287 ], "map_pool_id": [ - 5109 + 5111 ], "map_veto": [ 5 @@ -49233,13 +49234,13 @@ export default { 1294 ], "tournament": [ - 5045 + 5047 ], "tournament_bracket": [ - 4653 + 4655 ], "tournament_stage": [ - 4870 + 4872 ], "tv_delay": [ 40 @@ -49382,7 +49383,7 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "invite_code": [ 82 @@ -49397,7 +49398,7 @@ export default { 2290 ], "map_pool_id": [ - 5111 + 5113 ], "map_veto": [ 6 @@ -49442,13 +49443,13 @@ export default { 1295 ], "tournament": [ - 5066 + 5068 ], "tournament_bracket": [ - 4664 + 4666 ], "tournament_stage": [ - 4882 + 4884 ], "tv_delay": [ 41 @@ -49522,7 +49523,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -49537,7 +49538,7 @@ export default { 2296 ], "map_pool_id": [ - 5109 + 5111 ], "map_veto": [ 5 @@ -49579,13 +49580,13 @@ export default { 1294 ], "tournament": [ - 5075 + 5077 ], "tournament_bracket": [ - 4673 + 4675 ], "tournament_stage": [ - 4894 + 4896 ], "tv_delay": [ 40 @@ -49608,7 +49609,7 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -49617,7 +49618,7 @@ export default { 40 ], "map_pool_id": [ - 5109 + 5111 ], "mr": [ 40 @@ -49649,7 +49650,7 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -49658,7 +49659,7 @@ export default { 40 ], "map_pool_id": [ - 5109 + 5111 ], "mr": [ 40 @@ -49807,13 +49808,13 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_bracket": [ - 4675 + 4677 ], "tournament_stage": [ - 4896 + 4898 ], "tv_delay": [ 3035 @@ -49830,7 +49831,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -49866,7 +49867,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -49878,7 +49879,7 @@ export default { 40 ], "map_pool_id": [ - 5109 + 5111 ], "map_veto": [ 5 @@ -50056,7 +50057,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -50068,7 +50069,7 @@ export default { 40 ], "map_pool_id": [ - 5109 + 5111 ], "map_veto": [ 5 @@ -50255,22 +50256,22 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50420,22 +50421,22 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "region": [ 82 @@ -50453,22 +50454,22 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50482,16 +50483,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50522,16 +50523,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50619,7 +50620,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -50633,16 +50634,16 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50670,16 +50671,16 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "region": [ 80 @@ -50717,7 +50718,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_game_streamer": [ 5 @@ -50729,7 +50730,7 @@ export default { 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 @@ -50738,7 +50739,7 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -50986,7 +50987,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "is_game_streamer": [ 6 @@ -50998,7 +50999,7 @@ export default { 82 ], "last_status_at": [ - 4610 + 4612 ], "link": [ 82 @@ -51007,7 +51008,7 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "mode": [ 82 @@ -51078,7 +51079,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_game_streamer": [ 5 @@ -51090,7 +51091,7 @@ export default { 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 @@ -51099,7 +51100,7 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -51131,19 +51132,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -51213,19 +51214,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -51373,7 +51374,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -51401,7 +51402,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_game_streamer": [ 5 @@ -51413,13 +51414,13 @@ export default { 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -51513,7 +51514,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_game_streamer": [ 5 @@ -51525,13 +51526,13 @@ export default { 80 ], "last_status_at": [ - 4609 + 4611 ], "link": [ 80 ], "match_id": [ - 5109 + 5111 ], "mode": [ 80 @@ -51858,13 +51859,13 @@ export default { 5 ], "cancels_at": [ - 4609 + 4611 ], "clutches": [ - 5289, + 5291, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51874,19 +51875,19 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], "clutches_aggregate": [ - 5290, + 5292, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51896,11 +51897,11 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], @@ -51911,10 +51912,10 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "current_match_map_id": [ - 5109 + 5111 ], "demos": [ 2537, @@ -52011,13 +52012,13 @@ export default { 4107 ], "effective_at": [ - 4609 + 4611 ], "elo_changes": [ - 5486, + 5488, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -52027,19 +52028,19 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "elo_changes_aggregate": [ - 5487, + 5489, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -52049,22 +52050,22 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -52100,13 +52101,13 @@ export default { 2495 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2": [ 2495 ], "lineup_2_id": [ - 5109 + 5111 ], "lineup_counts": [ 1842, @@ -52117,7 +52118,7 @@ export default { } ], "map_veto_picking_lineup_id": [ - 5109 + 5111 ], "map_veto_picks": [ 2629, @@ -52211,7 +52212,7 @@ export default { } ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -52220,10 +52221,10 @@ export default { 40 ], "opening_duels": [ - 5417, + 5419, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52233,19 +52234,19 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], "opening_duels_aggregate": [ - 5418, + 5420, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52255,11 +52256,11 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], @@ -52587,7 +52588,7 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5109 + 5111 ], "region_veto_picks": [ 2727, @@ -52637,7 +52638,7 @@ export default { 5 ], "scheduled_at": [ - 4609 + 4611 ], "server": [ 4134 @@ -52646,7 +52647,7 @@ export default { 80 ], "server_id": [ - 5109 + 5111 ], "server_plugin_runtime": [ 80 @@ -52664,7 +52665,7 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "status": [ 1010 @@ -52736,10 +52737,10 @@ export default { } ], "tournament_brackets": [ - 4653, + 4655, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52749,19 +52750,19 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "tournament_brackets_aggregate": [ - 4654, + 4656, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52771,11 +52772,11 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], @@ -52783,13 +52784,13 @@ export default { 80 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winner": [ 2495 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -52984,13 +52985,13 @@ export default { 6 ], "cancels_at": [ - 4610 + 4612 ], "clutches": [ - 5298 + 5300 ], "clutches_aggregate": [ - 5291 + 5293 ], "connection_link": [ 82 @@ -52999,10 +53000,10 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "current_match_map_id": [ - 5111 + 5113 ], "demos": [ 2549 @@ -53023,22 +53024,22 @@ export default { 4111 ], "effective_at": [ - 4610 + 4612 ], "elo_changes": [ - 5505 + 5507 ], "elo_changes_aggregate": [ - 5488 + 5490 ], "ended_at": [ - 4610 + 4612 ], "external_id": [ 82 ], "id": [ - 5111 + 5113 ], "invite_code": [ 82 @@ -53074,19 +53075,19 @@ export default { 2504 ], "lineup_1_id": [ - 5111 + 5113 ], "lineup_2": [ 2504 ], "lineup_2_id": [ - 5111 + 5113 ], "lineup_counts": [ 1843 ], "map_veto_picking_lineup_id": [ - 5111 + 5113 ], "map_veto_picks": [ 2638 @@ -53104,7 +53105,7 @@ export default { 2659 ], "match_options_id": [ - 5111 + 5113 ], "max_players_per_lineup": [ 41 @@ -53113,10 +53114,10 @@ export default { 41 ], "opening_duels": [ - 5426 + 5428 ], "opening_duels_aggregate": [ - 5419 + 5421 ], "options": [ 2703 @@ -53176,7 +53177,7 @@ export default { 82 ], "region_veto_picking_lineup_id": [ - 5111 + 5113 ], "region_veto_picks": [ 2736 @@ -53188,7 +53189,7 @@ export default { 6 ], "scheduled_at": [ - 4610 + 4612 ], "server": [ 4145 @@ -53197,7 +53198,7 @@ export default { 82 ], "server_id": [ - 5111 + 5113 ], "server_plugin_runtime": [ 82 @@ -53215,7 +53216,7 @@ export default { 82 ], "started_at": [ - 4610 + 4612 ], "status": [ 1011 @@ -53230,22 +53231,22 @@ export default { 4573 ], "tournament_brackets": [ - 4664 + 4666 ], "tournament_brackets_aggregate": [ - 4655 + 4657 ], "tv_connection_string": [ 82 ], "veto_pick_expires_at": [ - 4610 + 4612 ], "winner": [ 2504 ], "winning_lineup_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -53262,13 +53263,13 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4609 + 4611 ], "clutches": [ - 5295 + 5297 ], "created_at": [ - 4609 + 4611 ], "demos": [ 2546 @@ -53283,16 +53284,16 @@ export default { 4117 ], "elo_changes": [ - 5502 + 5504 ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -53301,13 +53302,13 @@ export default { 2513 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2": [ 2513 ], "lineup_2_id": [ - 5109 + 5111 ], "map_veto_picks": [ 2637 @@ -53316,10 +53317,10 @@ export default { 2663 ], "match_options_id": [ - 5109 + 5111 ], "opening_duels": [ - 5423 + 5425 ], "options": [ 2710 @@ -53361,7 +53362,7 @@ export default { 2735 ], "scheduled_at": [ - 4609 + 4611 ], "server": [ 4154 @@ -53370,7 +53371,7 @@ export default { 80 ], "server_id": [ - 5109 + 5111 ], "share_code": [ 80 @@ -53379,7 +53380,7 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "status": [ 1010 @@ -53388,16 +53389,16 @@ export default { 2764 ], "tournament_brackets": [ - 4661 + 4663 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winner": [ 2513 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -53405,7 +53406,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4609 + 4611 ], "connection_link": [ 80 @@ -53414,22 +53415,22 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "current_match_map_id": [ - 5109 + 5111 ], "effective_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -53438,19 +53439,19 @@ export default { 80 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2_id": [ - 5109 + 5111 ], "map_veto_picking_lineup_id": [ - 5109 + 5111 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -53468,16 +53469,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5109 + 5111 ], "scheduled_at": [ - 4609 + 4611 ], "server_error": [ 80 ], "server_id": [ - 5109 + 5111 ], "server_plugin_runtime": [ 80 @@ -53495,16 +53496,16 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -53580,7 +53581,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4609 + 4611 ], "connection_link": [ 80 @@ -53589,22 +53590,22 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "current_match_map_id": [ - 5109 + 5111 ], "effective_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "invite_code": [ 80 @@ -53613,19 +53614,19 @@ export default { 80 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2_id": [ - 5109 + 5111 ], "map_veto_picking_lineup_id": [ - 5109 + 5111 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -53643,16 +53644,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5109 + 5111 ], "scheduled_at": [ - 4609 + 4611 ], "server_error": [ 80 ], "server_id": [ - 5109 + 5111 ], "server_plugin_runtime": [ 80 @@ -53670,16 +53671,16 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -53818,7 +53819,7 @@ export default { 3035 ], "clutches_aggregate": [ - 5294 + 5296 ], "connection_link": [ 3035 @@ -53848,7 +53849,7 @@ export default { 3035 ], "elo_changes_aggregate": [ - 5501 + 5503 ], "ended_at": [ 3035 @@ -53926,7 +53927,7 @@ export default { 3035 ], "opening_duels_aggregate": [ - 5422 + 5424 ], "options": [ 2712 @@ -54013,7 +54014,7 @@ export default { 4569 ], "tournament_brackets_aggregate": [ - 4660 + 4662 ], "tv_connection_string": [ 3035 @@ -54033,7 +54034,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -54042,31 +54043,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "organizer_steam_id": [ 259 @@ -54078,13 +54079,13 @@ export default { 80 ], "scheduled_at": [ - 4609 + 4611 ], "server_error": [ 80 ], "server_id": [ - 5109 + 5111 ], "share_code": [ 80 @@ -54093,16 +54094,16 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "status": [ 1010 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -54187,34 +54188,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "effective_at": [ - 4609 + 4611 ], "ended_at": [ - 4609 + 4611 ], "external_id": [ 80 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "lineup_1_id": [ - 5109 + 5111 ], "lineup_2_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "organizer_steam_id": [ 259 @@ -54226,13 +54227,13 @@ export default { 80 ], "scheduled_at": [ - 4609 + 4611 ], "server_error": [ 80 ], "server_id": [ - 5109 + 5111 ], "share_code": [ 80 @@ -54241,16 +54242,16 @@ export default { 80 ], "started_at": [ - 4609 + 4611 ], "status": [ 1010 ], "veto_pick_expires_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -54556,7 +54557,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -54588,7 +54589,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -54614,10 +54615,10 @@ export default { } ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -54632,10 +54633,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -54653,7 +54654,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -54929,7 +54930,7 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "custom_avatar_url": [ 82 @@ -54956,7 +54957,7 @@ export default { 41 ], "faceit_updated_at": [ - 4610 + 4612 ], "faceit_url": [ 82 @@ -54977,10 +54978,10 @@ export default { 1846 ], "last_read_news_at": [ - 4610 + 4612 ], "last_sign_in_at": [ - 4610 + 4612 ], "name": [ 82 @@ -54995,10 +54996,10 @@ export default { 41 ], "premier_rank_updated_at": [ - 4610 + 4612 ], "presence_updated_at": [ - 4610 + 4612 ], "profile_url": [ 82 @@ -55016,7 +55017,7 @@ export default { 82 ], "steam_bans_checked_at": [ - 4610 + 4612 ], "steam_id": [ 261 @@ -55104,7 +55105,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -55131,7 +55132,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -55152,10 +55153,10 @@ export default { 1844 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -55170,10 +55171,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -55191,7 +55192,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -55214,7 +55215,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -55238,7 +55239,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -55256,10 +55257,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -55268,10 +55269,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -55286,7 +55287,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -55398,7 +55399,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -55422,7 +55423,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -55440,10 +55441,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -55452,10 +55453,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -55470,7 +55471,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -55717,7 +55718,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -55744,7 +55745,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -55765,10 +55766,10 @@ export default { 1844 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -55780,10 +55781,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -55801,7 +55802,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -56027,7 +56028,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -56054,7 +56055,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -56075,10 +56076,10 @@ export default { 1844 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -56090,10 +56091,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "presence_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -56111,7 +56112,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -56425,13 +56426,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56446,7 +56447,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56547,13 +56548,13 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "published_at": [ - 4610 + 4612 ], "slug": [ 82 @@ -56568,7 +56569,7 @@ export default { 82 ], "updated_at": [ - 4610 + 4612 ], "view_count": [ 261 @@ -56603,13 +56604,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56624,7 +56625,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56644,13 +56645,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56665,7 +56666,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56685,13 +56686,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56706,7 +56707,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56786,7 +56787,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -56804,13 +56805,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56825,7 +56826,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56889,13 +56890,13 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "published_at": [ - 4609 + 4611 ], "slug": [ 80 @@ -56910,7 +56911,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "view_count": [ 259 @@ -56992,7 +56993,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57087,7 +57088,7 @@ export default { 261 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -57116,7 +57117,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57133,7 +57134,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57150,7 +57151,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57230,7 +57231,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57285,7 +57286,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -57348,19 +57349,19 @@ export default { } ], "created_at": [ - 4609 + 4611 ], "deletable": [ 5 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "is_read": [ 5 @@ -57597,19 +57598,19 @@ export default { 1846 ], "created_at": [ - 4610 + 4612 ], "deletable": [ 6 ], "deleted_at": [ - 4610 + 4612 ], "entity_id": [ 82 ], "id": [ - 5111 + 5113 ], "is_read": [ 6 @@ -57674,19 +57675,19 @@ export default { 1844 ], "created_at": [ - 4609 + 4611 ], "deletable": [ 5 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "is_read": [ 5 @@ -57715,16 +57716,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -57767,16 +57768,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -57888,7 +57889,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -57910,19 +57911,19 @@ export default { 1844 ], "created_at": [ - 4609 + 4611 ], "deletable": [ 5 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "is_read": [ 5 @@ -58010,19 +58011,19 @@ export default { 1844 ], "created_at": [ - 4609 + 4611 ], "deletable": [ 5 ], "deleted_at": [ - 4609 + 4611 ], "entity_id": [ 80 ], "id": [ - 5109 + 5111 ], "is_read": [ 5 @@ -58176,7 +58177,7 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4609 + 4611 ], "pending_match_import": [ 3077 @@ -58359,7 +58360,7 @@ export default { 3045 ], "created_at": [ - 4610 + 4612 ], "pending_match_import": [ 3081 @@ -58391,7 +58392,7 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4609 + 4611 ], "pending_match_import": [ 3088 @@ -58411,7 +58412,7 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -58439,7 +58440,7 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -58524,7 +58525,7 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -58615,7 +58616,7 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -58732,7 +58733,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -58744,7 +58745,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "players": [ 3036, @@ -58797,7 +58798,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -58883,7 +58884,7 @@ export default { 3081 ], "created_at": [ - 4610 + 4612 ], "demo_url": [ 82 @@ -58895,7 +58896,7 @@ export default { 82 ], "match_start_time": [ - 4610 + 4612 ], "players": [ 3045 @@ -58910,7 +58911,7 @@ export default { 82 ], "updated_at": [ - 4610 + 4612 ], "valve_match_id": [ 3034 @@ -58930,7 +58931,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -58942,7 +58943,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "players": [ 3042 @@ -58954,7 +58955,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -58965,7 +58966,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -58977,7 +58978,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "share_code": [ 80 @@ -58986,7 +58987,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -58997,7 +58998,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -59009,7 +59010,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "share_code": [ 80 @@ -59018,7 +59019,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -59109,7 +59110,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -59121,7 +59122,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "share_code": [ 80 @@ -59130,7 +59131,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -59176,7 +59177,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "demo_url": [ 80 @@ -59188,7 +59189,7 @@ export default { 80 ], "match_start_time": [ - 4609 + 4611 ], "share_code": [ 80 @@ -59197,7 +59198,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "valve_match_id": [ 3033 @@ -59291,13 +59292,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -59491,13 +59492,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "non_awp_hits": [ 41 @@ -59625,13 +59626,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -59693,10 +59694,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -59758,10 +59759,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -59895,7 +59896,7 @@ export default { 259 ], "match_map_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -59934,10 +59935,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -60187,10 +60188,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "non_awp_hits": [ 40 @@ -60488,13 +60489,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -60725,13 +60726,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -60796,13 +60797,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -60837,10 +60838,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -60907,10 +60908,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -61034,7 +61035,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -61061,10 +61062,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -61263,10 +61264,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -61524,7 +61525,7 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "flash": [ 5 @@ -61536,13 +61537,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -61551,7 +61552,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -61783,7 +61784,7 @@ export default { 82 ], "deleted_at": [ - 4610 + 4612 ], "flash": [ 6 @@ -61795,13 +61796,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -61810,7 +61811,7 @@ export default { 41 ], "time": [ - 4610 + 4612 ], "__typename": [ 80 @@ -61848,7 +61849,7 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "flash": [ 5 @@ -61857,13 +61858,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -61872,7 +61873,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -61892,19 +61893,19 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -61956,19 +61957,19 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -62089,10 +62090,10 @@ export default { 259 ], "match_map_id": [ - 5109 + 5111 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -62115,22 +62116,22 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "flash": [ 5 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -62245,22 +62246,22 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "flash": [ 5 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -63252,7 +63253,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -63261,19 +63262,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -63285,7 +63286,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -63525,7 +63526,7 @@ export default { 41 ], "deleted_at": [ - 4610 + 4612 ], "health": [ 41 @@ -63534,19 +63535,19 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -63558,7 +63559,7 @@ export default { 6 ], "time": [ - 4610 + 4612 ], "with": [ 82 @@ -63632,7 +63633,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -63641,19 +63642,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -63662,7 +63663,7 @@ export default { 3033 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -63706,7 +63707,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -63715,19 +63716,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 3033 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -63836,7 +63837,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -63845,19 +63846,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 3033 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -64038,13 +64039,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -64086,7 +64087,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -64095,19 +64096,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 3033 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -64318,7 +64319,7 @@ export default { 40 ], "deleted_at": [ - 4609 + 4611 ], "health": [ 40 @@ -64327,19 +64328,19 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 3033 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -64582,7 +64583,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -64621,7 +64622,7 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -64642,7 +64643,7 @@ export default { 4079 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -64806,7 +64807,7 @@ export default { 3034 ], "created_at": [ - 4610 + 4612 ], "current": [ 3034 @@ -64845,7 +64846,7 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "opponent_team_elo_avg": [ 1692 @@ -64866,7 +64867,7 @@ export default { 4083 ], "season_id": [ - 5111 + 5113 ], "series_multiplier": [ 41 @@ -64964,7 +64965,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -65003,7 +65004,7 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -65024,7 +65025,7 @@ export default { 4090 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -65053,7 +65054,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -65089,7 +65090,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -65104,7 +65105,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -65130,7 +65131,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -65166,7 +65167,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -65181,7 +65182,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -65312,7 +65313,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -65336,7 +65337,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -65372,7 +65373,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -65387,7 +65388,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -65631,7 +65632,7 @@ export default { 3033 ], "created_at": [ - 4609 + 4611 ], "current": [ 3033 @@ -65667,7 +65668,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "opponent_team_elo_avg": [ 1691 @@ -65682,7 +65683,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -65992,16 +65993,16 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "player": [ 3993 @@ -66199,16 +66200,16 @@ export default { 41 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "observed_at": [ - 4610 + 4612 ], "player": [ 3997 @@ -66249,16 +66250,16 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "player": [ 4004 @@ -66281,13 +66282,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -66333,13 +66334,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -66439,7 +66440,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -66451,13 +66452,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -66590,13 +66591,13 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -66773,7 +66774,7 @@ export default { 3993 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 @@ -66782,13 +66783,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -66800,7 +66801,7 @@ export default { 3993 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67032,7 +67033,7 @@ export default { 3997 ], "deleted_at": [ - 4610 + 4612 ], "duration": [ 3034 @@ -67041,13 +67042,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "round": [ 41 @@ -67059,7 +67060,7 @@ export default { 3997 ], "time": [ - 4610 + 4612 ], "__typename": [ 80 @@ -67094,7 +67095,7 @@ export default { 4004 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 @@ -67103,13 +67104,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -67121,7 +67122,7 @@ export default { 4004 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67135,22 +67136,22 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67193,22 +67194,22 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67320,10 +67321,10 @@ export default { 259 ], "match_map_id": [ - 5109 + 5111 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67340,16 +67341,16 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -67358,7 +67359,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67485,16 +67486,16 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "duration": [ 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -67503,7 +67504,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -67695,7 +67696,7 @@ export default { 5 ], "deleted_at": [ - 4609 + 4611 ], "headshot": [ 5 @@ -67713,13 +67714,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "no_scope": [ 5 @@ -67740,7 +67741,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -67993,7 +67994,7 @@ export default { 6 ], "deleted_at": [ - 4610 + 4612 ], "headshot": [ 6 @@ -68011,13 +68012,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "no_scope": [ 6 @@ -68038,7 +68039,7 @@ export default { 6 ], "time": [ - 4610 + 4612 ], "with": [ 82 @@ -68641,7 +68642,7 @@ export default { 5 ], "deleted_at": [ - 4609 + 4611 ], "headshot": [ 5 @@ -68656,13 +68657,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "no_scope": [ 5 @@ -68680,7 +68681,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -68715,22 +68716,22 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "hitgroup": [ 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -68815,22 +68816,22 @@ export default { 80 ], "deleted_at": [ - 4609 + 4611 ], "hitgroup": [ 80 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -69011,10 +69012,10 @@ export default { 259 ], "match_map_id": [ - 5109 + 5111 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -69055,7 +69056,7 @@ export default { 5 ], "deleted_at": [ - 4609 + 4611 ], "headshot": [ 5 @@ -69067,10 +69068,10 @@ export default { 5 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "no_scope": [ 5 @@ -69085,7 +69086,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -69221,7 +69222,7 @@ export default { 5 ], "deleted_at": [ - 4609 + 4611 ], "headshot": [ 5 @@ -69233,10 +69234,10 @@ export default { 5 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "no_scope": [ 5 @@ -69251,7 +69252,7 @@ export default { 5 ], "time": [ - 4609 + 4611 ], "with": [ 80 @@ -69872,13 +69873,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -69971,7 +69972,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -70685,13 +70686,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "molotov_damage": [ 41 @@ -70784,7 +70785,7 @@ export default { 41 ], "updated_at": [ - 4610 + 4612 ], "util_on_death_count": [ 41 @@ -71140,13 +71141,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -71239,7 +71240,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -71373,10 +71374,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -71466,7 +71467,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -71827,10 +71828,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -71920,7 +71921,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -72428,7 +72429,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5109 + 5111 ], "steam_id": [ 259 @@ -72554,10 +72555,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -72647,7 +72648,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -74100,10 +74101,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -74193,7 +74194,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "util_on_death_count": [ 40 @@ -75996,13 +75997,13 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "overall_rating": [ 1691 ], "played_at": [ - 4609 + 4611 ], "positioning_rating": [ 1691 @@ -76178,13 +76179,13 @@ export default { 3034 ], "match_id": [ - 5111 + 5113 ], "overall_rating": [ 1692 ], "played_at": [ - 4610 + 4612 ], "positioning_rating": [ 1692 @@ -76240,13 +76241,13 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "overall_rating": [ 1691 ], "played_at": [ - 4609 + 4611 ], "positioning_rating": [ 1691 @@ -76302,13 +76303,13 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "overall_rating": [ 1691 ], "played_at": [ - 4609 + 4611 ], "positioning_rating": [ 1691 @@ -76597,13 +76598,13 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "overall_rating": [ 1691 ], "played_at": [ - 4609 + 4611 ], "positioning_rating": [ 1691 @@ -76952,7 +76953,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -77693,7 +77694,7 @@ export default { 41 ], "match_id": [ - 5111 + 5113 ], "molotov_damage": [ 41 @@ -77896,7 +77897,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -78099,7 +78100,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -78505,7 +78506,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -80326,7 +80327,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "molotov_damage": [ 40 @@ -82024,19 +82025,19 @@ export default { }, "player_objectives": { "deleted_at": [ - 4609 + 4611 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -82048,7 +82049,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1072 @@ -82222,19 +82223,19 @@ export default { 3600 ], "deleted_at": [ - 4610 + 4612 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -82246,7 +82247,7 @@ export default { 41 ], "time": [ - 4610 + 4612 ], "type": [ 1073 @@ -82269,19 +82270,19 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4609 + 4611 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -82293,7 +82294,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1072 @@ -82304,13 +82305,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -82319,7 +82320,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -82350,13 +82351,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -82365,7 +82366,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -82456,13 +82457,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -82471,13 +82472,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -82486,7 +82487,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1072 @@ -82574,13 +82575,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -82589,7 +82590,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1072 @@ -83860,22 +83861,22 @@ export default { }, "player_premier_rank_history": { "id": [ - 5109 + 5111 ], "map": [ 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "player": [ 3993 @@ -84073,22 +84074,22 @@ export default { 3659 ], "id": [ - 5111 + 5113 ], "map": [ 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "observed_at": [ - 4610 + 4612 ], "player": [ 3997 @@ -84129,22 +84130,22 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 5109 + 5111 ], "map": [ 2323 ], "map_id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "player": [ 4004 @@ -84167,16 +84168,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -84225,16 +84226,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -84346,7 +84347,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -84355,16 +84356,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -84497,16 +84498,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5109 + 5111 ], "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "observed_at": [ - 4609 + 4611 ], "previous_rank": [ 40 @@ -84677,16 +84678,16 @@ export default { }, "player_sanctions": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "e_sanction_type": [ 1147 ], "id": [ - 5109 + 5111 ], "player": [ 3993 @@ -84698,7 +84699,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by": [ 3993 @@ -84878,16 +84879,16 @@ export default { 3700 ], "created_at": [ - 4610 + 4612 ], "deleted_at": [ - 4610 + 4612 ], "e_sanction_type": [ 1150 ], "id": [ - 5111 + 5113 ], "player": [ 3997 @@ -84899,7 +84900,7 @@ export default { 82 ], "remove_sanction_date": [ - 4610 + 4612 ], "sanctioned_by": [ 3997 @@ -84928,16 +84929,16 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "e_sanction_type": [ 1158 ], "id": [ - 5109 + 5111 ], "player": [ 4004 @@ -84949,7 +84950,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by": [ 4004 @@ -84966,13 +84967,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -84981,7 +84982,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by_steam_id": [ 259 @@ -85018,13 +85019,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -85033,7 +85034,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by_steam_id": [ 259 @@ -85133,10 +85134,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -85145,13 +85146,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -85160,7 +85161,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by_steam_id": [ 259 @@ -85251,13 +85252,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "deleted_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -85266,7 +85267,7 @@ export default { 80 ], "remove_sanction_date": [ - 4609 + 4611 ], "sanctioned_by_steam_id": [ 259 @@ -85407,7 +85408,7 @@ export default { 4079 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -85808,7 +85809,7 @@ export default { 4083 ], "season_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -85864,7 +85865,7 @@ export default { 4090 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -85890,7 +85891,7 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -85942,7 +85943,7 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -86036,7 +86037,7 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -86071,7 +86072,7 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -86246,7 +86247,7 @@ export default { 259 ], "season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -86995,16 +86996,16 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "last_presence_state": [ 1844, @@ -87024,7 +87025,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87118,16 +87119,16 @@ export default { 3824 ], "bot_steam_account_id": [ - 5111 + 5113 ], "bot_steamid64": [ 261 ], "created_at": [ - 4610 + 4612 ], "friended_at": [ - 4610 + 4612 ], "last_presence_state": [ 1846 @@ -87142,7 +87143,7 @@ export default { 261 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -87186,16 +87187,16 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "last_presence_state": [ 1844 @@ -87210,7 +87211,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87218,16 +87219,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "status": [ 80 @@ -87236,7 +87237,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87244,16 +87245,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "status": [ 80 @@ -87262,7 +87263,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87344,16 +87345,16 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "last_presence_state": [ 1844 @@ -87365,7 +87366,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87417,16 +87418,16 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5109 + 5111 ], "bot_steamid64": [ 259 ], "created_at": [ - 4609 + 4611 ], "friended_at": [ - 4609 + 4611 ], "last_presence_state": [ 1844 @@ -87438,7 +87439,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87523,7 +87524,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87532,7 +87533,7 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "player": [ 3993 @@ -87541,7 +87542,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87627,7 +87628,7 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "last_error": [ 82 @@ -87636,7 +87637,7 @@ export default { 82 ], "last_polled_at": [ - 4610 + 4612 ], "player": [ 3997 @@ -87645,7 +87646,7 @@ export default { 261 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -87665,7 +87666,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87674,7 +87675,7 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "player": [ 4004 @@ -87683,7 +87684,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87694,7 +87695,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87703,13 +87704,13 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "steam_id": [ 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87720,7 +87721,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87729,13 +87730,13 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "steam_id": [ 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87809,7 +87810,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87818,13 +87819,13 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "steam_id": [ 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87870,7 +87871,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "last_error": [ 80 @@ -87879,13 +87880,13 @@ export default { 80 ], "last_polled_at": [ - 4609 + 4611 ], "steam_id": [ 259 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -87940,19 +87941,19 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4609 + 4611 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -88141,19 +88142,19 @@ export default { 3887 ], "deleted_at": [ - 4610 + 4612 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -88188,19 +88189,19 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4609 + 4611 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -88220,13 +88221,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -88266,13 +88267,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -88369,7 +88370,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -88381,13 +88382,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -88499,13 +88500,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "player_steam_id": [ 259 @@ -88655,19 +88656,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -88676,7 +88677,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1377 @@ -88856,19 +88857,19 @@ export default { 261 ], "deleted_at": [ - 4610 + 4612 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -88877,7 +88878,7 @@ export default { 41 ], "time": [ - 4610 + 4612 ], "type": [ 1378 @@ -88906,19 +88907,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -88927,7 +88928,7 @@ export default { 40 ], "time": [ - 4609 + 4611 ], "type": [ 1377 @@ -88944,19 +88945,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -88996,19 +88997,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -89108,10 +89109,10 @@ export default { 259 ], "match_map_id": [ - 5109 + 5111 ], "time": [ - 4609 + 4611 ], "__typename": [ 80 @@ -89126,19 +89127,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "type": [ 1377 @@ -89232,19 +89233,19 @@ export default { 259 ], "deleted_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 ], "time": [ - 4609 + 4611 ], "type": [ 1377 @@ -89370,7 +89371,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -89592,7 +89593,7 @@ export default { 41 ], "match_id": [ - 5111 + 5113 ], "shots": [ 41 @@ -89624,7 +89625,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -89656,7 +89657,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -89720,7 +89721,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -89984,7 +89985,7 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "shots": [ 40 @@ -90435,7 +90436,7 @@ export default { } ], "banned_until": [ - 4609 + 4611 ], "coach_lineups": [ 2495, @@ -90485,10 +90486,10 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "current_lobby_id": [ - 5109 + 5111 ], "custom_avatar_url": [ 80 @@ -90684,10 +90685,10 @@ export default { } ], "elo_history": [ - 5486, + 5488, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -90697,19 +90698,19 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "elo_history_aggregate": [ - 5487, + 5489, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -90719,11 +90720,11 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], @@ -90784,7 +90785,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -91084,10 +91085,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "lobby_players": [ 2242, @@ -91146,10 +91147,10 @@ export default { 40 ], "match_map_hltv": [ - 5591, + 5593, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -91159,19 +91160,19 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], "match_map_hltv_aggregate": [ - 5592, + 5594, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -91181,11 +91182,11 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], @@ -91300,13 +91301,13 @@ export default { } ], "matchmaking_cooldown": [ - 4609 + 4611 ], "multi_kills": [ - 5682, + 5684, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -91316,19 +91317,19 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], "multi_kills_aggregate": [ - 5683, + 5685, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -91338,11 +91339,11 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], @@ -91352,6 +91353,9 @@ export default { "name_registered": [ 5 ], + "notification_timezone": [ + 80 + ], "notifications": [ 2983, { @@ -91672,11 +91676,17 @@ export default { } ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 ], + "quiet_hours_end": [ + 4608 + ], + "quiet_hours_start": [ + 4608 + ], "role": [ 1092 ], @@ -91778,7 +91788,7 @@ export default { 3791 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -91897,10 +91907,10 @@ export default { 40 ], "tournament_organizers": [ - 4747, + 4749, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91910,19 +91920,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_organizers_aggregate": [ - 4748, + 4750, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91932,19 +91942,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_rosters": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91954,19 +91964,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_rosters_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91976,19 +91986,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournaments": [ - 5045, + 5047, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -91998,19 +92008,19 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_aggregate": [ - 5046, + 5048, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -92020,11 +92030,11 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], @@ -92293,7 +92303,7 @@ export default { 192 ], "banned_until": [ - 4610 + 4612 ], "coach_lineups": [ 2504 @@ -92305,10 +92315,10 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "current_lobby_id": [ - 5111 + 5113 ], "custom_avatar_url": [ 82 @@ -92347,10 +92357,10 @@ export default { 1846 ], "elo_history": [ - 5505 + 5507 ], "elo_history_aggregate": [ - 5488 + 5490 ], "faceit_elo": [ 41 @@ -92371,7 +92381,7 @@ export default { 41 ], "faceit_updated_at": [ - 4610 + 4612 ], "faceit_url": [ 82 @@ -92443,10 +92453,10 @@ export default { 82 ], "last_read_news_at": [ - 4610 + 4612 ], "last_sign_in_at": [ - 4610 + 4612 ], "lobby_players": [ 2253 @@ -92467,10 +92477,10 @@ export default { 41 ], "match_map_hltv": [ - 5600 + 5602 ], "match_map_hltv_aggregate": [ - 5593 + 5595 ], "match_map_stats": [ 3508 @@ -92488,13 +92498,13 @@ export default { 2832 ], "matchmaking_cooldown": [ - 4610 + 4612 ], "multi_kills": [ - 5691 + 5693 ], "multi_kills_aggregate": [ - 5684 + 5686 ], "name": [ 82 @@ -92502,6 +92512,9 @@ export default { "name_registered": [ 6 ], + "notification_timezone": [ + 82 + ], "notifications": [ 2995 ], @@ -92551,11 +92564,17 @@ export default { 3652 ], "premier_rank_updated_at": [ - 4610 + 4612 ], "profile_url": [ 82 ], + "quiet_hours_end": [ + 4609 + ], + "quiet_hours_start": [ + 4609 + ], "role": [ 1093 ], @@ -92581,7 +92600,7 @@ export default { 3795 ], "steam_bans_checked_at": [ - 4610 + 4612 ], "steam_id": [ 261 @@ -92605,22 +92624,22 @@ export default { 41 ], "tournament_organizers": [ - 4756 + 4758 ], "tournament_organizers_aggregate": [ - 4749 + 4751 ], "tournament_rosters": [ - 4971 + 4973 ], "tournament_rosters_aggregate": [ - 4964 + 4966 ], "tournaments": [ - 5066 + 5068 ], "tournaments_aggregate": [ - 5047 + 5049 ], "utility_thrown": [ 3928 @@ -92709,7 +92728,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -92733,7 +92752,7 @@ export default { 428 ], "elo_history": [ - 5502 + 5504 ], "faceit_elo": [ 40 @@ -92751,7 +92770,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -92781,16 +92800,16 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "lobby_players": [ 2250 ], "match_map_hltv": [ - 5597 + 5599 ], "match_map_stats": [ 3505 @@ -92799,7 +92818,7 @@ export default { 3564 ], "multi_kills": [ - 5688 + 5690 ], "name": [ 80 @@ -92807,6 +92826,9 @@ export default { "name_registered": [ 5 ], + "notification_timezone": [ + 80 + ], "notifications": [ 2992 ], @@ -92832,11 +92854,17 @@ export default { 3656 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 ], + "quiet_hours_end": [ + 4608 + ], + "quiet_hours_start": [ + 4608 + ], "role": [ 1092 ], @@ -92856,7 +92884,7 @@ export default { 3802 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -92868,13 +92896,13 @@ export default { 4328 ], "tournament_organizers": [ - 4753 + 4755 ], "tournament_rosters": [ - 4968 + 4970 ], "tournaments": [ - 5063 + 5065 ], "utility_thrown": [ 3925 @@ -92897,16 +92925,16 @@ export default { 80 ], "banned_until": [ - 4609 + 4611 ], "country": [ 80 ], "created_at": [ - 4609 + 4611 ], "current_lobby_id": [ - 5109 + 5111 ], "custom_avatar_url": [ 80 @@ -92930,7 +92958,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -92942,10 +92970,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "losses": [ 40 @@ -92960,16 +92988,19 @@ export default { 40 ], "matchmaking_cooldown": [ - 4609 + 4611 ], "name": [ 80 ], + "notification_timezone": [ + 80 + ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -92978,7 +93009,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -93010,16 +93041,16 @@ export default { 80 ], "banned_until": [ - 4609 + 4611 ], "country": [ 80 ], "created_at": [ - 4609 + 4611 ], "current_lobby_id": [ - 5109 + 5111 ], "custom_avatar_url": [ 80 @@ -93043,7 +93074,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -93055,10 +93086,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "losses": [ 40 @@ -93073,16 +93104,19 @@ export default { 40 ], "matchmaking_cooldown": [ - 4609 + 4611 ], "name": [ 80 ], + "notification_timezone": [ + 80 + ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 @@ -93091,7 +93125,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -93213,7 +93247,7 @@ export default { 3035 ], "elo_history_aggregate": [ - 5501 + 5503 ], "faceit_elo": [ 3035 @@ -93306,7 +93340,7 @@ export default { 3035 ], "match_map_hltv_aggregate": [ - 5596 + 5598 ], "match_map_stats_aggregate": [ 3504 @@ -93321,7 +93355,7 @@ export default { 3035 ], "multi_kills_aggregate": [ - 5687 + 5689 ], "name": [ 3035 @@ -93329,6 +93363,9 @@ export default { "name_registered": [ 3035 ], + "notification_timezone": [ + 3035 + ], "notifications_aggregate": [ 2990 ], @@ -93362,6 +93399,12 @@ export default { "profile_url": [ 3035 ], + "quiet_hours_end": [ + 3035 + ], + "quiet_hours_start": [ + 3035 + ], "role": [ 3035 ], @@ -93399,13 +93442,13 @@ export default { 3035 ], "tournament_organizers_aggregate": [ - 4752 + 4754 ], "tournament_rosters_aggregate": [ - 4967 + 4969 ], "tournaments_aggregate": [ - 5062 + 5064 ], "utility_thrown_aggregate": [ 3924 @@ -93452,7 +93495,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -93476,7 +93519,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -93488,10 +93531,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -93499,15 +93542,24 @@ export default { "name_registered": [ 5 ], + "notification_timezone": [ + 80 + ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 ], + "quiet_hours_end": [ + 4608 + ], + "quiet_hours_start": [ + 4608 + ], "role": [ 1092 ], @@ -93518,7 +93570,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -93711,7 +93763,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "custom_avatar_url": [ 80 @@ -93735,7 +93787,7 @@ export default { 40 ], "faceit_updated_at": [ - 4609 + 4611 ], "faceit_url": [ 80 @@ -93747,10 +93799,10 @@ export default { 80 ], "last_read_news_at": [ - 4609 + 4611 ], "last_sign_in_at": [ - 4609 + 4611 ], "name": [ 80 @@ -93758,15 +93810,24 @@ export default { "name_registered": [ 5 ], + "notification_timezone": [ + 80 + ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4609 + 4611 ], "profile_url": [ 80 ], + "quiet_hours_end": [ + 4608 + ], + "quiet_hours_start": [ + 4608 + ], "role": [ 1092 ], @@ -93777,7 +93838,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -94024,7 +94085,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "runtime": [ 1112 @@ -94116,7 +94177,7 @@ export default { 41 ], "published_at": [ - 4610 + 4612 ], "runtime": [ 1113 @@ -94142,7 +94203,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "runtime": [ 1112 @@ -94159,7 +94220,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "version": [ 80 @@ -94173,7 +94234,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "version": [ 80 @@ -94241,7 +94302,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "runtime": [ 1112 @@ -94293,7 +94354,7 @@ export default { 40 ], "published_at": [ - 4609 + 4611 ], "runtime": [ 1112 @@ -94357,16 +94418,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94461,16 +94522,16 @@ export default { 82 ], "created_at": [ - 4610 + 4612 ], "endpoint": [ 82 ], "id": [ - 5111 + 5113 ], "last_used_at": [ - 4610 + 4612 ], "p256dh": [ 82 @@ -94499,16 +94560,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94528,16 +94589,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94557,16 +94618,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94637,7 +94698,7 @@ export default { }, "push_subscriptions_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -94649,16 +94710,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94713,16 +94774,16 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "endpoint": [ 80 ], "id": [ - 5109 + 5111 ], "last_used_at": [ - 4609 + 4611 ], "p256dh": [ 80 @@ -94786,7 +94847,7 @@ export default { }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -94794,7 +94855,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -94810,7 +94871,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -94862,16 +94923,16 @@ export default { } ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "needs_rebuild": [ 5 @@ -94924,7 +94985,7 @@ export default { } ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95013,16 +95074,16 @@ export default { 192 ], "created_at": [ - 4610 + 4612 ], "description": [ 82 ], "ends_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "needs_rebuild": [ 6 @@ -95037,7 +95098,7 @@ export default { 3734 ], "starts_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -95057,16 +95118,16 @@ export default { 196 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "needs_rebuild": [ 5 @@ -95078,7 +95139,7 @@ export default { 3748 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95086,22 +95147,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "number": [ 40 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95109,22 +95170,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "number": [ 40 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95200,7 +95261,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -95209,16 +95270,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "needs_rebuild": [ 5 @@ -95227,7 +95288,7 @@ export default { 40 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95270,16 +95331,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "description": [ 80 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "needs_rebuild": [ 5 @@ -95288,7 +95349,7 @@ export default { 40 ], "starts_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -95801,7 +95862,7 @@ export default { }, "servers": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -95840,7 +95901,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_dedicated": [ 5 @@ -95896,7 +95957,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_runtime": [ 1112 @@ -95917,7 +95978,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "server_region": [ 4107 @@ -95932,7 +95993,7 @@ export default { 1193 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -96149,7 +96210,7 @@ export default { 4145 ], "api_password": [ - 5111 + 5113 ], "boot_status": [ 82 @@ -96188,7 +96249,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "is_dedicated": [ 6 @@ -96206,7 +96267,7 @@ export default { 41 ], "offline_at": [ - 4610 + 4612 ], "plugin_runtime": [ 1113 @@ -96227,7 +96288,7 @@ export default { 82 ], "reserved_by_match_id": [ - 5111 + 5113 ], "server_region": [ 4111 @@ -96242,7 +96303,7 @@ export default { 1194 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -96265,7 +96326,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -96298,7 +96359,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_dedicated": [ 5 @@ -96313,7 +96374,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_runtime": [ 1112 @@ -96334,7 +96395,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "server_region": [ 4117 @@ -96349,7 +96410,7 @@ export default { 1193 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -96357,7 +96418,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -96384,7 +96445,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -96393,7 +96454,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_version": [ 80 @@ -96405,7 +96466,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "steam_relay": [ 80 @@ -96414,7 +96475,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -96481,7 +96542,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -96508,7 +96569,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -96517,7 +96578,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_version": [ 80 @@ -96529,7 +96590,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "steam_relay": [ 80 @@ -96538,7 +96599,7 @@ export default { 40 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -96739,7 +96800,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -96750,7 +96811,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -96777,7 +96838,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_dedicated": [ 5 @@ -96789,7 +96850,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_runtime": [ 1112 @@ -96810,7 +96871,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "steam_relay": [ 80 @@ -96822,7 +96883,7 @@ export default { 1193 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -96925,7 +96986,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 5109 + 5111 ], "boot_status": [ 80 @@ -96952,7 +97013,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_dedicated": [ 5 @@ -96964,7 +97025,7 @@ export default { 40 ], "offline_at": [ - 4609 + 4611 ], "plugin_runtime": [ 1112 @@ -96985,7 +97046,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5109 + 5111 ], "steam_relay": [ 80 @@ -96997,7 +97058,7 @@ export default { 1193 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -97354,10 +97415,10 @@ export default { }, "steam_account_claims": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97375,7 +97436,7 @@ export default { 4224 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97476,10 +97537,10 @@ export default { 4207 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "k8s_job_name": [ 82 @@ -97497,7 +97558,7 @@ export default { 4228 ], "steam_account_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -97506,10 +97567,10 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97527,7 +97588,7 @@ export default { 4235 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97535,10 +97596,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97550,7 +97611,7 @@ export default { 80 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97581,10 +97642,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97596,7 +97657,7 @@ export default { 80 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97681,7 +97742,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97690,10 +97751,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97705,7 +97766,7 @@ export default { 80 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97724,10 +97785,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "k8s_job_name": [ 80 @@ -97739,7 +97800,7 @@ export default { 80 ], "steam_account_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -97803,13 +97864,13 @@ export default { } ], "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node": [ 1720 @@ -97830,7 +97891,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -97928,13 +97989,13 @@ export default { 4202 ], "created_at": [ - 4610 + 4612 ], "friend_capacity": [ 41 ], "id": [ - 5111 + 5113 ], "last_node": [ 1732 @@ -97955,7 +98016,7 @@ export default { 261 ], "updated_at": [ - 4610 + 4612 ], "username": [ 82 @@ -97984,13 +98045,13 @@ export default { 4206 ], "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node": [ 1744 @@ -98011,7 +98072,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -98022,13 +98083,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node_id": [ 80 @@ -98046,7 +98107,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -98057,13 +98118,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node_id": [ 80 @@ -98081,7 +98142,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -98169,7 +98230,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -98178,13 +98239,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node_id": [ 80 @@ -98202,7 +98263,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -98266,13 +98327,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "friend_capacity": [ 40 ], "id": [ - 5109 + 5111 ], "last_node_id": [ 80 @@ -98290,7 +98351,7 @@ export default { 259 ], "updated_at": [ - 4609 + 4611 ], "username": [ 80 @@ -98372,7 +98433,7 @@ export default { }, "system_alerts": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 @@ -98381,10 +98442,10 @@ export default { 5 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "is_active": [ 5 @@ -98399,7 +98460,7 @@ export default { 1233 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98482,7 +98543,7 @@ export default { 4256 ], "created_at": [ - 4610 + 4612 ], "created_by": [ 261 @@ -98491,10 +98552,10 @@ export default { 6 ], "expires_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "is_active": [ 6 @@ -98509,7 +98570,7 @@ export default { 1234 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -98526,7 +98587,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 @@ -98535,10 +98596,10 @@ export default { 5 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "is_active": [ 5 @@ -98553,7 +98614,7 @@ export default { 1233 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98561,16 +98622,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -98579,7 +98640,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98587,16 +98648,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "message": [ 80 @@ -98605,7 +98666,7 @@ export default { 80 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98673,7 +98734,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -98682,7 +98743,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 @@ -98691,10 +98752,10 @@ export default { 5 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "is_active": [ 5 @@ -98709,7 +98770,7 @@ export default { 1233 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98752,7 +98813,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "created_by": [ 259 @@ -98761,10 +98822,10 @@ export default { 5 ], "expires_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "is_active": [ 5 @@ -98779,7 +98840,7 @@ export default { 1233 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -98834,10 +98895,10 @@ export default { }, "team_invites": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by": [ 3993 @@ -98855,7 +98916,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99026,10 +99087,10 @@ export default { 4288 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "invited_by": [ 3997 @@ -99047,7 +99108,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -99067,10 +99128,10 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by": [ 4004 @@ -99088,7 +99149,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99096,10 +99157,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -99108,7 +99169,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99136,10 +99197,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -99148,7 +99209,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99230,7 +99291,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99239,10 +99300,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -99251,7 +99312,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99336,10 +99397,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -99348,7 +99409,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99480,7 +99541,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99706,7 +99767,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -99744,7 +99805,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99758,7 +99819,7 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99786,7 +99847,7 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99865,7 +99926,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99891,7 +99952,7 @@ export default { 1274 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -99973,7 +100034,7 @@ export default { 1274 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100060,7 +100121,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100072,10 +100133,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 @@ -100084,7 +100145,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100170,7 +100231,7 @@ export default { 4369 ], "created_at": [ - 4610 + 4612 ], "elo_max": [ 41 @@ -100182,10 +100243,10 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "last_notified_at": [ - 4610 + 4612 ], "regions": [ 81 @@ -100194,7 +100255,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -100214,7 +100275,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100226,10 +100287,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 @@ -100238,7 +100299,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100246,7 +100307,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100255,16 +100316,16 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100272,7 +100333,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100281,16 +100342,16 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100355,7 +100416,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100364,7 +100425,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100376,16 +100437,16 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100437,7 +100498,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -100449,16 +100510,16 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "regions": [ 80 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100525,25 +100586,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4609 + 4611 ], "team": [ 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100684,25 +100745,25 @@ export default { 4401 ], "created_at": [ - 4610 + 4612 ], "ends_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4610 + 4612 ], "team": [ 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -100711,25 +100772,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4609 + 4611 ], "team": [ 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100737,19 +100798,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "starts_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100777,19 +100838,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "starts_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100868,7 +100929,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100879,22 +100940,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": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100913,22 +100974,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "ends_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -100948,10 +101009,10 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by": [ 3993 @@ -100963,16 +101024,16 @@ export default { 4562 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request": [ 4461 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101137,10 +101198,10 @@ export default { 4429 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "proposed_by": [ 3997 @@ -101152,16 +101213,16 @@ export default { 4573 ], "proposed_by_team_id": [ - 5111 + 5113 ], "proposed_scheduled_at": [ - 4610 + 4612 ], "request": [ 4472 ], "request_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -101178,10 +101239,10 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by": [ 4004 @@ -101193,16 +101254,16 @@ export default { 4582 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request": [ 4481 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101210,22 +101271,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101256,22 +101317,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101359,7 +101420,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101368,22 +101429,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101450,22 +101511,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5109 + 5111 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "request_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101558,19 +101619,19 @@ export default { 4562 ], "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "canceled_late": [ 5 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team": [ 4562 @@ -101579,22 +101640,22 @@ export default { 5 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_options": [ 2699 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 @@ -101644,7 +101705,7 @@ export default { } ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -101656,7 +101717,7 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "status": [ 1173 @@ -101668,7 +101729,7 @@ export default { 5 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -101879,19 +101940,19 @@ export default { 4573 ], "awaiting_team_id": [ - 5111 + 5113 ], "canceled_by_team_id": [ - 5111 + 5113 ], "canceled_late": [ 6 ], "created_at": [ - 4610 + 4612 ], "expires_at": [ - 4610 + 4612 ], "from_team": [ 4573 @@ -101900,22 +101961,22 @@ export default { 6 ], "from_team_id": [ - 5111 + 5113 ], "id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_options": [ 2703 ], "match_options_id": [ - 5111 + 5113 ], "match_outcome": [ 82 @@ -101927,7 +101988,7 @@ export default { 4422 ], "proposed_scheduled_at": [ - 4610 + 4612 ], "region": [ 82 @@ -101939,7 +102000,7 @@ export default { 261 ], "responded_at": [ - 4610 + 4612 ], "status": [ 1174 @@ -101951,7 +102012,7 @@ export default { 6 ], "to_team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -101974,19 +102035,19 @@ export default { 4582 ], "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "canceled_late": [ 5 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team": [ 4582 @@ -101995,22 +102056,22 @@ export default { 5 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_options": [ 2710 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 @@ -102019,7 +102080,7 @@ export default { 4426 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -102031,7 +102092,7 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "status": [ 1173 @@ -102043,7 +102104,7 @@ export default { 5 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102051,34 +102112,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -102087,10 +102148,10 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102145,34 +102206,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -102181,10 +102242,10 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102358,7 +102419,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102372,40 +102433,40 @@ export default { 5 ], "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "canceled_late": [ 5 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -102414,7 +102475,7 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "status": [ 1173 @@ -102423,7 +102484,7 @@ export default { 5 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102493,40 +102554,40 @@ export default { 5 ], "awaiting_team_id": [ - 5109 + 5111 ], "canceled_by_team_id": [ - 5109 + 5111 ], "canceled_late": [ 5 ], "created_at": [ - 4609 + 4611 ], "expires_at": [ - 4609 + 4611 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4609 + 4611 ], "region": [ 80 @@ -102535,7 +102596,7 @@ export default { 259 ], "responded_at": [ - 4609 + 4611 ], "status": [ 1173 @@ -102544,7 +102605,7 @@ export default { 5 ], "to_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102634,7 +102695,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -102646,10 +102707,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -102661,10 +102722,10 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -102753,7 +102814,7 @@ export default { 6 ], "created_at": [ - 4610 + 4612 ], "elo_max": [ 41 @@ -102765,10 +102826,10 @@ export default { 6 ], "id": [ - 5111 + 5113 ], "map_ids": [ - 5110 + 5112 ], "notes": [ 82 @@ -102780,10 +102841,10 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -102806,7 +102867,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -102818,10 +102879,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -102833,10 +102894,10 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -102844,7 +102905,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -102853,10 +102914,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -102865,10 +102926,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -102876,7 +102937,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -102885,10 +102946,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -102897,10 +102958,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -102985,7 +103046,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -102997,7 +103058,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -103009,10 +103070,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -103021,10 +103082,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -103079,7 +103140,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "elo_max": [ 40 @@ -103091,10 +103152,10 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "map_ids": [ - 5109 + 5111 ], "notes": [ 80 @@ -103103,10 +103164,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -103173,16 +103234,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103274,16 +103335,16 @@ export default { 4539 ], "created_at": [ - 4610 + 4612 ], "group_hash": [ 82 ], "id": [ - 5111 + 5113 ], "last_notified_at": [ - 4610 + 4612 ], "member_steam_ids": [ 260 @@ -103309,16 +103370,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103335,16 +103396,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103361,16 +103422,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103438,7 +103499,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -103447,16 +103508,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103508,16 +103569,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "group_hash": [ 80 ], "id": [ - 5109 + 5111 ], "last_notified_at": [ - 4609 + 4611 ], "member_steam_ids": [ 259 @@ -103646,7 +103707,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "invites": [ 4279, @@ -103771,10 +103832,10 @@ export default { 259 ], "ranks": [ - 5811 + 5813 ], "reputation": [ - 5831 + 5833 ], "role": [ 80 @@ -103874,10 +103935,10 @@ export default { 80 ], "tournament_teams": [ - 5003, + 5005, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -103887,19 +103948,19 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "tournament_teams_aggregate": [ - 5004, + 5006, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -103909,11 +103970,11 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], @@ -104153,7 +104214,7 @@ export default { 261 ], "id": [ - 5111 + 5113 ], "invites": [ 4288 @@ -104183,10 +104244,10 @@ export default { 261 ], "ranks": [ - 5815 + 5817 ], "reputation": [ - 5835 + 5837 ], "role": [ 82 @@ -104210,10 +104271,10 @@ export default { 82 ], "tournament_teams": [ - 5012 + 5014 ], "tournament_teams_aggregate": [ - 5005 + 5007 ], "__typename": [ 80 @@ -104245,7 +104306,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "invites": [ 4285 @@ -104266,10 +104327,10 @@ export default { 259 ], "ranks": [ - 5819 + 5821 ], "reputation": [ - 5839 + 5841 ], "roster": [ 4328 @@ -104284,7 +104345,7 @@ export default { 80 ], "tournament_teams": [ - 5009 + 5011 ], "__typename": [ 80 @@ -104298,7 +104359,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -104347,7 +104408,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -104474,10 +104535,10 @@ export default { 3035 ], "ranks": [ - 5820 + 5822 ], "reputation": [ - 5840 + 5842 ], "role": [ 3035 @@ -104495,7 +104556,7 @@ export default { 3035 ], "tournament_teams_aggregate": [ - 5008 + 5010 ], "__typename": [ 80 @@ -104503,7 +104564,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -104520,7 +104581,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "is_organization": [ 5 @@ -104623,7 +104684,7 @@ export default { 259 ], "id": [ - 5109 + 5111 ], "is_organization": [ 5 @@ -104744,35 +104805,68 @@ export default { 80 ] }, + "time": {}, + "time_comparison_exp": { + "_eq": [ + 4608 + ], + "_gt": [ + 4608 + ], + "_gte": [ + 4608 + ], + "_in": [ + 4608 + ], + "_is_null": [ + 5 + ], + "_lt": [ + 4608 + ], + "_lte": [ + 4608 + ], + "_neq": [ + 4608 + ], + "_nin": [ + 4608 + ], + "__typename": [ + 80 + ] + }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4609 + 4611 ], "_gt": [ - 4609 + 4611 ], "_gte": [ - 4609 + 4611 ], "_in": [ - 4609 + 4611 ], "_is_null": [ 5 ], "_lt": [ - 4609 + 4611 ], "_lte": [ - 4609 + 4611 ], "_neq": [ - 4609 + 4611 ], "_nin": [ - 4609 + 4611 ], "__typename": [ 80 @@ -104783,16 +104877,16 @@ export default { 231 ], "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -104804,13 +104898,13 @@ export default { 40 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -104818,10 +104912,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4615 + 4617 ], "nodes": [ - 4611 + 4613 ], "__typename": [ 80 @@ -104829,7 +104923,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4614 + 4616 ], "__typename": [ 80 @@ -104837,13 +104931,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4633 + 4635 ], "distinct": [ 5 ], "filter": [ - 4620 + 4622 ], "predicate": [ 41 @@ -104854,13 +104948,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4618 + 4620 ], "count": [ 40, { "columns": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "distinct": [ @@ -104869,31 +104963,31 @@ export default { } ], "max": [ - 4624 + 4626 ], "min": [ - 4626 + 4628 ], "stddev": [ - 4635 + 4637 ], "stddev_pop": [ - 4637 + 4639 ], "stddev_samp": [ - 4639 + 4641 ], "sum": [ - 4643 + 4645 ], "var_pop": [ - 4647 + 4649 ], "var_samp": [ - 4649 + 4651 ], "variance": [ - 4651 + 4653 ], "__typename": [ 80 @@ -104901,37 +104995,37 @@ export default { }, "tournament_awards_aggregate_order_by": { "avg": [ - 4619 + 4621 ], "count": [ 3035 ], "max": [ - 4625 + 4627 ], "min": [ - 4627 + 4629 ], "stddev": [ - 4636 + 4638 ], "stddev_pop": [ - 4638 + 4640 ], "stddev_samp": [ - 4640 + 4642 ], "sum": [ - 4644 + 4646 ], "var_pop": [ - 4648 + 4650 ], "var_samp": [ - 4650 + 4652 ], "variance": [ - 4652 + 4654 ], "__typename": [ 80 @@ -104939,10 +105033,10 @@ export default { }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4623 + 4625 ], "on_conflict": [ - 4630 + 4632 ], "__typename": [ 80 @@ -104972,28 +105066,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4620 + 4622 ], "_not": [ - 4620 + 4622 ], "_or": [ - 4620 + 4622 ], "award": [ 235 ], "award_id": [ - 5111 + 5113 ], "created_at": [ - 4610 + 4612 ], "custom_name": [ 82 ], "id": [ - 5111 + 5113 ], "image_url": [ 82 @@ -105005,13 +105099,13 @@ export default { 41 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "updated_at": [ - 4610 + 4612 ], "__typename": [ 80 @@ -105034,16 +105128,16 @@ export default { 242 ], "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -105055,13 +105149,13 @@ export default { 40 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -105069,16 +105163,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -105090,10 +105184,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -105133,16 +105227,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -105154,10 +105248,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -105200,7 +105294,7 @@ export default { 40 ], "returning": [ - 4611 + 4613 ], "__typename": [ 80 @@ -105208,10 +105302,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4623 + 4625 ], "on_conflict": [ - 4630 + 4632 ], "__typename": [ 80 @@ -105219,13 +105313,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4621 + 4623 ], "update_columns": [ - 4645 + 4647 ], "where": [ - 4620 + 4622 ], "__typename": [ 80 @@ -105257,7 +105351,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -105271,7 +105365,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -105280,16 +105374,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -105301,10 +105395,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -105378,7 +105472,7 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4642 + 4644 ], "ordering": [ 315 @@ -105389,16 +105483,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5109 + 5111 ], "created_at": [ - 4609 + 4611 ], "custom_name": [ 80 ], "id": [ - 5109 + 5111 ], "image_url": [ 80 @@ -105410,10 +105504,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "updated_at": [ - 4609 + 4611 ], "__typename": [ 80 @@ -105444,13 +105538,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4622 + 4624 ], "_set": [ - 4634 + 4636 ], "where": [ - 4620 + 4622 ], "__typename": [ 80 @@ -105527,13 +105621,13 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "feeding_brackets": [ - 4653, + 4655, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -105543,11 +105637,11 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], @@ -105558,34 +105652,34 @@ export default { 3033 ], "id": [ - 5109 + 5111 ], "loser_bracket": [ - 4653 + 4655 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "options": [ 2699 ], "parent_bracket": [ - 4653 + 4655 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -105594,10 +105688,10 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "scheduling_proposals": [ 1981, @@ -105644,28 +105738,28 @@ export default { } ], "stage": [ - 4870 + 4872 ], "team_1": [ - 5003 + 5005 ], "team_1_seed": [ 40 ], "team_2": [ - 5003 + 5005 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -105673,10 +105767,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4659 + 4661 ], "nodes": [ - 4653 + 4655 ], "__typename": [ 80 @@ -105684,13 +105778,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4656 + 4658 ], "bool_or": [ - 4657 + 4659 ], "count": [ - 4658 + 4660 ], "__typename": [ 80 @@ -105698,13 +105792,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4678 + 4680 ], "distinct": [ 5 ], "filter": [ - 4664 + 4666 ], "predicate": [ 6 @@ -105715,13 +105809,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4679 + 4681 ], "distinct": [ 5 ], "filter": [ - 4664 + 4666 ], "predicate": [ 6 @@ -105732,13 +105826,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4677 + 4679 ], "distinct": [ 5 ], "filter": [ - 4664 + 4666 ], "predicate": [ 41 @@ -105749,13 +105843,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4662 + 4664 ], "count": [ 40, { "columns": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -105764,31 +105858,31 @@ export default { } ], "max": [ - 4668 + 4670 ], "min": [ - 4670 + 4672 ], "stddev": [ - 4681 + 4683 ], "stddev_pop": [ - 4683 + 4685 ], "stddev_samp": [ - 4685 + 4687 ], "sum": [ - 4689 + 4691 ], "var_pop": [ - 4693 + 4695 ], "var_samp": [ - 4695 + 4697 ], "variance": [ - 4697 + 4699 ], "__typename": [ 80 @@ -105796,37 +105890,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4663 + 4665 ], "count": [ 3035 ], "max": [ - 4669 + 4671 ], "min": [ - 4671 + 4673 ], "stddev": [ - 4682 + 4684 ], "stddev_pop": [ - 4684 + 4686 ], "stddev_samp": [ - 4686 + 4688 ], "sum": [ - 4690 + 4692 ], "var_pop": [ - 4694 + 4696 ], "var_samp": [ - 4696 + 4698 ], "variance": [ - 4698 + 4700 ], "__typename": [ 80 @@ -105834,10 +105928,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4667 + 4669 ], "on_conflict": [ - 4674 + 4676 ], "__typename": [ 80 @@ -105885,22 +105979,22 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4664 + 4666 ], "_not": [ - 4664 + 4666 ], "_or": [ - 4664 + 4666 ], "bye": [ 6 ], "created_at": [ - 4610 + 4612 ], "feeding_brackets": [ - 4664 + 4666 ], "finished": [ 6 @@ -105909,34 +106003,34 @@ export default { 3034 ], "id": [ - 5111 + 5113 ], "loser_bracket": [ - 4664 + 4666 ], "loser_parent_bracket_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_number": [ 41 ], "match_options_id": [ - 5111 + 5113 ], "options": [ 2703 ], "parent_bracket": [ - 4664 + 4666 ], "parent_bracket_id": [ - 5111 + 5113 ], "path": [ 82 @@ -105945,10 +106039,10 @@ export default { 41 ], "scheduled_at": [ - 4610 + 4612 ], "scheduled_eta": [ - 4610 + 4612 ], "scheduling_proposals": [ 1990 @@ -105957,28 +106051,28 @@ export default { 1983 ], "stage": [ - 4882 + 4884 ], "team_1": [ - 5012 + 5014 ], "team_1_seed": [ 41 ], "team_2": [ - 5012 + 5014 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5111 + 5113 ], "tournament_team_id_1": [ - 5111 + 5113 ], "tournament_team_id_2": [ - 5111 + 5113 ], "__typename": [ 80 @@ -106010,7 +106104,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "finished": [ 5 @@ -106019,34 +106113,34 @@ export default { 3033 ], "id": [ - 5109 + 5111 ], "loser_bracket": [ - 4673 + 4675 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match": [ 2841 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "options": [ 2710 ], "parent_bracket": [ - 4673 + 4675 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -106055,37 +106149,37 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "scheduling_proposals": [ 1987 ], "stage": [ - 4894 + 4896 ], "team_1": [ - 5021 + 5023 ], "team_1_seed": [ 40 ], "team_2": [ - 5021 + 5023 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106093,28 +106187,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4609 + 4611 ], "group": [ 3033 ], "id": [ - 5109 + 5111 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -106123,10 +106217,10 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "team_1_seed": [ 40 @@ -106135,13 +106229,13 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106205,28 +106299,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4609 + 4611 ], "group": [ 3033 ], "id": [ - 5109 + 5111 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -106235,10 +106329,10 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "team_1_seed": [ 40 @@ -106247,13 +106341,13 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106320,7 +106414,7 @@ export default { 40 ], "returning": [ - 4653 + 4655 ], "__typename": [ 80 @@ -106328,10 +106422,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4667 + 4669 ], "on_conflict": [ - 4674 + 4676 ], "__typename": [ 80 @@ -106339,13 +106433,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4665 + 4667 ], "update_columns": [ - 4691 + 4693 ], "where": [ - 4664 + 4666 ], "__typename": [ 80 @@ -106359,7 +106453,7 @@ export default { 3035 ], "feeding_brackets_aggregate": [ - 4660 + 4662 ], "finished": [ 3035 @@ -106371,7 +106465,7 @@ export default { 3035 ], "loser_bracket": [ - 4675 + 4677 ], "loser_parent_bracket_id": [ 3035 @@ -106392,7 +106486,7 @@ export default { 2712 ], "parent_bracket": [ - 4675 + 4677 ], "parent_bracket_id": [ 3035 @@ -106413,16 +106507,16 @@ export default { 1986 ], "stage": [ - 4896 + 4898 ], "team_1": [ - 5023 + 5025 ], "team_1_seed": [ 3035 ], "team_2": [ - 5023 + 5025 ], "team_2_seed": [ 3035 @@ -106442,7 +106536,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106456,7 +106550,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "finished": [ 5 @@ -106465,22 +106559,22 @@ export default { 3033 ], "id": [ - 5109 + 5111 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -106489,10 +106583,10 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "team_1_seed": [ 40 @@ -106501,13 +106595,13 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106635,7 +106729,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4688 + 4690 ], "ordering": [ 315 @@ -106649,7 +106743,7 @@ export default { 5 ], "created_at": [ - 4609 + 4611 ], "finished": [ 5 @@ -106658,22 +106752,22 @@ export default { 3033 ], "id": [ - 5109 + 5111 ], "loser_parent_bracket_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_number": [ 40 ], "match_options_id": [ - 5109 + 5111 ], "parent_bracket_id": [ - 5109 + 5111 ], "path": [ 80 @@ -106682,10 +106776,10 @@ export default { 40 ], "scheduled_at": [ - 4609 + 4611 ], "scheduled_eta": [ - 4609 + 4611 ], "team_1_seed": [ 40 @@ -106694,13 +106788,13 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id_1": [ - 5109 + 5111 ], "tournament_team_id_2": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106749,13 +106843,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4666 + 4668 ], "_set": [ - 4680 + 4682 ], "where": [ - 4664 + 4666 ], "__typename": [ 80 @@ -106889,10 +106983,10 @@ export default { 1309 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -106900,10 +106994,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4703 + 4705 ], "nodes": [ - 4699 + 4701 ], "__typename": [ 80 @@ -106911,7 +107005,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4702 + 4704 ], "__typename": [ 80 @@ -106919,13 +107013,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4717 + 4719 ], "distinct": [ 5 ], "filter": [ - 4706 + 4708 ], "predicate": [ 41 @@ -106939,7 +107033,7 @@ export default { 40, { "columns": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "distinct": [ @@ -106948,10 +107042,10 @@ export default { } ], "max": [ - 4709 + 4711 ], "min": [ - 4711 + 4713 ], "__typename": [ 80 @@ -106962,10 +107056,10 @@ export default { 3035 ], "max": [ - 4710 + 4712 ], "min": [ - 4712 + 4714 ], "__typename": [ 80 @@ -106973,10 +107067,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4708 + 4710 ], "on_conflict": [ - 4714 + 4716 ], "__typename": [ 80 @@ -106984,13 +107078,13 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4706 + 4708 ], "_not": [ - 4706 + 4708 ], "_or": [ - 4706 + 4708 ], "category": [ 1315 @@ -106999,10 +107093,10 @@ export default { 1312 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -107017,10 +107111,10 @@ export default { 1320 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107028,7 +107122,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107044,7 +107138,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107063,7 +107157,7 @@ export default { 40 ], "returning": [ - 4699 + 4701 ], "__typename": [ 80 @@ -107071,13 +107165,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4707 + 4709 ], "update_columns": [ - 4721 + 4723 ], "where": [ - 4706 + 4708 ], "__typename": [ 80 @@ -107091,7 +107185,7 @@ export default { 1322 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -107105,7 +107199,7 @@ export default { 1314 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107117,7 +107211,7 @@ export default { 1314 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107125,7 +107219,7 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4720 + 4722 ], "ordering": [ 315 @@ -107139,7 +107233,7 @@ export default { 1314 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107148,10 +107242,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4718 + 4720 ], "where": [ - 4706 + 4708 ], "__typename": [ 80 @@ -107159,19 +107253,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4609 + 4611 ], "team": [ 4562 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107179,10 +107273,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4727 + 4729 ], "nodes": [ - 4723 + 4725 ], "__typename": [ 80 @@ -107190,7 +107284,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4726 + 4728 ], "__typename": [ 80 @@ -107198,13 +107292,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4741 + 4743 ], "distinct": [ 5 ], "filter": [ - 4730 + 4732 ], "predicate": [ 41 @@ -107218,7 +107312,7 @@ export default { 40, { "columns": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -107227,10 +107321,10 @@ export default { } ], "max": [ - 4733 + 4735 ], "min": [ - 4735 + 4737 ], "__typename": [ 80 @@ -107241,10 +107335,10 @@ export default { 3035 ], "max": [ - 4734 + 4736 ], "min": [ - 4736 + 4738 ], "__typename": [ 80 @@ -107252,10 +107346,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4732 + 4734 ], "on_conflict": [ - 4738 + 4740 ], "__typename": [ 80 @@ -107263,28 +107357,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4730 + 4732 ], "_not": [ - 4730 + 4732 ], "_or": [ - 4730 + 4732 ], "created_at": [ - 4610 + 4612 ], "team": [ 4573 ], "team_id": [ - 5111 + 5113 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -107293,19 +107387,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4609 + 4611 ], "team": [ 4582 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107313,13 +107407,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107341,13 +107435,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107372,7 +107466,7 @@ export default { 40 ], "returning": [ - 4723 + 4725 ], "__typename": [ 80 @@ -107380,13 +107474,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4731 + 4733 ], "update_columns": [ - 4745 + 4747 ], "where": [ - 4730 + 4732 ], "__typename": [ 80 @@ -107403,7 +107497,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -107414,10 +107508,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107426,13 +107520,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107440,7 +107534,7 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4744 + 4746 ], "ordering": [ 315 @@ -107451,13 +107545,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107466,10 +107560,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4742 + 4744 ], "where": [ - 4730 + 4732 ], "__typename": [ 80 @@ -107480,7 +107574,7 @@ export default { 4562 ], "organization_team_id": [ - 5109 + 5111 ], "organizer": [ 3993 @@ -107489,10 +107583,10 @@ export default { 259 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107500,10 +107594,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4751 + 4753 ], "nodes": [ - 4747 + 4749 ], "__typename": [ 80 @@ -107511,7 +107605,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4750 + 4752 ], "__typename": [ 80 @@ -107519,13 +107613,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4768 + 4770 ], "distinct": [ 5 ], "filter": [ - 4756 + 4758 ], "predicate": [ 41 @@ -107536,13 +107630,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4754 + 4756 ], "count": [ 40, { "columns": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -107551,31 +107645,31 @@ export default { } ], "max": [ - 4760 + 4762 ], "min": [ - 4762 + 4764 ], "stddev": [ - 4770 + 4772 ], "stddev_pop": [ - 4772 + 4774 ], "stddev_samp": [ - 4774 + 4776 ], "sum": [ - 4778 + 4780 ], "var_pop": [ - 4782 + 4784 ], "var_samp": [ - 4784 + 4786 ], "variance": [ - 4786 + 4788 ], "__typename": [ 80 @@ -107583,37 +107677,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4755 + 4757 ], "count": [ 3035 ], "max": [ - 4761 + 4763 ], "min": [ - 4763 + 4765 ], "stddev": [ - 4771 + 4773 ], "stddev_pop": [ - 4773 + 4775 ], "stddev_samp": [ - 4775 + 4777 ], "sum": [ - 4779 + 4781 ], "var_pop": [ - 4783 + 4785 ], "var_samp": [ - 4785 + 4787 ], "variance": [ - 4787 + 4789 ], "__typename": [ 80 @@ -107621,10 +107715,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4759 + 4761 ], "on_conflict": [ - 4765 + 4767 ], "__typename": [ 80 @@ -107648,19 +107742,19 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4756 + 4758 ], "_not": [ - 4756 + 4758 ], "_or": [ - 4756 + 4758 ], "organization_team": [ 4573 ], "organization_team_id": [ - 5111 + 5113 ], "organizer": [ 3997 @@ -107669,10 +107763,10 @@ export default { 261 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -107692,7 +107786,7 @@ export default { 4582 ], "organization_team_id": [ - 5109 + 5111 ], "organizer": [ 4004 @@ -107701,10 +107795,10 @@ export default { 259 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107712,13 +107806,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107740,13 +107834,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107771,7 +107865,7 @@ export default { 40 ], "returning": [ - 4747 + 4749 ], "__typename": [ 80 @@ -107779,13 +107873,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4757 + 4759 ], "update_columns": [ - 4780 + 4782 ], "where": [ - 4756 + 4758 ], "__typename": [ 80 @@ -107805,7 +107899,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -107819,7 +107913,7 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107828,13 +107922,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107890,7 +107984,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4777 + 4779 ], "ordering": [ 315 @@ -107901,13 +107995,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5109 + 5111 ], "steam_id": [ 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -107932,13 +108026,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4758 + 4760 ], "_set": [ - 4769 + 4771 ], "where": [ - 4756 + 4758 ], "__typename": [ 80 @@ -107994,10 +108088,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108009,10 +108103,10 @@ export default { 80 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108020,10 +108114,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4792 + 4794 ], "nodes": [ - 4788 + 4790 ], "__typename": [ 80 @@ -108031,7 +108125,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4791 + 4793 ], "__typename": [ 80 @@ -108039,13 +108133,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4809 + 4811 ], "distinct": [ 5 ], "filter": [ - 4797 + 4799 ], "predicate": [ 41 @@ -108056,13 +108150,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4795 + 4797 ], "count": [ 40, { "columns": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -108071,31 +108165,31 @@ export default { } ], "max": [ - 4801 + 4803 ], "min": [ - 4803 + 4805 ], "stddev": [ - 4811 + 4813 ], "stddev_pop": [ - 4813 + 4815 ], "stddev_samp": [ - 4815 + 4817 ], "sum": [ - 4819 + 4821 ], "var_pop": [ - 4823 + 4825 ], "var_samp": [ - 4825 + 4827 ], "variance": [ - 4827 + 4829 ], "__typename": [ 80 @@ -108103,37 +108197,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4796 + 4798 ], "count": [ 3035 ], "max": [ - 4802 + 4804 ], "min": [ - 4804 + 4806 ], "stddev": [ - 4812 + 4814 ], "stddev_pop": [ - 4814 + 4816 ], "stddev_samp": [ - 4816 + 4818 ], "sum": [ - 4820 + 4822 ], "var_pop": [ - 4824 + 4826 ], "var_samp": [ - 4826 + 4828 ], "variance": [ - 4828 + 4830 ], "__typename": [ 80 @@ -108141,10 +108235,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4800 + 4802 ], "on_conflict": [ - 4806 + 4808 ], "__typename": [ 80 @@ -108168,19 +108262,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4797 + 4799 ], "_not": [ - 4797 + 4799 ], "_or": [ - 4797 + 4799 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "order": [ 41 @@ -108192,10 +108286,10 @@ export default { 82 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -108212,10 +108306,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108227,10 +108321,10 @@ export default { 80 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108238,10 +108332,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108253,7 +108347,7 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108284,10 +108378,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108299,7 +108393,7 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108333,7 +108427,7 @@ export default { 40 ], "returning": [ - 4788 + 4790 ], "__typename": [ 80 @@ -108341,13 +108435,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4798 + 4800 ], "update_columns": [ - 4821 + 4823 ], "where": [ - 4797 + 4799 ], "__typename": [ 80 @@ -108370,7 +108464,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -108381,7 +108475,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108390,10 +108484,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108405,7 +108499,7 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108461,7 +108555,7 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4818 + 4820 ], "ordering": [ 315 @@ -108472,10 +108566,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "order": [ 40 @@ -108487,7 +108581,7 @@ export default { 80 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108512,13 +108606,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4799 + 4801 ], "_set": [ - 4810 + 4812 ], "where": [ - 4797 + 4799 ], "__typename": [ 80 @@ -108574,28 +108668,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "stage": [ - 4870 + 4872 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108603,10 +108697,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4833 + 4835 ], "nodes": [ - 4829 + 4831 ], "__typename": [ 80 @@ -108614,7 +108708,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4832 + 4834 ], "__typename": [ 80 @@ -108622,13 +108716,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4850 + 4852 ], "distinct": [ 5 ], "filter": [ - 4838 + 4840 ], "predicate": [ 41 @@ -108639,13 +108733,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4836 + 4838 ], "count": [ 40, { "columns": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -108654,31 +108748,31 @@ export default { } ], "max": [ - 4842 + 4844 ], "min": [ - 4844 + 4846 ], "stddev": [ - 4852 + 4854 ], "stddev_pop": [ - 4854 + 4856 ], "stddev_samp": [ - 4856 + 4858 ], "sum": [ - 4860 + 4862 ], "var_pop": [ - 4864 + 4866 ], "var_samp": [ - 4866 + 4868 ], "variance": [ - 4868 + 4870 ], "__typename": [ 80 @@ -108686,37 +108780,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4837 + 4839 ], "count": [ 3035 ], "max": [ - 4843 + 4845 ], "min": [ - 4845 + 4847 ], "stddev": [ - 4853 + 4855 ], "stddev_pop": [ - 4855 + 4857 ], "stddev_samp": [ - 4857 + 4859 ], "sum": [ - 4861 + 4863 ], "var_pop": [ - 4865 + 4867 ], "var_samp": [ - 4867 + 4869 ], "variance": [ - 4869 + 4871 ], "__typename": [ 80 @@ -108724,10 +108818,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4841 + 4843 ], "on_conflict": [ - 4847 + 4849 ], "__typename": [ 80 @@ -108751,37 +108845,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4838 + 4840 ], "_not": [ - 4838 + 4840 ], "_or": [ - 4838 + 4840 ], "closes_at": [ - 4610 + 4612 ], "created_at": [ - 4610 + 4612 ], "default_match_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "opens_at": [ - 4610 + 4612 ], "round": [ 41 ], "stage": [ - 4882 + 4884 ], "tournament_stage_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -108798,28 +108892,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "stage": [ - 4894 + 4896 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108827,25 +108921,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108879,25 +108973,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108934,7 +109028,7 @@ export default { 40 ], "returning": [ - 4829 + 4831 ], "__typename": [ 80 @@ -108942,13 +109036,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4839 + 4841 ], "update_columns": [ - 4862 + 4864 ], "where": [ - 4838 + 4840 ], "__typename": [ 80 @@ -108974,7 +109068,7 @@ export default { 3035 ], "stage": [ - 4896 + 4898 ], "tournament_stage_id": [ 3035 @@ -108985,7 +109079,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -108994,25 +109088,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -109068,7 +109162,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4859 + 4861 ], "ordering": [ 315 @@ -109079,25 +109173,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4609 + 4611 ], "created_at": [ - 4609 + 4611 ], "default_match_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "opens_at": [ - 4609 + 4611 ], "round": [ 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -109122,13 +109216,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4840 + 4842 ], "_set": [ - 4851 + 4853 ], "where": [ - 4838 + 4840 ], "__typename": [ 80 @@ -109184,10 +109278,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4653, + 4655, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -109197,19 +109291,19 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "brackets_aggregate": [ - 4654, + 4656, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -109219,11 +109313,11 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], @@ -109243,10 +109337,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -109264,10 +109358,10 @@ export default { 40 ], "results": [ - 5851, + 5853, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -109277,19 +109371,19 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], "results_aggregate": [ - 5852, + 5854, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -109299,11 +109393,11 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], @@ -109322,19 +109416,19 @@ export default { 5 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "type": [ 1335 ], "windows": [ - 4829, + 4831, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -109344,19 +109438,19 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], "windows_aggregate": [ - 4830, + 4832, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -109366,11 +109460,11 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], @@ -109380,10 +109474,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4876 + 4878 ], "nodes": [ - 4870 + 4872 ], "__typename": [ 80 @@ -109391,13 +109485,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4873 + 4875 ], "bool_or": [ - 4874 + 4876 ], "count": [ - 4875 + 4877 ], "__typename": [ 80 @@ -109405,13 +109499,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4900 + 4902 ], "distinct": [ 5 ], "filter": [ - 4882 + 4884 ], "predicate": [ 6 @@ -109422,13 +109516,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4901 + 4903 ], "distinct": [ 5 ], "filter": [ - 4882 + 4884 ], "predicate": [ 6 @@ -109439,13 +109533,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4899 + 4901 ], "distinct": [ 5 ], "filter": [ - 4882 + 4884 ], "predicate": [ 41 @@ -109456,13 +109550,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4880 + 4882 ], "count": [ 40, { "columns": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "distinct": [ @@ -109471,31 +109565,31 @@ export default { } ], "max": [ - 4889 + 4891 ], "min": [ - 4891 + 4893 ], "stddev": [ - 4903 + 4905 ], "stddev_pop": [ - 4905 + 4907 ], "stddev_samp": [ - 4907 + 4909 ], "sum": [ - 4911 + 4913 ], "var_pop": [ - 4915 + 4917 ], "var_samp": [ - 4917 + 4919 ], "variance": [ - 4919 + 4921 ], "__typename": [ 80 @@ -109503,37 +109597,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4881 + 4883 ], "count": [ 3035 ], "max": [ - 4890 + 4892 ], "min": [ - 4892 + 4894 ], "stddev": [ - 4904 + 4906 ], "stddev_pop": [ - 4906 + 4908 ], "stddev_samp": [ - 4908 + 4910 ], "sum": [ - 4912 + 4914 ], "var_pop": [ - 4916 + 4918 ], "var_samp": [ - 4918 + 4920 ], "variance": [ - 4920 + 4922 ], "__typename": [ 80 @@ -109549,10 +109643,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4888 + 4890 ], "on_conflict": [ - 4895 + 4897 ], "__typename": [ 80 @@ -109618,19 +109712,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4882 + 4884 ], "_not": [ - 4882 + 4884 ], "_or": [ - 4882 + 4884 ], "brackets": [ - 4664 + 4666 ], "brackets_aggregate": [ - 4655 + 4657 ], "decider_best_of": [ 41 @@ -109648,10 +109742,10 @@ export default { 41 ], "id": [ - 5111 + 5113 ], "match_options_id": [ - 5111 + 5113 ], "max_rounds": [ 41 @@ -109669,10 +109763,10 @@ export default { 41 ], "results": [ - 5870 + 5872 ], "results_aggregate": [ - 5853 + 5855 ], "settings": [ 1846 @@ -109684,19 +109778,19 @@ export default { 6 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "type": [ 1336 ], "windows": [ - 4838 + 4840 ], "windows_aggregate": [ - 4831 + 4833 ], "__typename": [ 80 @@ -109758,7 +109852,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4661 + 4663 ], "decider_best_of": [ 40 @@ -109776,10 +109870,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -109797,7 +109891,7 @@ export default { 40 ], "results": [ - 5867 + 5869 ], "settings": [ 1844 @@ -109809,16 +109903,16 @@ export default { 5 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "type": [ 1335 ], "windows": [ - 4835 + 4837 ], "__typename": [ 80 @@ -109838,10 +109932,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -109856,7 +109950,7 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -109914,10 +110008,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -109932,7 +110026,7 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -109981,7 +110075,7 @@ export default { 40 ], "returning": [ - 4870 + 4872 ], "__typename": [ 80 @@ -109989,10 +110083,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4888 + 4890 ], "on_conflict": [ - 4895 + 4897 ], "__typename": [ 80 @@ -110000,13 +110094,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4883 + 4885 ], "update_columns": [ - 4913 + 4915 ], "where": [ - 4882 + 4884 ], "__typename": [ 80 @@ -110014,7 +110108,7 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4660 + 4662 ], "decider_best_of": [ 3035 @@ -110053,7 +110147,7 @@ export default { 3035 ], "results_aggregate": [ - 5866 + 5868 ], "settings": [ 3035 @@ -110065,7 +110159,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -110074,7 +110168,7 @@ export default { 3035 ], "windows_aggregate": [ - 4834 + 4836 ], "__typename": [ 80 @@ -110082,7 +110176,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -110113,10 +110207,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -110140,7 +110234,7 @@ export default { 5 ], "tournament_id": [ - 5109 + 5111 ], "type": [ 1335 @@ -110325,7 +110419,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4910 + 4912 ], "ordering": [ 315 @@ -110348,10 +110442,10 @@ export default { 40 ], "id": [ - 5109 + 5111 ], "match_options_id": [ - 5109 + 5111 ], "max_rounds": [ 40 @@ -110375,7 +110469,7 @@ export default { 5 ], "tournament_id": [ - 5109 + 5111 ], "type": [ 1335 @@ -110445,28 +110539,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4878 + 4880 ], "_delete_at_path": [ - 4884 + 4886 ], "_delete_elem": [ - 4885 + 4887 ], "_delete_key": [ - 4886 + 4888 ], "_inc": [ - 4887 + 4889 ], "_prepend": [ - 4898 + 4900 ], "_set": [ - 4902 + 4904 ], "where": [ - 4882 + 4884 ], "__typename": [ 80 @@ -110648,10 +110742,10 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by": [ 3993 @@ -110666,10 +110760,10 @@ export default { 259 ], "team": [ - 5003 + 5005 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -110677,10 +110771,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4925 + 4927 ], "nodes": [ - 4921 + 4923 ], "__typename": [ 80 @@ -110688,7 +110782,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4924 + 4926 ], "__typename": [ 80 @@ -110696,13 +110790,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4942 + 4944 ], "distinct": [ 5 ], "filter": [ - 4930 + 4932 ], "predicate": [ 41 @@ -110713,13 +110807,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4928 + 4930 ], "count": [ 40, { "columns": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -110728,31 +110822,31 @@ export default { } ], "max": [ - 4934 + 4936 ], "min": [ - 4936 + 4938 ], "stddev": [ - 4944 + 4946 ], "stddev_pop": [ - 4946 + 4948 ], "stddev_samp": [ - 4948 + 4950 ], "sum": [ - 4952 + 4954 ], "var_pop": [ - 4956 + 4958 ], "var_samp": [ - 4958 + 4960 ], "variance": [ - 4960 + 4962 ], "__typename": [ 80 @@ -110760,37 +110854,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4929 + 4931 ], "count": [ 3035 ], "max": [ - 4935 + 4937 ], "min": [ - 4937 + 4939 ], "stddev": [ - 4945 + 4947 ], "stddev_pop": [ - 4947 + 4949 ], "stddev_samp": [ - 4949 + 4951 ], "sum": [ - 4953 + 4955 ], "var_pop": [ - 4957 + 4959 ], "var_samp": [ - 4959 + 4961 ], "variance": [ - 4961 + 4963 ], "__typename": [ 80 @@ -110798,10 +110892,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4933 + 4935 ], "on_conflict": [ - 4939 + 4941 ], "__typename": [ 80 @@ -110831,19 +110925,19 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4930 + 4932 ], "_not": [ - 4930 + 4932 ], "_or": [ - 4930 + 4932 ], "created_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "invited_by": [ 3997 @@ -110858,10 +110952,10 @@ export default { 261 ], "team": [ - 5012 + 5014 ], "tournament_team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -110881,10 +110975,10 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by": [ 4004 @@ -110899,10 +110993,10 @@ export default { 259 ], "team": [ - 5021 + 5023 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -110910,10 +111004,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -110922,7 +111016,7 @@ export default { 259 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -110950,10 +111044,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -110962,7 +111056,7 @@ export default { 259 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -110993,7 +111087,7 @@ export default { 40 ], "returning": [ - 4921 + 4923 ], "__typename": [ 80 @@ -111001,13 +111095,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4931 + 4933 ], "update_columns": [ - 4954 + 4956 ], "where": [ - 4930 + 4932 ], "__typename": [ 80 @@ -111033,7 +111127,7 @@ export default { 3035 ], "team": [ - 5023 + 5025 ], "tournament_team_id": [ 3035 @@ -111044,7 +111138,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111053,10 +111147,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -111065,7 +111159,7 @@ export default { 259 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111139,7 +111233,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4951 + 4953 ], "ordering": [ 315 @@ -111150,10 +111244,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invited_by_player_steam_id": [ 259 @@ -111162,7 +111256,7 @@ export default { 259 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111193,13 +111287,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4932 + 4934 ], "_set": [ - 4943 + 4945 ], "where": [ - 4930 + 4932 ], "__typename": [ 80 @@ -111285,16 +111379,16 @@ export default { 1253 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team": [ - 5003 + 5005 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111302,10 +111396,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4966 + 4968 ], "nodes": [ - 4962 + 4964 ], "__typename": [ 80 @@ -111313,7 +111407,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4965 + 4967 ], "__typename": [ 80 @@ -111321,13 +111415,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4983 + 4985 ], "distinct": [ 5 ], "filter": [ - 4971 + 4973 ], "predicate": [ 41 @@ -111338,13 +111432,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4969 + 4971 ], "count": [ 40, { "columns": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -111353,31 +111447,31 @@ export default { } ], "max": [ - 4975 + 4977 ], "min": [ - 4977 + 4979 ], "stddev": [ - 4985 + 4987 ], "stddev_pop": [ - 4987 + 4989 ], "stddev_samp": [ - 4989 + 4991 ], "sum": [ - 4993 + 4995 ], "var_pop": [ - 4997 + 4999 ], "var_samp": [ - 4999 + 5001 ], "variance": [ - 5001 + 5003 ], "__typename": [ 80 @@ -111385,37 +111479,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4970 + 4972 ], "count": [ 3035 ], "max": [ - 4976 + 4978 ], "min": [ - 4978 + 4980 ], "stddev": [ - 4986 + 4988 ], "stddev_pop": [ - 4988 + 4990 ], "stddev_samp": [ - 4990 + 4992 ], "sum": [ - 4994 + 4996 ], "var_pop": [ - 4998 + 5000 ], "var_samp": [ - 5000 + 5002 ], "variance": [ - 5002 + 5004 ], "__typename": [ 80 @@ -111423,10 +111517,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4974 + 4976 ], "on_conflict": [ - 4980 + 4982 ], "__typename": [ 80 @@ -111450,13 +111544,13 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4971 + 4973 ], "_not": [ - 4971 + 4973 ], "_or": [ - 4971 + 4973 ], "e_team_role": [ 1251 @@ -111471,16 +111565,16 @@ export default { 1254 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "tournament_team": [ - 5012 + 5014 ], "tournament_team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -111509,16 +111603,16 @@ export default { 1253 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team": [ - 5021 + 5023 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111529,10 +111623,10 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111557,10 +111651,10 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111585,7 +111679,7 @@ export default { 40 ], "returning": [ - 4962 + 4964 ], "__typename": [ 80 @@ -111593,13 +111687,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4972 + 4974 ], "update_columns": [ - 4995 + 4997 ], "where": [ - 4971 + 4973 ], "__typename": [ 80 @@ -111619,13 +111713,13 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 ], "tournament_team": [ - 5023 + 5025 ], "tournament_team_id": [ 3035 @@ -111639,7 +111733,7 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111654,10 +111748,10 @@ export default { 1253 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111713,7 +111807,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4992 + 4994 ], "ordering": [ 315 @@ -111730,10 +111824,10 @@ export default { 1253 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111758,13 +111852,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4973 + 4975 ], "_set": [ - 4984 + 4986 ], "where": [ - 4971 + 4973 ], "__typename": [ 80 @@ -111829,22 +111923,22 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "creator": [ 3993 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invites": [ - 4921, + 4923, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111854,19 +111948,19 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], "invites_aggregate": [ - 4922, + 4924, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111876,11 +111970,11 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], @@ -111891,13 +111985,13 @@ export default { 259 ], "results": [ - 5851 + 5853 ], "roster": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111907,19 +112001,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "roster_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -111929,11 +112023,11 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], @@ -111947,13 +112041,13 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -111961,10 +112055,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 5007 + 5009 ], "nodes": [ - 5003 + 5005 ], "__typename": [ 80 @@ -111972,7 +112066,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5006 + 5008 ], "__typename": [ 80 @@ -111980,13 +112074,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5025 + 5027 ], "distinct": [ 5 ], "filter": [ - 5012 + 5014 ], "predicate": [ 41 @@ -111997,13 +112091,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 5010 + 5012 ], "count": [ 40, { "columns": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "distinct": [ @@ -112012,31 +112106,31 @@ export default { } ], "max": [ - 5016 + 5018 ], "min": [ - 5018 + 5020 ], "stddev": [ - 5027 + 5029 ], "stddev_pop": [ - 5029 + 5031 ], "stddev_samp": [ - 5031 + 5033 ], "sum": [ - 5035 + 5037 ], "var_pop": [ - 5039 + 5041 ], "var_samp": [ - 5041 + 5043 ], "variance": [ - 5043 + 5045 ], "__typename": [ 80 @@ -112044,37 +112138,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 5011 + 5013 ], "count": [ 3035 ], "max": [ - 5017 + 5019 ], "min": [ - 5019 + 5021 ], "stddev": [ - 5028 + 5030 ], "stddev_pop": [ - 5030 + 5032 ], "stddev_samp": [ - 5032 + 5034 ], "sum": [ - 5036 + 5038 ], "var_pop": [ - 5040 + 5042 ], "var_samp": [ - 5042 + 5044 ], "variance": [ - 5044 + 5046 ], "__typename": [ 80 @@ -112082,10 +112176,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5015 + 5017 ], "on_conflict": [ - 5022 + 5024 ], "__typename": [ 80 @@ -112121,13 +112215,13 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 5012 + 5014 ], "_not": [ - 5012 + 5014 ], "_or": [ - 5012 + 5014 ], "can_manage": [ 6 @@ -112139,22 +112233,22 @@ export default { 261 ], "created_at": [ - 4610 + 4612 ], "creator": [ 3997 ], "eligible_at": [ - 4610 + 4612 ], "id": [ - 5111 + 5113 ], "invites": [ - 4930 + 4932 ], "invites_aggregate": [ - 4923 + 4925 ], "name": [ 82 @@ -112163,13 +112257,13 @@ export default { 261 ], "results": [ - 5870 + 5872 ], "roster": [ - 4971 + 4973 ], "roster_aggregate": [ - 4964 + 4966 ], "seed": [ 41 @@ -112181,13 +112275,13 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -112216,19 +112310,19 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "creator": [ 4004 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "invites": [ - 4927 + 4929 ], "name": [ 80 @@ -112237,10 +112331,10 @@ export default { 259 ], "results": [ - 5879 + 5881 ], "roster": [ - 4968 + 4970 ], "seed": [ 40 @@ -112252,13 +112346,13 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112269,13 +112363,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -112290,10 +112384,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112339,13 +112433,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -112360,10 +112454,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112409,7 +112503,7 @@ export default { 40 ], "returning": [ - 5003 + 5005 ], "__typename": [ 80 @@ -112417,10 +112511,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5015 + 5017 ], "on_conflict": [ - 5022 + 5024 ], "__typename": [ 80 @@ -112428,13 +112522,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 5013 + 5015 ], "update_columns": [ - 5037 + 5039 ], "where": [ - 5012 + 5014 ], "__typename": [ 80 @@ -112463,7 +112557,7 @@ export default { 3035 ], "invites_aggregate": [ - 4926 + 4928 ], "name": [ 3035 @@ -112472,10 +112566,10 @@ export default { 3035 ], "results": [ - 5881 + 5883 ], "roster_aggregate": [ - 4967 + 4969 ], "seed": [ 3035 @@ -112490,7 +112584,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -112501,7 +112595,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112513,13 +112607,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -112534,10 +112628,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112629,7 +112723,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5034 + 5036 ], "ordering": [ 315 @@ -112643,13 +112737,13 @@ export default { 259 ], "created_at": [ - 4609 + 4611 ], "eligible_at": [ - 4609 + 4611 ], "id": [ - 5109 + 5111 ], "name": [ 80 @@ -112664,10 +112758,10 @@ export default { 80 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -112704,13 +112798,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5014 + 5016 ], "_set": [ - 5026 + 5028 ], "where": [ - 5012 + 5014 ], "__typename": [ 80 @@ -112808,10 +112902,10 @@ export default { 5 ], "award_configs": [ - 4611, + 4613, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -112821,19 +112915,19 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "award_configs_aggregate": [ - 4612, + 4614, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -112843,11 +112937,11 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], @@ -112926,10 +113020,10 @@ export default { 5 ], "categories": [ - 4699, + 4701, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -112939,19 +113033,19 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "categories_aggregate": [ - 4700, + 4702, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -112961,16 +113055,16 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -113036,7 +113130,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_league": [ 5 @@ -113063,7 +113157,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -113081,10 +113175,10 @@ export default { 259 ], "organizer_teams": [ - 4723, + 4725, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -113094,19 +113188,19 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "organizer_teams_aggregate": [ - 4724, + 4726, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -113116,19 +113210,19 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "organizers": [ - 4747, + 4749, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -113138,19 +113232,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "organizers_aggregate": [ - 4748, + 4750, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -113160,19 +113254,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "player_stats": [ - 5962, + 5964, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -113182,19 +113276,19 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], "player_stats_aggregate": [ - 5963, + 5965, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -113204,19 +113298,19 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], "prizes": [ - 4788, + 4790, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -113226,19 +113320,19 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "prizes_aggregate": [ - 4789, + 4791, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -113248,19 +113342,19 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "results": [ - 5911, + 5913, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -113270,19 +113364,19 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "results_aggregate": [ - 5912, + 5914, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -113292,19 +113386,19 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "rosters": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -113314,19 +113408,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "rosters_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -113336,11 +113430,11 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], @@ -113348,10 +113442,10 @@ export default { 80 ], "stages": [ - 4870, + 4872, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -113361,19 +113455,19 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "stages_aggregate": [ - 4871, + 4873, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -113383,25 +113477,25 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "start": [ - 4609 + 4611 ], "status": [ 1356 ], "teams": [ - 5003, + 5005, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -113411,19 +113505,19 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "teams_aggregate": [ - 5004, + 5006, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -113433,11 +113527,11 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], @@ -113447,10 +113541,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 5061 + 5063 ], "nodes": [ - 5045 + 5047 ], "__typename": [ 80 @@ -113458,37 +113552,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 5048 + 5050 ], "bool_and": [ - 5049 + 5051 ], "bool_or": [ - 5050 + 5052 ], "corr": [ - 5051 + 5053 ], "count": [ - 5053 + 5055 ], "covar_samp": [ - 5054 + 5056 ], "max": [ - 5056 + 5058 ], "min": [ - 5057 + 5059 ], "stddev_samp": [ - 5058 + 5060 ], "sum": [ - 5059 + 5061 ], "var_samp": [ - 5060 + 5062 ], "__typename": [ 80 @@ -113496,13 +113590,13 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5080 + 5082 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113513,13 +113607,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5081 + 5083 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 6 @@ -113530,13 +113624,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5082 + 5084 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 6 @@ -113547,13 +113641,13 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5052 + 5054 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113564,10 +113658,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5083 + 5085 ], "Y": [ - 5083 + 5085 ], "__typename": [ 80 @@ -113575,13 +113669,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5079 + 5081 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 41 @@ -113592,13 +113686,13 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5055 + 5057 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113609,10 +113703,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5084 + 5086 ], "Y": [ - 5084 + 5086 ], "__typename": [ 80 @@ -113620,13 +113714,13 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5085 + 5087 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113637,13 +113731,13 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5086 + 5088 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113654,13 +113748,13 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5087 + 5089 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113671,13 +113765,13 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5088 + 5090 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113688,13 +113782,13 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5089 + 5091 ], "distinct": [ 5 ], "filter": [ - 5066 + 5068 ], "predicate": [ 1692 @@ -113705,13 +113799,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 5064 + 5066 ], "count": [ 40, { "columns": [ - 5079, + 5081, "[tournaments_select_column!]" ], "distinct": [ @@ -113720,31 +113814,31 @@ export default { } ], "max": [ - 5070 + 5072 ], "min": [ - 5072 + 5074 ], "stddev": [ - 5091 + 5093 ], "stddev_pop": [ - 5093 + 5095 ], "stddev_samp": [ - 5095 + 5097 ], "sum": [ - 5099 + 5101 ], "var_pop": [ - 5103 + 5105 ], "var_samp": [ - 5105 + 5107 ], "variance": [ - 5107 + 5109 ], "__typename": [ 80 @@ -113752,37 +113846,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 5065 + 5067 ], "count": [ 3035 ], "max": [ - 5071 + 5073 ], "min": [ - 5073 + 5075 ], "stddev": [ - 5092 + 5094 ], "stddev_pop": [ - 5094 + 5096 ], "stddev_samp": [ - 5096 + 5098 ], "sum": [ - 5100 + 5102 ], "var_pop": [ - 5104 + 5106 ], "var_samp": [ - 5106 + 5108 ], "variance": [ - 5108 + 5110 ], "__typename": [ 80 @@ -113790,10 +113884,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 5069 + 5071 ], "on_conflict": [ - 5076 + 5078 ], "__typename": [ 80 @@ -113835,13 +113929,13 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 5066 + 5068 ], "_not": [ - 5066 + 5068 ], "_or": [ - 5066 + 5068 ], "admin": [ 3997 @@ -113850,10 +113944,10 @@ export default { 6 ], "award_configs": [ - 4620 + 4622 ], "award_configs_aggregate": [ - 4613 + 4615 ], "awards": [ 199 @@ -113892,13 +113986,13 @@ export default { 6 ], "categories": [ - 4706 + 4708 ], "categories_aggregate": [ - 4701 + 4703 ], "created_at": [ - 4610 + 4612 ], "description": [ 82 @@ -113964,7 +114058,7 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "is_league": [ 6 @@ -113991,7 +114085,7 @@ export default { 1692 ], "match_options_id": [ - 5111 + 5113 ], "max_players_per_lineup": [ 41 @@ -114009,61 +114103,61 @@ export default { 261 ], "organizer_teams": [ - 4730 + 4732 ], "organizer_teams_aggregate": [ - 4725 + 4727 ], "organizers": [ - 4756 + 4758 ], "organizers_aggregate": [ - 4749 + 4751 ], "player_stats": [ - 5981 + 5983 ], "player_stats_aggregate": [ - 5964 + 5966 ], "prizes": [ - 4797 + 4799 ], "prizes_aggregate": [ - 4790 + 4792 ], "results": [ - 5930 + 5932 ], "results_aggregate": [ - 5913 + 5915 ], "rosters": [ - 4971 + 4973 ], "rosters_aggregate": [ - 4964 + 4966 ], "scheduling_mode": [ 82 ], "stages": [ - 4882 + 4884 ], "stages_aggregate": [ - 4872 + 4874 ], "start": [ - 4610 + 4612 ], "status": [ 1357 ], "teams": [ - 5012 + 5014 ], "teams_aggregate": [ - 5005 + 5007 ], "__typename": [ 80 @@ -114092,7 +114186,7 @@ export default { 5 ], "award_configs": [ - 4617 + 4619 ], "awards": [ 196 @@ -114104,10 +114198,10 @@ export default { 80 ], "categories": [ - 4705 + 4707 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -114170,7 +114264,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_league": [ 5 @@ -114191,7 +114285,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "name": [ 80 @@ -114203,37 +114297,37 @@ export default { 259 ], "organizer_teams": [ - 4729 + 4731 ], "organizers": [ - 4753 + 4755 ], "player_stats": [ - 5978 + 5980 ], "prizes": [ - 4794 + 4796 ], "results": [ - 5927 + 5929 ], "rosters": [ - 4968 + 4970 ], "scheduling_mode": [ 80 ], "stages": [ - 4879 + 4881 ], "start": [ - 4609 + 4611 ], "status": [ 1356 ], "teams": [ - 5009 + 5011 ], "__typename": [ 80 @@ -114244,7 +114338,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -114262,7 +114356,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "latitude": [ 1691 @@ -114277,7 +114371,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -114295,7 +114389,7 @@ export default { 80 ], "start": [ - 4609 + 4611 ], "__typename": [ 80 @@ -114362,7 +114456,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -114380,7 +114474,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "latitude": [ 1691 @@ -114395,7 +114489,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "max_players_per_lineup": [ 40 @@ -114413,7 +114507,7 @@ export default { 80 ], "start": [ - 4609 + 4611 ], "__typename": [ 80 @@ -114480,7 +114574,7 @@ export default { 40 ], "returning": [ - 5045 + 5047 ], "__typename": [ 80 @@ -114488,10 +114582,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 5069 + 5071 ], "on_conflict": [ - 5076 + 5078 ], "__typename": [ 80 @@ -114499,13 +114593,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 5067 + 5069 ], "update_columns": [ - 5101 + 5103 ], "where": [ - 5066 + 5068 ], "__typename": [ 80 @@ -114519,7 +114613,7 @@ export default { 3035 ], "award_configs_aggregate": [ - 4616 + 4618 ], "awards_aggregate": [ 195 @@ -114555,7 +114649,7 @@ export default { 3035 ], "categories_aggregate": [ - 4704 + 4706 ], "created_at": [ 3035 @@ -114669,28 +114763,28 @@ export default { 3035 ], "organizer_teams_aggregate": [ - 4728 + 4730 ], "organizers_aggregate": [ - 4752 + 4754 ], "player_stats_aggregate": [ - 5977 + 5979 ], "prizes_aggregate": [ - 4793 + 4795 ], "results_aggregate": [ - 5926 + 5928 ], "rosters_aggregate": [ - 4967 + 4969 ], "scheduling_mode": [ 3035 ], "stages_aggregate": [ - 4877 + 4879 ], "start": [ 3035 @@ -114699,7 +114793,7 @@ export default { 3035 ], "teams_aggregate": [ - 5008 + 5010 ], "__typename": [ 80 @@ -114707,7 +114801,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -114735,7 +114829,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -114795,7 +114889,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_league": [ 5 @@ -114813,7 +114907,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "name": [ 80 @@ -114825,7 +114919,7 @@ export default { 80 ], "start": [ - 4609 + 4611 ], "status": [ 1356 @@ -114938,7 +115032,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 5098 + 5100 ], "ordering": [ 315 @@ -114958,7 +115052,7 @@ export default { 80 ], "created_at": [ - 4609 + 4611 ], "description": [ 80 @@ -115018,7 +115112,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "is_league": [ 5 @@ -115036,7 +115130,7 @@ export default { 1691 ], "match_options_id": [ - 5109 + 5111 ], "name": [ 80 @@ -115048,7 +115142,7 @@ export default { 80 ], "start": [ - 4609 + 4611 ], "status": [ 1356 @@ -115094,13 +115188,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5068 + 5070 ], "_set": [ - 5090 + 5092 ], "where": [ - 5066 + 5068 ], "__typename": [ 80 @@ -115211,37 +115305,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5109 + 5111 ], "_contains": [ - 5109 + 5111 ], "_eq": [ - 5109 + 5111 ], "_gt": [ - 5109 + 5111 ], "_gte": [ - 5109 + 5111 ], "_in": [ - 5109 + 5111 ], "_is_null": [ 5 ], "_lt": [ - 5109 + 5111 ], "_lte": [ - 5109 + 5111 ], "_neq": [ - 5109 + 5111 ], "_nin": [ - 5109 + 5111 ], "__typename": [ 80 @@ -115249,31 +115343,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 5109 + 5111 ], "_gt": [ - 5109 + 5111 ], "_gte": [ - 5109 + 5111 ], "_in": [ - 5109 + 5111 ], "_is_null": [ 5 ], "_lt": [ - 5109 + 5111 ], "_lte": [ - 5109 + 5111 ], "_neq": [ - 5109 + 5111 ], "_nin": [ - 5109 + 5111 ], "__typename": [ 80 @@ -115290,7 +115384,7 @@ export default { 1663 ], "event_id": [ - 5109 + 5111 ], "headshot_percentage": [ 1691 @@ -115319,10 +115413,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5126 + 5128 ], "nodes": [ - 5112 + 5114 ], "__typename": [ 80 @@ -115330,31 +115424,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5115 + 5117 ], "corr": [ - 5116 + 5118 ], "count": [ - 5118 + 5120 ], "covar_samp": [ - 5119 + 5121 ], "max": [ - 5121 + 5123 ], "min": [ - 5122 + 5124 ], "stddev_samp": [ - 5123 + 5125 ], "sum": [ - 5124 + 5126 ], "var_samp": [ - 5125 + 5127 ], "__typename": [ 80 @@ -115362,13 +115456,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5139 + 5141 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115379,13 +115473,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5117 + 5119 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115396,10 +115490,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5140 + 5142 ], "Y": [ - 5140 + 5142 ], "__typename": [ 80 @@ -115407,13 +115501,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5138 + 5140 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 41 @@ -115424,13 +115518,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5120 + 5122 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115441,10 +115535,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5141 + 5143 ], "Y": [ - 5141 + 5143 ], "__typename": [ 80 @@ -115452,13 +115546,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5142 + 5144 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115469,13 +115563,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5143 + 5145 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115486,13 +115580,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5144 + 5146 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115503,13 +115597,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5145 + 5147 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115520,13 +115614,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5146 + 5148 ], "distinct": [ 5 ], "filter": [ - 5131 + 5133 ], "predicate": [ 1692 @@ -115537,13 +115631,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5129 + 5131 ], "count": [ 40, { "columns": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -115552,31 +115646,31 @@ export default { } ], "max": [ - 5133 + 5135 ], "min": [ - 5135 + 5137 ], "stddev": [ - 5147 + 5149 ], "stddev_pop": [ - 5149 + 5151 ], "stddev_samp": [ - 5151 + 5153 ], "sum": [ - 5155 + 5157 ], "var_pop": [ - 5157 + 5159 ], "var_samp": [ - 5159 + 5161 ], "variance": [ - 5161 + 5163 ], "__typename": [ 80 @@ -115584,37 +115678,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5130 + 5132 ], "count": [ 3035 ], "max": [ - 5134 + 5136 ], "min": [ - 5136 + 5138 ], "stddev": [ - 5148 + 5150 ], "stddev_pop": [ - 5150 + 5152 ], "stddev_samp": [ - 5152 + 5154 ], "sum": [ - 5156 + 5158 ], "var_pop": [ - 5158 + 5160 ], "var_samp": [ - 5160 + 5162 ], "variance": [ - 5162 + 5164 ], "__typename": [ 80 @@ -115622,7 +115716,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5132 + 5134 ], "__typename": [ 80 @@ -115688,13 +115782,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5131 + 5133 ], "_not": [ - 5131 + 5133 ], "_or": [ - 5131 + 5133 ], "assists": [ 41 @@ -115706,7 +115800,7 @@ export default { 1667 ], "event_id": [ - 5111 + 5113 ], "headshot_percentage": [ 1692 @@ -115744,7 +115838,7 @@ export default { 1674 ], "event_id": [ - 5109 + 5111 ], "headshot_percentage": [ 1691 @@ -115779,7 +115873,7 @@ export default { 40 ], "event_id": [ - 5109 + 5111 ], "headshot_percentage": [ 1691 @@ -115843,7 +115937,7 @@ export default { 40 ], "event_id": [ - 5109 + 5111 ], "headshot_percentage": [ 1691 @@ -116122,7 +116216,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5154 + 5156 ], "ordering": [ 315 @@ -116139,7 +116233,7 @@ export default { 40 ], "event_id": [ - 5109 + 5111 ], "headshot_percentage": [ 1691 @@ -116444,10 +116538,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5165 + 5167 ], "nodes": [ - 5163 + 5165 ], "__typename": [ 80 @@ -116455,13 +116549,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5166 + 5168 ], "count": [ 40, { "columns": [ - 5171, + 5173, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -116470,31 +116564,31 @@ export default { } ], "max": [ - 5168 + 5170 ], "min": [ - 5169 + 5171 ], "stddev": [ - 5172 + 5174 ], "stddev_pop": [ - 5173 + 5175 ], "stddev_samp": [ - 5174 + 5176 ], "sum": [ - 5177 + 5179 ], "var_pop": [ - 5178 + 5180 ], "var_samp": [ - 5179 + 5181 ], "variance": [ - 5180 + 5182 ], "__typename": [ 80 @@ -116537,13 +116631,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5167 + 5169 ], "_not": [ - 5167 + 5169 ], "_or": [ - 5167 + 5169 ], "demo_free_gpu_nodes": [ 41 @@ -116816,7 +116910,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5176 + 5178 ], "ordering": [ 315 @@ -117020,22 +117114,22 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2204 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "losses": [ 40 @@ -117071,7 +117165,7 @@ export default { 2162 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -117082,10 +117176,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5185 + 5187 ], "nodes": [ - 5181 + 5183 ], "__typename": [ 80 @@ -117093,7 +117187,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5184 + 5186 ], "__typename": [ 80 @@ -117101,13 +117195,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5197 + 5199 ], "distinct": [ 5 ], "filter": [ - 5190 + 5192 ], "predicate": [ 41 @@ -117118,13 +117212,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5188 + 5190 ], "count": [ 40, { "columns": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -117133,31 +117227,31 @@ export default { } ], "max": [ - 5192 + 5194 ], "min": [ - 5194 + 5196 ], "stddev": [ - 5198 + 5200 ], "stddev_pop": [ - 5200 + 5202 ], "stddev_samp": [ - 5202 + 5204 ], "sum": [ - 5206 + 5208 ], "var_pop": [ - 5208 + 5210 ], "var_samp": [ - 5210 + 5212 ], "variance": [ - 5212 + 5214 ], "__typename": [ 80 @@ -117165,37 +117259,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5189 + 5191 ], "count": [ 3035 ], "max": [ - 5193 + 5195 ], "min": [ - 5195 + 5197 ], "stddev": [ - 5199 + 5201 ], "stddev_pop": [ - 5201 + 5203 ], "stddev_samp": [ - 5203 + 5205 ], "sum": [ - 5207 + 5209 ], "var_pop": [ - 5209 + 5211 ], "var_samp": [ - 5211 + 5213 ], "variance": [ - 5213 + 5215 ], "__typename": [ 80 @@ -117203,7 +117297,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5191 + 5193 ], "__typename": [ 80 @@ -117293,13 +117387,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5190 + 5192 ], "_not": [ - 5190 + 5192 ], "_or": [ - 5190 + 5192 ], "head_to_head_match_wins": [ 41 @@ -117308,22 +117402,22 @@ export default { 41 ], "league_division_id": [ - 5111 + 5113 ], "league_season_division_id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "league_team": [ 2207 ], "league_team_id": [ - 5111 + 5113 ], "league_team_season_id": [ - 5111 + 5113 ], "losses": [ 41 @@ -117359,7 +117453,7 @@ export default { 2171 ], "tournament_team_id": [ - 5111 + 5113 ], "wins": [ 41 @@ -117376,22 +117470,22 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2213 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "losses": [ 40 @@ -117427,7 +117521,7 @@ export default { 2180 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -117444,19 +117538,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "losses": [ 40 @@ -117486,7 +117580,7 @@ export default { 40 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -117562,19 +117656,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "losses": [ 40 @@ -117604,7 +117698,7 @@ export default { 40 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -117989,7 +118083,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5205 + 5207 ], "ordering": [ 315 @@ -118006,19 +118100,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "losses": [ 40 @@ -118048,7 +118142,7 @@ export default { 40 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -118405,22 +118499,22 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2204 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "matches_played": [ 40 @@ -118437,10 +118531,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5228 + 5230 ], "nodes": [ - 5214 + 5216 ], "__typename": [ 80 @@ -118448,31 +118542,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5217 + 5219 ], "corr": [ - 5218 + 5220 ], "count": [ - 5220 + 5222 ], "covar_samp": [ - 5221 + 5223 ], "max": [ - 5223 + 5225 ], "min": [ - 5224 + 5226 ], "stddev_samp": [ - 5225 + 5227 ], "sum": [ - 5226 + 5228 ], "var_samp": [ - 5227 + 5229 ], "__typename": [ 80 @@ -118480,13 +118574,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5241 + 5243 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118497,13 +118591,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5219 + 5221 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118514,10 +118608,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5242 + 5244 ], "Y": [ - 5242 + 5244 ], "__typename": [ 80 @@ -118525,13 +118619,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5240 + 5242 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 41 @@ -118542,13 +118636,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5222 + 5224 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118559,10 +118653,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5243 + 5245 ], "Y": [ - 5243 + 5245 ], "__typename": [ 80 @@ -118570,13 +118664,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5244 + 5246 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118587,13 +118681,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5245 + 5247 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118604,13 +118698,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5246 + 5248 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118621,13 +118715,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5247 + 5249 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118638,13 +118732,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5248 + 5250 ], "distinct": [ 5 ], "filter": [ - 5233 + 5235 ], "predicate": [ 1692 @@ -118655,13 +118749,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5231 + 5233 ], "count": [ 40, { "columns": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -118670,31 +118764,31 @@ export default { } ], "max": [ - 5235 + 5237 ], "min": [ - 5237 + 5239 ], "stddev": [ - 5249 + 5251 ], "stddev_pop": [ - 5251 + 5253 ], "stddev_samp": [ - 5253 + 5255 ], "sum": [ - 5257 + 5259 ], "var_pop": [ - 5259 + 5261 ], "var_samp": [ - 5261 + 5263 ], "variance": [ - 5263 + 5265 ], "__typename": [ 80 @@ -118702,37 +118796,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5232 + 5234 ], "count": [ 3035 ], "max": [ - 5236 + 5238 ], "min": [ - 5238 + 5240 ], "stddev": [ - 5250 + 5252 ], "stddev_pop": [ - 5252 + 5254 ], "stddev_samp": [ - 5254 + 5256 ], "sum": [ - 5258 + 5260 ], "var_pop": [ - 5260 + 5262 ], "var_samp": [ - 5262 + 5264 ], "variance": [ - 5264 + 5266 ], "__typename": [ 80 @@ -118740,7 +118834,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5234 + 5236 ], "__typename": [ 80 @@ -118806,13 +118900,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5233 + 5235 ], "_not": [ - 5233 + 5235 ], "_or": [ - 5233 + 5235 ], "assists": [ 41 @@ -118833,22 +118927,22 @@ export default { 41 ], "league_division_id": [ - 5111 + 5113 ], "league_season_division_id": [ - 5111 + 5113 ], "league_season_id": [ - 5111 + 5113 ], "league_team": [ 2207 ], "league_team_id": [ - 5111 + 5113 ], "league_team_season_id": [ - 5111 + 5113 ], "matches_played": [ 41 @@ -118883,22 +118977,22 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team": [ 2213 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "matches_played": [ 40 @@ -118933,19 +119027,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "matches_played": [ 40 @@ -119021,19 +119115,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "matches_played": [ 40 @@ -119324,7 +119418,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5256 + 5258 ], "ordering": [ 315 @@ -119353,19 +119447,19 @@ export default { 40 ], "league_division_id": [ - 5109 + 5111 ], "league_season_division_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "league_team_id": [ - 5109 + 5111 ], "league_team_season_id": [ - 5109 + 5111 ], "matches_played": [ 40 @@ -119617,13 +119711,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119640,10 +119734,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5267 + 5269 ], "nodes": [ - 5265 + 5267 ], "__typename": [ 80 @@ -119651,13 +119745,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5268 + 5270 ], "count": [ 40, { "columns": [ - 5277, + 5279, "[v_match_captains_select_column!]" ], "distinct": [ @@ -119666,31 +119760,31 @@ export default { } ], "max": [ - 5272 + 5274 ], "min": [ - 5273 + 5275 ], "stddev": [ - 5279 + 5281 ], "stddev_pop": [ - 5280 + 5282 ], "stddev_samp": [ - 5281 + 5283 ], "sum": [ - 5284 + 5286 ], "var_pop": [ - 5286 + 5288 ], "var_samp": [ - 5287 + 5289 ], "variance": [ - 5288 + 5290 ], "__typename": [ 80 @@ -119706,13 +119800,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5269 + 5271 ], "_not": [ - 5269 + 5271 ], "_or": [ - 5269 + 5271 ], "captain": [ 6 @@ -119721,13 +119815,13 @@ export default { 82 ], "id": [ - 5111 + 5113 ], "lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "placeholder_name": [ 82 @@ -119758,13 +119852,13 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "lineup": [ 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119784,10 +119878,10 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119804,10 +119898,10 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119824,7 +119918,7 @@ export default { 40 ], "returning": [ - 5265 + 5267 ], "__typename": [ 80 @@ -119832,7 +119926,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5271 + 5273 ], "__typename": [ 80 @@ -119876,10 +119970,10 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119917,7 +120011,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5283 + 5285 ], "ordering": [ 315 @@ -119934,10 +120028,10 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "placeholder_name": [ 80 @@ -119959,13 +120053,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5270 + 5272 ], "_set": [ - 5278 + 5280 ], "where": [ - 5269 + 5271 ], "__typename": [ 80 @@ -120012,19 +120106,19 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "outcome": [ 80 @@ -120041,10 +120135,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5293 + 5295 ], "nodes": [ - 5289 + 5291 ], "__typename": [ 80 @@ -120052,7 +120146,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5292 + 5294 ], "__typename": [ 80 @@ -120060,13 +120154,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5305 + 5307 ], "distinct": [ 5 ], "filter": [ - 5298 + 5300 ], "predicate": [ 41 @@ -120077,13 +120171,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5296 + 5298 ], "count": [ 40, { "columns": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -120092,31 +120186,31 @@ export default { } ], "max": [ - 5300 + 5302 ], "min": [ - 5302 + 5304 ], "stddev": [ - 5306 + 5308 ], "stddev_pop": [ - 5308 + 5310 ], "stddev_samp": [ - 5310 + 5312 ], "sum": [ - 5314 + 5316 ], "var_pop": [ - 5316 + 5318 ], "var_samp": [ - 5318 + 5320 ], "variance": [ - 5320 + 5322 ], "__typename": [ 80 @@ -120124,37 +120218,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5297 + 5299 ], "count": [ 3035 ], "max": [ - 5301 + 5303 ], "min": [ - 5303 + 5305 ], "stddev": [ - 5307 + 5309 ], "stddev_pop": [ - 5309 + 5311 ], "stddev_samp": [ - 5311 + 5313 ], "sum": [ - 5315 + 5317 ], "var_pop": [ - 5317 + 5319 ], "var_samp": [ - 5319 + 5321 ], "variance": [ - 5321 + 5323 ], "__typename": [ 80 @@ -120162,7 +120256,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5299 + 5301 ], "__typename": [ 80 @@ -120204,13 +120298,13 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5298 + 5300 ], "_not": [ - 5298 + 5300 ], "_or": [ - 5298 + 5300 ], "against_count": [ 41 @@ -120228,19 +120322,19 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "outcome": [ 82 @@ -120272,19 +120366,19 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "outcome": [ 80 @@ -120310,13 +120404,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "outcome": [ 80 @@ -120374,13 +120468,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "outcome": [ 80 @@ -120576,7 +120670,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5313 + 5315 ], "ordering": [ 315 @@ -120596,13 +120690,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "outcome": [ 80 @@ -120767,13 +120861,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "victim_side": [ 80 @@ -120790,10 +120884,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5324 + 5326 ], "nodes": [ - 5322 + 5324 ], "__typename": [ 80 @@ -120801,13 +120895,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5325 + 5327 ], "count": [ 40, { "columns": [ - 5330, + 5332, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -120816,31 +120910,31 @@ export default { } ], "max": [ - 5327 + 5329 ], "min": [ - 5328 + 5330 ], "stddev": [ - 5331 + 5333 ], "stddev_pop": [ - 5332 + 5334 ], "stddev_samp": [ - 5333 + 5335 ], "sum": [ - 5336 + 5338 ], "var_pop": [ - 5337 + 5339 ], "var_samp": [ - 5338 + 5340 ], "variance": [ - 5339 + 5341 ], "__typename": [ 80 @@ -120862,13 +120956,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5326 + 5328 ], "_not": [ - 5326 + 5328 ], "_or": [ - 5326 + 5328 ], "killer_side": [ 82 @@ -120883,13 +120977,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "victim_side": [ 82 @@ -120915,10 +121009,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "victim_side": [ 80 @@ -120944,10 +121038,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "victim_side": [ 80 @@ -121042,7 +121136,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5335 + 5337 ], "ordering": [ 315 @@ -121062,10 +121156,10 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "victim_side": [ 80 @@ -121141,19 +121235,19 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -121173,10 +121267,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5342 + 5344 ], "nodes": [ - 5340 + 5342 ], "__typename": [ 80 @@ -121184,13 +121278,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5343 + 5345 ], "count": [ 40, { "columns": [ - 5348, + 5350, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -121199,31 +121293,31 @@ export default { } ], "max": [ - 5345 + 5347 ], "min": [ - 5346 + 5348 ], "stddev": [ - 5349 + 5351 ], "stddev_pop": [ - 5350 + 5352 ], "stddev_samp": [ - 5351 + 5353 ], "sum": [ - 5354 + 5356 ], "var_pop": [ - 5355 + 5357 ], "var_samp": [ - 5356 + 5358 ], "variance": [ - 5357 + 5359 ], "__typename": [ 80 @@ -121242,31 +121336,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5344 + 5346 ], "_not": [ - 5344 + 5346 ], "_or": [ - 5344 + 5346 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "matchup": [ 82 @@ -121286,13 +121380,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -121312,13 +121406,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -121407,7 +121501,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5353 + 5355 ], "ordering": [ 315 @@ -121418,13 +121512,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -121503,19 +121597,19 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "opening_attempts": [ 40 @@ -121556,10 +121650,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5360 + 5362 ], "nodes": [ - 5358 + 5360 ], "__typename": [ 80 @@ -121567,13 +121661,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5361 + 5363 ], "count": [ 40, { "columns": [ - 5366, + 5368, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -121582,31 +121676,31 @@ export default { } ], "max": [ - 5363 + 5365 ], "min": [ - 5364 + 5366 ], "stddev": [ - 5367 + 5369 ], "stddev_pop": [ - 5368 + 5370 ], "stddev_samp": [ - 5369 + 5371 ], "sum": [ - 5372 + 5374 ], "var_pop": [ - 5373 + 5375 ], "var_samp": [ - 5374 + 5376 ], "variance": [ - 5375 + 5377 ], "__typename": [ 80 @@ -121661,13 +121755,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5362 + 5364 ], "_not": [ - 5362 + 5364 ], "_or": [ - 5362 + 5364 ], "man_adv_rounds": [ 41 @@ -121685,19 +121779,19 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "opening_attempts": [ 41 @@ -121750,13 +121844,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "opening_attempts": [ 40 @@ -121809,13 +121903,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "opening_attempts": [ 40 @@ -122066,7 +122160,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5371 + 5373 ], "ordering": [ 315 @@ -122089,13 +122183,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "opening_attempts": [ 40 @@ -122327,7 +122421,7 @@ export default { 5 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122338,10 +122432,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5378 + 5380 ], "nodes": [ - 5376 + 5378 ], "__typename": [ 80 @@ -122349,13 +122443,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5379 + 5381 ], "count": [ 40, { "columns": [ - 5387, + 5389, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -122364,31 +122458,31 @@ export default { } ], "max": [ - 5383 + 5385 ], "min": [ - 5384 + 5386 ], "stddev": [ - 5389 + 5391 ], "stddev_pop": [ - 5390 + 5392 ], "stddev_samp": [ - 5391 + 5393 ], "sum": [ - 5394 + 5396 ], "var_pop": [ - 5396 + 5398 ], "var_samp": [ - 5397 + 5399 ], "variance": [ - 5398 + 5400 ], "__typename": [ 80 @@ -122404,19 +122498,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5380 + 5382 ], "_not": [ - 5380 + 5382 ], "_or": [ - 5380 + 5382 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5111 + 5113 ], "round": [ 41 @@ -122438,7 +122532,7 @@ export default { 5 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122449,7 +122543,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122460,7 +122554,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122474,7 +122568,7 @@ export default { 40 ], "returning": [ - 5376 + 5378 ], "__typename": [ 80 @@ -122500,7 +122594,7 @@ export default { 5 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122535,7 +122629,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5393 + 5395 ], "ordering": [ 315 @@ -122549,7 +122643,7 @@ export default { 5 ], "match_map_id": [ - 5109 + 5111 ], "round": [ 40 @@ -122568,13 +122662,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5381 + 5383 ], "_set": [ - 5388 + 5390 ], "where": [ - 5380 + 5382 ], "__typename": [ 80 @@ -122615,19 +122709,19 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -122650,10 +122744,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5401 + 5403 ], "nodes": [ - 5399 + 5401 ], "__typename": [ 80 @@ -122661,13 +122755,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5402 + 5404 ], "count": [ 40, { "columns": [ - 5407, + 5409, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -122676,31 +122770,31 @@ export default { } ], "max": [ - 5404 + 5406 ], "min": [ - 5405 + 5407 ], "stddev": [ - 5408 + 5410 ], "stddev_pop": [ - 5409 + 5411 ], "stddev_samp": [ - 5410 + 5412 ], "sum": [ - 5413 + 5415 ], "var_pop": [ - 5414 + 5416 ], "var_samp": [ - 5415 + 5417 ], "variance": [ - 5416 + 5418 ], "__typename": [ 80 @@ -122725,13 +122819,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5403 + 5405 ], "_not": [ - 5403 + 5405 ], "_or": [ - 5403 + 5405 ], "deaths": [ 41 @@ -122743,19 +122837,19 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "matchup": [ 82 @@ -122784,13 +122878,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -122816,13 +122910,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -122938,7 +123032,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5412 + 5414 ], "ordering": [ 315 @@ -122955,13 +123049,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "matchup": [ 80 @@ -123058,19 +123152,19 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2495 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -123093,10 +123187,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5421 + 5423 ], "nodes": [ - 5417 + 5419 ], "__typename": [ 80 @@ -123104,7 +123198,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5420 + 5422 ], "__typename": [ 80 @@ -123112,13 +123206,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5433 + 5435 ], "distinct": [ 5 ], "filter": [ - 5426 + 5428 ], "predicate": [ 41 @@ -123129,13 +123223,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5424 + 5426 ], "count": [ 40, { "columns": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -123144,31 +123238,31 @@ export default { } ], "max": [ - 5428 + 5430 ], "min": [ - 5430 + 5432 ], "stddev": [ - 5434 + 5436 ], "stddev_pop": [ - 5436 + 5438 ], "stddev_samp": [ - 5438 + 5440 ], "sum": [ - 5442 + 5444 ], "var_pop": [ - 5444 + 5446 ], "var_samp": [ - 5446 + 5448 ], "variance": [ - 5448 + 5450 ], "__typename": [ 80 @@ -123176,37 +123270,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5425 + 5427 ], "count": [ 3035 ], "max": [ - 5429 + 5431 ], "min": [ - 5431 + 5433 ], "stddev": [ - 5435 + 5437 ], "stddev_pop": [ - 5437 + 5439 ], "stddev_samp": [ - 5439 + 5441 ], "sum": [ - 5443 + 5445 ], "var_pop": [ - 5445 + 5447 ], "var_samp": [ - 5447 + 5449 ], "variance": [ - 5449 + 5451 ], "__typename": [ 80 @@ -123214,7 +123308,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5427 + 5429 ], "__typename": [ 80 @@ -123262,13 +123356,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5426 + 5428 ], "_not": [ - 5426 + 5428 ], "_or": [ - 5426 + 5428 ], "attempts": [ 41 @@ -123280,19 +123374,19 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_lineup": [ 2504 ], "match_lineup_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -123324,19 +123418,19 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_lineup": [ 2513 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -123365,13 +123459,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "side": [ 80 @@ -123429,13 +123523,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "side": [ 80 @@ -123652,7 +123746,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5441 + 5443 ], "ordering": [ 315 @@ -123669,13 +123763,13 @@ export default { 40 ], "match_id": [ - 5109 + 5111 ], "match_lineup_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "side": [ 80 @@ -123875,10 +123969,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5452 + 5454 ], "nodes": [ - 5450 + 5452 ], "__typename": [ 80 @@ -123886,13 +123980,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5453 + 5455 ], "count": [ 40, { "columns": [ - 5458, + 5460, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -123901,31 +123995,31 @@ export default { } ], "max": [ - 5455 + 5457 ], "min": [ - 5456 + 5458 ], "stddev": [ - 5459 + 5461 ], "stddev_pop": [ - 5460 + 5462 ], "stddev_samp": [ - 5461 + 5463 ], "sum": [ - 5464 + 5466 ], "var_pop": [ - 5465 + 5467 ], "var_samp": [ - 5466 + 5468 ], "variance": [ - 5467 + 5469 ], "__typename": [ 80 @@ -123947,13 +124041,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5454 + 5456 ], "_not": [ - 5454 + 5456 ], "_or": [ - 5454 + 5456 ], "attacker_id": [ 261 @@ -124067,7 +124161,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5463 + 5465 ], "ordering": [ 315 @@ -124168,10 +124262,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5470 + 5472 ], "nodes": [ - 5468 + 5470 ], "__typename": [ 80 @@ -124179,13 +124273,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5471 + 5473 ], "count": [ 40, { "columns": [ - 5476, + 5478, "[v_player_damage_select_column!]" ], "distinct": [ @@ -124194,31 +124288,31 @@ export default { } ], "max": [ - 5473 + 5475 ], "min": [ - 5474 + 5476 ], "stddev": [ - 5477 + 5479 ], "stddev_pop": [ - 5478 + 5480 ], "stddev_samp": [ - 5479 + 5481 ], "sum": [ - 5482 + 5484 ], "var_pop": [ - 5483 + 5485 ], "var_samp": [ - 5484 + 5486 ], "variance": [ - 5485 + 5487 ], "__typename": [ 80 @@ -124243,13 +124337,13 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5472 + 5474 ], "_not": [ - 5472 + 5474 ], "_or": [ - 5472 + 5474 ], "avg_damage_per_round": [ 261 @@ -124378,7 +124472,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5481 + 5483 ], "ordering": [ 315 @@ -124519,10 +124613,10 @@ export default { 2823 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -124546,7 +124640,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -124566,10 +124660,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5500 + 5502 ], "nodes": [ - 5486 + 5488 ], "__typename": [ 80 @@ -124577,31 +124671,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5489 + 5491 ], "corr": [ - 5490 + 5492 ], "count": [ - 5492 + 5494 ], "covar_samp": [ - 5493 + 5495 ], "max": [ - 5495 + 5497 ], "min": [ - 5496 + 5498 ], "stddev_samp": [ - 5497 + 5499 ], "sum": [ - 5498 + 5500 ], "var_samp": [ - 5499 + 5501 ], "__typename": [ 80 @@ -124609,13 +124703,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5513 + 5515 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124626,13 +124720,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5491 + 5493 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124643,10 +124737,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5514 + 5516 ], "Y": [ - 5514 + 5516 ], "__typename": [ 80 @@ -124654,13 +124748,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5512 + 5514 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 41 @@ -124671,13 +124765,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5494 + 5496 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124688,10 +124782,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5515 + 5517 ], "Y": [ - 5515 + 5517 ], "__typename": [ 80 @@ -124699,13 +124793,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5516 + 5518 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124716,13 +124810,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5517 + 5519 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124733,13 +124827,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5518 + 5520 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124750,13 +124844,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5519 + 5521 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124767,13 +124861,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5520 + 5522 ], "distinct": [ 5 ], "filter": [ - 5505 + 5507 ], "predicate": [ 1692 @@ -124784,13 +124878,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5503 + 5505 ], "count": [ 40, { "columns": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "distinct": [ @@ -124799,31 +124893,31 @@ export default { } ], "max": [ - 5507 + 5509 ], "min": [ - 5509 + 5511 ], "stddev": [ - 5521 + 5523 ], "stddev_pop": [ - 5523 + 5525 ], "stddev_samp": [ - 5525 + 5527 ], "sum": [ - 5529 + 5531 ], "var_pop": [ - 5531 + 5533 ], "var_samp": [ - 5533 + 5535 ], "variance": [ - 5535 + 5537 ], "__typename": [ 80 @@ -124831,37 +124925,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5504 + 5506 ], "count": [ 3035 ], "max": [ - 5508 + 5510 ], "min": [ - 5510 + 5512 ], "stddev": [ - 5522 + 5524 ], "stddev_pop": [ - 5524 + 5526 ], "stddev_samp": [ - 5526 + 5528 ], "sum": [ - 5530 + 5532 ], "var_pop": [ - 5532 + 5534 ], "var_samp": [ - 5534 + 5536 ], "variance": [ - 5536 + 5538 ], "__typename": [ 80 @@ -124869,7 +124963,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5506 + 5508 ], "__typename": [ 80 @@ -125019,13 +125113,13 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5505 + 5507 ], "_not": [ - 5505 + 5507 ], "_or": [ - 5505 + 5507 ], "actual_score": [ 1692 @@ -125073,10 +125167,10 @@ export default { 2832 ], "match_created_at": [ - 4610 + 4612 ], "match_id": [ - 5111 + 5113 ], "match_result": [ 82 @@ -125100,7 +125194,7 @@ export default { 1692 ], "season_id": [ - 5111 + 5113 ], "series_multiplier": [ 41 @@ -125165,10 +125259,10 @@ export default { 2841 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -125192,7 +125286,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -125254,10 +125348,10 @@ export default { 40 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -125281,7 +125375,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -125432,10 +125526,10 @@ export default { 40 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -125459,7 +125553,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -126095,7 +126189,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5528 + 5530 ], "ordering": [ 315 @@ -126148,10 +126242,10 @@ export default { 40 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -126175,7 +126269,7 @@ export default { 1691 ], "season_id": [ - 5109 + 5111 ], "series_multiplier": [ 40 @@ -126766,16 +126860,16 @@ export default { 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -126786,10 +126880,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5539 + 5541 ], "nodes": [ - 5537 + 5539 ], "__typename": [ 80 @@ -126797,13 +126891,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5540 + 5542 ], "count": [ 40, { "columns": [ - 5545, + 5547, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -126812,31 +126906,31 @@ export default { } ], "max": [ - 5542 + 5544 ], "min": [ - 5543 + 5545 ], "stddev": [ - 5546 + 5548 ], "stddev_pop": [ - 5547 + 5549 ], "stddev_samp": [ - 5548 + 5550 ], "sum": [ - 5551 + 5553 ], "var_pop": [ - 5552 + 5554 ], "var_samp": [ - 5553 + 5555 ], "variance": [ - 5554 + 5556 ], "__typename": [ 80 @@ -126852,28 +126946,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5541 + 5543 ], "_not": [ - 5541 + 5543 ], "_or": [ - 5541 + 5543 ], "map": [ 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "started_at": [ - 4610 + 4612 ], "steam_id": [ 261 @@ -126884,13 +126978,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -126901,13 +126995,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -126966,7 +127060,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5550 + 5552 ], "ordering": [ 315 @@ -126977,13 +127071,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -127029,16 +127123,16 @@ export default { 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -127049,10 +127143,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5557 + 5559 ], "nodes": [ - 5555 + 5557 ], "__typename": [ 80 @@ -127060,13 +127154,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5558 + 5560 ], "count": [ 40, { "columns": [ - 5563, + 5565, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -127075,31 +127169,31 @@ export default { } ], "max": [ - 5560 + 5562 ], "min": [ - 5561 + 5563 ], "stddev": [ - 5564 + 5566 ], "stddev_pop": [ - 5565 + 5567 ], "stddev_samp": [ - 5566 + 5568 ], "sum": [ - 5569 + 5571 ], "var_pop": [ - 5570 + 5572 ], "var_samp": [ - 5571 + 5573 ], "variance": [ - 5572 + 5574 ], "__typename": [ 80 @@ -127115,28 +127209,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5559 + 5561 ], "_not": [ - 5559 + 5561 ], "_or": [ - 5559 + 5561 ], "map": [ 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "started_at": [ - 4610 + 4612 ], "steam_id": [ 261 @@ -127147,13 +127241,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -127164,13 +127258,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -127229,7 +127323,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5568 + 5570 ], "ordering": [ 315 @@ -127240,13 +127334,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "started_at": [ - 4609 + 4611 ], "steam_id": [ 259 @@ -127319,7 +127413,7 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -127327,10 +127421,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5575 + 5577 ], "nodes": [ - 5573 + 5575 ], "__typename": [ 80 @@ -127338,13 +127432,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5576 + 5578 ], "count": [ 40, { "columns": [ - 5581, + 5583, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -127353,31 +127447,31 @@ export default { } ], "max": [ - 5578 + 5580 ], "min": [ - 5579 + 5581 ], "stddev": [ - 5582 + 5584 ], "stddev_pop": [ - 5583 + 5585 ], "stddev_samp": [ - 5584 + 5586 ], "sum": [ - 5587 + 5589 ], "var_pop": [ - 5588 + 5590 ], "var_samp": [ - 5589 + 5591 ], "variance": [ - 5590 + 5592 ], "__typename": [ 80 @@ -127411,13 +127505,13 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5577 + 5579 ], "_not": [ - 5577 + 5579 ], "_or": [ - 5577 + 5579 ], "attacked": [ 3997 @@ -127450,7 +127544,7 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -127479,7 +127573,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -127508,7 +127602,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -127633,7 +127727,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5586 + 5588 ], "ordering": [ 315 @@ -127665,7 +127759,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -127798,13 +127892,13 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -127821,10 +127915,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5595 + 5597 ], "nodes": [ - 5591 + 5593 ], "__typename": [ 80 @@ -127832,7 +127926,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5594 + 5596 ], "__typename": [ 80 @@ -127840,13 +127934,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5609 + 5611 ], "distinct": [ 5 ], "filter": [ - 5600 + 5602 ], "predicate": [ 41 @@ -127857,13 +127951,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5598 + 5600 ], "count": [ 40, { "columns": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -127872,31 +127966,31 @@ export default { } ], "max": [ - 5603 + 5605 ], "min": [ - 5605 + 5607 ], "stddev": [ - 5611 + 5613 ], "stddev_pop": [ - 5613 + 5615 ], "stddev_samp": [ - 5615 + 5617 ], "sum": [ - 5619 + 5621 ], "var_pop": [ - 5622 + 5624 ], "var_samp": [ - 5624 + 5626 ], "variance": [ - 5626 + 5628 ], "__typename": [ 80 @@ -127904,37 +127998,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5599 + 5601 ], "count": [ 3035 ], "max": [ - 5604 + 5606 ], "min": [ - 5606 + 5608 ], "stddev": [ - 5612 + 5614 ], "stddev_pop": [ - 5614 + 5616 ], "stddev_samp": [ - 5616 + 5618 ], "sum": [ - 5620 + 5622 ], "var_pop": [ - 5623 + 5625 ], "var_samp": [ - 5625 + 5627 ], "variance": [ - 5627 + 5629 ], "__typename": [ 80 @@ -127942,7 +128036,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5602 + 5604 ], "__typename": [ 80 @@ -128008,13 +128102,13 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5600 + 5602 ], "_not": [ - 5600 + 5602 ], "_or": [ - 5600 + 5602 ], "adr": [ 3034 @@ -128038,13 +128132,13 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -128111,13 +128205,13 @@ export default { 2841 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2675 ], "match_map_id": [ - 5109 + 5111 ], "player": [ 4004 @@ -128152,10 +128246,10 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -128222,10 +128316,10 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -128277,7 +128371,7 @@ export default { 40 ], "returning": [ - 5591 + 5593 ], "__typename": [ 80 @@ -128348,10 +128442,10 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -128539,7 +128633,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5618 + 5620 ], "ordering": [ 315 @@ -128568,10 +128662,10 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -128643,13 +128737,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5601 + 5603 ], "_set": [ - 5610 + 5612 ], "where": [ - 5600 + 5602 ], "__typename": [ 80 @@ -128864,19 +128958,19 @@ export default { 3033 ], "lineup_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_id": [ - 5109 + 5111 ], "match_map": [ 2657 ], "match_map_id": [ - 5109 + 5111 ], "open_deaths": [ 40 @@ -128920,10 +129014,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5630 + 5632 ], "nodes": [ - 5628 + 5630 ], "__typename": [ 80 @@ -128931,13 +129025,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5631 + 5633 ], "count": [ 40, { "columns": [ - 5636, + 5638, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -128946,31 +129040,31 @@ export default { } ], "max": [ - 5633 + 5635 ], "min": [ - 5634 + 5636 ], "stddev": [ - 5637 + 5639 ], "stddev_pop": [ - 5638 + 5640 ], "stddev_samp": [ - 5639 + 5641 ], "sum": [ - 5642 + 5644 ], "var_pop": [ - 5643 + 5645 ], "var_samp": [ - 5644 + 5646 ], "variance": [ - 5645 + 5647 ], "__typename": [ 80 @@ -129046,13 +129140,13 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5632 + 5634 ], "_not": [ - 5632 + 5634 ], "_or": [ - 5632 + 5634 ], "adr": [ 3034 @@ -129088,19 +129182,19 @@ export default { 3034 ], "lineup_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_id": [ - 5111 + 5113 ], "match_map": [ 2666 ], "match_map_id": [ - 5111 + 5113 ], "open_deaths": [ 41 @@ -129177,13 +129271,13 @@ export default { 3033 ], "lineup_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "open_deaths": [ 40 @@ -129257,13 +129351,13 @@ export default { 3033 ], "lineup_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "open_deaths": [ 40 @@ -129598,7 +129692,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5641 + 5643 ], "ordering": [ 315 @@ -129642,13 +129736,13 @@ export default { 3033 ], "lineup_id": [ - 5109 + 5111 ], "match_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109 + 5111 ], "open_deaths": [ 40 @@ -129973,16 +130067,16 @@ export default { 2306 ], "map_id": [ - 5109 + 5111 ], "match": [ 2823 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -130002,10 +130096,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5648 + 5650 ], "nodes": [ - 5646 + 5648 ], "__typename": [ 80 @@ -130013,13 +130107,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5649 + 5651 ], "count": [ 40, { "columns": [ - 5654, + 5656, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -130028,31 +130122,31 @@ export default { } ], "max": [ - 5651 + 5653 ], "min": [ - 5652 + 5654 ], "stddev": [ - 5655 + 5657 ], "stddev_pop": [ - 5656 + 5658 ], "stddev_samp": [ - 5657 + 5659 ], "sum": [ - 5660 + 5662 ], "var_pop": [ - 5661 + 5663 ], "var_samp": [ - 5662 + 5664 ], "variance": [ - 5663 + 5665 ], "__typename": [ 80 @@ -130077,13 +130171,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5650 + 5652 ], "_not": [ - 5650 + 5652 ], "_or": [ - 5650 + 5652 ], "assists": [ 41 @@ -130098,16 +130192,16 @@ export default { 2315 ], "map_id": [ - 5111 + 5113 ], "match": [ 2832 ], "match_created_at": [ - 4610 + 4612 ], "match_id": [ - 5111 + 5113 ], "match_result": [ 82 @@ -130136,13 +130230,13 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -130171,13 +130265,13 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -130290,7 +130384,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5659 + 5661 ], "ordering": [ 315 @@ -130310,13 +130404,13 @@ export default { 40 ], "map_id": [ - 5109 + 5111 ], "match_created_at": [ - 4609 + 4611 ], "match_id": [ - 5109 + 5111 ], "match_result": [ 80 @@ -130422,7 +130516,7 @@ export default { 2823 ], "match_id": [ - 5109 + 5111 ], "player": [ 3993 @@ -130439,10 +130533,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5666 + 5668 ], "nodes": [ - 5664 + 5666 ], "__typename": [ 80 @@ -130450,13 +130544,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5667 + 5669 ], "count": [ 40, { "columns": [ - 5672, + 5674, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -130465,31 +130559,31 @@ export default { } ], "max": [ - 5669 + 5671 ], "min": [ - 5670 + 5672 ], "stddev": [ - 5673 + 5675 ], "stddev_pop": [ - 5674 + 5676 ], "stddev_samp": [ - 5675 + 5677 ], "sum": [ - 5678 + 5680 ], "var_pop": [ - 5679 + 5681 ], "var_samp": [ - 5680 + 5682 ], "variance": [ - 5681 + 5683 ], "__typename": [ 80 @@ -130523,13 +130617,13 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5668 + 5670 ], "_not": [ - 5668 + 5670 ], "_or": [ - 5668 + 5670 ], "adr": [ 3034 @@ -130550,7 +130644,7 @@ export default { 2832 ], "match_id": [ - 5111 + 5113 ], "player": [ 3997 @@ -130582,7 +130676,7 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -130611,7 +130705,7 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -130739,7 +130833,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5677 + 5679 ], "ordering": [ 315 @@ -130765,7 +130859,7 @@ export default { 3033 ], "match_id": [ - 5109 + 5111 ], "rounds_played": [ 40 @@ -130889,7 +130983,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "round": [ 40 @@ -130900,10 +130994,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5686 + 5688 ], "nodes": [ - 5682 + 5684 ], "__typename": [ 80 @@ -130911,7 +131005,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5685 + 5687 ], "__typename": [ 80 @@ -130919,13 +131013,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5698 + 5700 ], "distinct": [ 5 ], "filter": [ - 5691 + 5693 ], "predicate": [ 41 @@ -130936,13 +131030,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5689 + 5691 ], "count": [ 40, { "columns": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -130951,31 +131045,31 @@ export default { } ], "max": [ - 5693 + 5695 ], "min": [ - 5695 + 5697 ], "stddev": [ - 5699 + 5701 ], "stddev_pop": [ - 5701 + 5703 ], "stddev_samp": [ - 5703 + 5705 ], "sum": [ - 5707 + 5709 ], "var_pop": [ - 5709 + 5711 ], "var_samp": [ - 5711 + 5713 ], "variance": [ - 5713 + 5715 ], "__typename": [ 80 @@ -130983,37 +131077,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5690 + 5692 ], "count": [ 3035 ], "max": [ - 5694 + 5696 ], "min": [ - 5696 + 5698 ], "stddev": [ - 5700 + 5702 ], "stddev_pop": [ - 5702 + 5704 ], "stddev_samp": [ - 5704 + 5706 ], "sum": [ - 5708 + 5710 ], "var_pop": [ - 5710 + 5712 ], "var_samp": [ - 5712 + 5714 ], "variance": [ - 5714 + 5716 ], "__typename": [ 80 @@ -131021,7 +131115,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5692 + 5694 ], "__typename": [ 80 @@ -131057,13 +131151,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5691 + 5693 ], "_not": [ - 5691 + 5693 ], "_or": [ - 5691 + 5693 ], "attacker_steam_id": [ 261 @@ -131072,7 +131166,7 @@ export default { 261 ], "match_id": [ - 5111 + 5113 ], "round": [ 41 @@ -131089,7 +131183,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "round": [ 40 @@ -131106,7 +131200,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "round": [ 40 @@ -131140,7 +131234,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "round": [ 40 @@ -131270,7 +131364,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5706 + 5708 ], "ordering": [ 315 @@ -131287,7 +131381,7 @@ export default { 259 ], "match_id": [ - 5109 + 5111 ], "round": [ 40 @@ -131410,10 +131504,10 @@ export default { }, "v_player_queue_partners": { "first_played_at": [ - 4609 + 4611 ], "last_played_at": [ - 4609 + 4611 ], "matches_together": [ 40 @@ -131439,10 +131533,10 @@ export default { }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5717 + 5719 ], "nodes": [ - 5715 + 5717 ], "__typename": [ 80 @@ -131450,13 +131544,13 @@ export default { }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5718 + 5720 ], "count": [ 40, { "columns": [ - 5723, + 5725, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -131465,31 +131559,31 @@ export default { } ], "max": [ - 5720 + 5722 ], "min": [ - 5721 + 5723 ], "stddev": [ - 5724 + 5726 ], "stddev_pop": [ - 5725 + 5727 ], "stddev_samp": [ - 5726 + 5728 ], "sum": [ - 5729 + 5731 ], "var_pop": [ - 5730 + 5732 ], "var_samp": [ - 5731 + 5733 ], "variance": [ - 5732 + 5734 ], "__typename": [ 80 @@ -131514,19 +131608,19 @@ export default { }, "v_player_queue_partners_bool_exp": { "_and": [ - 5719 + 5721 ], "_not": [ - 5719 + 5721 ], "_or": [ - 5719 + 5721 ], "first_played_at": [ - 4610 + 4612 ], "last_played_at": [ - 4610 + 4612 ], "matches_together": [ 41 @@ -131552,10 +131646,10 @@ export default { }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4609 + 4611 ], "last_played_at": [ - 4609 + 4611 ], "matches_together": [ 40 @@ -131575,10 +131669,10 @@ export default { }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4609 + 4611 ], "last_played_at": [ - 4609 + 4611 ], "matches_together": [ 40 @@ -131679,7 +131773,7 @@ export default { }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5728 + 5730 ], "ordering": [ 315 @@ -131690,10 +131784,10 @@ export default { }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4609 + 4611 ], "last_played_at": [ - 4609 + 4611 ], "matches_together": [ 40 @@ -131804,10 +131898,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5735 + 5737 ], "nodes": [ - 5733 + 5735 ], "__typename": [ 80 @@ -131815,13 +131909,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5736 + 5738 ], "count": [ 40, { "columns": [ - 5741, + 5743, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -131830,31 +131924,31 @@ export default { } ], "max": [ - 5738 + 5740 ], "min": [ - 5739 + 5741 ], "stddev": [ - 5742 + 5744 ], "stddev_pop": [ - 5743 + 5745 ], "stddev_samp": [ - 5744 + 5746 ], "sum": [ - 5747 + 5749 ], "var_pop": [ - 5748 + 5750 ], "var_samp": [ - 5749 + 5751 ], "variance": [ - 5750 + 5752 ], "__typename": [ 80 @@ -131876,13 +131970,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5737 + 5739 ], "_not": [ - 5737 + 5739 ], "_or": [ - 5737 + 5739 ], "damage": [ 261 @@ -132020,7 +132114,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5746 + 5748 ], "ordering": [ 315 @@ -132133,10 +132227,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5753 + 5755 ], "nodes": [ - 5751 + 5753 ], "__typename": [ 80 @@ -132144,13 +132238,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5754 + 5756 ], "count": [ 40, { "columns": [ - 5759, + 5761, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -132159,31 +132253,31 @@ export default { } ], "max": [ - 5756 + 5758 ], "min": [ - 5757 + 5759 ], "stddev": [ - 5760 + 5762 ], "stddev_pop": [ - 5761 + 5763 ], "stddev_samp": [ - 5762 + 5764 ], "sum": [ - 5765 + 5767 ], "var_pop": [ - 5766 + 5768 ], "var_samp": [ - 5767 + 5769 ], "variance": [ - 5768 + 5770 ], "__typename": [ 80 @@ -132205,13 +132299,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5755 + 5757 ], "_not": [ - 5755 + 5757 ], "_or": [ - 5755 + 5757 ], "kill_count": [ 261 @@ -132349,7 +132443,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5764 + 5766 ], "ordering": [ 315 @@ -132442,7 +132536,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -132451,7 +132545,7 @@ export default { 2287 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132474,10 +132568,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5775 + 5777 ], "nodes": [ - 5769 + 5771 ], "__typename": [ 80 @@ -132485,13 +132579,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5772 + 5774 ], "bool_or": [ - 5773 + 5775 ], "count": [ - 5774 + 5776 ], "__typename": [ 80 @@ -132499,13 +132593,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5787 + 5789 ], "distinct": [ 5 ], "filter": [ - 5778 + 5780 ], "predicate": [ 6 @@ -132516,13 +132610,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5788 + 5790 ], "distinct": [ 5 ], "filter": [ - 5778 + 5780 ], "predicate": [ 6 @@ -132533,13 +132627,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5786 + 5788 ], "distinct": [ 5 ], "filter": [ - 5778 + 5780 ], "predicate": [ 41 @@ -132553,7 +132647,7 @@ export default { 40, { "columns": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -132562,10 +132656,10 @@ export default { } ], "max": [ - 5780 + 5782 ], "min": [ - 5782 + 5784 ], "__typename": [ 80 @@ -132576,10 +132670,10 @@ export default { 3035 ], "max": [ - 5781 + 5783 ], "min": [ - 5783 + 5785 ], "__typename": [ 80 @@ -132587,7 +132681,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5779 + 5781 ], "__typename": [ 80 @@ -132595,19 +132689,19 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5778 + 5780 ], "_not": [ - 5778 + 5780 ], "_or": [ - 5778 + 5780 ], "active_pool": [ 6 ], "id": [ - 5111 + 5113 ], "label": [ 82 @@ -132616,7 +132710,7 @@ export default { 2290 ], "map_pool_id": [ - 5111 + 5113 ], "name": [ 82 @@ -132642,7 +132736,7 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 @@ -132651,7 +132745,7 @@ export default { 2296 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132674,13 +132768,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 5109 + 5111 ], "label": [ 80 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132732,13 +132826,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 5109 + 5111 ], "label": [ 80 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132793,7 +132887,7 @@ export default { 40 ], "returning": [ - 5769 + 5771 ], "__typename": [ 80 @@ -132842,13 +132936,13 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132871,7 +132965,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5791 + 5793 ], "ordering": [ 315 @@ -132885,13 +132979,13 @@ export default { 5 ], "id": [ - 5109 + 5111 ], "label": [ 80 ], "map_pool_id": [ - 5109 + 5111 ], "name": [ 80 @@ -132914,10 +133008,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5789 + 5791 ], "where": [ - 5778 + 5780 ], "__typename": [ 80 @@ -132942,10 +133036,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5795 + 5797 ], "nodes": [ - 5793 + 5795 ], "__typename": [ 80 @@ -132953,13 +133047,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5796 + 5798 ], "count": [ 40, { "columns": [ - 5801, + 5803, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -132968,31 +133062,31 @@ export default { } ], "max": [ - 5798 + 5800 ], "min": [ - 5799 + 5801 ], "stddev": [ - 5802 + 5804 ], "stddev_pop": [ - 5803 + 5805 ], "stddev_samp": [ - 5804 + 5806 ], "sum": [ - 5807 + 5809 ], "var_pop": [ - 5808 + 5810 ], "var_samp": [ - 5809 + 5811 ], "variance": [ - 5810 + 5812 ], "__typename": [ 80 @@ -133017,13 +133111,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5797 + 5799 ], "_not": [ - 5797 + 5799 ], "_or": [ - 5797 + 5799 ], "busy_accounts": [ 41 @@ -133146,7 +133240,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5806 + 5808 ], "ordering": [ 315 @@ -133272,7 +133366,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133280,10 +133374,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5813 + 5815 ], "nodes": [ - 5811 + 5813 ], "__typename": [ 80 @@ -133291,13 +133385,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5814 + 5816 ], "count": [ 40, { "columns": [ - 5821, + 5823, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -133306,31 +133400,31 @@ export default { } ], "max": [ - 5817 + 5819 ], "min": [ - 5818 + 5820 ], "stddev": [ - 5822 + 5824 ], "stddev_pop": [ - 5823 + 5825 ], "stddev_samp": [ - 5824 + 5826 ], "sum": [ - 5827 + 5829 ], "var_pop": [ - 5828 + 5830 ], "var_samp": [ - 5829 + 5831 ], "variance": [ - 5830 + 5832 ], "__typename": [ 80 @@ -133370,13 +133464,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5815 + 5817 ], "_not": [ - 5815 + 5817 ], "_or": [ - 5815 + 5817 ], "avg_duel_elo": [ 41 @@ -133409,7 +133503,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -133447,7 +133541,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133482,7 +133576,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133517,7 +133611,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133525,7 +133619,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5816 + 5818 ], "__typename": [ 80 @@ -133668,7 +133762,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5826 + 5828 ], "ordering": [ 315 @@ -133706,7 +133800,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133857,7 +133951,7 @@ export default { 4562 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -133865,10 +133959,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5833 + 5835 ], "nodes": [ - 5831 + 5833 ], "__typename": [ 80 @@ -133876,13 +133970,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5834 + 5836 ], "count": [ 40, { "columns": [ - 5841, + 5843, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -133891,31 +133985,31 @@ export default { } ], "max": [ - 5837 + 5839 ], "min": [ - 5838 + 5840 ], "stddev": [ - 5842 + 5844 ], "stddev_pop": [ - 5843 + 5845 ], "stddev_samp": [ - 5844 + 5846 ], "sum": [ - 5847 + 5849 ], "var_pop": [ - 5848 + 5850 ], "var_samp": [ - 5849 + 5851 ], "variance": [ - 5850 + 5852 ], "__typename": [ 80 @@ -133940,13 +134034,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5835 + 5837 ], "_not": [ - 5835 + 5837 ], "_or": [ - 5835 + 5837 ], "late_cancels": [ 261 @@ -133964,7 +134058,7 @@ export default { 4573 ], "team_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -133987,7 +134081,7 @@ export default { 4582 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -134007,7 +134101,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -134027,7 +134121,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -134035,7 +134129,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5836 + 5838 ], "__typename": [ 80 @@ -134118,7 +134212,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5846 + 5848 ], "ordering": [ 315 @@ -134141,7 +134235,7 @@ export default { 259 ], "team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -134253,10 +134347,10 @@ export default { 40 ], "stage": [ - 4870 + 4872 ], "team": [ - 5003 + 5005 ], "team_kdr": [ 1691 @@ -134268,10 +134362,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -134282,10 +134376,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5865 + 5867 ], "nodes": [ - 5851 + 5853 ], "__typename": [ 80 @@ -134293,31 +134387,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5854 + 5856 ], "corr": [ - 5855 + 5857 ], "count": [ - 5857 + 5859 ], "covar_samp": [ - 5858 + 5860 ], "max": [ - 5860 + 5862 ], "min": [ - 5861 + 5863 ], "stddev_samp": [ - 5862 + 5864 ], "sum": [ - 5863 + 5865 ], "var_samp": [ - 5864 + 5866 ], "__typename": [ 80 @@ -134325,13 +134419,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5884 + 5886 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134342,13 +134436,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5856 + 5858 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134359,10 +134453,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5885 + 5887 ], "Y": [ - 5885 + 5887 ], "__typename": [ 80 @@ -134370,13 +134464,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5883 + 5885 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 41 @@ -134387,13 +134481,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5859 + 5861 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134404,10 +134498,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5886 + 5888 ], "Y": [ - 5886 + 5888 ], "__typename": [ 80 @@ -134415,13 +134509,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5887 + 5889 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134432,13 +134526,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5888 + 5890 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134449,13 +134543,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5889 + 5891 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134466,13 +134560,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5890 + 5892 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134483,13 +134577,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5891 + 5893 ], "distinct": [ 5 ], "filter": [ - 5870 + 5872 ], "predicate": [ 1692 @@ -134500,13 +134594,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5868 + 5870 ], "count": [ 40, { "columns": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -134515,31 +134609,31 @@ export default { } ], "max": [ - 5874 + 5876 ], "min": [ - 5876 + 5878 ], "stddev": [ - 5893 + 5895 ], "stddev_pop": [ - 5895 + 5897 ], "stddev_samp": [ - 5897 + 5899 ], "sum": [ - 5901 + 5903 ], "var_pop": [ - 5905 + 5907 ], "var_samp": [ - 5907 + 5909 ], "variance": [ - 5909 + 5911 ], "__typename": [ 80 @@ -134547,37 +134641,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5869 + 5871 ], "count": [ 3035 ], "max": [ - 5875 + 5877 ], "min": [ - 5877 + 5879 ], "stddev": [ - 5894 + 5896 ], "stddev_pop": [ - 5896 + 5898 ], "stddev_samp": [ - 5898 + 5900 ], "sum": [ - 5902 + 5904 ], "var_pop": [ - 5906 + 5908 ], "var_samp": [ - 5908 + 5910 ], "variance": [ - 5910 + 5912 ], "__typename": [ 80 @@ -134585,10 +134679,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5873 + 5875 ], "on_conflict": [ - 5880 + 5882 ], "__typename": [ 80 @@ -134702,13 +134796,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5870 + 5872 ], "_not": [ - 5870 + 5872 ], "_or": [ - 5870 + 5872 ], "group_number": [ 41 @@ -134747,10 +134841,10 @@ export default { 41 ], "stage": [ - 4882 + 4884 ], "team": [ - 5012 + 5014 ], "team_kdr": [ 1692 @@ -134762,10 +134856,10 @@ export default { 41 ], "tournament_stage_id": [ - 5111 + 5113 ], "tournament_team_id": [ - 5111 + 5113 ], "wins": [ 41 @@ -134866,10 +134960,10 @@ export default { 40 ], "stage": [ - 4894 + 4896 ], "team": [ - 5021 + 5023 ], "team_kdr": [ 1691 @@ -134881,10 +134975,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -134940,10 +135034,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -135058,10 +135152,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -135134,7 +135228,7 @@ export default { 40 ], "returning": [ - 5851 + 5853 ], "__typename": [ 80 @@ -135142,10 +135236,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5873 + 5875 ], "on_conflict": [ - 5880 + 5882 ], "__typename": [ 80 @@ -135153,13 +135247,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5871 + 5873 ], "update_columns": [ - 5903 + 5905 ], "where": [ - 5870 + 5872 ], "__typename": [ 80 @@ -135203,10 +135297,10 @@ export default { 3035 ], "stage": [ - 4896 + 4898 ], "team": [ - 5023 + 5025 ], "team_kdr": [ 3035 @@ -135232,10 +135326,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -135297,10 +135391,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -135629,7 +135723,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5900 + 5902 ], "ordering": [ 315 @@ -135685,10 +135779,10 @@ export default { 40 ], "tournament_stage_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -135806,13 +135900,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5872 + 5874 ], "_set": [ - 5892 + 5894 ], "where": [ - 5870 + 5872 ], "__typename": [ 80 @@ -136165,7 +136259,7 @@ export default { 40 ], "team": [ - 5003 + 5005 ], "team_kdr": [ 1691 @@ -136177,13 +136271,13 @@ export default { 40 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -136194,10 +136288,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5925 + 5927 ], "nodes": [ - 5911 + 5913 ], "__typename": [ 80 @@ -136205,31 +136299,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5914 + 5916 ], "corr": [ - 5915 + 5917 ], "count": [ - 5917 + 5919 ], "covar_samp": [ - 5918 + 5920 ], "max": [ - 5920 + 5922 ], "min": [ - 5921 + 5923 ], "stddev_samp": [ - 5922 + 5924 ], "sum": [ - 5923 + 5925 ], "var_samp": [ - 5924 + 5926 ], "__typename": [ 80 @@ -136237,13 +136331,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5938 + 5940 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136254,13 +136348,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5916 + 5918 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136271,10 +136365,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5939 + 5941 ], "Y": [ - 5939 + 5941 ], "__typename": [ 80 @@ -136282,13 +136376,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5937 + 5939 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 41 @@ -136299,13 +136393,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5919 + 5921 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136316,10 +136410,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5940 + 5942 ], "Y": [ - 5940 + 5942 ], "__typename": [ 80 @@ -136327,13 +136421,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5941 + 5943 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136344,13 +136438,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5942 + 5944 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136361,13 +136455,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5943 + 5945 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136378,13 +136472,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5944 + 5946 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136395,13 +136489,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5945 + 5947 ], "distinct": [ 5 ], "filter": [ - 5930 + 5932 ], "predicate": [ 1692 @@ -136412,13 +136506,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5928 + 5930 ], "count": [ 40, { "columns": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -136427,31 +136521,31 @@ export default { } ], "max": [ - 5932 + 5934 ], "min": [ - 5934 + 5936 ], "stddev": [ - 5946 + 5948 ], "stddev_pop": [ - 5948 + 5950 ], "stddev_samp": [ - 5950 + 5952 ], "sum": [ - 5954 + 5956 ], "var_pop": [ - 5956 + 5958 ], "var_samp": [ - 5958 + 5960 ], "variance": [ - 5960 + 5962 ], "__typename": [ 80 @@ -136459,37 +136553,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5929 + 5931 ], "count": [ 3035 ], "max": [ - 5933 + 5935 ], "min": [ - 5935 + 5937 ], "stddev": [ - 5947 + 5949 ], "stddev_pop": [ - 5949 + 5951 ], "stddev_samp": [ - 5951 + 5953 ], "sum": [ - 5955 + 5957 ], "var_pop": [ - 5957 + 5959 ], "var_samp": [ - 5959 + 5961 ], "variance": [ - 5961 + 5963 ], "__typename": [ 80 @@ -136497,7 +136591,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5931 + 5933 ], "__typename": [ 80 @@ -136593,13 +136687,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5930 + 5932 ], "_not": [ - 5930 + 5932 ], "_or": [ - 5930 + 5932 ], "head_to_head_match_wins": [ 41 @@ -136629,7 +136723,7 @@ export default { 41 ], "team": [ - 5012 + 5014 ], "team_kdr": [ 1692 @@ -136641,13 +136735,13 @@ export default { 41 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "tournament_team_id": [ - 5111 + 5113 ], "wins": [ 41 @@ -136685,7 +136779,7 @@ export default { 40 ], "team": [ - 5021 + 5023 ], "team_kdr": [ 1691 @@ -136697,13 +136791,13 @@ export default { 40 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -136750,10 +136844,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -136850,10 +136944,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -136941,7 +137035,7 @@ export default { 3035 ], "team": [ - 5023 + 5025 ], "team_kdr": [ 3035 @@ -136953,7 +137047,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -137243,7 +137337,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5953 + 5955 ], "ordering": [ 315 @@ -137290,10 +137384,10 @@ export default { 40 ], "tournament_id": [ - 5109 + 5111 ], "tournament_team_id": [ - 5109 + 5111 ], "wins": [ 40 @@ -137683,10 +137777,10 @@ export default { 259 ], "tournament": [ - 5045 + 5047 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -137694,10 +137788,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5976 + 5978 ], "nodes": [ - 5962 + 5964 ], "__typename": [ 80 @@ -137705,31 +137799,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5965 + 5967 ], "corr": [ - 5966 + 5968 ], "count": [ - 5968 + 5970 ], "covar_samp": [ - 5969 + 5971 ], "max": [ - 5971 + 5973 ], "min": [ - 5972 + 5974 ], "stddev_samp": [ - 5973 + 5975 ], "sum": [ - 5974 + 5976 ], "var_samp": [ - 5975 + 5977 ], "__typename": [ 80 @@ -137737,13 +137831,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5989 + 5991 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137754,13 +137848,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5967 + 5969 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137771,10 +137865,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5990 + 5992 ], "Y": [ - 5990 + 5992 ], "__typename": [ 80 @@ -137782,13 +137876,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5988 + 5990 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 41 @@ -137799,13 +137893,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5970 + 5972 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137816,10 +137910,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5991 + 5993 ], "Y": [ - 5991 + 5993 ], "__typename": [ 80 @@ -137827,13 +137921,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5992 + 5994 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137844,13 +137938,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5993 + 5995 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137861,13 +137955,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5994 + 5996 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137878,13 +137972,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5995 + 5997 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137895,13 +137989,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5996 + 5998 ], "distinct": [ 5 ], "filter": [ - 5981 + 5983 ], "predicate": [ 1692 @@ -137912,13 +138006,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5979 + 5981 ], "count": [ 40, { "columns": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -137927,31 +138021,31 @@ export default { } ], "max": [ - 5983 + 5985 ], "min": [ - 5985 + 5987 ], "stddev": [ - 5997 + 5999 ], "stddev_pop": [ - 5999 + 6001 ], "stddev_samp": [ - 6001 + 6003 ], "sum": [ - 6005 + 6007 ], "var_pop": [ - 6007 + 6009 ], "var_samp": [ - 6009 + 6011 ], "variance": [ - 6011 + 6013 ], "__typename": [ 80 @@ -137959,37 +138053,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5980 + 5982 ], "count": [ 3035 ], "max": [ - 5984 + 5986 ], "min": [ - 5986 + 5988 ], "stddev": [ - 5998 + 6000 ], "stddev_pop": [ - 6000 + 6002 ], "stddev_samp": [ - 6002 + 6004 ], "sum": [ - 6006 + 6008 ], "var_pop": [ - 6008 + 6010 ], "var_samp": [ - 6010 + 6012 ], "variance": [ - 6012 + 6014 ], "__typename": [ 80 @@ -137997,7 +138091,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5982 + 5984 ], "__typename": [ 80 @@ -138063,13 +138157,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5981 + 5983 ], "_not": [ - 5981 + 5983 ], "_or": [ - 5981 + 5983 ], "assists": [ 41 @@ -138099,10 +138193,10 @@ export default { 261 ], "tournament": [ - 5066 + 5068 ], "tournament_id": [ - 5111 + 5113 ], "__typename": [ 80 @@ -138137,10 +138231,10 @@ export default { 259 ], "tournament": [ - 5075 + 5077 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -138172,7 +138266,7 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -138236,7 +138330,7 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -138303,7 +138397,7 @@ export default { 3035 ], "tournament": [ - 5077 + 5079 ], "tournament_id": [ 3035 @@ -138497,7 +138591,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 6004 + 6006 ], "ordering": [ 315 @@ -138532,7 +138626,7 @@ export default { 259 ], "tournament_id": [ - 5109 + 5111 ], "__typename": [ 80 @@ -138819,11 +138913,11 @@ export default { 102, { "map_id": [ - 5109, + 5111, "uuid!" ], "map_pool_id": [ - 5109, + 5111, "uuid!" ] } @@ -138876,7 +138970,7 @@ export default { 121, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -138929,7 +139023,7 @@ export default { 162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -138982,7 +139076,7 @@ export default { 190, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139035,7 +139129,7 @@ export default { 231, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139088,7 +139182,7 @@ export default { 264, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139141,7 +139235,7 @@ export default { 316, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139197,7 +139291,7 @@ export default { 348, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139250,7 +139344,7 @@ export default { 375, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -139303,7 +139397,7 @@ export default { 420, { "draft_game_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -139360,7 +139454,7 @@ export default { 465, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -141798,11 +141892,11 @@ export default { 1432, { "event_id": [ - 5109, + 5111, "uuid!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -141855,7 +141949,7 @@ export default { 1450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -141908,7 +142002,7 @@ export default { 1472, { "media_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -141965,7 +142059,7 @@ export default { 1533, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -142022,7 +142116,7 @@ export default { 1574, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -142079,11 +142173,11 @@ export default { 1615, { "event_id": [ - 5109, + 5111, "uuid!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -142136,11 +142230,11 @@ export default { 1639, { "event_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } @@ -142193,7 +142287,7 @@ export default { 1663, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -142409,7 +142503,7 @@ export default { 1804, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -142445,7 +142539,7 @@ export default { 36, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "target_steam_id": [ @@ -142829,7 +142923,7 @@ export default { 1871, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -142882,7 +142976,7 @@ export default { 1899, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -142935,7 +143029,7 @@ export default { 1940, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -142988,7 +143082,7 @@ export default { 1981, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143041,7 +143135,7 @@ export default { 2022, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143094,7 +143188,7 @@ export default { 2047, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143147,7 +143241,7 @@ export default { 2080, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143200,7 +143294,7 @@ export default { 2121, { "league_team_season_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -143257,7 +143351,7 @@ export default { 2162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143310,7 +143404,7 @@ export default { 2204, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143378,7 +143472,7 @@ export default { 2223, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143431,7 +143525,7 @@ export default { 2242, { "lobby_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -143488,7 +143582,7 @@ export default { 2287, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143541,7 +143635,7 @@ export default { 2306, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143594,7 +143688,7 @@ export default { 2335, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143647,7 +143741,7 @@ export default { 2362, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143700,7 +143794,7 @@ export default { 2404, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143753,7 +143847,7 @@ export default { 2450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143806,7 +143900,7 @@ export default { 2495, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143859,7 +143953,7 @@ export default { 2537, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143912,7 +144006,7 @@ export default { 2588, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -143965,7 +144059,7 @@ export default { 2629, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144018,7 +144112,7 @@ export default { 2657, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144071,7 +144165,7 @@ export default { 2699, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144124,7 +144218,7 @@ export default { 2727, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144177,7 +144271,7 @@ export default { 2755, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144283,7 +144377,7 @@ export default { 2823, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144392,7 +144486,7 @@ export default { 50, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144448,7 +144542,7 @@ export default { 2929, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144562,7 +144656,7 @@ export default { 2983, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -144729,7 +144823,7 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -144782,7 +144876,7 @@ export default { 3132, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -144851,11 +144945,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -144952,15 +145046,15 @@ export default { 3236, { "id": [ - 5109, + 5111, "uuid!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -145013,7 +145107,7 @@ export default { 3277, { "match_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -145074,7 +145168,7 @@ export default { 3304, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -145135,11 +145229,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -145200,11 +145294,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -145358,7 +145452,7 @@ export default { 3499, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -145503,7 +145597,7 @@ export default { 3591, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -145511,7 +145605,7 @@ export default { "bigint!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -145608,7 +145702,7 @@ export default { 3650, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -145661,11 +145755,11 @@ export default { 3691, { "created_at": [ - 4609, + 4611, "timestamptz!" ], "id": [ - 5109, + 5111, "uuid!" ] } @@ -145722,7 +145816,7 @@ export default { "bigint!" ], "season_id": [ - 5109, + 5111, "uuid!" ] } @@ -145934,7 +146028,7 @@ export default { 3878, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -145995,11 +146089,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -146206,7 +146300,7 @@ export default { 4048, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146275,7 +146369,7 @@ export default { 4079, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146381,7 +146475,7 @@ export default { 4134, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146490,7 +146584,7 @@ export default { 4200, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146543,7 +146637,7 @@ export default { 4224, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146596,7 +146690,7 @@ export default { 4252, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146605,7 +146699,7 @@ export default { 87, { "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -146658,7 +146752,7 @@ export default { 4279, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146715,7 +146809,7 @@ export default { "bigint!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -146768,7 +146862,7 @@ export default { 4365, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146821,7 +146915,7 @@ export default { 4392, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146874,7 +146968,7 @@ export default { 4420, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146927,7 +147021,7 @@ export default { 4461, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -146980,7 +147074,7 @@ export default { 4507, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -147033,7 +147127,7 @@ export default { 4535, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -147086,7 +147180,7 @@ export default { 4562, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -147095,10 +147189,10 @@ export default { 93 ], "tournament_awards": [ - 4611, + 4613, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -147108,19 +147202,19 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_awards_aggregate": [ - 4612, + 4614, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -147130,28 +147224,28 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_awards_by_pk": [ - 4611, + 4613, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_brackets": [ - 4653, + 4655, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -147161,19 +147255,19 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "tournament_brackets_aggregate": [ - 4654, + 4656, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -147183,28 +147277,28 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "tournament_brackets_by_pk": [ - 4653, + 4655, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_categories": [ - 4699, + 4701, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -147214,19 +147308,19 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "tournament_categories_aggregate": [ - 4700, + 4702, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -147236,32 +147330,32 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "tournament_categories_by_pk": [ - 4699, + 4701, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_organizer_teams": [ - 4723, + 4725, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -147271,19 +147365,19 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "tournament_organizer_teams_aggregate": [ - 4724, + 4726, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -147293,32 +147387,32 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "tournament_organizer_teams_by_pk": [ - 4723, + 4725, { "team_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_organizers": [ - 4747, + 4749, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -147328,19 +147422,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_organizers_aggregate": [ - 4748, + 4750, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -147350,32 +147444,32 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_organizers_by_pk": [ - 4747, + 4749, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_prizes": [ - 4788, + 4790, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -147385,19 +147479,19 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "tournament_prizes_aggregate": [ - 4789, + 4791, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -147407,28 +147501,28 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "tournament_prizes_by_pk": [ - 4788, + 4790, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_stage_windows": [ - 4829, + 4831, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -147438,19 +147532,19 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], "tournament_stage_windows_aggregate": [ - 4830, + 4832, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -147460,28 +147554,28 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], "tournament_stage_windows_by_pk": [ - 4829, + 4831, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_stages": [ - 4870, + 4872, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -147491,19 +147585,19 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "tournament_stages_aggregate": [ - 4871, + 4873, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -147513,28 +147607,28 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "tournament_stages_by_pk": [ - 4870, + 4872, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_team_invites": [ - 4921, + 4923, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -147544,19 +147638,19 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], "tournament_team_invites_aggregate": [ - 4922, + 4924, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -147566,28 +147660,28 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], "tournament_team_invites_by_pk": [ - 4921, + 4923, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_team_roster": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -147597,19 +147691,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_team_roster_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -147619,32 +147713,32 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_team_roster_by_pk": [ - 4962, + 4964, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_teams": [ - 5003, + 5005, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -147654,19 +147748,19 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "tournament_teams_aggregate": [ - 5004, + 5006, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -147676,28 +147770,28 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "tournament_teams_by_pk": [ - 5003, + 5005, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournaments": [ - 5045, + 5047, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -147707,19 +147801,19 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_aggregate": [ - 5046, + 5048, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -147729,28 +147823,28 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_by_pk": [ - 5045, + 5047, { "id": [ - 5109, + 5111, "uuid!" ] } ], "v_event_player_stats": [ - 5112, + 5114, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -147760,19 +147854,19 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], "v_event_player_stats_aggregate": [ - 5113, + 5115, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -147782,19 +147876,19 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], "v_gpu_pool_status": [ - 5163, + 5165, { "distinct_on": [ - 5171, + 5173, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -147804,19 +147898,19 @@ export default { 40 ], "order_by": [ - 5170, + 5172, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5167 + 5169 ] } ], "v_gpu_pool_status_aggregate": [ - 5164, + 5166, { "distinct_on": [ - 5171, + 5173, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -147826,19 +147920,19 @@ export default { 40 ], "order_by": [ - 5170, + 5172, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5167 + 5169 ] } ], "v_league_division_standings": [ - 5181, + 5183, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -147848,19 +147942,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "v_league_division_standings_aggregate": [ - 5182, + 5184, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -147870,19 +147964,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "v_league_season_player_stats": [ - 5214, + 5216, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -147892,19 +147986,19 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], "v_league_season_player_stats_aggregate": [ - 5215, + 5217, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -147914,19 +148008,19 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], "v_match_captains": [ - 5265, + 5267, { "distinct_on": [ - 5277, + 5279, "[v_match_captains_select_column!]" ], "limit": [ @@ -147936,19 +148030,19 @@ export default { 40 ], "order_by": [ - 5276, + 5278, "[v_match_captains_order_by!]" ], "where": [ - 5269 + 5271 ] } ], "v_match_captains_aggregate": [ - 5266, + 5268, { "distinct_on": [ - 5277, + 5279, "[v_match_captains_select_column!]" ], "limit": [ @@ -147958,19 +148052,19 @@ export default { 40 ], "order_by": [ - 5276, + 5278, "[v_match_captains_order_by!]" ], "where": [ - 5269 + 5271 ] } ], "v_match_clutches": [ - 5289, + 5291, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -147980,19 +148074,19 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], "v_match_clutches_aggregate": [ - 5290, + 5292, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -148002,19 +148096,19 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], "v_match_kill_pairs": [ - 5322, + 5324, { "distinct_on": [ - 5330, + 5332, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -148024,19 +148118,19 @@ export default { 40 ], "order_by": [ - 5329, + 5331, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5326 + 5328 ] } ], "v_match_kill_pairs_aggregate": [ - 5323, + 5325, { "distinct_on": [ - 5330, + 5332, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -148046,19 +148140,19 @@ export default { 40 ], "order_by": [ - 5329, + 5331, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5326 + 5328 ] } ], "v_match_lineup_buy_types": [ - 5340, + 5342, { "distinct_on": [ - 5348, + 5350, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -148068,19 +148162,19 @@ export default { 40 ], "order_by": [ - 5347, + 5349, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5344 + 5346 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5341, + 5343, { "distinct_on": [ - 5348, + 5350, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -148090,19 +148184,19 @@ export default { 40 ], "order_by": [ - 5347, + 5349, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5344 + 5346 ] } ], "v_match_lineup_map_stats": [ - 5358, + 5360, { "distinct_on": [ - 5366, + 5368, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -148112,19 +148206,19 @@ export default { 40 ], "order_by": [ - 5365, + 5367, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5362 + 5364 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5359, + 5361, { "distinct_on": [ - 5366, + 5368, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -148134,19 +148228,19 @@ export default { 40 ], "order_by": [ - 5365, + 5367, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5362 + 5364 ] } ], "v_match_map_backup_rounds": [ - 5376, + 5378, { "distinct_on": [ - 5387, + 5389, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -148156,19 +148250,19 @@ export default { 40 ], "order_by": [ - 5386, + 5388, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5380 + 5382 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5377, + 5379, { "distinct_on": [ - 5387, + 5389, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -148178,19 +148272,19 @@ export default { 40 ], "order_by": [ - 5386, + 5388, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5380 + 5382 ] } ], "v_match_player_buy_types": [ - 5399, + 5401, { "distinct_on": [ - 5407, + 5409, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -148200,19 +148294,19 @@ export default { 40 ], "order_by": [ - 5406, + 5408, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5403 + 5405 ] } ], "v_match_player_buy_types_aggregate": [ - 5400, + 5402, { "distinct_on": [ - 5407, + 5409, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -148222,19 +148316,19 @@ export default { 40 ], "order_by": [ - 5406, + 5408, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5403 + 5405 ] } ], "v_match_player_opening_duels": [ - 5417, + 5419, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -148244,19 +148338,19 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], "v_match_player_opening_duels_aggregate": [ - 5418, + 5420, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -148266,19 +148360,19 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], "v_player_arch_nemesis": [ - 5450, + 5452, { "distinct_on": [ - 5458, + 5460, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -148288,19 +148382,19 @@ export default { 40 ], "order_by": [ - 5457, + 5459, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5454 + 5456 ] } ], "v_player_arch_nemesis_aggregate": [ - 5451, + 5453, { "distinct_on": [ - 5458, + 5460, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -148310,19 +148404,19 @@ export default { 40 ], "order_by": [ - 5457, + 5459, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5454 + 5456 ] } ], "v_player_damage": [ - 5468, + 5470, { "distinct_on": [ - 5476, + 5478, "[v_player_damage_select_column!]" ], "limit": [ @@ -148332,19 +148426,19 @@ export default { 40 ], "order_by": [ - 5475, + 5477, "[v_player_damage_order_by!]" ], "where": [ - 5472 + 5474 ] } ], "v_player_damage_aggregate": [ - 5469, + 5471, { "distinct_on": [ - 5476, + 5478, "[v_player_damage_select_column!]" ], "limit": [ @@ -148354,19 +148448,19 @@ export default { 40 ], "order_by": [ - 5475, + 5477, "[v_player_damage_order_by!]" ], "where": [ - 5472 + 5474 ] } ], "v_player_elo": [ - 5486, + 5488, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -148376,19 +148470,19 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "v_player_elo_aggregate": [ - 5487, + 5489, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -148398,19 +148492,19 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "v_player_map_losses": [ - 5537, + 5539, { "distinct_on": [ - 5545, + 5547, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -148420,19 +148514,19 @@ export default { 40 ], "order_by": [ - 5544, + 5546, "[v_player_map_losses_order_by!]" ], "where": [ - 5541 + 5543 ] } ], "v_player_map_losses_aggregate": [ - 5538, + 5540, { "distinct_on": [ - 5545, + 5547, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -148442,19 +148536,19 @@ export default { 40 ], "order_by": [ - 5544, + 5546, "[v_player_map_losses_order_by!]" ], "where": [ - 5541 + 5543 ] } ], "v_player_map_wins": [ - 5555, + 5557, { "distinct_on": [ - 5563, + 5565, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -148464,19 +148558,19 @@ export default { 40 ], "order_by": [ - 5562, + 5564, "[v_player_map_wins_order_by!]" ], "where": [ - 5559 + 5561 ] } ], "v_player_map_wins_aggregate": [ - 5556, + 5558, { "distinct_on": [ - 5563, + 5565, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -148486,19 +148580,19 @@ export default { 40 ], "order_by": [ - 5562, + 5564, "[v_player_map_wins_order_by!]" ], "where": [ - 5559 + 5561 ] } ], "v_player_match_head_to_head": [ - 5573, + 5575, { "distinct_on": [ - 5581, + 5583, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -148508,19 +148602,19 @@ export default { 40 ], "order_by": [ - 5580, + 5582, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5577 + 5579 ] } ], "v_player_match_head_to_head_aggregate": [ - 5574, + 5576, { "distinct_on": [ - 5581, + 5583, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -148530,19 +148624,19 @@ export default { 40 ], "order_by": [ - 5580, + 5582, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5577 + 5579 ] } ], "v_player_match_map_hltv": [ - 5591, + 5593, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -148552,19 +148646,19 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], "v_player_match_map_hltv_aggregate": [ - 5592, + 5594, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -148574,19 +148668,19 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], "v_player_match_map_roles": [ - 5628, + 5630, { "distinct_on": [ - 5636, + 5638, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -148596,19 +148690,19 @@ export default { 40 ], "order_by": [ - 5635, + 5637, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5632 + 5634 ] } ], "v_player_match_map_roles_aggregate": [ - 5629, + 5631, { "distinct_on": [ - 5636, + 5638, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -148618,19 +148712,19 @@ export default { 40 ], "order_by": [ - 5635, + 5637, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5632 + 5634 ] } ], "v_player_match_performance": [ - 5646, + 5648, { "distinct_on": [ - 5654, + 5656, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -148640,19 +148734,19 @@ export default { 40 ], "order_by": [ - 5653, + 5655, "[v_player_match_performance_order_by!]" ], "where": [ - 5650 + 5652 ] } ], "v_player_match_performance_aggregate": [ - 5647, + 5649, { "distinct_on": [ - 5654, + 5656, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -148662,19 +148756,19 @@ export default { 40 ], "order_by": [ - 5653, + 5655, "[v_player_match_performance_order_by!]" ], "where": [ - 5650 + 5652 ] } ], "v_player_match_rating": [ - 5664, + 5666, { "distinct_on": [ - 5672, + 5674, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -148684,19 +148778,19 @@ export default { 40 ], "order_by": [ - 5671, + 5673, "[v_player_match_rating_order_by!]" ], "where": [ - 5668 + 5670 ] } ], "v_player_match_rating_aggregate": [ - 5665, + 5667, { "distinct_on": [ - 5672, + 5674, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -148706,19 +148800,19 @@ export default { 40 ], "order_by": [ - 5671, + 5673, "[v_player_match_rating_order_by!]" ], "where": [ - 5668 + 5670 ] } ], "v_player_multi_kills": [ - 5682, + 5684, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -148728,19 +148822,19 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], "v_player_multi_kills_aggregate": [ - 5683, + 5685, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -148750,19 +148844,19 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], "v_player_queue_partners": [ - 5715, + 5717, { "distinct_on": [ - 5723, + 5725, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -148772,19 +148866,19 @@ export default { 40 ], "order_by": [ - 5722, + 5724, "[v_player_queue_partners_order_by!]" ], "where": [ - 5719 + 5721 ] } ], "v_player_queue_partners_aggregate": [ - 5716, + 5718, { "distinct_on": [ - 5723, + 5725, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -148794,19 +148888,19 @@ export default { 40 ], "order_by": [ - 5722, + 5724, "[v_player_queue_partners_order_by!]" ], "where": [ - 5719 + 5721 ] } ], "v_player_weapon_damage": [ - 5733, + 5735, { "distinct_on": [ - 5741, + 5743, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -148816,19 +148910,19 @@ export default { 40 ], "order_by": [ - 5740, + 5742, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5737 + 5739 ] } ], "v_player_weapon_damage_aggregate": [ - 5734, + 5736, { "distinct_on": [ - 5741, + 5743, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -148838,19 +148932,19 @@ export default { 40 ], "order_by": [ - 5740, + 5742, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5737 + 5739 ] } ], "v_player_weapon_kills": [ - 5751, + 5753, { "distinct_on": [ - 5759, + 5761, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -148860,19 +148954,19 @@ export default { 40 ], "order_by": [ - 5758, + 5760, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5755 + 5757 ] } ], "v_player_weapon_kills_aggregate": [ - 5752, + 5754, { "distinct_on": [ - 5759, + 5761, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -148882,19 +148976,19 @@ export default { 40 ], "order_by": [ - 5758, + 5760, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5755 + 5757 ] } ], "v_pool_maps": [ - 5769, + 5771, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -148904,19 +148998,19 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], "v_pool_maps_aggregate": [ - 5770, + 5772, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -148926,19 +149020,19 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], "v_steam_account_pool_status": [ - 5793, + 5795, { "distinct_on": [ - 5801, + 5803, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -148948,19 +149042,19 @@ export default { 40 ], "order_by": [ - 5800, + 5802, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5797 + 5799 ] } ], "v_steam_account_pool_status_aggregate": [ - 5794, + 5796, { "distinct_on": [ - 5801, + 5803, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -148970,19 +149064,19 @@ export default { 40 ], "order_by": [ - 5800, + 5802, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5797 + 5799 ] } ], "v_team_ranks": [ - 5811, + 5813, { "distinct_on": [ - 5821, + 5823, "[v_team_ranks_select_column!]" ], "limit": [ @@ -148992,19 +149086,19 @@ export default { 40 ], "order_by": [ - 5820, + 5822, "[v_team_ranks_order_by!]" ], "where": [ - 5815 + 5817 ] } ], "v_team_ranks_aggregate": [ - 5812, + 5814, { "distinct_on": [ - 5821, + 5823, "[v_team_ranks_select_column!]" ], "limit": [ @@ -149014,19 +149108,19 @@ export default { 40 ], "order_by": [ - 5820, + 5822, "[v_team_ranks_order_by!]" ], "where": [ - 5815 + 5817 ] } ], "v_team_reputation": [ - 5831, + 5833, { "distinct_on": [ - 5841, + 5843, "[v_team_reputation_select_column!]" ], "limit": [ @@ -149036,19 +149130,19 @@ export default { 40 ], "order_by": [ - 5840, + 5842, "[v_team_reputation_order_by!]" ], "where": [ - 5835 + 5837 ] } ], "v_team_reputation_aggregate": [ - 5832, + 5834, { "distinct_on": [ - 5841, + 5843, "[v_team_reputation_select_column!]" ], "limit": [ @@ -149058,19 +149152,19 @@ export default { 40 ], "order_by": [ - 5840, + 5842, "[v_team_reputation_order_by!]" ], "where": [ - 5835 + 5837 ] } ], "v_team_stage_results": [ - 5851, + 5853, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -149080,19 +149174,19 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], "v_team_stage_results_aggregate": [ - 5852, + 5854, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -149102,32 +149196,32 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], "v_team_stage_results_by_pk": [ - 5851, + 5853, { "tournament_stage_id": [ - 5109, + 5111, "uuid!" ], "tournament_team_id": [ - 5109, + 5111, "uuid!" ] } ], "v_team_tournament_results": [ - 5911, + 5913, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -149137,19 +149231,19 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "v_team_tournament_results_aggregate": [ - 5912, + 5914, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -149159,19 +149253,19 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "v_tournament_player_stats": [ - 5962, + 5964, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -149181,19 +149275,19 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], "v_tournament_player_stats_aggregate": [ - 5963, + 5965, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -149203,11 +149297,11 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], @@ -149223,7 +149317,7 @@ export default { 57, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -149232,17 +149326,17 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4609 + 4611 ], "winning_lineup_id": [ - 5109 + 5111 ] } ], @@ -149250,7 +149344,7 @@ export default { 83, { "invite_id": [ - 5109, + 5111, "uuid!" ], "type": [ @@ -149263,7 +149357,7 @@ export default { 83, { "draftGameId": [ - 5109, + 5111, "uuid!" ], "steamId": [ @@ -149349,7 +149443,7 @@ export default { 83, { "game_server_node_id": [ - 5109, + 5111, "uuid!" ] } @@ -149370,7 +149464,7 @@ export default { 83, { "game_server_node_id": [ - 5109, + 5111, "uuid!" ] } @@ -149379,7 +149473,7 @@ export default { 83, { "job_id": [ - 5109, + 5111, "uuid!" ] } @@ -149388,7 +149482,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -149397,7 +149491,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -149415,7 +149509,7 @@ export default { 83, { "request_id": [ - 5109, + 5111, "uuid!" ] } @@ -149424,7 +149518,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -149433,7 +149527,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -149480,11 +149574,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4609, + 4611, "timestamptz!" ], "request_id": [ - 5109, + 5111, "uuid!" ] } @@ -149505,7 +149599,7 @@ export default { 40 ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "preset": [ @@ -149540,7 +149634,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -149595,7 +149689,7 @@ export default { 83, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149604,7 +149698,7 @@ export default { 83, { "clip_id": [ - 5109, + 5111, "uuid!" ] } @@ -149622,7 +149716,7 @@ export default { 83, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149656,7 +149750,7 @@ export default { 83, { "tournament_id": [ - 5109, + 5111, "uuid!" ] } @@ -149674,11 +149768,11 @@ export default { 102, { "map_id": [ - 5109, + 5111, "uuid!" ], "map_pool_id": [ - 5109, + 5111, "uuid!" ] } @@ -149696,7 +149790,7 @@ export default { 121, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149714,7 +149808,7 @@ export default { 162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149732,7 +149826,7 @@ export default { 190, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149750,7 +149844,7 @@ export default { 231, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149768,7 +149862,7 @@ export default { 264, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149786,7 +149880,7 @@ export default { 316, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149804,7 +149898,7 @@ export default { 348, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149822,7 +149916,7 @@ export default { 375, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -149840,7 +149934,7 @@ export default { 420, { "draft_game_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -149862,7 +149956,7 @@ export default { 465, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150690,11 +150784,11 @@ export default { 1432, { "event_id": [ - 5109, + 5111, "uuid!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -150712,7 +150806,7 @@ export default { 1450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150730,7 +150824,7 @@ export default { 1472, { "media_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -150752,7 +150846,7 @@ export default { 1533, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -150774,7 +150868,7 @@ export default { 1574, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -150796,11 +150890,11 @@ export default { 1615, { "event_id": [ - 5109, + 5111, "uuid!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -150818,11 +150912,11 @@ export default { 1639, { "event_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } @@ -150840,7 +150934,7 @@ export default { 1663, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150916,7 +151010,7 @@ export default { 1804, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150943,7 +151037,7 @@ export default { 1871, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150961,7 +151055,7 @@ export default { 1899, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150979,7 +151073,7 @@ export default { 1940, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -150997,7 +151091,7 @@ export default { 1981, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151015,7 +151109,7 @@ export default { 2022, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151033,7 +151127,7 @@ export default { 2047, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151051,7 +151145,7 @@ export default { 2080, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151069,7 +151163,7 @@ export default { 2121, { "league_team_season_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -151091,7 +151185,7 @@ export default { 2162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151109,7 +151203,7 @@ export default { 2204, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151127,7 +151221,7 @@ export default { 2223, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151145,7 +151239,7 @@ export default { 2242, { "lobby_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -151167,7 +151261,7 @@ export default { 2287, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151185,7 +151279,7 @@ export default { 2306, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151203,7 +151297,7 @@ export default { 2335, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151221,7 +151315,7 @@ export default { 2362, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151239,7 +151333,7 @@ export default { 2404, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151257,7 +151351,7 @@ export default { 2450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151275,7 +151369,7 @@ export default { 2495, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151293,7 +151387,7 @@ export default { 2537, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151311,7 +151405,7 @@ export default { 2588, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151329,7 +151423,7 @@ export default { 2629, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151347,7 +151441,7 @@ export default { 2657, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151365,7 +151459,7 @@ export default { 2699, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151383,7 +151477,7 @@ export default { 2727, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151401,7 +151495,7 @@ export default { 2755, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151437,7 +151531,7 @@ export default { 2823, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151482,7 +151576,7 @@ export default { 2929, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151526,7 +151620,7 @@ export default { 2983, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151588,7 +151682,7 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -151606,7 +151700,7 @@ export default { 3132, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -151640,11 +151734,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -151662,15 +151756,15 @@ export default { 3236, { "id": [ - 5109, + 5111, "uuid!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -151688,7 +151782,7 @@ export default { 3277, { "match_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -151714,7 +151808,7 @@ export default { 3304, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151740,11 +151834,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -151770,11 +151864,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -151823,7 +151917,7 @@ export default { 3499, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -151845,7 +151939,7 @@ export default { 3591, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -151853,7 +151947,7 @@ export default { "bigint!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -151871,7 +151965,7 @@ export default { 3650, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -151889,11 +151983,11 @@ export default { 3691, { "created_at": [ - 4609, + 4611, "timestamptz!" ], "id": [ - 5109, + 5111, "uuid!" ] } @@ -151915,7 +152009,7 @@ export default { "bigint!" ], "season_id": [ - 5109, + 5111, "uuid!" ] } @@ -151987,7 +152081,7 @@ export default { 3878, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -152013,11 +152107,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -152075,7 +152169,7 @@ export default { 4048, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152093,7 +152187,7 @@ export default { 4079, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152129,7 +152223,7 @@ export default { 4134, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152165,7 +152259,7 @@ export default { 4200, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152183,7 +152277,7 @@ export default { 4224, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152201,7 +152295,7 @@ export default { 4252, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152219,7 +152313,7 @@ export default { 4279, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152241,7 +152335,7 @@ export default { "bigint!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -152259,7 +152353,7 @@ export default { 4365, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152277,7 +152371,7 @@ export default { 4392, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152295,7 +152389,7 @@ export default { 4420, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152313,7 +152407,7 @@ export default { 4461, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152331,7 +152425,7 @@ export default { 4507, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152349,7 +152443,7 @@ export default { 4535, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -152367,297 +152461,297 @@ export default { 4562, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_awards": [ - 4628, + 4630, { "where": [ - 4620, + 4622, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4611, + 4613, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_brackets": [ - 4672, + 4674, { "where": [ - 4664, + 4666, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4653, + 4655, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_categories": [ - 4713, + 4715, { "where": [ - 4706, + 4708, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4699, + 4701, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4737, + 4739, { "where": [ - 4730, + 4732, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4723, + 4725, { "team_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_organizers": [ - 4764, + 4766, { "where": [ - 4756, + 4758, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4747, + 4749, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_prizes": [ - 4805, + 4807, { "where": [ - 4797, + 4799, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4788, + 4790, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4846, + 4848, { "where": [ - 4838, + 4840, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4829, + 4831, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_stages": [ - 4893, + 4895, { "where": [ - 4882, + 4884, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4870, + 4872, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4938, + 4940, { "where": [ - 4930, + 4932, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4921, + 4923, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4979, + 4981, { "where": [ - 4971, + 4973, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4962, + 4964, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournament_teams": [ - 5020, + 5022, { "where": [ - 5012, + 5014, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5003, + 5005, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_tournaments": [ - 5074, + 5076, { "where": [ - 5066, + 5068, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5045, + 5047, { "id": [ - 5109, + 5111, "uuid!" ] } ], "delete_v_match_captains": [ - 5274, + 5276, { "where": [ - 5269, + 5271, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5385, + 5387, { "where": [ - 5380, + 5382, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5607, + 5609, { "where": [ - 5600, + 5602, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5784, + 5786, { "where": [ - 5778, + 5780, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5878, + 5880, { "where": [ - 5870, + 5872, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5851, + 5853, { "tournament_stage_id": [ - 5109, + 5111, "uuid!" ], "tournament_team_id": [ - 5109, + 5111, "uuid!" ] } @@ -152666,7 +152760,7 @@ export default { 83, { "invite_id": [ - 5109, + 5111, "uuid!" ], "type": [ @@ -152692,11 +152786,11 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "winning_lineup_id": [ - 5109, + 5111, "uuid!" ] } @@ -152708,7 +152802,7 @@ export default { 45, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -152720,14 +152814,14 @@ export default { 4, { "award_id": [ - 5109, + 5111, "uuid!" ], "event_id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "note": [ 80 @@ -152736,13 +152830,13 @@ export default { 80 ], "season_id": [ - 5109 + 5111 ], "team_id": [ - 5109 + 5111 ], "tournament_id": [ - 5109 + 5111 ] } ], @@ -156161,386 +156255,386 @@ export default { } ], "insert_tournament_awards": [ - 4628, + 4630, { "objects": [ - 4623, + 4625, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4630 + 4632 ] } ], "insert_tournament_awards_one": [ - 4611, + 4613, { "object": [ - 4623, + 4625, "tournament_awards_insert_input!" ], "on_conflict": [ - 4630 + 4632 ] } ], "insert_tournament_brackets": [ - 4672, + 4674, { "objects": [ - 4667, + 4669, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4674 + 4676 ] } ], "insert_tournament_brackets_one": [ - 4653, + 4655, { "object": [ - 4667, + 4669, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4674 + 4676 ] } ], "insert_tournament_categories": [ - 4713, + 4715, { "objects": [ - 4708, + 4710, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4714 + 4716 ] } ], "insert_tournament_categories_one": [ - 4699, + 4701, { "object": [ - 4708, + 4710, "tournament_categories_insert_input!" ], "on_conflict": [ - 4714 + 4716 ] } ], "insert_tournament_organizer_teams": [ - 4737, + 4739, { "objects": [ - 4732, + 4734, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4738 + 4740 ] } ], "insert_tournament_organizer_teams_one": [ - 4723, + 4725, { "object": [ - 4732, + 4734, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4738 + 4740 ] } ], "insert_tournament_organizers": [ - 4764, + 4766, { "objects": [ - 4759, + 4761, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4765 + 4767 ] } ], "insert_tournament_organizers_one": [ - 4747, + 4749, { "object": [ - 4759, + 4761, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4765 + 4767 ] } ], "insert_tournament_prizes": [ - 4805, + 4807, { "objects": [ - 4800, + 4802, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4806 + 4808 ] } ], "insert_tournament_prizes_one": [ - 4788, + 4790, { "object": [ - 4800, + 4802, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4806 + 4808 ] } ], "insert_tournament_stage_windows": [ - 4846, + 4848, { "objects": [ - 4841, + 4843, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4847 + 4849 ] } ], "insert_tournament_stage_windows_one": [ - 4829, + 4831, { "object": [ - 4841, + 4843, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4847 + 4849 ] } ], "insert_tournament_stages": [ - 4893, + 4895, { "objects": [ - 4888, + 4890, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4895 + 4897 ] } ], "insert_tournament_stages_one": [ - 4870, + 4872, { "object": [ - 4888, + 4890, "tournament_stages_insert_input!" ], "on_conflict": [ - 4895 + 4897 ] } ], "insert_tournament_team_invites": [ - 4938, + 4940, { "objects": [ - 4933, + 4935, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4939 + 4941 ] } ], "insert_tournament_team_invites_one": [ - 4921, + 4923, { "object": [ - 4933, + 4935, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4939 + 4941 ] } ], "insert_tournament_team_roster": [ - 4979, + 4981, { "objects": [ - 4974, + 4976, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4980 + 4982 ] } ], "insert_tournament_team_roster_one": [ - 4962, + 4964, { "object": [ - 4974, + 4976, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4980 + 4982 ] } ], "insert_tournament_teams": [ - 5020, + 5022, { "objects": [ - 5015, + 5017, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5022 + 5024 ] } ], "insert_tournament_teams_one": [ - 5003, + 5005, { "object": [ - 5015, + 5017, "tournament_teams_insert_input!" ], "on_conflict": [ - 5022 + 5024 ] } ], "insert_tournaments": [ - 5074, + 5076, { "objects": [ - 5069, + 5071, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5076 + 5078 ] } ], "insert_tournaments_one": [ - 5045, + 5047, { "object": [ - 5069, + 5071, "tournaments_insert_input!" ], "on_conflict": [ - 5076 + 5078 ] } ], "insert_v_match_captains": [ - 5274, + 5276, { "objects": [ - 5271, + 5273, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5265, + 5267, { "object": [ - 5271, + 5273, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5385, + 5387, { "objects": [ - 5382, + 5384, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5376, + 5378, { "object": [ - 5382, + 5384, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5607, + 5609, { "objects": [ - 5602, + 5604, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5591, + 5593, { "object": [ - 5602, + 5604, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5784, + 5786, { "objects": [ - 5779, + 5781, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5769, + 5771, { "object": [ - 5779, + 5781, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5878, + 5880, { "objects": [ - 5873, + 5875, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5880 + 5882 ] } ], "insert_v_team_stage_results_one": [ - 5851, + 5853, { "object": [ - 5873, + 5875, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5880 + 5882 ] } ], @@ -156548,7 +156642,7 @@ export default { 83, { "draftGameId": [ - 5109, + 5111, "uuid!" ], "inviteCode": [ @@ -156560,7 +156654,7 @@ export default { 83, { "draftGameId": [ - 5109, + 5111, "uuid!" ], "inviteCode": [ @@ -156665,7 +156759,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -156677,7 +156771,7 @@ export default { 24, { "draftGameId": [ - 5109, + 5111, "uuid!" ], "inviteCode": [ @@ -156692,7 +156786,7 @@ export default { 40 ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "preset": [ @@ -156718,7 +156812,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -156727,7 +156821,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -156768,7 +156862,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -156792,7 +156886,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -156900,7 +156994,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -156909,7 +157003,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -156931,7 +157025,7 @@ export default { 83, { "job_id": [ - 5109, + 5111, "uuid!" ] } @@ -156944,7 +157038,7 @@ export default { "Boolean!" ], "draftGameId": [ - 5109, + 5111, "uuid!" ] } @@ -156957,7 +157051,7 @@ export default { "Boolean!" ], "request_id": [ - 5109, + 5111, "uuid!" ] } @@ -157001,7 +157095,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -157010,7 +157104,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "only_failed": [ @@ -157031,7 +157125,7 @@ export default { 83, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -157068,20 +157162,20 @@ export default { 80 ], "event_id": [ - 5109 + 5111 ], "id": [ - 5109 + 5111 ], "league_season_id": [ - 5109 + 5111 ], "name": [ 80, "String!" ], "season_id": [ - 5109 + 5111 ], "silhouette": [ 40 @@ -157091,7 +157185,7 @@ export default { "String!" ], "tournament_id": [ - 5109 + 5111 ] } ], @@ -157106,7 +157200,7 @@ export default { 80 ], "id": [ - 5109 + 5111 ], "teaser": [ 80 @@ -157127,11 +157221,11 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609 + 4611 ] } ], @@ -157142,18 +157236,18 @@ export default { 40 ], "from_team_id": [ - 5109, + 5111, "uuid!" ], "proposed_scheduled_at": [ - 4609, + 4611, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 5109, + 5111, "uuid!" ] } @@ -157175,7 +157269,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "mode": [ @@ -157188,15 +157282,15 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "winning_lineup_id": [ - 5109, + 5111, "uuid!" ] } @@ -157205,11 +157299,11 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "winning_lineup_id": [ - 5109, + 5111, "uuid!" ] } @@ -157218,7 +157312,7 @@ export default { 50, { "id": [ - 5109, + 5111, "uuid!" ], "status": [ @@ -157231,7 +157325,7 @@ export default { 97, { "award_id": [ - 5109 + 5111 ], "custom_name": [ 80 @@ -157244,7 +157338,7 @@ export default { 40 ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } @@ -157256,7 +157350,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157269,7 +157363,7 @@ export default { "Boolean!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157282,7 +157376,7 @@ export default { "String!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157291,7 +157385,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "visible": [ @@ -157304,7 +157398,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157313,7 +157407,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157326,7 +157420,7 @@ export default { "Int!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157335,7 +157429,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "show": [ @@ -157348,7 +157442,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "slot": [ @@ -157365,7 +157459,7 @@ export default { "Boolean!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157374,7 +157468,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "mode": [ @@ -157387,11 +157481,11 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ], "server_id": [ - 5109 + 5111 ] } ], @@ -157399,7 +157493,7 @@ export default { 83, { "game_server_node_id": [ - 5109, + 5111, "uuid!" ] } @@ -157408,7 +157502,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157417,7 +157511,7 @@ export default { 83, { "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -157439,7 +157533,7 @@ export default { 83, { "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157457,7 +157551,7 @@ export default { 83, { "from_match_id": [ - 5109, + 5111, "uuid!" ], "mode": [ @@ -157465,7 +157559,7 @@ export default { "String!" ], "to_match_id": [ - 5109, + 5111, "uuid!" ] } @@ -157505,7 +157599,7 @@ export default { 83, { "clip_id": [ - 5109, + 5111, "uuid!" ], "target_steam_id": [ @@ -157526,7 +157620,7 @@ export default { 80 ], "game_server_node_id": [ - 5109 + 5111 ] } ], @@ -157534,7 +157628,7 @@ export default { 83, { "draftGameId": [ - 5109, + 5111, "uuid!" ], "settings": [ @@ -163052,619 +163146,619 @@ export default { } ], "update_tournament_awards": [ - 4628, + 4630, { "_inc": [ - 4622 + 4624 ], "_set": [ - 4634 + 4636 ], "where": [ - 4620, + 4622, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4611, + 4613, { "_inc": [ - 4622 + 4624 ], "_set": [ - 4634 + 4636 ], "pk_columns": [ - 4632, + 4634, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4628, + 4630, { "updates": [ - 4646, + 4648, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4672, + 4674, { "_inc": [ - 4666 + 4668 ], "_set": [ - 4680 + 4682 ], "where": [ - 4664, + 4666, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4653, + 4655, { "_inc": [ - 4666 + 4668 ], "_set": [ - 4680 + 4682 ], "pk_columns": [ - 4676, + 4678, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4672, + 4674, { "updates": [ - 4692, + 4694, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4713, + 4715, { "_set": [ - 4718 + 4720 ], "where": [ - 4706, + 4708, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4699, + 4701, { "_set": [ - 4718 + 4720 ], "pk_columns": [ - 4716, + 4718, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4713, + 4715, { "updates": [ - 4722, + 4724, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4737, + 4739, { "_set": [ - 4742 + 4744 ], "where": [ - 4730, + 4732, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4723, + 4725, { "_set": [ - 4742 + 4744 ], "pk_columns": [ - 4740, + 4742, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4737, + 4739, { "updates": [ - 4746, + 4748, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4764, + 4766, { "_inc": [ - 4758 + 4760 ], "_set": [ - 4769 + 4771 ], "where": [ - 4756, + 4758, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4747, + 4749, { "_inc": [ - 4758 + 4760 ], "_set": [ - 4769 + 4771 ], "pk_columns": [ - 4767, + 4769, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4764, + 4766, { "updates": [ - 4781, + 4783, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4805, + 4807, { "_inc": [ - 4799 + 4801 ], "_set": [ - 4810 + 4812 ], "where": [ - 4797, + 4799, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4788, + 4790, { "_inc": [ - 4799 + 4801 ], "_set": [ - 4810 + 4812 ], "pk_columns": [ - 4808, + 4810, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4805, + 4807, { "updates": [ - 4822, + 4824, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4846, + 4848, { "_inc": [ - 4840 + 4842 ], "_set": [ - 4851 + 4853 ], "where": [ - 4838, + 4840, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4829, + 4831, { "_inc": [ - 4840 + 4842 ], "_set": [ - 4851 + 4853 ], "pk_columns": [ - 4849, + 4851, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4846, + 4848, { "updates": [ - 4863, + 4865, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4893, + 4895, { "_append": [ - 4878 + 4880 ], "_delete_at_path": [ - 4884 + 4886 ], "_delete_elem": [ - 4885 + 4887 ], "_delete_key": [ - 4886 + 4888 ], "_inc": [ - 4887 + 4889 ], "_prepend": [ - 4898 + 4900 ], "_set": [ - 4902 + 4904 ], "where": [ - 4882, + 4884, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4870, + 4872, { "_append": [ - 4878 + 4880 ], "_delete_at_path": [ - 4884 + 4886 ], "_delete_elem": [ - 4885 + 4887 ], "_delete_key": [ - 4886 + 4888 ], "_inc": [ - 4887 + 4889 ], "_prepend": [ - 4898 + 4900 ], "_set": [ - 4902 + 4904 ], "pk_columns": [ - 4897, + 4899, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4893, + 4895, { "updates": [ - 4914, + 4916, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4938, + 4940, { "_inc": [ - 4932 + 4934 ], "_set": [ - 4943 + 4945 ], "where": [ - 4930, + 4932, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4921, + 4923, { "_inc": [ - 4932 + 4934 ], "_set": [ - 4943 + 4945 ], "pk_columns": [ - 4941, + 4943, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4938, + 4940, { "updates": [ - 4955, + 4957, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4979, + 4981, { "_inc": [ - 4973 + 4975 ], "_set": [ - 4984 + 4986 ], "where": [ - 4971, + 4973, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4962, + 4964, { "_inc": [ - 4973 + 4975 ], "_set": [ - 4984 + 4986 ], "pk_columns": [ - 4982, + 4984, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4979, + 4981, { "updates": [ - 4996, + 4998, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5020, + 5022, { "_inc": [ - 5014 + 5016 ], "_set": [ - 5026 + 5028 ], "where": [ - 5012, + 5014, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5003, + 5005, { "_inc": [ - 5014 + 5016 ], "_set": [ - 5026 + 5028 ], "pk_columns": [ - 5024, + 5026, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5020, + 5022, { "updates": [ - 5038, + 5040, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5074, + 5076, { "_inc": [ - 5068 + 5070 ], "_set": [ - 5090 + 5092 ], "where": [ - 5066, + 5068, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5045, + 5047, { "_inc": [ - 5068 + 5070 ], "_set": [ - 5090 + 5092 ], "pk_columns": [ - 5078, + 5080, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5074, + 5076, { "updates": [ - 5102, + 5104, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5274, + 5276, { "_inc": [ - 5270 + 5272 ], "_set": [ - 5278 + 5280 ], "where": [ - 5269, + 5271, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5274, + 5276, { "updates": [ - 5285, + 5287, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5385, + 5387, { "_inc": [ - 5381 + 5383 ], "_set": [ - 5388 + 5390 ], "where": [ - 5380, + 5382, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5385, + 5387, { "updates": [ - 5395, + 5397, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5607, + 5609, { "_inc": [ - 5601 + 5603 ], "_set": [ - 5610 + 5612 ], "where": [ - 5600, + 5602, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5607, + 5609, { "updates": [ - 5621, + 5623, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5784, + 5786, { "_set": [ - 5789 + 5791 ], "where": [ - 5778, + 5780, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5784, + 5786, { "updates": [ - 5792, + 5794, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5878, + 5880, { "_inc": [ - 5872 + 5874 ], "_set": [ - 5892 + 5894 ], "where": [ - 5870, + 5872, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5851, + 5853, { "_inc": [ - 5872 + 5874 ], "_set": [ - 5892 + 5894 ], "pk_columns": [ - 5882, + 5884, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5878, + 5880, { "updates": [ - 5904, + 5906, "[v_team_stage_results_updates!]!" ] } @@ -163673,7 +163767,7 @@ export default { 83, { "game_server_node_id": [ - 5109, + 5111, "uuid!" ] } @@ -163682,10 +163776,10 @@ export default { 99, { "match_map_demo_id": [ - 5109 + 5111 ], "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -163763,11 +163857,11 @@ export default { 102, { "map_id": [ - 5109, + 5111, "uuid!" ], "map_pool_id": [ - 5109, + 5111, "uuid!" ] } @@ -163836,7 +163930,7 @@ export default { 121, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -163905,7 +163999,7 @@ export default { 162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -163974,7 +164068,7 @@ export default { 190, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164043,7 +164137,7 @@ export default { 231, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164112,7 +164206,7 @@ export default { 264, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164181,7 +164275,7 @@ export default { 316, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164250,7 +164344,7 @@ export default { 348, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164319,7 +164413,7 @@ export default { 375, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -164388,7 +164482,7 @@ export default { 420, { "draft_game_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -164461,7 +164555,7 @@ export default { 465, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -167635,11 +167729,11 @@ export default { 1432, { "event_id": [ - 5109, + 5111, "uuid!" ], "match_id": [ - 5109, + 5111, "uuid!" ] } @@ -167708,7 +167802,7 @@ export default { 1450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -167761,7 +167855,7 @@ export default { 1472, { "media_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -167850,7 +167944,7 @@ export default { 1533, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -167923,7 +168017,7 @@ export default { 1574, { "event_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -167996,11 +168090,11 @@ export default { 1615, { "event_id": [ - 5109, + 5111, "uuid!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -168069,11 +168163,11 @@ export default { 1639, { "event_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } @@ -168142,7 +168236,7 @@ export default { 1663, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -168422,7 +168516,7 @@ export default { 1804, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -168759,7 +168853,7 @@ export default { 1871, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -168828,7 +168922,7 @@ export default { 1899, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -168897,7 +168991,7 @@ export default { 1940, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -168966,7 +169060,7 @@ export default { 1981, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169035,7 +169129,7 @@ export default { 2022, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169104,7 +169198,7 @@ export default { 2047, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169173,7 +169267,7 @@ export default { 2080, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169242,7 +169336,7 @@ export default { 2121, { "league_team_season_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -169315,7 +169409,7 @@ export default { 2162, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169384,7 +169478,7 @@ export default { 2204, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169453,7 +169547,7 @@ export default { 2223, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169522,7 +169616,7 @@ export default { 2242, { "lobby_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -169595,7 +169689,7 @@ export default { 2287, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169664,7 +169758,7 @@ export default { 2306, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169733,7 +169827,7 @@ export default { 2335, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169802,7 +169896,7 @@ export default { 2362, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169871,7 +169965,7 @@ export default { 2404, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -169940,7 +170034,7 @@ export default { 2450, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170009,7 +170103,7 @@ export default { 2495, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170078,7 +170172,7 @@ export default { 2537, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170147,7 +170241,7 @@ export default { 2588, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170216,7 +170310,7 @@ export default { 2629, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170285,7 +170379,7 @@ export default { 2657, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170354,7 +170448,7 @@ export default { 2699, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170423,7 +170517,7 @@ export default { 2727, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170492,7 +170586,7 @@ export default { 2755, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170630,7 +170724,7 @@ export default { 2823, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170828,7 +170922,7 @@ export default { 2929, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -170974,7 +171068,7 @@ export default { 2983, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -171189,7 +171283,7 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ] } @@ -171258,7 +171352,7 @@ export default { 3132, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -171343,11 +171437,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -171476,15 +171570,15 @@ export default { 3236, { "id": [ - 5109, + 5111, "uuid!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -171553,7 +171647,7 @@ export default { 3277, { "match_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -171630,7 +171724,7 @@ export default { 3304, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -171707,11 +171801,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -171788,11 +171882,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -171994,7 +172088,7 @@ export default { 3499, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "steam_id": [ @@ -172187,7 +172281,7 @@ export default { 3591, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -172195,7 +172289,7 @@ export default { "bigint!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -172324,7 +172418,7 @@ export default { 3650, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -172393,11 +172487,11 @@ export default { 3691, { "created_at": [ - 4609, + 4611, "timestamptz!" ], "id": [ - 5109, + 5111, "uuid!" ] } @@ -172470,7 +172564,7 @@ export default { "bigint!" ], "season_id": [ - 5109, + 5111, "uuid!" ] } @@ -172746,7 +172840,7 @@ export default { 3878, { "match_map_id": [ - 5109, + 5111, "uuid!" ], "player_steam_id": [ @@ -172823,11 +172917,11 @@ export default { "bigint!" ], "match_map_id": [ - 5109, + 5111, "uuid!" ], "time": [ - 4609, + 4611, "timestamptz!" ] } @@ -173098,7 +173192,7 @@ export default { 4048, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173167,7 +173261,7 @@ export default { 4079, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173305,7 +173399,7 @@ export default { 4134, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173443,7 +173537,7 @@ export default { 4200, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173512,7 +173606,7 @@ export default { 4224, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173581,7 +173675,7 @@ export default { 4252, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173650,7 +173744,7 @@ export default { 4279, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173723,7 +173817,7 @@ export default { "bigint!" ], "team_id": [ - 5109, + 5111, "uuid!" ] } @@ -173792,7 +173886,7 @@ export default { 4365, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173861,7 +173955,7 @@ export default { 4392, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173930,7 +174024,7 @@ export default { 4420, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -173999,7 +174093,7 @@ export default { 4461, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -174068,7 +174162,7 @@ export default { 4507, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -174137,7 +174231,7 @@ export default { 4535, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -174206,7 +174300,7 @@ export default { 4562, { "id": [ - 5109, + 5111, "uuid!" ] } @@ -174228,10 +174322,10 @@ export default { } ], "tournament_awards": [ - 4611, + 4613, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -174241,19 +174335,19 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_awards_aggregate": [ - 4612, + 4614, { "distinct_on": [ - 4633, + 4635, "[tournament_awards_select_column!]" ], "limit": [ @@ -174263,44 +174357,44 @@ export default { 40 ], "order_by": [ - 4631, + 4633, "[tournament_awards_order_by!]" ], "where": [ - 4620 + 4622 ] } ], "tournament_awards_by_pk": [ - 4611, + 4613, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_awards_stream": [ - 4611, + 4613, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4641, + 4643, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4620 + 4622 ] } ], "tournament_brackets": [ - 4653, + 4655, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -174310,19 +174404,19 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "tournament_brackets_aggregate": [ - 4654, + 4656, { "distinct_on": [ - 4677, + 4679, "[tournament_brackets_select_column!]" ], "limit": [ @@ -174332,44 +174426,44 @@ export default { 40 ], "order_by": [ - 4675, + 4677, "[tournament_brackets_order_by!]" ], "where": [ - 4664 + 4666 ] } ], "tournament_brackets_by_pk": [ - 4653, + 4655, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_brackets_stream": [ - 4653, + 4655, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4687, + 4689, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4664 + 4666 ] } ], "tournament_categories": [ - 4699, + 4701, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -174379,19 +174473,19 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "tournament_categories_aggregate": [ - 4700, + 4702, { "distinct_on": [ - 4717, + 4719, "[tournament_categories_select_column!]" ], "limit": [ @@ -174401,48 +174495,48 @@ export default { 40 ], "order_by": [ - 4715, + 4717, "[tournament_categories_order_by!]" ], "where": [ - 4706 + 4708 ] } ], "tournament_categories_by_pk": [ - 4699, + 4701, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_categories_stream": [ - 4699, + 4701, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4719, + 4721, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4706 + 4708 ] } ], "tournament_organizer_teams": [ - 4723, + 4725, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -174452,19 +174546,19 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "tournament_organizer_teams_aggregate": [ - 4724, + 4726, { "distinct_on": [ - 4741, + 4743, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -174474,48 +174568,48 @@ export default { 40 ], "order_by": [ - 4739, + 4741, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4730 + 4732 ] } ], "tournament_organizer_teams_by_pk": [ - 4723, + 4725, { "team_id": [ - 5109, + 5111, "uuid!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4723, + 4725, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4743, + 4745, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4730 + 4732 ] } ], "tournament_organizers": [ - 4747, + 4749, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -174525,19 +174619,19 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_organizers_aggregate": [ - 4748, + 4750, { "distinct_on": [ - 4768, + 4770, "[tournament_organizers_select_column!]" ], "limit": [ @@ -174547,48 +174641,48 @@ export default { 40 ], "order_by": [ - 4766, + 4768, "[tournament_organizers_order_by!]" ], "where": [ - 4756 + 4758 ] } ], "tournament_organizers_by_pk": [ - 4747, + 4749, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_organizers_stream": [ - 4747, + 4749, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4776, + 4778, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4756 + 4758 ] } ], "tournament_prizes": [ - 4788, + 4790, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -174598,19 +174692,19 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "tournament_prizes_aggregate": [ - 4789, + 4791, { "distinct_on": [ - 4809, + 4811, "[tournament_prizes_select_column!]" ], "limit": [ @@ -174620,44 +174714,44 @@ export default { 40 ], "order_by": [ - 4807, + 4809, "[tournament_prizes_order_by!]" ], "where": [ - 4797 + 4799 ] } ], "tournament_prizes_by_pk": [ - 4788, + 4790, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_prizes_stream": [ - 4788, + 4790, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4817, + 4819, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4797 + 4799 ] } ], "tournament_stage_windows": [ - 4829, + 4831, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -174667,19 +174761,19 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], "tournament_stage_windows_aggregate": [ - 4830, + 4832, { "distinct_on": [ - 4850, + 4852, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -174689,44 +174783,44 @@ export default { 40 ], "order_by": [ - 4848, + 4850, "[tournament_stage_windows_order_by!]" ], "where": [ - 4838 + 4840 ] } ], "tournament_stage_windows_by_pk": [ - 4829, + 4831, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4829, + 4831, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4858, + 4860, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4838 + 4840 ] } ], "tournament_stages": [ - 4870, + 4872, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -174736,19 +174830,19 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "tournament_stages_aggregate": [ - 4871, + 4873, { "distinct_on": [ - 4899, + 4901, "[tournament_stages_select_column!]" ], "limit": [ @@ -174758,44 +174852,44 @@ export default { 40 ], "order_by": [ - 4896, + 4898, "[tournament_stages_order_by!]" ], "where": [ - 4882 + 4884 ] } ], "tournament_stages_by_pk": [ - 4870, + 4872, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_stages_stream": [ - 4870, + 4872, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4909, + 4911, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4882 + 4884 ] } ], "tournament_team_invites": [ - 4921, + 4923, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -174805,19 +174899,19 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], "tournament_team_invites_aggregate": [ - 4922, + 4924, { "distinct_on": [ - 4942, + 4944, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -174827,44 +174921,44 @@ export default { 40 ], "order_by": [ - 4940, + 4942, "[tournament_team_invites_order_by!]" ], "where": [ - 4930 + 4932 ] } ], "tournament_team_invites_by_pk": [ - 4921, + 4923, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4921, + 4923, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4950, + 4952, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4930 + 4932 ] } ], "tournament_team_roster": [ - 4962, + 4964, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -174874,19 +174968,19 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_team_roster_aggregate": [ - 4963, + 4965, { "distinct_on": [ - 4983, + 4985, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -174896,48 +174990,48 @@ export default { 40 ], "order_by": [ - 4981, + 4983, "[tournament_team_roster_order_by!]" ], "where": [ - 4971 + 4973 ] } ], "tournament_team_roster_by_pk": [ - 4962, + 4964, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4962, + 4964, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4991, + 4993, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4971 + 4973 ] } ], "tournament_teams": [ - 5003, + 5005, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -174947,19 +175041,19 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "tournament_teams_aggregate": [ - 5004, + 5006, { "distinct_on": [ - 5025, + 5027, "[tournament_teams_select_column!]" ], "limit": [ @@ -174969,44 +175063,44 @@ export default { 40 ], "order_by": [ - 5023, + 5025, "[tournament_teams_order_by!]" ], "where": [ - 5012 + 5014 ] } ], "tournament_teams_by_pk": [ - 5003, + 5005, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournament_teams_stream": [ - 5003, + 5005, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5033, + 5035, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5012 + 5014 ] } ], "tournaments": [ - 5045, + 5047, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -175016,19 +175110,19 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_aggregate": [ - 5046, + 5048, { "distinct_on": [ - 5079, + 5081, "[tournaments_select_column!]" ], "limit": [ @@ -175038,44 +175132,44 @@ export default { 40 ], "order_by": [ - 5077, + 5079, "[tournaments_order_by!]" ], "where": [ - 5066 + 5068 ] } ], "tournaments_by_pk": [ - 5045, + 5047, { "id": [ - 5109, + 5111, "uuid!" ] } ], "tournaments_stream": [ - 5045, + 5047, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5097, + 5099, "[tournaments_stream_cursor_input]!" ], "where": [ - 5066 + 5068 ] } ], "v_event_player_stats": [ - 5112, + 5114, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -175085,19 +175179,19 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], "v_event_player_stats_aggregate": [ - 5113, + 5115, { "distinct_on": [ - 5138, + 5140, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -175107,35 +175201,35 @@ export default { 40 ], "order_by": [ - 5137, + 5139, "[v_event_player_stats_order_by!]" ], "where": [ - 5131 + 5133 ] } ], "v_event_player_stats_stream": [ - 5112, + 5114, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5153, + 5155, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5131 + 5133 ] } ], "v_gpu_pool_status": [ - 5163, + 5165, { "distinct_on": [ - 5171, + 5173, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -175145,19 +175239,19 @@ export default { 40 ], "order_by": [ - 5170, + 5172, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5167 + 5169 ] } ], "v_gpu_pool_status_aggregate": [ - 5164, + 5166, { "distinct_on": [ - 5171, + 5173, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -175167,35 +175261,35 @@ export default { 40 ], "order_by": [ - 5170, + 5172, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5167 + 5169 ] } ], "v_gpu_pool_status_stream": [ - 5163, + 5165, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5175, + 5177, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5167 + 5169 ] } ], "v_league_division_standings": [ - 5181, + 5183, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -175205,19 +175299,19 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "v_league_division_standings_aggregate": [ - 5182, + 5184, { "distinct_on": [ - 5197, + 5199, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -175227,35 +175321,35 @@ export default { 40 ], "order_by": [ - 5196, + 5198, "[v_league_division_standings_order_by!]" ], "where": [ - 5190 + 5192 ] } ], "v_league_division_standings_stream": [ - 5181, + 5183, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5204, + 5206, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5190 + 5192 ] } ], "v_league_season_player_stats": [ - 5214, + 5216, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -175265,19 +175359,19 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], "v_league_season_player_stats_aggregate": [ - 5215, + 5217, { "distinct_on": [ - 5240, + 5242, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -175287,35 +175381,35 @@ export default { 40 ], "order_by": [ - 5239, + 5241, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5233 + 5235 ] } ], "v_league_season_player_stats_stream": [ - 5214, + 5216, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5255, + 5257, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5233 + 5235 ] } ], "v_match_captains": [ - 5265, + 5267, { "distinct_on": [ - 5277, + 5279, "[v_match_captains_select_column!]" ], "limit": [ @@ -175325,19 +175419,19 @@ export default { 40 ], "order_by": [ - 5276, + 5278, "[v_match_captains_order_by!]" ], "where": [ - 5269 + 5271 ] } ], "v_match_captains_aggregate": [ - 5266, + 5268, { "distinct_on": [ - 5277, + 5279, "[v_match_captains_select_column!]" ], "limit": [ @@ -175347,35 +175441,35 @@ export default { 40 ], "order_by": [ - 5276, + 5278, "[v_match_captains_order_by!]" ], "where": [ - 5269 + 5271 ] } ], "v_match_captains_stream": [ - 5265, + 5267, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5282, + 5284, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5269 + 5271 ] } ], "v_match_clutches": [ - 5289, + 5291, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -175385,19 +175479,19 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], "v_match_clutches_aggregate": [ - 5290, + 5292, { "distinct_on": [ - 5305, + 5307, "[v_match_clutches_select_column!]" ], "limit": [ @@ -175407,35 +175501,35 @@ export default { 40 ], "order_by": [ - 5304, + 5306, "[v_match_clutches_order_by!]" ], "where": [ - 5298 + 5300 ] } ], "v_match_clutches_stream": [ - 5289, + 5291, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5312, + 5314, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5298 + 5300 ] } ], "v_match_kill_pairs": [ - 5322, + 5324, { "distinct_on": [ - 5330, + 5332, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -175445,19 +175539,19 @@ export default { 40 ], "order_by": [ - 5329, + 5331, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5326 + 5328 ] } ], "v_match_kill_pairs_aggregate": [ - 5323, + 5325, { "distinct_on": [ - 5330, + 5332, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -175467,35 +175561,35 @@ export default { 40 ], "order_by": [ - 5329, + 5331, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5326 + 5328 ] } ], "v_match_kill_pairs_stream": [ - 5322, + 5324, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5334, + 5336, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5326 + 5328 ] } ], "v_match_lineup_buy_types": [ - 5340, + 5342, { "distinct_on": [ - 5348, + 5350, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -175505,19 +175599,19 @@ export default { 40 ], "order_by": [ - 5347, + 5349, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5344 + 5346 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5341, + 5343, { "distinct_on": [ - 5348, + 5350, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -175527,35 +175621,35 @@ export default { 40 ], "order_by": [ - 5347, + 5349, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5344 + 5346 ] } ], "v_match_lineup_buy_types_stream": [ - 5340, + 5342, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5352, + 5354, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5344 + 5346 ] } ], "v_match_lineup_map_stats": [ - 5358, + 5360, { "distinct_on": [ - 5366, + 5368, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -175565,19 +175659,19 @@ export default { 40 ], "order_by": [ - 5365, + 5367, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5362 + 5364 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5359, + 5361, { "distinct_on": [ - 5366, + 5368, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -175587,35 +175681,35 @@ export default { 40 ], "order_by": [ - 5365, + 5367, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5362 + 5364 ] } ], "v_match_lineup_map_stats_stream": [ - 5358, + 5360, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5370, + 5372, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5362 + 5364 ] } ], "v_match_map_backup_rounds": [ - 5376, + 5378, { "distinct_on": [ - 5387, + 5389, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -175625,19 +175719,19 @@ export default { 40 ], "order_by": [ - 5386, + 5388, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5380 + 5382 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5377, + 5379, { "distinct_on": [ - 5387, + 5389, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -175647,35 +175741,35 @@ export default { 40 ], "order_by": [ - 5386, + 5388, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5380 + 5382 ] } ], "v_match_map_backup_rounds_stream": [ - 5376, + 5378, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5392, + 5394, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5380 + 5382 ] } ], "v_match_player_buy_types": [ - 5399, + 5401, { "distinct_on": [ - 5407, + 5409, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -175685,19 +175779,19 @@ export default { 40 ], "order_by": [ - 5406, + 5408, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5403 + 5405 ] } ], "v_match_player_buy_types_aggregate": [ - 5400, + 5402, { "distinct_on": [ - 5407, + 5409, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -175707,35 +175801,35 @@ export default { 40 ], "order_by": [ - 5406, + 5408, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5403 + 5405 ] } ], "v_match_player_buy_types_stream": [ - 5399, + 5401, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5411, + 5413, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5403 + 5405 ] } ], "v_match_player_opening_duels": [ - 5417, + 5419, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -175745,19 +175839,19 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], "v_match_player_opening_duels_aggregate": [ - 5418, + 5420, { "distinct_on": [ - 5433, + 5435, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -175767,35 +175861,35 @@ export default { 40 ], "order_by": [ - 5432, + 5434, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5426 + 5428 ] } ], "v_match_player_opening_duels_stream": [ - 5417, + 5419, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5440, + 5442, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5426 + 5428 ] } ], "v_player_arch_nemesis": [ - 5450, + 5452, { "distinct_on": [ - 5458, + 5460, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -175805,19 +175899,19 @@ export default { 40 ], "order_by": [ - 5457, + 5459, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5454 + 5456 ] } ], "v_player_arch_nemesis_aggregate": [ - 5451, + 5453, { "distinct_on": [ - 5458, + 5460, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -175827,35 +175921,35 @@ export default { 40 ], "order_by": [ - 5457, + 5459, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5454 + 5456 ] } ], "v_player_arch_nemesis_stream": [ - 5450, + 5452, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5462, + 5464, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5454 + 5456 ] } ], "v_player_damage": [ - 5468, + 5470, { "distinct_on": [ - 5476, + 5478, "[v_player_damage_select_column!]" ], "limit": [ @@ -175865,19 +175959,19 @@ export default { 40 ], "order_by": [ - 5475, + 5477, "[v_player_damage_order_by!]" ], "where": [ - 5472 + 5474 ] } ], "v_player_damage_aggregate": [ - 5469, + 5471, { "distinct_on": [ - 5476, + 5478, "[v_player_damage_select_column!]" ], "limit": [ @@ -175887,35 +175981,35 @@ export default { 40 ], "order_by": [ - 5475, + 5477, "[v_player_damage_order_by!]" ], "where": [ - 5472 + 5474 ] } ], "v_player_damage_stream": [ - 5468, + 5470, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5480, + 5482, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5472 + 5474 ] } ], "v_player_elo": [ - 5486, + 5488, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -175925,19 +176019,19 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "v_player_elo_aggregate": [ - 5487, + 5489, { "distinct_on": [ - 5512, + 5514, "[v_player_elo_select_column!]" ], "limit": [ @@ -175947,35 +176041,35 @@ export default { 40 ], "order_by": [ - 5511, + 5513, "[v_player_elo_order_by!]" ], "where": [ - 5505 + 5507 ] } ], "v_player_elo_stream": [ - 5486, + 5488, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5527, + 5529, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5505 + 5507 ] } ], "v_player_map_losses": [ - 5537, + 5539, { "distinct_on": [ - 5545, + 5547, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -175985,19 +176079,19 @@ export default { 40 ], "order_by": [ - 5544, + 5546, "[v_player_map_losses_order_by!]" ], "where": [ - 5541 + 5543 ] } ], "v_player_map_losses_aggregate": [ - 5538, + 5540, { "distinct_on": [ - 5545, + 5547, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -176007,35 +176101,35 @@ export default { 40 ], "order_by": [ - 5544, + 5546, "[v_player_map_losses_order_by!]" ], "where": [ - 5541 + 5543 ] } ], "v_player_map_losses_stream": [ - 5537, + 5539, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5549, + 5551, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5541 + 5543 ] } ], "v_player_map_wins": [ - 5555, + 5557, { "distinct_on": [ - 5563, + 5565, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -176045,19 +176139,19 @@ export default { 40 ], "order_by": [ - 5562, + 5564, "[v_player_map_wins_order_by!]" ], "where": [ - 5559 + 5561 ] } ], "v_player_map_wins_aggregate": [ - 5556, + 5558, { "distinct_on": [ - 5563, + 5565, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -176067,35 +176161,35 @@ export default { 40 ], "order_by": [ - 5562, + 5564, "[v_player_map_wins_order_by!]" ], "where": [ - 5559 + 5561 ] } ], "v_player_map_wins_stream": [ - 5555, + 5557, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5567, + 5569, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5559 + 5561 ] } ], "v_player_match_head_to_head": [ - 5573, + 5575, { "distinct_on": [ - 5581, + 5583, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -176105,19 +176199,19 @@ export default { 40 ], "order_by": [ - 5580, + 5582, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5577 + 5579 ] } ], "v_player_match_head_to_head_aggregate": [ - 5574, + 5576, { "distinct_on": [ - 5581, + 5583, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -176127,35 +176221,35 @@ export default { 40 ], "order_by": [ - 5580, + 5582, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5577 + 5579 ] } ], "v_player_match_head_to_head_stream": [ - 5573, + 5575, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5585, + 5587, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5577 + 5579 ] } ], "v_player_match_map_hltv": [ - 5591, + 5593, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -176165,19 +176259,19 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], "v_player_match_map_hltv_aggregate": [ - 5592, + 5594, { "distinct_on": [ - 5609, + 5611, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -176187,35 +176281,35 @@ export default { 40 ], "order_by": [ - 5608, + 5610, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5600 + 5602 ] } ], "v_player_match_map_hltv_stream": [ - 5591, + 5593, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5617, + 5619, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5600 + 5602 ] } ], "v_player_match_map_roles": [ - 5628, + 5630, { "distinct_on": [ - 5636, + 5638, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -176225,19 +176319,19 @@ export default { 40 ], "order_by": [ - 5635, + 5637, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5632 + 5634 ] } ], "v_player_match_map_roles_aggregate": [ - 5629, + 5631, { "distinct_on": [ - 5636, + 5638, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -176247,35 +176341,35 @@ export default { 40 ], "order_by": [ - 5635, + 5637, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5632 + 5634 ] } ], "v_player_match_map_roles_stream": [ - 5628, + 5630, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5640, + 5642, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5632 + 5634 ] } ], "v_player_match_performance": [ - 5646, + 5648, { "distinct_on": [ - 5654, + 5656, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -176285,19 +176379,19 @@ export default { 40 ], "order_by": [ - 5653, + 5655, "[v_player_match_performance_order_by!]" ], "where": [ - 5650 + 5652 ] } ], "v_player_match_performance_aggregate": [ - 5647, + 5649, { "distinct_on": [ - 5654, + 5656, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -176307,35 +176401,35 @@ export default { 40 ], "order_by": [ - 5653, + 5655, "[v_player_match_performance_order_by!]" ], "where": [ - 5650 + 5652 ] } ], "v_player_match_performance_stream": [ - 5646, + 5648, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5658, + 5660, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5650 + 5652 ] } ], "v_player_match_rating": [ - 5664, + 5666, { "distinct_on": [ - 5672, + 5674, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -176345,19 +176439,19 @@ export default { 40 ], "order_by": [ - 5671, + 5673, "[v_player_match_rating_order_by!]" ], "where": [ - 5668 + 5670 ] } ], "v_player_match_rating_aggregate": [ - 5665, + 5667, { "distinct_on": [ - 5672, + 5674, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -176367,35 +176461,35 @@ export default { 40 ], "order_by": [ - 5671, + 5673, "[v_player_match_rating_order_by!]" ], "where": [ - 5668 + 5670 ] } ], "v_player_match_rating_stream": [ - 5664, + 5666, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5676, + 5678, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5668 + 5670 ] } ], "v_player_multi_kills": [ - 5682, + 5684, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -176405,19 +176499,19 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], "v_player_multi_kills_aggregate": [ - 5683, + 5685, { "distinct_on": [ - 5698, + 5700, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -176427,35 +176521,35 @@ export default { 40 ], "order_by": [ - 5697, + 5699, "[v_player_multi_kills_order_by!]" ], "where": [ - 5691 + 5693 ] } ], "v_player_multi_kills_stream": [ - 5682, + 5684, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5705, + 5707, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5691 + 5693 ] } ], "v_player_queue_partners": [ - 5715, + 5717, { "distinct_on": [ - 5723, + 5725, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -176465,19 +176559,19 @@ export default { 40 ], "order_by": [ - 5722, + 5724, "[v_player_queue_partners_order_by!]" ], "where": [ - 5719 + 5721 ] } ], "v_player_queue_partners_aggregate": [ - 5716, + 5718, { "distinct_on": [ - 5723, + 5725, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -176487,35 +176581,35 @@ export default { 40 ], "order_by": [ - 5722, + 5724, "[v_player_queue_partners_order_by!]" ], "where": [ - 5719 + 5721 ] } ], "v_player_queue_partners_stream": [ - 5715, + 5717, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5727, + 5729, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5719 + 5721 ] } ], "v_player_weapon_damage": [ - 5733, + 5735, { "distinct_on": [ - 5741, + 5743, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -176525,19 +176619,19 @@ export default { 40 ], "order_by": [ - 5740, + 5742, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5737 + 5739 ] } ], "v_player_weapon_damage_aggregate": [ - 5734, + 5736, { "distinct_on": [ - 5741, + 5743, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -176547,35 +176641,35 @@ export default { 40 ], "order_by": [ - 5740, + 5742, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5737 + 5739 ] } ], "v_player_weapon_damage_stream": [ - 5733, + 5735, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5745, + 5747, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5737 + 5739 ] } ], "v_player_weapon_kills": [ - 5751, + 5753, { "distinct_on": [ - 5759, + 5761, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -176585,19 +176679,19 @@ export default { 40 ], "order_by": [ - 5758, + 5760, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5755 + 5757 ] } ], "v_player_weapon_kills_aggregate": [ - 5752, + 5754, { "distinct_on": [ - 5759, + 5761, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -176607,35 +176701,35 @@ export default { 40 ], "order_by": [ - 5758, + 5760, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5755 + 5757 ] } ], "v_player_weapon_kills_stream": [ - 5751, + 5753, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5763, + 5765, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5755 + 5757 ] } ], "v_pool_maps": [ - 5769, + 5771, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -176645,19 +176739,19 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], "v_pool_maps_aggregate": [ - 5770, + 5772, { "distinct_on": [ - 5786, + 5788, "[v_pool_maps_select_column!]" ], "limit": [ @@ -176667,35 +176761,35 @@ export default { 40 ], "order_by": [ - 5785, + 5787, "[v_pool_maps_order_by!]" ], "where": [ - 5778 + 5780 ] } ], "v_pool_maps_stream": [ - 5769, + 5771, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5790, + 5792, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5778 + 5780 ] } ], "v_steam_account_pool_status": [ - 5793, + 5795, { "distinct_on": [ - 5801, + 5803, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -176705,19 +176799,19 @@ export default { 40 ], "order_by": [ - 5800, + 5802, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5797 + 5799 ] } ], "v_steam_account_pool_status_aggregate": [ - 5794, + 5796, { "distinct_on": [ - 5801, + 5803, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -176727,35 +176821,35 @@ export default { 40 ], "order_by": [ - 5800, + 5802, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5797 + 5799 ] } ], "v_steam_account_pool_status_stream": [ - 5793, + 5795, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5805, + 5807, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5797 + 5799 ] } ], "v_team_ranks": [ - 5811, + 5813, { "distinct_on": [ - 5821, + 5823, "[v_team_ranks_select_column!]" ], "limit": [ @@ -176765,19 +176859,19 @@ export default { 40 ], "order_by": [ - 5820, + 5822, "[v_team_ranks_order_by!]" ], "where": [ - 5815 + 5817 ] } ], "v_team_ranks_aggregate": [ - 5812, + 5814, { "distinct_on": [ - 5821, + 5823, "[v_team_ranks_select_column!]" ], "limit": [ @@ -176787,35 +176881,35 @@ export default { 40 ], "order_by": [ - 5820, + 5822, "[v_team_ranks_order_by!]" ], "where": [ - 5815 + 5817 ] } ], "v_team_ranks_stream": [ - 5811, + 5813, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5825, + 5827, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5815 + 5817 ] } ], "v_team_reputation": [ - 5831, + 5833, { "distinct_on": [ - 5841, + 5843, "[v_team_reputation_select_column!]" ], "limit": [ @@ -176825,19 +176919,19 @@ export default { 40 ], "order_by": [ - 5840, + 5842, "[v_team_reputation_order_by!]" ], "where": [ - 5835 + 5837 ] } ], "v_team_reputation_aggregate": [ - 5832, + 5834, { "distinct_on": [ - 5841, + 5843, "[v_team_reputation_select_column!]" ], "limit": [ @@ -176847,35 +176941,35 @@ export default { 40 ], "order_by": [ - 5840, + 5842, "[v_team_reputation_order_by!]" ], "where": [ - 5835 + 5837 ] } ], "v_team_reputation_stream": [ - 5831, + 5833, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5845, + 5847, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5835 + 5837 ] } ], "v_team_stage_results": [ - 5851, + 5853, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -176885,19 +176979,19 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], "v_team_stage_results_aggregate": [ - 5852, + 5854, { "distinct_on": [ - 5883, + 5885, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -176907,48 +177001,48 @@ export default { 40 ], "order_by": [ - 5881, + 5883, "[v_team_stage_results_order_by!]" ], "where": [ - 5870 + 5872 ] } ], "v_team_stage_results_by_pk": [ - 5851, + 5853, { "tournament_stage_id": [ - 5109, + 5111, "uuid!" ], "tournament_team_id": [ - 5109, + 5111, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5851, + 5853, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5899, + 5901, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5870 + 5872 ] } ], "v_team_tournament_results": [ - 5911, + 5913, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -176958,19 +177052,19 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "v_team_tournament_results_aggregate": [ - 5912, + 5914, { "distinct_on": [ - 5937, + 5939, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -176980,35 +177074,35 @@ export default { 40 ], "order_by": [ - 5936, + 5938, "[v_team_tournament_results_order_by!]" ], "where": [ - 5930 + 5932 ] } ], "v_team_tournament_results_stream": [ - 5911, + 5913, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5952, + 5954, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5930 + 5932 ] } ], "v_tournament_player_stats": [ - 5962, + 5964, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -177018,19 +177112,19 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], "v_tournament_player_stats_aggregate": [ - 5963, + 5965, { "distinct_on": [ - 5988, + 5990, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -177040,27 +177134,27 @@ export default { 40 ], "order_by": [ - 5987, + 5989, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5981 + 5983 ] } ], "v_tournament_player_stats_stream": [ - 5962, + 5964, { "batch_size": [ 40, "Int!" ], "cursor": [ - 6003, + 6005, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5981 + 5983 ] } ], diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts index 5f1ef453..3ed41af6 100644 --- a/src/awards/awards.service.ts +++ b/src/awards/awards.service.ts @@ -224,12 +224,20 @@ export class AwardsService { ); if (input.team_id) { - await this.grantToRoster(input, tournamentTeamId); + // grantToRoster inserts the roster in one statement rather than looping + // back through here, so a team grant has to be notified from its own + // returned rows. + const roster = await this.grantToRoster(input, tournamentTeamId); + + for (const recipient of roster) { + void this.notifyAwarded( + recipient.player_steam_id, + input.award_id, + recipient.id, + ); + } } - // A team grant fans out to the roster through grantToRoster, which comes - // back through here per player, so notifying on the player branch alone - // covers both. if (input.player_steam_id) { void this.notifyAwarded(input.player_steam_id, input.award_id, granted.id); } @@ -567,8 +575,13 @@ export class AwardsService { private async grantToRoster( input: GrantAwardInput, tournamentTeamId: string | null, - ): Promise { - await this.postgres.query( + ): Promise> { + // RETURNING, so only the players who actually received the award are + // notified -- the NOT EXISTS below skips anyone who already held it, and + // re-notifying them would be a lie. + return await this.postgres.query< + Array<{ id: string; player_steam_id: string }> + >( `INSERT INTO public.award_recipients (award_id, player_steam_id, tournament_id, tournament_team_id, event_id, season_id, league_season_id, @@ -585,7 +598,8 @@ export class AwardsService { AND held.event_id IS NOT DISTINCT FROM $4 AND held.season_id IS NOT DISTINCT FROM $5 AND held.league_season_id IS NOT DISTINCT FROM $6 - )`, + ) + RETURNING id, player_steam_id::text AS player_steam_id`, [ input.award_id, input.tournament_id ?? null, diff --git a/src/demos/demos.controller.ts b/src/demos/demos.controller.ts index ca9ce867..72d2e31c 100644 --- a/src/demos/demos.controller.ts +++ b/src/demos/demos.controller.ts @@ -305,6 +305,19 @@ export class DemosController { private async notifyStatsReady(matchId: string) { try { + // Fired once per match, not once per demo. A Bo3 parses three of them, + // and a reparse runs the whole thing again -- either would otherwise send + // the same "your stats are ready" several times over. + const [alreadySent] = await this.postgres.query>( + `SELECT id FROM public.notifications + WHERE type = 'MatchStatsReady' AND entity_id = $1 LIMIT 1`, + [matchId], + ); + + if (alreadySent) { + return; + } + const players = await this.postgres.query>( `SELECT DISTINCT mlp.steam_id::text AS steam_id FROM public.matches m From b6dcd36ff2948aee8debe529722d95bc036fb58e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 00:13:34 -0400 Subject: [PATCH 12/17] wip --- .../notifications/is_quiet_hours.sql | 5 +- src/awards/awards.module.ts | 3 +- src/awards/awards.service.ts | 31 ++++--- src/chat/chat.service.ts | 8 +- src/matches/camera/camera.service.ts | 61 +++++++------- src/matches/matches.controller.ts | 34 ++++---- src/notifications/jobs/SendPushBroadcast.ts | 19 +++-- src/notifications/notifications.module.ts | 2 + src/notifications/notifications.service.ts | 68 +++++++++++++++- .../push/push-notifications.controller.ts | 6 ++ .../push/push-notifications.service.spec.ts | 9 +++ .../push/push-notifications.service.ts | 80 +++++++++++++++++++ src/system/system.controller.ts | 4 +- src/system/system.module.ts | 4 +- test/notifications.spec.ts | 25 ++++-- 15 files changed, 275 insertions(+), 84 deletions(-) diff --git a/hasura/functions/notifications/is_quiet_hours.sql b/hasura/functions/notifications/is_quiet_hours.sql index 91623477..99f7ba50 100644 --- a/hasura/functions/notifications/is_quiet_hours.sql +++ b/hasura/functions/notifications/is_quiet_hours.sql @@ -8,7 +8,10 @@ CREATE OR REPLACE FUNCTION public.is_quiet_hours( _timezone text ) RETURNS boolean LANGUAGE plpgsql -IMMUTABLE +-- STABLE, not IMMUTABLE: the answer depends on now(). Marked IMMUTABLE the +-- planner may fold the call at plan time and reuse it across executions of a +-- cached plan, which keeps returning the stale answer across a window boundary. +STABLE AS $$ DECLARE _local time; diff --git a/src/awards/awards.module.ts b/src/awards/awards.module.ts index bafb0572..52169255 100644 --- a/src/awards/awards.module.ts +++ b/src/awards/awards.module.ts @@ -8,8 +8,7 @@ import { SystemModule } from "../system/system.module"; import { loggerFactory } from "../utilities/LoggerFactory"; @Module({ - imports: [ - NotificationsModule,S3Module, PostgresModule, SystemModule], + imports: [NotificationsModule, S3Module, PostgresModule, SystemModule], providers: [AwardsService, loggerFactory()], controllers: [AwardsController], exports: [AwardsService], diff --git a/src/awards/awards.service.ts b/src/awards/awards.service.ts index 3ed41af6..3f62c844 100644 --- a/src/awards/awards.service.ts +++ b/src/awards/awards.service.ts @@ -229,27 +229,36 @@ export class AwardsService { // returned rows. const roster = await this.grantToRoster(input, tournamentTeamId); - for (const recipient of roster) { - void this.notifyAwarded( - recipient.player_steam_id, - input.award_id, - recipient.id, - ); - } + void this.notifyAwarded( + roster.map((recipient) => recipient.player_steam_id), + input.award_id, + granted.id, + ); } if (input.player_steam_id) { - void this.notifyAwarded(input.player_steam_id, input.award_id, granted.id); + void this.notifyAwarded( + [input.player_steam_id], + input.award_id, + granted.id, + ); } return granted; } + // The whole roster in one call: the only per-recipient part of this message + // is who receives it, so the grant is looked up once and notifyPlayers is + // handed every steam id rather than being called per player. private async notifyAwarded( - steamId: string, + steamIds: string[], awardId: string, recipientId: string, ) { + if (steamIds.length === 0) { + return; + } + try { const [award] = await this.postgres.query>( `SELECT name FROM public.awards WHERE id = $1::uuid`, @@ -263,11 +272,11 @@ export class AwardsService { )}.`, role: "user", entity_id: recipientId, - steamIds: [steamId], + steamIds, }); } catch (error) { this.logger.warn( - `unable to notify ${steamId} of award ${awardId}`, + `unable to notify ${steamIds.join(", ")} of award ${awardId}`, error, ); } diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 5ae5e6dd..8da1aa55 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -15,10 +15,12 @@ import { parseDirectRoomId } from "./utilities/directRoomId"; export class ChatService { private redis: Redis; - private expiresIn = 60 * 60 * 24; + private expiresIn = 60 * 60; - // A direct message is a conversation, not lobby chatter -- losing it after a - // day would make DMs useless. Everything else keeps the shared TTL. + // A direct message is a conversation, not lobby chatter -- losing it after an + // hour would make DMs useless. Only this type gets the longer window; raising + // the shared one would hold a day of every match, tournament and draft room + // in redis for the sake of DMs. private directExpiresIn = 60 * 60 * 24 * 30; constructor( diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index 64006622..ada66d5a 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -9,7 +9,7 @@ import { isRoleAbove } from "../../utilities/isRoleAbove"; // A token is only meaningful while the match is actually being played, so a // leaked link stops working on its own without needing an expiry column. -const CAMERA_ACTIVE_MATCH_STATUSES = [ +export const CAMERA_ACTIVE_MATCH_STATUSES = [ "WaitingForCheckIn", "Veto", "Live", @@ -476,10 +476,14 @@ export class CameraService { return scope.kind === "all" || lineup.id === scope.lineupId; }); - const lineups = await Promise.all( - visible.map((lineup) => - this.lineupWithCameraStatus(matchId, lineup, health), - ), + // One list call covers every camera in the match. A per-player status + // request would scale with the roster, and this endpoint is polled. + // A null listing means MediaMTX did not answer, which reads the same as + // nothing publishing here — the same answer a per-path check gave. + const paths = (await this.mediaMtx.listPaths()) ?? new Map(); + + const lineups = visible.map((lineup) => + this.lineupWithCameraStatus(matchId, lineup, health, paths), ); return { lineups }; @@ -495,7 +499,7 @@ export class CameraService { return lookup; } - private async lineupWithCameraStatus( + private lineupWithCameraStatus( matchId: string, lineup: { id: string; @@ -513,6 +517,7 @@ export class CameraService { }>; }, health: Map, + paths: Map, ) { // A team's roster image wins over the player's own steam avatar, matching // what every other roster surface shows. Resolved here rather than per @@ -530,29 +535,27 @@ export class CameraService { return { id: lineup.id, name: lineup.name, - players: await Promise.all( - (lineup.lineup_players ?? []).map(async (lineupPlayer) => { - const ready = await this.mediaMtx.isPathReady( - CameraService.pathForPlayer(matchId, lineupPlayer.steam_id), - ); - - return { - steamId: lineupPlayer.steam_id, - name: lineupPlayer.player?.name ?? null, - avatarUrl: - rosterImages.get(String(lineupPlayer.steam_id)) ?? - lineupPlayer.player?.avatar_url ?? - null, - lineupId: lineup.id, - ready, - // Fall back to the live path check when the monitor has no sample: - // it only runs for Live matches, and the grid opens during veto too. - health: - health.get(String(lineupPlayer.steam_id)) ?? - (ready ? "live" : "down"), - } satisfies CameraPlayerStatus; - }), - ), + players: (lineup.lineup_players ?? []).map((lineupPlayer) => { + const ready = + paths.get(CameraService.pathForPlayer(matchId, lineupPlayer.steam_id)) + ?.ready === true; + + return { + steamId: lineupPlayer.steam_id, + name: lineupPlayer.player?.name ?? null, + avatarUrl: + rosterImages.get(String(lineupPlayer.steam_id)) ?? + lineupPlayer.player?.avatar_url ?? + null, + lineupId: lineup.id, + ready, + // Fall back to the live path check when the monitor has no sample: + // it only runs for Live matches, and the grid opens during veto too. + health: + health.get(String(lineupPlayer.steam_id)) ?? + (ready ? "live" : "down"), + } satisfies CameraPlayerStatus; + }), }; } } diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index ce227921..e950887e 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -46,7 +46,10 @@ import { GameStreamerService } from "./game-streamer/game-streamer.service"; import { isRoleAbove } from "../utilities/isRoleAbove"; import { DemoMetadataService } from "../demos/demo-metadata.service"; import { ClipsService } from "./clips/clips.service"; -import { CameraService } from "./camera/camera.service"; +import { + CAMERA_ACTIVE_MATCH_STATUSES, + CameraService, +} from "./camera/camera.service"; import { CameraMonitorService } from "./camera/camera-monitor.service"; import { ClipSpec } from "./clips/types/ClipSpec"; @@ -200,6 +203,7 @@ export class MatchesController { number_of_substitutes: true, round_restart_delay: true, halftime_pausematch: true, + camera_required: true, }, match_maps: { id: true, @@ -478,29 +482,16 @@ export class MatchesController { response.status(200).json(data); } - // camera_required and per-player camera health are read straight from - // Postgres/Redis rather than the Hasura selection above, so the plugin - // payload does not wait on Zeus codegen to learn about a new column. + // Per-player camera health is read straight from Redis: it is the monitor's + // running state, not a column, and the plugin needs it to pick its own state + // back up after a restart or a map load mid-match. private async decorateWithCameraState(match: { id: string; options: Record; lineup_1?: { lineup_players?: Array> }; lineup_2?: { lineup_players?: Array> }; }) { - const [row] = await this.postgres.query< - Array<{ camera_required: boolean }> - >( - `SELECT mo.camera_required - FROM matches m - INNER JOIN match_options mo ON mo.id = m.match_options_id - WHERE m.id = $1`, - [match.id], - ); - - const cameraRequired = row?.camera_required === true; - match.options.camera_required = cameraRequired; - - if (!cameraRequired) { + if (match.options.camera_required !== true) { return; } @@ -2746,6 +2737,13 @@ export class MatchesController { ); } + // A substitute added after check-in opened missed the status edge that + // mints tokens, and without one they can never check in. Idempotent, so + // re-running it for the rest of the roster costs nothing. + if (CAMERA_ACTIVE_MATCH_STATUSES.includes(match.status)) { + await this.camera.generateTokensIfRequired(match.id); + } + if (!["Live"].includes(match.status)) { return; } diff --git a/src/notifications/jobs/SendPushBroadcast.ts b/src/notifications/jobs/SendPushBroadcast.ts index ff2d3571..181e2224 100644 --- a/src/notifications/jobs/SendPushBroadcast.ts +++ b/src/notifications/jobs/SendPushBroadcast.ts @@ -5,9 +5,12 @@ import { NotificationsQueues } from "../enums/NotificationsQueues"; import { PushNotificationsService } from "../push/push-notifications.service"; // A fan-out notification writes one row per player, and the Hasura event -// trigger fires for every one of them. Each of those enqueues this job under -// the same jobId, so all but the first are dropped and the survivor resolves -// every recipient in one pass. +// trigger fires for every one of them. +// +// Two ways in. A writer that knows the rows it inserted queues `ids` and claims +// them, so the per-row events fall through entirely. Everything else arrives +// from those events, deduped down to one job by jobId, and resolves recipients +// from the (type, entity_id) window instead. @UseQueue("Notifications", NotificationsQueues.PushBroadcast) export class SendPushBroadcast extends WorkerHost { constructor(private readonly pushNotifications: PushNotificationsService) { @@ -16,10 +19,16 @@ export class SendPushBroadcast extends WorkerHost { async process( job: Job<{ - type: string; - entityId: string; + type?: string; + entityId?: string; + ids?: string[]; }>, ): Promise { + if (job.data.ids?.length) { + await this.pushNotifications.sendForIds(job.data.ids); + return; + } + await this.pushNotifications.sendForBatch(job.data.type, job.data.entityId); } } diff --git a/src/notifications/notifications.module.ts b/src/notifications/notifications.module.ts index 38b4bf5a..e8021ac4 100644 --- a/src/notifications/notifications.module.ts +++ b/src/notifications/notifications.module.ts @@ -6,6 +6,7 @@ import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; import { NotificationsService } from "./notifications.service"; import { HasuraModule } from "../hasura/hasura.module"; import { PostgresModule } from "../postgres/postgres.module"; +import { RedisModule } from "../redis/redis.module"; import { loggerFactory } from "src/utilities/LoggerFactory"; import { getQueuesProcessors } from "src/utilities/QueueProcessors"; import { NotificationsQueues } from "./enums/NotificationsQueues"; @@ -21,6 +22,7 @@ import { NotificationPreferencesController } from "./preferences/notification-pr HasuraModule, PostgresModule, ConfigModule, + RedisModule, BullModule.registerQueue({ name: NotificationsQueues.SanctionNotifications, }), diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts index 36df12f0..31a3a390 100644 --- a/src/notifications/notifications.service.ts +++ b/src/notifications/notifications.service.ts @@ -14,6 +14,7 @@ import { import { DISCORD_COLORS } from "./utilities/constants"; import { NotificationsQueues } from "./enums/NotificationsQueues"; import { NotificationPreferencesService } from "./preferences/notification-preferences.service"; +import { PushNotificationsService } from "./push/push-notifications.service"; import { inAppKeyForType } from "./preferences/notification-categories"; @Injectable() @@ -47,8 +48,11 @@ export class NotificationsService { private readonly logger: Logger, private readonly configService: ConfigService, private readonly preferences: NotificationPreferencesService, + private readonly pushNotifications: PushNotificationsService, @InjectQueue(NotificationsQueues.SanctionNotifications) private readonly sanctionNotificationsQueue: Queue, + @InjectQueue(NotificationsQueues.PushBroadcast) + private readonly pushBroadcastQueue: Queue, ) { this.appConfig = this.configService.get("app"); } @@ -303,6 +307,44 @@ export class NotificationsService { } } + // Hasura's event trigger fires once per inserted row, so a fan-out that wrote + // 200 rows would resolve recipients and send 200 times over. The rows are + // claimed here so those events fall through, and one job covers the burst. + // + // A single row is left to its own event: it is one query either way, and the + // claim would only add a round trip. + private async pushFanOut( + ids: string[], + window?: { type: string; entityId: string }, + ) { + if (ids.length < 2) { + return; + } + + try { + // Queued before the rows are claimed, deliberately. Claiming first and + // then failing to queue would silence the push entirely; this order fails + // the other way, into a duplicate the device collapses on its tag. + await this.pushBroadcastQueue.add( + "PushBroadcast", + window ?? { ids }, + { + ...(window + ? { jobId: `push-broadcast.${window.type}.${window.entityId}` } + : {}), + removeOnComplete: { age: 3600 }, + removeOnFail: { age: 3600 }, + }, + ); + + await this.pushNotifications.claimFanOut(ids); + } catch (error) { + // The per-row events are still queued behind this, so a failure here + // degrades to the unbatched path rather than losing the push. + this.logger.warn("unable to batch push for a fan-out notification", error); + } + } + private async postDiscord( webhook: string, roleId: string | undefined, @@ -368,7 +410,7 @@ export class NotificationsService { ); if (steamIds.length > 0) { - await this.hasura.mutation({ + const { insert_notifications } = await this.hasura.mutation({ insert_notifications: { __args: { objects: steamIds.map((steam_id) => ({ @@ -384,9 +426,15 @@ export class NotificationsService { : {}), })), }, - affected_rows: true, + returning: { + id: true, + }, }, }); + + await this.pushFanOut( + (insert_notifications?.returning ?? []).map(({ id }) => id as string), + ); } const webhook = await this.getSettingValue("discord_support_webhook"); @@ -492,7 +540,7 @@ export class NotificationsService { ) { const key = inAppKeyForType(type); - await this.postgres.query( + const inserted = await this.postgres.query>( `INSERT INTO public.notifications (type, title, message, role, steam_id, entity_id) SELECT $1, $2, $3, 'user', p.steam_id, $4 FROM public.players p @@ -501,7 +549,8 @@ export class NotificationsService { AND np.channel = 'in_app' AND np.key = $5 WHERE p.last_sign_in_at >= now() - $6::interval - AND COALESCE(np.enabled, $7::boolean) = true`, + AND COALESCE(np.enabled, $7::boolean) = true + RETURNING id::text AS id`, [ type, notification.title, @@ -512,6 +561,17 @@ export class NotificationsService { key?.defaultEnabled ?? true, ], ); + + // The recipient list here is the whole player base, so the ids are claimed + // but not carried in the job: sendForBatch resolves them from + // (type, entity_id) in one statement rather than shipping a payload with a + // row per player in it. + if (notification.entity_id) { + await this.pushFanOut( + inserted.map(({ id }) => id), + { type, entityId: notification.entity_id }, + ); + } } private async getSettingValue(name: string): Promise { diff --git a/src/notifications/push/push-notifications.controller.ts b/src/notifications/push/push-notifications.controller.ts index bd7bfaaf..30d86e9c 100644 --- a/src/notifications/push/push-notifications.controller.ts +++ b/src/notifications/push/push-notifications.controller.ts @@ -97,6 +97,12 @@ export class PushNotificationsController { return; } + // Written as part of a fan-out whose author already queued one job for the + // whole burst. One lookup here replaces two queries and a send per row. + if (await this.pushNotifications.isFanOutClaimed(data.new.id)) { + return; + } + // A fan-out type inserts one row per player, and this fires per row. // The jobId collapses them into a single send. if (PushNotificationsService.isBatched(data.new.type)) { diff --git a/src/notifications/push/push-notifications.service.spec.ts b/src/notifications/push/push-notifications.service.spec.ts index e634ece0..00732764 100644 --- a/src/notifications/push/push-notifications.service.spec.ts +++ b/src/notifications/push/push-notifications.service.spec.ts @@ -32,6 +32,14 @@ describe("PushNotificationsService", () => { const configService = { get: jest.fn, [string]>(), }; + const redis = { + exists: jest.fn().mockResolvedValue(0), + pipeline: jest.fn(() => ({ + set: jest.fn(), + exec: jest.fn().mockResolvedValue([]), + })), + }; + const redisManager = { getConnection: () => redis }; // Re-applied per test: clearAllMocks resets calls but not implementations, so // a test that swaps this out would otherwise leak into the next one. @@ -58,6 +66,7 @@ describe("PushNotificationsService", () => { logger as any, postgres as any, configService as any, + redisManager as any, ); await service.loadKeys(); return service; diff --git a/src/notifications/push/push-notifications.service.ts b/src/notifications/push/push-notifications.service.ts index 575902e1..89946cbc 100644 --- a/src/notifications/push/push-notifications.service.ts +++ b/src/notifications/push/push-notifications.service.ts @@ -1,7 +1,9 @@ import { BadRequestException, Injectable, Logger } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import * as webPush from "web-push"; +import Redis from "ioredis"; import { PostgresService } from "../../postgres/postgres.service"; +import { RedisManagerService } from "../../redis/redis-manager/redis-manager.service"; import { AppConfig } from "src/configs/types/AppConfig"; import { WebPushConfig } from "src/configs/types/WebPushConfig"; import { e_player_roles_enum } from "generated/schema"; @@ -60,10 +62,17 @@ const BATCHED_TYPES = new Set(["TournamentCreated", "NewsPublished"]); const SEND_CHUNK_SIZE = 25; +const fanOutClaimKey = (id: string) => `notifications:fan-out:${id}`; + +// Long enough to outlast Hasura's delivery of the last row in a fan-out, +// including its retry_conf (3 retries, 10s apart, 60s timeout each). +const FAN_OUT_CLAIM_TTL_SECONDS = 900; + @Injectable() export class PushNotificationsService { private readonly appConfig: AppConfig; private readonly webPushConfig: WebPushConfig; + private readonly redis: Redis; private publicKey: string | null = null; private configured = false; @@ -71,9 +80,36 @@ export class PushNotificationsService { private readonly logger: Logger, private readonly postgres: PostgresService, private readonly configService: ConfigService, + redisManager: RedisManagerService, ) { this.appConfig = this.configService.get("app"); this.webPushConfig = this.configService.get("webPush"); + this.redis = redisManager.getConnection(); + } + + // A fan-out writes one notification row per recipient and Hasura's event + // trigger fires for every one of them, so the naive path costs two queries + // and a send per row. The writer claims the rows it just inserted and pushes + // them in a single pass instead; the per-row events then cost one set lookup. + // + // Claimed by id rather than by (type, entity_id) so a later single-recipient + // notification for the same conversation is never swallowed by a stale claim. + public async claimFanOut(ids: string[]): Promise { + if (ids.length === 0) { + return; + } + + const pipeline = this.redis.pipeline(); + + for (const id of ids) { + pipeline.set(fanOutClaimKey(id), 1, "EX", FAN_OUT_CLAIM_TTL_SECONDS); + } + + await pipeline.exec(); + } + + public async isFanOutClaimed(id: string): Promise { + return (await this.redis.exists(fanOutClaimKey(id))) === 1; } // Keys live in `settings` so an operator can generate them from the panel -- @@ -298,6 +334,50 @@ export class PushNotificationsService { await this.deliver(subscriptions, row); } + // The counterpart for a fan-out whose recipients are known: one pass over the + // exact rows the insert produced. Preferred over sendForBatch wherever the + // ids are to hand — it carries no time window, so it can never pick up a row + // from an earlier message and push someone their own words back at them. + public async sendForIds(ids: string[]): Promise { + if (!this.configured || ids.length === 0) { + return; + } + + const [row] = await this.postgres.query( + `SELECT id::text AS id, type::text AS type, role::text AS role, + title, message, entity_id + FROM public.notifications + WHERE id = ANY($1::uuid[]) + ORDER BY created_at DESC + LIMIT 1`, + [ids], + ); + + if (!row) { + return; + } + + const category = pushCategoryForType(row.type); + + const subscriptions = await this.postgres.query( + `SELECT DISTINCT ps.id::text AS id, ps.endpoint, ps.p256dh, ps.auth + FROM public.notifications n + JOIN public.players p ON p.steam_id = n.steam_id + JOIN public.push_subscriptions ps ON ps.steam_id = n.steam_id + LEFT JOIN public.notification_preferences np + ON np.steam_id = n.steam_id + AND np.channel = 'push' + AND np.key = $2 + WHERE n.id = ANY($1::uuid[]) + AND COALESCE(np.enabled, $3::boolean) = true + AND NOT public.is_quiet_hours( + p.quiet_hours_start, p.quiet_hours_end, p.notification_timezone)`, + [ids, category?.key ?? "", category?.defaultEnabled ?? true], + ); + + await this.deliver(subscriptions, row); + } + // The batched counterpart: one job per (type, entity_id) resolves every row // that fan-out just inserted, rather than one query and send per row. public async sendForBatch(type: string, entityId: string): Promise { diff --git a/src/system/system.controller.ts b/src/system/system.controller.ts index b5e5afda..93afd880 100644 --- a/src/system/system.controller.ts +++ b/src/system/system.controller.ts @@ -329,9 +329,7 @@ export class SystemController { data.new.value !== data.old.value) ) { const ttl = parseInt(data.new.value, 10); - await this.chatService.updateChatMessageTTL( - isNaN(ttl) ? 60 * 60 * 24 : ttl, - ); + await this.chatService.updateChatMessageTTL(isNaN(ttl) ? 60 * 60 : ttl); } await this.system.updateDefaultOptions(); diff --git a/src/system/system.module.ts b/src/system/system.module.ts index 46d47a5c..c93b779a 100644 --- a/src/system/system.module.ts +++ b/src/system/system.module.ts @@ -77,11 +77,11 @@ export class SystemModule { await this.chatService.updateChatMessageTTL( await this.systemService.getSetting( SystemSettingName.ChatMessageTtl, - 60 * 60 * 24, + 60 * 60, ), ); } catch { - // Default TTL (86400s) is already set on ChatService init — safe to continue + // Default TTL (3600s) is already set on ChatService init — safe to continue } } } diff --git a/test/notifications.spec.ts b/test/notifications.spec.ts index 79bf1dcb..0b2da12a 100644 --- a/test/notifications.spec.ts +++ b/test/notifications.spec.ts @@ -228,13 +228,26 @@ describe("notifications (SQL-driven)", () => { }); describe("push recipient resolution", () => { + // Only the fan-out claim touches redis, and none of these exercise it. + const redisManager = { + getConnection: () => ({ + exists: async () => 0, + pipeline: () => ({ set: () => {}, exec: async () => [] }), + }), + }; + const service = () => - new PushNotificationsService(logger as any, postgres, { - get: (key: string) => - key === "app" - ? { webDomain: "https://example.com" } - : { publicKey: undefined, privateKey: undefined, subject: "x" }, - } as any); + new PushNotificationsService( + logger as any, + postgres, + { + get: (key: string) => + key === "app" + ? { webDomain: "https://example.com" } + : { publicKey: undefined, privateKey: undefined, subject: "x" }, + } as any, + redisManager as any, + ); it("runs the recipient query without erroring", async () => { // VAPID is unconfigured here so nothing is actually sent -- this is From fecdd996e2809e20e309fba3198e9e1c7679c19e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 00:52:05 -0400 Subject: [PATCH 13/17] wip --- .../camera/camera-monitor.service.spec.ts | 10 +- src/matches/camera/camera-monitor.service.ts | 2 +- src/sockets/sockets.service.ts | 15 + src/utilities/QueueProcessors.ts | 3 +- src/voice/enums/VoiceQueues.ts | 3 + src/voice/jobs/MonitorVoiceChannels.ts | 29 ++ src/voice/voice.gateway.ts | 50 +++ src/voice/voice.module.ts | 60 +++- src/voice/voice.service.spec.ts | 287 ++++++++++++++++- src/voice/voice.service.ts | 294 +++++++++++++++++- 10 files changed, 723 insertions(+), 30 deletions(-) create mode 100644 src/voice/enums/VoiceQueues.ts create mode 100644 src/voice/jobs/MonitorVoiceChannels.ts create mode 100644 src/voice/voice.gateway.ts diff --git a/src/matches/camera/camera-monitor.service.spec.ts b/src/matches/camera/camera-monitor.service.spec.ts index 8ae26306..68ea5ca2 100644 --- a/src/matches/camera/camera-monitor.service.spec.ts +++ b/src/matches/camera/camera-monitor.service.spec.ts @@ -19,7 +19,7 @@ describe("CameraMonitorService", () => { let rconClient: { send: jest.Mock }; let rcon: { connect: jest.Mock }; let mediaMtx: { listPaths: jest.Mock }; - let sockets: { broadcastMessage: jest.Mock }; + let sockets: { broadcastToCluster: jest.Mock }; let service: CameraMonitorService; const path = (steamId: string) => `camera-${MATCH_ID}-${steamId}`; @@ -44,7 +44,7 @@ describe("CameraMonitorService", () => { rconClient = { send: jest.fn().mockResolvedValue("") }; rcon = { connect: jest.fn().mockResolvedValue(rconClient) }; mediaMtx = { listPaths: jest.fn() }; - sockets = { broadcastMessage: jest.fn().mockResolvedValue(undefined) }; + sockets = { broadcastToCluster: jest.fn().mockResolvedValue(undefined) }; service = new CameraMonitorService( new Logger("CameraMonitorTest"), @@ -182,7 +182,7 @@ describe("CameraMonitorService", () => { await service.monitorLiveMatches(1000 + 60_000); - expect(sockets.broadcastMessage).toHaveBeenCalledWith("camera-status", { + expect(sockets.broadcastToCluster).toHaveBeenCalledWith("camera-status", { matchId: MATCH_ID, }); }); @@ -196,7 +196,7 @@ describe("CameraMonitorService", () => { await service.monitorLiveMatches(1000 + 60_000); - expect(sockets.broadcastMessage).toHaveBeenCalledWith("camera-status", { + expect(sockets.broadcastToCluster).toHaveBeenCalledWith("camera-status", { matchId: MATCH_ID, }); }); @@ -210,6 +210,6 @@ describe("CameraMonitorService", () => { await service.monitorLiveMatches(1000 + 60_000); - expect(sockets.broadcastMessage).not.toHaveBeenCalled(); + expect(sockets.broadcastToCluster).not.toHaveBeenCalled(); }); }); diff --git a/src/matches/camera/camera-monitor.service.ts b/src/matches/camera/camera-monitor.service.ts index 8a54f115..a43c82fa 100644 --- a/src/matches/camera/camera-monitor.service.ts +++ b/src/matches/camera/camera-monitor.service.ts @@ -190,7 +190,7 @@ export class CameraMonitorService { // so the actual status still has to be fetched through the authorized // endpoint. Emitted before the rcon call so the UI still updates when the // game server is unreachable. - void this.sockets.broadcastMessage("camera-status", { matchId }).catch( + void this.sockets.broadcastToCluster("camera-status", { matchId }).catch( (error: unknown): void => { this.logger.warn( `[${matchId}] failed to push camera status: ${(error as Error)?.message ?? error}`, diff --git a/src/sockets/sockets.service.ts b/src/sockets/sockets.service.ts index 554e31e2..4124e5d7 100644 --- a/src/sockets/sockets.service.ts +++ b/src/sockets/sockets.service.ts @@ -201,6 +201,10 @@ export class SocketsService { ); } + // Every client on this pod. Callers almost always want every client + // *everywhere* -- see broadcastToCluster. This stays public because the + // pub/sub subscriber above is what turns a cluster broadcast into these + // local sends on each pod. public async broadcastMessage(event: string, data: unknown) { for (const client of Array.from(this.clients.values())) { client.send( @@ -212,6 +216,17 @@ export class SocketsService { } } + // Every client on every pod. A direct broadcastMessage call reaches only the + // sockets attached to whichever pod happens to run the code, which on a + // multi-pod deployment silently drops the message for most of the users it + // was meant for. + public async broadcastToCluster(event: string, data: unknown) { + await this.redis.publish( + "broadcast-message", + JSON.stringify({ event, data }), + ); + } + public async sendMessageToClient( clientId: string, event: string, diff --git a/src/utilities/QueueProcessors.ts b/src/utilities/QueueProcessors.ts index c2d3f28c..4caa4dc0 100644 --- a/src/utilities/QueueProcessors.ts +++ b/src/utilities/QueueProcessors.ts @@ -30,7 +30,8 @@ type Modules = | "SteamMatchHistory" | "Faceit" | "S3Scan" - | "Scrims"; + | "Scrims" + | "Voice"; export type UseQueueOptions = { concurrency?: number; diff --git a/src/voice/enums/VoiceQueues.ts b/src/voice/enums/VoiceQueues.ts new file mode 100644 index 00000000..f1fe4ec8 --- /dev/null +++ b/src/voice/enums/VoiceQueues.ts @@ -0,0 +1,3 @@ +export enum VoiceQueues { + Monitor = "voice-monitor", +} diff --git a/src/voice/jobs/MonitorVoiceChannels.ts b/src/voice/jobs/MonitorVoiceChannels.ts new file mode 100644 index 00000000..9c58c8aa --- /dev/null +++ b/src/voice/jobs/MonitorVoiceChannels.ts @@ -0,0 +1,29 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { VoiceQueues } from "../enums/VoiceQueues"; +import { VoiceService } from "../voice.service"; + +// A queued job rather than a timer in the service: a repeatable job is picked +// up by one worker, where a setInterval would run on every pod and have them +// race each other's snapshots. +@UseQueue("Voice", VoiceQueues.Monitor) +export class MonitorVoiceChannels extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly voice: VoiceService, + ) { + super(); + } + + async process(): Promise { + try { + await this.voice.monitorChannels(); + } catch (error) { + this.logger.error( + `MonitorVoiceChannels failed: ${(error as Error)?.message}`, + (error as Error)?.stack, + ); + } + } +} diff --git a/src/voice/voice.gateway.ts b/src/voice/voice.gateway.ts new file mode 100644 index 00000000..88a52c77 --- /dev/null +++ b/src/voice/voice.gateway.ts @@ -0,0 +1,50 @@ +import { Logger } from "@nestjs/common"; +import { + ConnectedSocket, + MessageBody, + SubscribeMessage, + WebSocketGateway, +} from "@nestjs/websockets"; +import { FiveStackWebSocketClient } from "../sockets/types/FiveStackWebSocketClient"; +import { VoiceService } from "./voice.service"; + +// Who is talking is only known to the client doing the talking: its gate is +// what decides whether the microphone is being sent, and MediaMTX sees the same +// continuous stream either way. So the client says, and this hands it to the +// rest of the channel. +@WebSocketGateway({ + path: "/ws/web", +}) +export class VoiceGateway { + constructor( + private readonly logger: Logger, + private readonly voice: VoiceService, + ) {} + + @SubscribeMessage("voice:speaking") + public async speaking( + @MessageBody() data: { channelId?: string; speaking?: boolean }, + @ConnectedSocket() client: FiveStackWebSocketClient, + ) { + if (!client.user || !data?.channelId) { + return; + } + + try { + await this.voice.setSpeaking( + data.channelId, + client.user, + data.speaking === true, + ); + } catch (error) { + // Membership is re-checked on every event, so a stale client that has + // been removed from the channel just stops being heard -- that is not + // worth an error to anyone. + this.logger.debug( + `[voice] ignoring speaking from ${client.user.steam_id}: ${ + (error as Error)?.message + }`, + ); + } + } +} diff --git a/src/voice/voice.module.ts b/src/voice/voice.module.ts index 14fdaa6f..11318478 100644 --- a/src/voice/voice.module.ts +++ b/src/voice/voice.module.ts @@ -1,14 +1,66 @@ -import { Module } from "@nestjs/common"; +import { Logger, Module } from "@nestjs/common"; +import { BullModule, InjectQueue } from "@nestjs/bullmq"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { Queue } from "bullmq"; import { VoiceController } from "./voice.controller"; +import { VoiceGateway } from "./voice.gateway"; import { VoiceService } from "./voice.service"; +import { VoiceQueues } from "./enums/VoiceQueues"; +import { MonitorVoiceChannels } from "./jobs/MonitorVoiceChannels"; import { PostgresModule } from "../postgres/postgres.module"; import { MediaMtxModule } from "../mediamtx/mediamtx.module"; +import { RedisModule } from "../redis/redis.module"; +import { getQueuesProcessors } from "../utilities/QueueProcessors"; import { loggerFactory } from "../utilities/LoggerFactory"; @Module({ - imports: [PostgresModule, MediaMtxModule], + imports: [ + PostgresModule, + MediaMtxModule, + RedisModule, + BullModule.registerQueue({ + name: VoiceQueues.Monitor, + }), + BullBoardModule.forFeature({ + name: VoiceQueues.Monitor, + adapter: BullMQAdapter, + }), + ], controllers: [VoiceController], - providers: [VoiceService, loggerFactory()], + // Pushes go out over the Redis channel the sockets service already subscribes + // to on every pod, so they reach every client without this module taking a + // dependency on SocketsModule and the module graph that drags in. + providers: [ + VoiceService, + VoiceGateway, + MonitorVoiceChannels, + ...getQueuesProcessors("Voice"), + loggerFactory(), + ], exports: [VoiceService], }) -export class VoiceModule {} +export class VoiceModule { + constructor( + private readonly logger: Logger, + @InjectQueue(VoiceQueues.Monitor) monitorQueue: Queue, + ) { + if (process.env.RUN_MIGRATIONS) { + return; + } + + // Matches the camera monitor's cadence: both are watching the same MediaMTX + // for the same kind of ungraceful drop, and a client that has stopped + // publishing should disappear from the party in about the time it takes to + // notice they have gone quiet. + void monitorQueue.add( + MonitorVoiceChannels.name, + {}, + { + repeat: { + every: 10_000, + }, + }, + ); + } +} diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts index 3d941964..4f715e56 100644 --- a/src/voice/voice.service.spec.ts +++ b/src/voice/voice.service.spec.ts @@ -9,6 +9,14 @@ describe("VoiceService", () => { let postgres: { query: jest.Mock }; let mediaMtx: { proxySdp: jest.Mock; kickSessions: jest.Mock; listPaths: jest.Mock }; + let redis: { + get: jest.Mock; + set: jest.Mock; + del: jest.Mock; + mget: jest.Mock; + expire: jest.Mock; + publish: jest.Mock; + }; let service: VoiceService; // The service reads the enabled flag and then the membership row, so the @@ -28,10 +36,24 @@ describe("VoiceService", () => { kickSessions: jest.fn().mockResolvedValue(undefined), listPaths: jest.fn().mockResolvedValue(new Map()), }; + redis = { + // Nothing cached and nobody speaking, unless a test says otherwise. + get: jest.fn().mockResolvedValue(null), + set: jest.fn().mockResolvedValue("OK"), + del: jest.fn().mockResolvedValue(1), + mget: jest + .fn() + .mockImplementation((keys: Array) => + Promise.resolve(new Array(keys.length).fill(null)), + ), + expire: jest.fn().mockResolvedValue(1), + publish: jest.fn().mockResolvedValue(1), + }; service = new VoiceService( new Logger("VoiceTest"), postgres as any, mediaMtx as any, + { getConnection: () => redis } as any, ); }); @@ -139,11 +161,134 @@ describe("VoiceService", () => { const participants = await service.participants(LOBBY_ID, ME); expect(participants).toEqual([ - { steamId: ME.steam_id, name: "me", avatarUrl: null, speaking: false }, - { steamId: PEER, name: "peer", avatarUrl: null, speaking: true }, + { + steamId: ME.steam_id, + name: "me", + avatarUrl: null, + connected: false, + speaking: false, + }, + { + steamId: PEER, + name: "peer", + avatarUrl: null, + connected: true, + speaking: false, + }, ]); }); + // The distinction the old flag got wrong: MediaMTX only knows a mic is + // publishing. Whether anyone is talking into it comes from the gate. + it("marks a publishing member as speaking only once their gate says so", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([{ steam_id: PEER, name: "peer", avatar_url: null }]); + mediaMtx.listPaths.mockResolvedValue( + new Map([[`voice-${LOBBY_ID}-${PEER}`, { ready: true }]]), + ); + redis.mget.mockResolvedValue(["1"]); + + const [participant] = await service.participants(LOBBY_ID, ME); + + expect(participant.connected).toBe(true); + expect(participant.speaking).toBe(true); + }); + + // A flag left behind by a client that dropped would keep someone lit up. + it("ignores a speaking flag from a member who is no longer publishing", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([{ steam_id: PEER, name: "peer", avatar_url: null }]); + mediaMtx.listPaths.mockResolvedValue(new Map()); + redis.mget.mockResolvedValue(["1"]); + + const [participant] = await service.participants(LOBBY_ID, ME); + + expect(participant.connected).toBe(false); + expect(participant.speaking).toBe(false); + }); + + describe("speaking", () => { + // Membership comes from the (cached) member list on this path, so there is + // no enabled/membership round trip to stand up. + const speak = () => + postgres.query.mockResolvedValueOnce([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + + it("tells the rest of the channel when a gate opens", async () => { + speak(); + + await service.setSpeaking(LOBBY_ID, ME, true); + + const events = redis.publish.mock.calls.map(([, payload]) => + JSON.parse(payload as string), + ); + + expect(events).toHaveLength(2); + expect(events.map((event) => event.steamId).sort()).toEqual( + [ME.steam_id, PEER].sort(), + ); + expect(events[0].event).toBe("voice:speaking"); + expect(events[0].data).toEqual({ + channelId: LOBBY_ID, + steamId: ME.steam_id, + speaking: true, + }); + }); + + // Clients refresh the flag while they hold the gate open so it cannot + // expire under them; re-broadcasting every refresh would be pure noise. + it("treats a repeat as a keep-alive rather than a transition", async () => { + speak(); + redis.set.mockResolvedValue(null); + + await service.setSpeaking(LOBBY_ID, ME, true); + + expect(redis.expire).toHaveBeenCalled(); + expect(redis.publish).not.toHaveBeenCalled(); + }); + + it("says nothing when the gate was already closed", async () => { + speak(); + redis.del.mockResolvedValue(0); + + await service.setSpeaking(LOBBY_ID, ME, false); + + expect(redis.publish).not.toHaveBeenCalled(); + }); + + it("refuses anyone who is not in the channel", async () => { + postgres.query.mockResolvedValueOnce([ + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + + await expect(service.setSpeaking(LOBBY_ID, ME, true)).rejects.toThrow( + /not a member/i, + ); + expect(redis.publish).not.toHaveBeenCalled(); + }); + + // Reads the cache instead of the database once it is warm: this is the hot + // path, hit on every open and close of every player's gate. + it("does not query for membership when the list is cached", async () => { + redis.get.mockResolvedValue( + JSON.stringify([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + ]), + ); + + await service.setSpeaking(LOBBY_ID, ME, true); + + expect(postgres.query).not.toHaveBeenCalled(); + expect(redis.publish).toHaveBeenCalledTimes(1); + }); + }); + // Losing MediaMTX should dim the talking indicators, not empty the party list. it("still lists the party when mediamtx cannot be reached", async () => { postgres.query @@ -157,6 +302,7 @@ describe("VoiceService", () => { const participants = await service.participants(LOBBY_ID, ME); expect(participants).toHaveLength(1); + expect(participants[0].connected).toBe(false); expect(participants[0].speaking).toBe(false); }); @@ -244,7 +390,142 @@ describe("VoiceService", () => { const participants = await service.participants(LINEUP_ID, ME); expect(participants.map((p) => p.steamId)).toEqual([ME.steam_id, PEER]); - expect(participants.find((p) => p.steamId === PEER)?.speaking).toBe(true); + expect(participants.find((p) => p.steamId === PEER)?.connected).toBe( + true, + ); + }); + }); + // The publish and leave endpoints cover the polite cases. This is the one + // that covers a browser that simply died. + describe("monitorChannels", () => { + const OTHER = "76561198000000003"; + + const path = (steamId: string) => `voice-${LOBBY_ID}-${steamId}`; + + const roster = () => + postgres.query.mockResolvedValue([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + + // Keyed, so a test cannot pass because the members cache happened to answer + // with the publishing snapshot (or the other way round). + const snapshot = (value: string | null) => + redis.get.mockImplementation((key: string) => + Promise.resolve( + key === `voice:publishing:${LOBBY_ID}` ? value : null, + ), + ); + + const pushed = () => + redis.publish.mock.calls + .map(([, payload]) => JSON.parse(payload as string)) + .filter((event) => event.event === "voice:participants"); + + it("tells the channel when a member stops publishing", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}`); + mediaMtx.listPaths.mockResolvedValue( + new Map([[path(ME.steam_id), { ready: true, bytesReceived: 1 }]]), + ); + + await service.monitorChannels(); + + expect(pushed()).toHaveLength(2); + expect(pushed()[0].data.channelId).toBe(LOBBY_ID); + }); + + it("says nothing while the same people are publishing", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}`); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [path(ME.steam_id), { ready: true, bytesReceived: 1 }], + [path(PEER), { ready: true, bytesReceived: 1 }], + ]), + ); + + await service.monitorChannels(); + + expect(pushed()).toHaveLength(0); + }); + + // Order out of MediaMTX is not guaranteed, and a snapshot that flipped with + // it would announce a change on every other pass. + it("is not confused by the order paths come back in", async () => { + roster(); + snapshot([ME.steam_id, PEER].sort().join(",")); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [path(PEER), { ready: true, bytesReceived: 1 }], + [path(ME.steam_id), { ready: true, bytesReceived: 1 }], + ]), + ); + + await service.monitorChannels(); + + expect(pushed()).toHaveLength(0); + }); + + // A restart must not announce a change to every live channel at once. + it("seeds a channel it has not seen before without announcing", async () => { + roster(); + snapshot(null); + mediaMtx.listPaths.mockResolvedValue( + new Map([[path(ME.steam_id), { ready: true, bytesReceived: 1 }]]), + ); + + await service.monitorChannels(); + + expect(redis.set).toHaveBeenCalledWith( + `voice:publishing:${LOBBY_ID}`, + ME.steam_id, + "EX", + expect.any(Number), + ); + expect(pushed()).toHaveLength(0); + }); + + it("ignores paths that are not voice", async () => { + snapshot(null); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [`camera-${LOBBY_ID}-${OTHER}`, { ready: true, bytesReceived: 1 }], + ["some-stream", { ready: true, bytesReceived: 1 }], + ]), + ); + + await service.monitorChannels(); + + expect(redis.set).not.toHaveBeenCalled(); + expect(pushed()).toHaveLength(0); + }); + + // A path that exists but is not ready has no publisher behind it. + it("does not count a path that is not ready", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}`); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [path(ME.steam_id), { ready: true, bytesReceived: 1 }], + [path(PEER), { ready: false, bytesReceived: 0 }], + ]), + ); + + await service.monitorChannels(); + + expect(pushed()).toHaveLength(2); + }); + + // Emptying every call because we cannot reach MediaMTX would be far worse + // than being a pass late on a real drop. + it("fails open when mediamtx does not answer", async () => { + mediaMtx.listPaths.mockResolvedValue(null); + + await service.monitorChannels(); + + expect(redis.set).not.toHaveBeenCalled(); + expect(pushed()).toHaveLength(0); }); }); }); diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts index 18ccc367..bd73bd49 100644 --- a/src/voice/voice.service.ts +++ b/src/voice/voice.service.ts @@ -1,6 +1,8 @@ import { Injectable, Logger } from "@nestjs/common"; +import { Redis } from "ioredis"; import { PostgresService } from "../postgres/postgres.service"; import { MediaMtxService } from "../mediamtx/mediamtx.service"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; import { SystemSettingName } from "../system/enums/SystemSettingName"; import { User } from "../auth/types/User"; @@ -11,20 +13,57 @@ const UUID_PATTERN = // id belongs to is not something a caller who failed the check should learn. const NOT_A_MEMBER = "not a member of this voice channel"; +// A client that dies mid-sentence never sends its "stopped" event, so the flag +// has to expire on its own. Long enough that a client refreshing it every few +// seconds never flickers, short enough that a crashed tab stops looking live. +const SPEAKING_TTL_SECONDS = 15; + +// Membership is read on every speaking transition, which is far too often for a +// query. Joins and leaves drop the entry, so this only ever ages out a change +// nothing told us about. +const MEMBERS_TTL_SECONDS = 30; + +// The last set of members MediaMTX reported as publishing, per channel. Only +// has to outlive the gap between monitor passes; it is rewritten on every one. +const PUBLISHING_TTL_SECONDS = 120; + +// `voice--`. Split on "-" would be ambiguous -- a uuid is full of +// them -- so the shape is matched whole. +const MEMBER_PATH_PATTERN = + /^voice-([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})-(\d+)$/i; + export type VoiceParticipant = { steamId: string; name: string | null; avatarUrl: string | null; + // In the call: MediaMTX has a live publisher on this member's path. The + // client keeps that up for the whole session -- its gate mutes by gain, not + // by dropping the track -- so this does not flicker with speech. + connected: boolean; + // Actually transmitting right now. Reported by the publisher's own gate, + // which is the only thing that knows: MediaMTX sees a continuous stream + // whether or not anyone is talking into it. speaking: boolean; }; +type VoiceMember = { + steam_id: string; + name: string | null; + avatar_url: string | null; +}; + @Injectable() export class VoiceService { + private readonly redis: Redis; + constructor( private readonly logger: Logger, private readonly postgres: PostgresService, private readonly mediaMtx: MediaMtxService, - ) {} + redisManager: RedisManagerService, + ) { + this.redis = redisManager.getConnection(); + } // Mirrors the camera paths so both features are recognisable in a // `/v3/paths/list` dump and neither can collide with the other. @@ -32,6 +71,25 @@ export class VoiceService { return `voice-${lobbyId}-${steamId}`; } + private static speakingKey(channelId: string, steamId: string) { + return `voice:speaking:${channelId}:${steamId}`; + } + + private static membersKey(channelId: string) { + return `voice:members:${channelId}`; + } + + private static publishingKey(channelId: string) { + return `voice:publishing:${channelId}`; + } + + // The inverse of pathForMember, kept beside it so the two cannot drift. + public static parseMemberPath(path: string) { + const match = MEMBER_PATH_PATTERN.exec(path); + + return match ? { channelId: match[1], steamId: match[2] } : null; + } + // Read straight from the settings table rather than through SystemService, // which would drag its whole module graph (chat, k8s, s3, queues) into this // feature for the sake of one row. On by default — only an explicit "false" @@ -93,11 +151,28 @@ export class VoiceService { public async publish(lobbyId: string, user: User, sdp: string) { await this.assertMember(lobbyId, user); - return this.mediaMtx.proxySdp( + const answer = await this.mediaMtx.proxySdp( VoiceService.pathForMember(lobbyId, user.steam_id), "whip", sdp, ); + + // Somebody joining is a change to the party, and it is the one moment a + // stale membership cache would hide the new arrival from everyone else. + await this.redis.del(VoiceService.membersKey(lobbyId)); + // Deferred: MediaMTX only reports the path as ready once the session is + // actually up, which is after this answer gets back to the publisher. + setTimeout(() => { + void this.pushParticipants(lobbyId).catch((error: unknown) => { + this.logger.warn( + `failed to push voice participants for ${lobbyId}: ${ + (error as Error)?.message + }`, + ); + }); + }, 1000); + + return answer; } public async subscribe( @@ -125,19 +200,38 @@ export class VoiceService { await this.mediaMtx.kickSessions( VoiceService.pathForMember(lobbyId, user.steam_id), ); + + await this.redis.del(VoiceService.speakingKey(lobbyId, user.steam_id)); + await this.pushParticipants(lobbyId); } - // Everyone in the lobby, with a flag for who currently has a live mic, so the - // panel can show the whole party rather than only the people already talking. - public async participants(lobbyId: string, user: User) { - await this.assertMember(lobbyId, user); + // Everyone in the channel: who is in the call, and who is talking right now. + public async participants( + channelId: string, + user: User, + ): Promise> { + await this.assertMember(channelId, user); + + return this.buildParticipants(channelId); + } + + // Membership, cached: this is read on every speaking transition, which is far + // more often than a party changes shape. + private async members(channelId: string): Promise> { + const cached = await this.redis.get(VoiceService.membersKey(channelId)); + + if (cached) { + try { + return JSON.parse(cached) as Array; + } catch { + // Fall through and re-read; a corrupt cache is not worth an error. + } + } // Union rather than a branch on channel kind: a given id only ever matches // one of the two tables, so this stays a single round trip and the caller // never has to say which sort of channel it is asking about. - const members = await this.postgres.query< - Array<{ steam_id: string; name: string | null; avatar_url: string | null }> - >( + const members = await this.postgres.query>( `SELECT steam_id::text AS steam_id, name, avatar_url FROM ( SELECT lp.steam_id, p.name, p.avatar_url @@ -153,24 +247,192 @@ export class VoiceService { WHERE mlp.match_lineup_id = $1 ) members ORDER BY name`, - [lobbyId], + [channelId], ); - const paths = await this.mediaMtx.listPaths(); + await this.redis.set( + VoiceService.membersKey(channelId), + JSON.stringify(members), + "EX", + MEMBERS_TTL_SECONDS, + ); - return members.map((member) => { + return members; + } + + private async buildParticipants( + channelId: string, + // Passed in by the monitor, which has just listed every path on the box + // for all channels at once. + known?: Map | null, + ): Promise> { + const members = await this.members(channelId); + + if (members.length === 0) { + return []; + } + + const paths = known ?? (await this.mediaMtx.listPaths()); + + const speaking = await this.redis.mget( + members.map((member) => + VoiceService.speakingKey(channelId, member.steam_id), + ), + ); + + return members.map((member, index) => { const path = paths?.get( - VoiceService.pathForMember(lobbyId, member.steam_id), + VoiceService.pathForMember(channelId, member.steam_id), ); + const connected = path?.ready === true; + return { steamId: member.steam_id, name: member.name, avatarUrl: member.avatar_url, - // Unknown when MediaMTX did not answer: better to show nobody talking - // for one poll than to drop the whole party out of the list. - speaking: path?.ready === true, + // Unknown when MediaMTX did not answer: better to show nobody in the + // call for one read than to drop the whole party out of the list. + connected, + // A flag left behind by a client that dropped would keep someone lit up + // forever, so it only counts while they are still publishing. + speaking: connected && speaking[index] !== null, } satisfies VoiceParticipant; }); } + + // Voice activity, reported by the publisher's own gate -- MediaMTX sees a + // continuous stream whether or not anyone is talking into it, so this is the + // only place the truth exists. + public async setSpeaking(channelId: string, user: User, speaking: boolean) { + if (!UUID_PATTERN.test(channelId)) { + throw new Error(NOT_A_MEMBER); + } + + // Checked against the cached membership rather than through assertMember: + // this runs on every gate transition, and two queries per person per + // sentence is not a price a party of five should pay to light up an icon. + // It is the same list assertMember reads, so it authorizes the same people. + const members = await this.members(channelId); + + if (!members.some((member) => member.steam_id === user.steam_id)) { + throw new Error(NOT_A_MEMBER); + } + + const key = VoiceService.speakingKey(channelId, user.steam_id); + + // Repeats are keep-alives, not transitions: clients refresh while they hold + // the gate open, and re-broadcasting each refresh would be pure noise. + if (speaking) { + const claimed = await this.redis.set( + key, + "1", + "EX", + SPEAKING_TTL_SECONDS, + "NX", + ); + + if (claimed !== "OK") { + await this.redis.expire(key, SPEAKING_TTL_SECONDS); + return; + } + } else if ((await this.redis.del(key)) === 0) { + return; + } + + await this.push( + channelId, + "voice:speaking", + { channelId, steamId: user.steam_id, speaking }, + members, + ); + } + + // Sent whenever the shape of the call changes, so nobody has to poll to find + // out that somebody joined or dropped. + public async pushParticipants( + channelId: string, + known?: Map | null, + ) { + await this.push(channelId, "voice:participants", { + channelId, + participants: await this.buildParticipants(channelId, known), + }); + } + + // Nobody tells us when a browser dies. The publish and leave endpoints cover + // the polite cases; this covers the rest -- a closed laptop, a dropped uplink, + // a killed tab -- by watching MediaMTX itself, the same way camera health is + // watched. One list call covers every channel on the box. + // + // A channel that empties completely is not reported: with no publisher left + // there is nobody still in the call to tell, and the member who dropped is + // the one who would have been told. + public async monitorChannels() { + const paths = await this.mediaMtx.listPaths(); + + // Fail open, like the camera monitor: an unreachable MediaMTX cannot be + // told apart from an empty one, and emptying every call on our own outage + // is far worse than being a pass late on a drop. + if (!paths) { + this.logger.warn("[voice] skipping monitor pass: mediamtx did not answer"); + return; + } + + const publishing = new Map>(); + + for (const [path, state] of paths) { + if (!state?.ready) { + continue; + } + + const member = VoiceService.parseMemberPath(path); + + if (!member) { + continue; + } + + const channel = publishing.get(member.channelId) ?? []; + channel.push(member.steamId); + publishing.set(member.channelId, channel); + } + + for (const [channelId, steamIds] of publishing) { + const snapshot = steamIds.sort().join(","); + const key = VoiceService.publishingKey(channelId); + const previous = await this.redis.get(key); + + await this.redis.set(key, snapshot, "EX", PUBLISHING_TTL_SECONDS); + + // No previous snapshot means this pod has never seen the channel -- a + // restart, or the channel just started. Seed it rather than announcing a + // change nobody made. + if (previous === null || previous === snapshot) { + continue; + } + + await this.pushParticipants(channelId, paths); + } + } + + // Addressed to the channel's members rather than broadcast: who is in a voice + // channel, and who is talking in it, is not something every connected client + // is entitled to know. + private async push( + channelId: string, + event: string, + data: unknown, + // Passed in by callers that have just read it, so the hot path costs one + // lookup rather than two. + known?: Array, + ) { + const members = known ?? (await this.members(channelId)); + + for (const member of members) { + await this.redis.publish( + "send-message-to-steam-id", + JSON.stringify({ steamId: member.steam_id, event, data }), + ); + } + } } From 7d6fe6768a26300370367450f7ea4429572b8695 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 13:27:25 -0400 Subject: [PATCH 14/17] wip --- generated/schema.graphql | 443 +- generated/schema.ts | 586 +- generated/types.ts | 43171 ++++++++-------- hasura/metadata/actions.graphql | 1 + .../tables/public_match_camera_tokens.yaml | 20 - .../databases/default/tables/tables.yaml | 1 - .../down.sql | 5 + .../1876000000800_match_camera_options/up.sql | 7 + .../down.sql | 5 - .../1876000000800_match_camera_tokens/up.sql | 22 - .../1877000000000_push_subscriptions/down.sql | 1 - .../1877000000000_push_subscriptions/up.sql | 20 - .../down.sql | 10 + .../up.sql | 72 + .../down.sql | 1 - .../up.sql | 21 - .../down.sql | 2 - .../1877000000200_notification_indexes/up.sql | 10 - .../down.sql | 2 - .../up.sql | 21 - .../1877000000600_player_quiet_hours/down.sql | 4 - .../1877000000600_player_quiet_hours/up.sql | 7 - src/draft-games/draft-game.service.ts | 9 + src/draft-games/draft-games.controller.ts | 2 + src/hasura/hasura.service.ts | 32 +- .../camera/camera-monitor.service.spec.ts | 51 + src/matches/camera/camera-monitor.service.ts | 55 +- src/matches/camera/camera.controller.ts | 48 +- src/matches/camera/camera.service.spec.ts | 125 + src/matches/camera/camera.service.ts | 276 +- src/matches/matches.controller.ts | 4 - src/mediamtx/mediamtx.controller.ts | 32 + src/mediamtx/mediamtx.module.ts | 2 + src/mediamtx/mediamtx.service.spec.ts | 129 + src/mediamtx/mediamtx.service.ts | 123 + src/system/enums/SystemSettingName.ts | 5 + src/voice/voice.controller.ts | 55 + src/voice/voice.service.spec.ts | 448 + src/voice/voice.service.ts | 357 +- test/camera.spec.ts | 174 +- 40 files changed, 23045 insertions(+), 23314 deletions(-) delete mode 100644 hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml create mode 100644 hasura/migrations/default/1876000000800_match_camera_options/down.sql create mode 100644 hasura/migrations/default/1876000000800_match_camera_options/up.sql delete mode 100644 hasura/migrations/default/1876000000800_match_camera_tokens/down.sql delete mode 100644 hasura/migrations/default/1876000000800_match_camera_tokens/up.sql delete mode 100644 hasura/migrations/default/1877000000000_push_subscriptions/down.sql delete mode 100644 hasura/migrations/default/1877000000000_push_subscriptions/up.sql create mode 100644 hasura/migrations/default/1877000000000_web_push_notifications/down.sql create mode 100644 hasura/migrations/default/1877000000000_web_push_notifications/up.sql delete mode 100644 hasura/migrations/default/1877000000100_notification_preferences/down.sql delete mode 100644 hasura/migrations/default/1877000000100_notification_preferences/up.sql delete mode 100644 hasura/migrations/default/1877000000200_notification_indexes/down.sql delete mode 100644 hasura/migrations/default/1877000000200_notification_indexes/up.sql delete mode 100644 hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql delete mode 100644 hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql delete mode 100644 hasura/migrations/default/1877000000600_player_quiet_hours/down.sql delete mode 100644 hasura/migrations/default/1877000000600_player_quiet_hours/up.sql create mode 100644 src/mediamtx/mediamtx.controller.ts create mode 100644 src/mediamtx/mediamtx.service.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index 854b5613..eba1b76c 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -27150,274 +27150,6 @@ input maps_updates { where: maps_bool_exp! } -""" -columns and relationships of "match_camera_tokens" -""" -type match_camera_tokens { - created_at: timestamptz! - id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! - steam_id: bigint! - token: uuid! -} - -""" -aggregated selection of "match_camera_tokens" -""" -type match_camera_tokens_aggregate { - aggregate: match_camera_tokens_aggregate_fields - nodes: [match_camera_tokens!]! -} - -""" -aggregate fields of "match_camera_tokens" -""" -type match_camera_tokens_aggregate_fields { - avg: match_camera_tokens_avg_fields - count(columns: [match_camera_tokens_select_column!], distinct: Boolean): Int! - max: match_camera_tokens_max_fields - min: match_camera_tokens_min_fields - stddev: match_camera_tokens_stddev_fields - stddev_pop: match_camera_tokens_stddev_pop_fields - stddev_samp: match_camera_tokens_stddev_samp_fields - sum: match_camera_tokens_sum_fields - var_pop: match_camera_tokens_var_pop_fields - var_samp: match_camera_tokens_var_samp_fields - variance: match_camera_tokens_variance_fields -} - -"""aggregate avg on columns""" -type match_camera_tokens_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "match_camera_tokens". All fields are combined with a logical 'AND'. -""" -input match_camera_tokens_bool_exp { - _and: [match_camera_tokens_bool_exp!] - _not: match_camera_tokens_bool_exp - _or: [match_camera_tokens_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - steam_id: bigint_comparison_exp - token: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "match_camera_tokens" -""" -enum match_camera_tokens_constraint { - """ - unique or primary key constraint on columns "steam_id", "match_id" - """ - match_camera_tokens_match_id_steam_id_key - - """ - unique or primary key constraint on columns "id" - """ - match_camera_tokens_pkey - - """ - unique or primary key constraint on columns "token" - """ - match_camera_tokens_token_key -} - -""" -input type for incrementing numeric columns in table "match_camera_tokens" -""" -input match_camera_tokens_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "match_camera_tokens" -""" -input match_camera_tokens_insert_input { - created_at: timestamptz - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - steam_id: bigint - token: uuid -} - -"""aggregate max on columns""" -type match_camera_tokens_max_fields { - created_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint - token: uuid -} - -"""aggregate min on columns""" -type match_camera_tokens_min_fields { - created_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint - token: uuid -} - -""" -response of any mutation on the table "match_camera_tokens" -""" -type match_camera_tokens_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_camera_tokens!]! -} - -""" -on_conflict condition type for table "match_camera_tokens" -""" -input match_camera_tokens_on_conflict { - constraint: match_camera_tokens_constraint! - update_columns: [match_camera_tokens_update_column!]! = [] - where: match_camera_tokens_bool_exp -} - -"""Ordering options when selecting data from "match_camera_tokens".""" -input match_camera_tokens_order_by { - created_at: order_by - id: order_by - match: matches_order_by - match_id: order_by - steam_id: order_by - token: order_by -} - -"""primary key columns input for table: match_camera_tokens""" -input match_camera_tokens_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_camera_tokens" -""" -enum match_camera_tokens_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - steam_id - - """column name""" - token -} - -""" -input type for updating data in table "match_camera_tokens" -""" -input match_camera_tokens_set_input { - created_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint - token: uuid -} - -"""aggregate stddev on columns""" -type match_camera_tokens_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type match_camera_tokens_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type match_camera_tokens_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "match_camera_tokens" -""" -input match_camera_tokens_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_camera_tokens_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_camera_tokens_stream_cursor_value_input { - created_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint - token: uuid -} - -"""aggregate sum on columns""" -type match_camera_tokens_sum_fields { - steam_id: bigint -} - -""" -update columns of table "match_camera_tokens" -""" -enum match_camera_tokens_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - steam_id - - """column name""" - token -} - -input match_camera_tokens_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_camera_tokens_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_camera_tokens_set_input - - """filter the rows which have to be updated""" - where: match_camera_tokens_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_camera_tokens_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type match_camera_tokens_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type match_camera_tokens_variance_fields { - steam_id: Float -} - """ columns and relationships of "match_clips" """ @@ -36925,7 +36657,7 @@ type mutation_root { acceptInvite(invite_id: uuid!, type: String!): SuccessOutput """addDraftPlayer""" - addDraftPlayer(draftGameId: uuid!, steamId: String!): SuccessOutput + addDraftPlayer(draftGameId: uuid!, lineup: Int, steamId: String!): SuccessOutput """Add a friends-role presence bot account to the pool""" addSteamPresenceBotAccount(bot_secret: String!, friend_capacity: Int, username: String!): SuccessOutput @@ -38173,19 +37905,6 @@ type mutation_root { """ delete_maps_by_pk(id: uuid!): maps - """ - delete data from the table: "match_camera_tokens" - """ - delete_match_camera_tokens( - """filter the rows which have to be deleted""" - where: match_camera_tokens_bool_exp! - ): match_camera_tokens_mutation_response - - """ - delete single row from the table: "match_camera_tokens" - """ - delete_match_camera_tokens_by_pk(id: uuid!): match_camera_tokens - """ delete data from the table: "match_clips" """ @@ -40981,28 +40700,6 @@ type mutation_root { on_conflict: maps_on_conflict ): maps - """ - insert data into the table: "match_camera_tokens" - """ - insert_match_camera_tokens( - """the rows to be inserted""" - objects: [match_camera_tokens_insert_input!]! - - """upsert condition""" - on_conflict: match_camera_tokens_on_conflict - ): match_camera_tokens_mutation_response - - """ - insert a single row into the table: "match_camera_tokens" - """ - insert_match_camera_tokens_one( - """the row to be inserted""" - object: match_camera_tokens_insert_input! - - """upsert condition""" - on_conflict: match_camera_tokens_on_conflict - ): match_camera_tokens - """ insert data into the table: "match_clips" """ @@ -45688,40 +45385,6 @@ type mutation_root { updates: [maps_updates!]! ): [maps_mutation_response] - """ - update data of the table: "match_camera_tokens" - """ - update_match_camera_tokens( - """increments the numeric columns with given value of the filtered values""" - _inc: match_camera_tokens_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_camera_tokens_set_input - - """filter the rows which have to be updated""" - where: match_camera_tokens_bool_exp! - ): match_camera_tokens_mutation_response - - """ - update single row of the table: "match_camera_tokens" - """ - update_match_camera_tokens_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_camera_tokens_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_camera_tokens_set_input - pk_columns: match_camera_tokens_pk_columns_input! - ): match_camera_tokens - - """ - update multiples rows of table: "match_camera_tokens" - """ - update_match_camera_tokens_many( - """updates to execute, in order""" - updates: [match_camera_tokens_updates!]! - ): [match_camera_tokens_mutation_response] - """ update data of the table: "match_clips" """ @@ -74548,51 +74211,6 @@ type query_root { """fetch data from the table: "maps" using primary key columns""" maps_by_pk(id: uuid!): maps - """ - fetch data from the table: "match_camera_tokens" - """ - match_camera_tokens( - """distinct select on columns""" - distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] - - """filter the rows returned""" - where: match_camera_tokens_bool_exp - ): [match_camera_tokens!]! - - """ - fetch aggregated fields from the table: "match_camera_tokens" - """ - match_camera_tokens_aggregate( - """distinct select on columns""" - distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] - - """filter the rows returned""" - where: match_camera_tokens_bool_exp - ): match_camera_tokens_aggregate! - - """ - fetch data from the table: "match_camera_tokens" using primary key columns - """ - match_camera_tokens_by_pk(id: uuid!): match_camera_tokens - """An array relationship""" match_clips( """distinct select on columns""" @@ -86670,65 +86288,6 @@ type subscription_root { where: maps_bool_exp ): [maps!]! - """ - fetch data from the table: "match_camera_tokens" - """ - match_camera_tokens( - """distinct select on columns""" - distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] - - """filter the rows returned""" - where: match_camera_tokens_bool_exp - ): [match_camera_tokens!]! - - """ - fetch aggregated fields from the table: "match_camera_tokens" - """ - match_camera_tokens_aggregate( - """distinct select on columns""" - distinct_on: [match_camera_tokens_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: [match_camera_tokens_order_by!] - - """filter the rows returned""" - where: match_camera_tokens_bool_exp - ): match_camera_tokens_aggregate! - - """ - fetch data from the table: "match_camera_tokens" using primary key columns - """ - match_camera_tokens_by_pk(id: uuid!): match_camera_tokens - - """ - fetch data from the table in a streaming manner: "match_camera_tokens" - """ - match_camera_tokens_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_camera_tokens_stream_cursor_input]! - - """filter the rows returned""" - where: match_camera_tokens_bool_exp - ): [match_camera_tokens!]! - """An array relationship""" match_clips( """distinct select on columns""" diff --git a/generated/schema.ts b/generated/schema.ts index 7875b2bc..f7f00675 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -9559,144 +9559,6 @@ export type maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns export type maps_update_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' -/** columns and relationships of "match_camera_tokens" */ -export interface match_camera_tokens { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - steam_id: Scalars['bigint'] - token: Scalars['uuid'] - __typename: 'match_camera_tokens' -} - - -/** aggregated selection of "match_camera_tokens" */ -export interface match_camera_tokens_aggregate { - aggregate: (match_camera_tokens_aggregate_fields | null) - nodes: match_camera_tokens[] - __typename: 'match_camera_tokens_aggregate' -} - - -/** aggregate fields of "match_camera_tokens" */ -export interface match_camera_tokens_aggregate_fields { - avg: (match_camera_tokens_avg_fields | null) - count: Scalars['Int'] - max: (match_camera_tokens_max_fields | null) - min: (match_camera_tokens_min_fields | null) - stddev: (match_camera_tokens_stddev_fields | null) - stddev_pop: (match_camera_tokens_stddev_pop_fields | null) - stddev_samp: (match_camera_tokens_stddev_samp_fields | null) - sum: (match_camera_tokens_sum_fields | null) - var_pop: (match_camera_tokens_var_pop_fields | null) - var_samp: (match_camera_tokens_var_samp_fields | null) - variance: (match_camera_tokens_variance_fields | null) - __typename: 'match_camera_tokens_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface match_camera_tokens_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_avg_fields' -} - - -/** unique or primary key constraints on table "match_camera_tokens" */ -export type match_camera_tokens_constraint = 'match_camera_tokens_match_id_steam_id_key' | 'match_camera_tokens_pkey' | 'match_camera_tokens_token_key' - - -/** aggregate max on columns */ -export interface match_camera_tokens_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - token: (Scalars['uuid'] | null) - __typename: 'match_camera_tokens_max_fields' -} - - -/** aggregate min on columns */ -export interface match_camera_tokens_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - token: (Scalars['uuid'] | null) - __typename: 'match_camera_tokens_min_fields' -} - - -/** response of any mutation on the table "match_camera_tokens" */ -export interface match_camera_tokens_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_camera_tokens[] - __typename: 'match_camera_tokens_mutation_response' -} - - -/** select columns of table "match_camera_tokens" */ -export type match_camera_tokens_select_column = 'created_at' | 'id' | 'match_id' | 'steam_id' | 'token' - - -/** aggregate stddev on columns */ -export interface match_camera_tokens_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_camera_tokens_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_camera_tokens_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_camera_tokens_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'match_camera_tokens_sum_fields' -} - - -/** update columns of table "match_camera_tokens" */ -export type match_camera_tokens_update_column = 'created_at' | 'id' | 'match_id' | 'steam_id' | 'token' - - -/** aggregate var_pop on columns */ -export interface match_camera_tokens_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_camera_tokens_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_camera_tokens_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_camera_tokens_variance_fields' -} - - /** columns and relationships of "match_clips" */ export interface match_clips { created_at: Scalars['timestamptz'] @@ -12765,10 +12627,6 @@ export interface mutation_root { delete_maps: (maps_mutation_response | null) /** delete single row from the table: "maps" */ delete_maps_by_pk: (maps | null) - /** delete data from the table: "match_camera_tokens" */ - delete_match_camera_tokens: (match_camera_tokens_mutation_response | null) - /** delete single row from the table: "match_camera_tokens" */ - delete_match_camera_tokens_by_pk: (match_camera_tokens | null) /** delete data from the table: "match_clips" */ delete_match_clips: (match_clips_mutation_response | null) /** delete single row from the table: "match_clips" */ @@ -13403,10 +13261,6 @@ export interface mutation_root { insert_maps: (maps_mutation_response | null) /** insert a single row into the table: "maps" */ insert_maps_one: (maps | null) - /** insert data into the table: "match_camera_tokens" */ - insert_match_camera_tokens: (match_camera_tokens_mutation_response | null) - /** insert a single row into the table: "match_camera_tokens" */ - insert_match_camera_tokens_one: (match_camera_tokens | null) /** insert data into the table: "match_clips" */ insert_match_clips: (match_clips_mutation_response | null) /** insert a single row into the table: "match_clips" */ @@ -14340,12 +14194,6 @@ export interface mutation_root { update_maps_by_pk: (maps | null) /** update multiples rows of table: "maps" */ update_maps_many: ((maps_mutation_response | null)[] | null) - /** update data of the table: "match_camera_tokens" */ - update_match_camera_tokens: (match_camera_tokens_mutation_response | null) - /** update single row of the table: "match_camera_tokens" */ - update_match_camera_tokens_by_pk: (match_camera_tokens | null) - /** update multiples rows of table: "match_camera_tokens" */ - update_match_camera_tokens_many: ((match_camera_tokens_mutation_response | null)[] | null) /** update data of the table: "match_clips" */ update_match_clips: (match_clips_mutation_response | null) /** update single row of the table: "match_clips" */ @@ -23772,12 +23620,6 @@ export interface query_root { maps_aggregate: maps_aggregate /** fetch data from the table: "maps" using primary key columns */ maps_by_pk: (maps | null) - /** fetch data from the table: "match_camera_tokens" */ - match_camera_tokens: match_camera_tokens[] - /** fetch aggregated fields from the table: "match_camera_tokens" */ - match_camera_tokens_aggregate: match_camera_tokens_aggregate - /** fetch data from the table: "match_camera_tokens" using primary key columns */ - match_camera_tokens_by_pk: (match_camera_tokens | null) /** An array relationship */ match_clips: match_clips[] /** An aggregate relationship */ @@ -25919,14 +25761,6 @@ export interface subscription_root { maps_by_pk: (maps | null) /** fetch data from the table in a streaming manner: "maps" */ maps_stream: maps[] - /** fetch data from the table: "match_camera_tokens" */ - match_camera_tokens: match_camera_tokens[] - /** fetch aggregated fields from the table: "match_camera_tokens" */ - match_camera_tokens_aggregate: match_camera_tokens_aggregate - /** fetch data from the table: "match_camera_tokens" using primary key columns */ - match_camera_tokens_by_pk: (match_camera_tokens | null) - /** fetch data from the table in a streaming manner: "match_camera_tokens" */ - match_camera_tokens_stream: match_camera_tokens[] /** An array relationship */ match_clips: match_clips[] /** An aggregate relationship */ @@ -52039,194 +51873,6 @@ _set?: (maps_set_input | null), where: maps_bool_exp} -/** columns and relationships of "match_camera_tokens" */ -export interface match_camera_tokensGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - steam_id?: boolean | number - token?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_camera_tokens" */ -export interface match_camera_tokens_aggregateGenqlSelection{ - aggregate?: match_camera_tokens_aggregate_fieldsGenqlSelection - nodes?: match_camera_tokensGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "match_camera_tokens" */ -export interface match_camera_tokens_aggregate_fieldsGenqlSelection{ - avg?: match_camera_tokens_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_camera_tokens_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_camera_tokens_max_fieldsGenqlSelection - min?: match_camera_tokens_min_fieldsGenqlSelection - stddev?: match_camera_tokens_stddev_fieldsGenqlSelection - stddev_pop?: match_camera_tokens_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_camera_tokens_stddev_samp_fieldsGenqlSelection - sum?: match_camera_tokens_sum_fieldsGenqlSelection - var_pop?: match_camera_tokens_var_pop_fieldsGenqlSelection - var_samp?: match_camera_tokens_var_samp_fieldsGenqlSelection - variance?: match_camera_tokens_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface match_camera_tokens_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "match_camera_tokens". All fields are combined with a logical 'AND'. */ -export interface match_camera_tokens_bool_exp {_and?: (match_camera_tokens_bool_exp[] | null),_not?: (match_camera_tokens_bool_exp | null),_or?: (match_camera_tokens_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),token?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_camera_tokens" */ -export interface match_camera_tokens_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "match_camera_tokens" */ -export interface match_camera_tokens_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface match_camera_tokens_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - match_id?: boolean | number - steam_id?: boolean | number - token?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface match_camera_tokens_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - match_id?: boolean | number - steam_id?: boolean | number - token?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "match_camera_tokens" */ -export interface match_camera_tokens_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_camera_tokensGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_camera_tokens" */ -export interface match_camera_tokens_on_conflict {constraint: match_camera_tokens_constraint,update_columns?: match_camera_tokens_update_column[],where?: (match_camera_tokens_bool_exp | null)} - - -/** Ordering options when selecting data from "match_camera_tokens". */ -export interface match_camera_tokens_order_by {created_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),steam_id?: (order_by | null),token?: (order_by | null)} - - -/** primary key columns input for table: match_camera_tokens */ -export interface match_camera_tokens_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_camera_tokens" */ -export interface match_camera_tokens_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface match_camera_tokens_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface match_camera_tokens_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface match_camera_tokens_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "match_camera_tokens" */ -export interface match_camera_tokens_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_camera_tokens_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_camera_tokens_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),token?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface match_camera_tokens_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_camera_tokens_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_camera_tokens_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_camera_tokens_set_input | null), -/** filter the rows which have to be updated */ -where: match_camera_tokens_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_camera_tokens_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface match_camera_tokens_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface match_camera_tokens_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - /** columns and relationships of "match_clips" */ export interface match_clipsGenqlSelection{ created_at?: boolean | number @@ -56937,7 +56583,7 @@ export interface mutation_rootGenqlSelection{ /** accept team invite */ acceptInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) /** addDraftPlayer */ - addDraftPlayer?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], steamId: Scalars['String']} }) + addDraftPlayer?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], lineup?: (Scalars['Int'] | null), steamId: Scalars['String']} }) /** Add a friends-role presence bot account to the pool */ addSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {bot_secret: Scalars['String'], friend_capacity?: (Scalars['Int'] | null), username: Scalars['String']} }) approveNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) @@ -57529,12 +57175,6 @@ export interface mutation_rootGenqlSelection{ where: maps_bool_exp} }) /** delete single row from the table: "maps" */ delete_maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_camera_tokens" */ - delete_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_camera_tokens_bool_exp} }) - /** delete single row from the table: "match_camera_tokens" */ - delete_match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "match_clips" */ delete_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -58981,18 +58621,6 @@ export interface mutation_rootGenqlSelection{ object: maps_insert_input, /** upsert condition */ on_conflict?: (maps_on_conflict | null)} }) - /** insert data into the table: "match_camera_tokens" */ - insert_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_camera_tokens_insert_input[], - /** upsert condition */ - on_conflict?: (match_camera_tokens_on_conflict | null)} }) - /** insert a single row into the table: "match_camera_tokens" */ - insert_match_camera_tokens_one?: (match_camera_tokensGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_camera_tokens_insert_input, - /** upsert condition */ - on_conflict?: (match_camera_tokens_on_conflict | null)} }) /** insert data into the table: "match_clips" */ insert_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -61466,24 +61094,6 @@ export interface mutation_rootGenqlSelection{ update_maps_many?: (maps_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: maps_updates[]} }) - /** update data of the table: "match_camera_tokens" */ - update_match_camera_tokens?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_camera_tokens_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_camera_tokens_set_input | null), - /** filter the rows which have to be updated */ - where: match_camera_tokens_bool_exp} }) - /** update single row of the table: "match_camera_tokens" */ - update_match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_camera_tokens_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_camera_tokens_set_input | null), pk_columns: match_camera_tokens_pk_columns_input} }) - /** update multiples rows of table: "match_camera_tokens" */ - update_match_camera_tokens_many?: (match_camera_tokens_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_camera_tokens_updates[]} }) /** update data of the table: "match_clips" */ update_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -77174,32 +76784,6 @@ export interface query_rootGenqlSelection{ where?: (maps_bool_exp | null)} }) /** fetch data from the table: "maps" using primary key columns */ maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_camera_tokens" */ - match_camera_tokens?: (match_camera_tokensGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), - /** filter the rows returned */ - where?: (match_camera_tokens_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_camera_tokens" */ - match_camera_tokens_aggregate?: (match_camera_tokens_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), - /** filter the rows returned */ - where?: (match_camera_tokens_bool_exp | null)} }) - /** fetch data from the table: "match_camera_tokens" using primary key columns */ - match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ match_clips?: (match_clipsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -84250,40 +83834,6 @@ export interface subscription_rootGenqlSelection{ cursor: (maps_stream_cursor_input | null)[], /** filter the rows returned */ where?: (maps_bool_exp | null)} }) - /** fetch data from the table: "match_camera_tokens" */ - match_camera_tokens?: (match_camera_tokensGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), - /** filter the rows returned */ - where?: (match_camera_tokens_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_camera_tokens" */ - match_camera_tokens_aggregate?: (match_camera_tokens_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_camera_tokens_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?: (match_camera_tokens_order_by[] | null), - /** filter the rows returned */ - where?: (match_camera_tokens_bool_exp | null)} }) - /** fetch data from the table: "match_camera_tokens" using primary key columns */ - match_camera_tokens_by_pk?: (match_camera_tokensGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_camera_tokens" */ - match_camera_tokens_stream?: (match_camera_tokensGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_camera_tokens_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_camera_tokens_bool_exp | null)} }) /** An array relationship */ match_clips?: (match_clipsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -108281,118 +107831,6 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const match_camera_tokens_possibleTypes: string[] = ['match_camera_tokens'] - export const ismatch_camera_tokens = (obj?: { __typename?: any } | null): obj is match_camera_tokens => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens"') - return match_camera_tokens_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_aggregate_possibleTypes: string[] = ['match_camera_tokens_aggregate'] - export const ismatch_camera_tokens_aggregate = (obj?: { __typename?: any } | null): obj is match_camera_tokens_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_aggregate"') - return match_camera_tokens_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_aggregate_fields_possibleTypes: string[] = ['match_camera_tokens_aggregate_fields'] - export const ismatch_camera_tokens_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_aggregate_fields"') - return match_camera_tokens_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_avg_fields_possibleTypes: string[] = ['match_camera_tokens_avg_fields'] - export const ismatch_camera_tokens_avg_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_avg_fields"') - return match_camera_tokens_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_max_fields_possibleTypes: string[] = ['match_camera_tokens_max_fields'] - export const ismatch_camera_tokens_max_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_max_fields"') - return match_camera_tokens_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_min_fields_possibleTypes: string[] = ['match_camera_tokens_min_fields'] - export const ismatch_camera_tokens_min_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_min_fields"') - return match_camera_tokens_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_mutation_response_possibleTypes: string[] = ['match_camera_tokens_mutation_response'] - export const ismatch_camera_tokens_mutation_response = (obj?: { __typename?: any } | null): obj is match_camera_tokens_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_mutation_response"') - return match_camera_tokens_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_stddev_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_fields'] - export const ismatch_camera_tokens_stddev_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_fields"') - return match_camera_tokens_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_stddev_pop_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_pop_fields'] - export const ismatch_camera_tokens_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_pop_fields"') - return match_camera_tokens_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_stddev_samp_fields_possibleTypes: string[] = ['match_camera_tokens_stddev_samp_fields'] - export const ismatch_camera_tokens_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_stddev_samp_fields"') - return match_camera_tokens_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_sum_fields_possibleTypes: string[] = ['match_camera_tokens_sum_fields'] - export const ismatch_camera_tokens_sum_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_sum_fields"') - return match_camera_tokens_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_var_pop_fields_possibleTypes: string[] = ['match_camera_tokens_var_pop_fields'] - export const ismatch_camera_tokens_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_var_pop_fields"') - return match_camera_tokens_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_var_samp_fields_possibleTypes: string[] = ['match_camera_tokens_var_samp_fields'] - export const ismatch_camera_tokens_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_var_samp_fields"') - return match_camera_tokens_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_camera_tokens_variance_fields_possibleTypes: string[] = ['match_camera_tokens_variance_fields'] - export const ismatch_camera_tokens_variance_fields = (obj?: { __typename?: any } | null): obj is match_camera_tokens_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_camera_tokens_variance_fields"') - return match_camera_tokens_variance_fields_possibleTypes.includes(obj.__typename) - } - - - const match_clips_possibleTypes: string[] = ['match_clips'] export const ismatch_clips = (obj?: { __typename?: any } | null): obj is match_clips => { if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips"') @@ -121880,28 +121318,6 @@ export const enumMapsUpdateColumn = { workshop_map_id: 'workshop_map_id' as const } -export const enumMatchCameraTokensConstraint = { - match_camera_tokens_match_id_steam_id_key: 'match_camera_tokens_match_id_steam_id_key' as const, - match_camera_tokens_pkey: 'match_camera_tokens_pkey' as const, - match_camera_tokens_token_key: 'match_camera_tokens_token_key' as const -} - -export const enumMatchCameraTokensSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - steam_id: 'steam_id' as const, - token: 'token' as const -} - -export const enumMatchCameraTokensUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - steam_id: 'steam_id' as const, - token: 'token' as const -} - export const enumMatchClipsConstraint = { match_clips_pkey: 'match_clips_pkey' as const } diff --git a/generated/types.ts b/generated/types.ts index 141fa4a2..608dc470 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -318,367 +318,364 @@ export default { 2328, 2329, 2333, - 2340, - 2349, + 2345, 2357, - 2372, - 2384, - 2396, + 2369, + 2388, + 2403, 2415, - 2430, - 2442, - 2462, - 2473, - 2474, - 2475, - 2487, - 2505, - 2517, - 2529, - 2550, - 2566, - 2567, - 2568, - 2580, - 2598, - 2609, - 2621, - 2639, - 2649, - 2650, - 2651, - 2655, - 2667, - 2679, - 2691, - 2704, - 2714, + 2435, + 2446, + 2447, + 2448, + 2460, + 2478, + 2490, + 2502, + 2523, + 2539, + 2540, + 2541, + 2553, + 2571, + 2582, + 2594, + 2612, + 2622, + 2623, + 2624, + 2628, + 2640, + 2652, + 2664, + 2677, + 2687, + 2695, + 2710, + 2720, + 2721, 2722, - 2737, - 2747, - 2748, - 2749, - 2753, - 2768, - 2783, - 2784, - 2785, - 2797, - 2809, - 2817, - 2821, - 2833, - 2845, - 2857, - 2869, - 2877, + 2726, + 2741, + 2756, + 2757, + 2758, + 2770, + 2782, + 2790, + 2794, + 2806, + 2818, + 2830, + 2842, + 2850, + 2854, 2881, - 2908, - 2909, - 2910, + 2882, + 2883, + 2907, + 2916, + 2924, 2934, 2943, 2951, - 2961, - 2970, - 2978, - 2996, - 3011, - 3012, - 3013, - 3025, - 3033, - 3035, - 3046, - 3057, - 3069, - 3082, + 2969, + 2984, + 2985, + 2986, + 2998, + 3006, + 3008, + 3019, + 3030, + 3042, + 3055, + 3065, + 3073, + 3083, 3092, 3100, - 3110, - 3119, - 3127, - 3142, - 3153, - 3165, - 3185, - 3196, - 3197, - 3198, - 3210, - 3226, - 3246, - 3257, - 3269, - 3282, - 3291, - 3299, - 3314, - 3325, - 3337, - 3357, - 3368, - 3369, - 3370, - 3382, - 3412, - 3423, - 3435, - 3443, - 3454, - 3455, - 3456, - 3468, - 3487, - 3509, - 3520, - 3532, - 3548, + 3115, + 3126, + 3138, + 3158, + 3169, + 3170, + 3171, + 3183, + 3199, + 3219, + 3230, + 3242, + 3255, + 3264, + 3272, + 3287, + 3298, + 3310, + 3330, + 3341, + 3342, + 3343, + 3355, + 3385, + 3396, + 3408, + 3416, + 3427, + 3428, + 3429, + 3441, + 3460, + 3482, + 3493, + 3505, + 3521, + 3547, 3574, - 3601, - 3612, - 3624, - 3640, - 3660, - 3671, - 3683, - 3701, - 3712, - 3724, - 3752, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, + 3585, + 3597, + 3613, + 3633, + 3644, + 3656, + 3674, + 3685, + 3697, + 3725, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3756, 3769, - 3770, - 3771, - 3783, - 3796, - 3806, - 3814, - 3825, + 3779, + 3787, + 3798, + 3811, + 3819, + 3829, 3838, 3846, - 3856, - 3865, - 3873, - 3888, - 3899, - 3911, - 3929, - 3940, - 3952, - 3976, - 3998, + 3861, + 3872, + 3884, + 3902, + 3913, + 3925, + 3949, + 3971, + 3981, + 3989, + 3999, 4008, 4016, 4026, 4035, 4043, - 4053, - 4062, - 4070, - 4084, + 4057, + 4067, + 4075, + 4085, 4094, 4102, - 4112, - 4121, - 4129, - 4146, - 4158, - 4159, - 4160, - 4172, - 4184, - 4192, - 4196, - 4198, - 4208, - 4218, - 4222, - 4229, + 4119, + 4131, + 4132, + 4133, + 4145, + 4157, + 4165, + 4169, + 4171, + 4181, + 4191, + 4195, + 4202, + 4212, + 4220, + 4230, 4239, 4247, - 4257, - 4266, - 4274, - 4289, - 4300, - 4312, - 4332, + 4262, + 4273, + 4285, + 4305, + 4316, + 4317, + 4318, + 4330, 4343, - 4344, - 4345, - 4357, - 4370, - 4379, + 4352, + 4360, + 4375, + 4385, + 4386, 4387, - 4402, - 4412, - 4413, + 4391, + 4403, 4414, - 4418, - 4430, - 4441, - 4453, - 4473, + 4426, + 4446, + 4458, + 4459, + 4460, + 4472, 4485, - 4486, - 4487, - 4499, - 4512, + 4495, + 4503, + 4513, 4522, 4530, - 4540, - 4549, - 4557, - 4574, - 4586, - 4587, - 4588, - 4600, + 4547, + 4559, + 4560, + 4561, + 4573, + 4581, + 4583, + 4584, + 4596, 4608, - 4610, - 4611, - 4623, - 4635, - 4647, - 4667, - 4679, - 4680, - 4681, - 4693, - 4709, - 4719, - 4723, - 4733, + 4620, + 4640, + 4652, + 4653, + 4654, + 4666, + 4682, + 4692, + 4696, + 4706, + 4716, + 4720, + 4732, 4743, - 4747, - 4759, - 4770, - 4782, - 4800, - 4811, - 4823, - 4841, - 4852, - 4864, - 4885, - 4901, - 4902, - 4903, - 4915, - 4933, - 4944, - 4956, - 4974, - 4985, - 4997, - 5015, - 5027, - 5039, - 5069, - 5081, - 5082, - 5083, + 4755, + 4773, + 4784, + 4796, + 4814, + 4825, + 4837, + 4858, + 4874, + 4875, + 4876, + 4888, + 4906, + 4917, + 4929, + 4947, + 4958, + 4970, + 4988, + 5000, + 5012, + 5042, + 5054, + 5055, + 5056, + 5057, + 5058, + 5059, + 5060, + 5061, + 5062, + 5063, + 5064, + 5076, 5084, - 5085, - 5086, - 5087, - 5088, - 5089, - 5090, - 5091, - 5103, - 5111, - 5140, - 5141, - 5142, - 5143, - 5144, - 5145, + 5113, + 5114, + 5115, + 5116, + 5117, + 5118, + 5119, + 5120, + 5121, 5146, - 5147, - 5148, - 5173, - 5199, - 5242, - 5243, - 5244, - 5245, - 5246, - 5247, - 5248, - 5249, - 5250, - 5279, - 5307, - 5332, - 5350, - 5368, - 5389, - 5409, - 5435, - 5460, - 5478, - 5514, - 5515, - 5516, - 5517, - 5518, - 5519, + 5172, + 5215, + 5216, + 5217, + 5218, + 5219, + 5220, + 5221, + 5222, + 5223, + 5252, + 5280, + 5305, + 5323, + 5341, + 5362, + 5382, + 5408, + 5433, + 5451, + 5487, + 5488, + 5489, + 5490, + 5491, + 5492, + 5493, + 5494, + 5495, 5520, - 5521, - 5522, - 5547, - 5565, - 5583, + 5538, + 5556, + 5584, 5611, - 5638, - 5656, - 5674, - 5700, - 5725, - 5743, + 5629, + 5647, + 5673, + 5698, + 5716, + 5734, 5761, - 5788, - 5789, - 5790, - 5803, - 5823, - 5843, - 5873, - 5885, - 5886, - 5887, - 5888, - 5889, - 5890, - 5891, - 5892, - 5893, - 5905, - 5939, - 5940, - 5941, - 5942, - 5943, - 5944, - 5945, - 5946, - 5947, - 5990, - 5991, - 5992, - 5993, - 5994, - 5995, - 5996, - 5997, - 5998 + 5762, + 5763, + 5776, + 5796, + 5816, + 5846, + 5858, + 5859, + 5860, + 5861, + 5862, + 5863, + 5864, + 5865, + 5866, + 5878, + 5912, + 5913, + 5914, + 5915, + 5916, + 5917, + 5918, + 5919, + 5920, + 5963, + 5964, + 5965, + 5966, + 5967, + 5968, + 5969, + 5970, + 5971 ], "types": { "ActiveConnection": { @@ -695,7 +692,7 @@ export default { 80 ], "query_start": [ - 4610 + 4583 ], "state": [ 80 @@ -724,7 +721,7 @@ export default { 80 ], "query_start": [ - 4610 + 4583 ], "state": [ 80 @@ -764,22 +761,22 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -791,7 +788,7 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ 80 @@ -802,7 +799,7 @@ export default { }, "AwardRecipient": { "award_id": [ - 5111 + 5084 ], "awarded_by_steam_id": [ 80 @@ -811,7 +808,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "note": [ 80 @@ -826,13 +823,13 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -944,7 +941,7 @@ export default { 80 ], "match_map_id": [ - 5111 + 5084 ], "output": [ 8 @@ -1004,7 +1001,7 @@ export default { }, "CpuStat": { "time": [ - 4610 + 4583 ], "total": [ 259 @@ -1021,7 +1018,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 5111 + 5084 ], "success": [ 5 @@ -1032,7 +1029,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 5111 + 5084 ], "__typename": [ 80 @@ -1040,7 +1037,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 5111 + 5084 ], "__typename": [ 80 @@ -1196,7 +1193,7 @@ export default { 22 ], "time": [ - 4610 + 4583 ], "__typename": [ 80 @@ -1222,7 +1219,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mode": [ 80 @@ -1301,7 +1298,7 @@ export default { 5 ], "modified": [ - 4610 + 4583 ], "name": [ 80 @@ -1405,7 +1402,7 @@ export default { 34 ], "time": [ - 4610 + 4583 ], "__typename": [ 80 @@ -1647,7 +1644,7 @@ export default { 80 ], "player": [ - 3993 + 3966 ], "profile_url": [ 80 @@ -1664,7 +1661,7 @@ export default { }, "MemoryStat": { "time": [ - 4610 + 4583 ], "total": [ 259 @@ -1681,7 +1678,7 @@ export default { 51 ], "time": [ - 4610 + 4583 ], "__typename": [ 80 @@ -1701,7 +1698,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "published_at": [ 80 @@ -2459,16 +2456,16 @@ export default { 40 ], "last_analyze": [ - 4610 + 4583 ], "last_autoanalyze": [ - 4610 + 4583 ], "last_autovacuum": [ - 4610 + 4583 ], "last_vacuum": [ - 4610 + 4583 ], "n_dead_tup": [ 40 @@ -2684,7 +2681,7 @@ export default { 80 ], "next_start": [ - 4610 + 4583 ], "__typename": [ 80 @@ -2706,13 +2703,13 @@ export default { }, "TournamentAward": { "award_id": [ - 5111 + 5084 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -2724,7 +2721,7 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2732,7 +2729,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 5111 + 5084 ], "depth": [ 40 @@ -2741,7 +2738,7 @@ export default { 5 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 @@ -2806,10 +2803,10 @@ export default { }, "_map_pool": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2860,10 +2857,10 @@ export default { 105 ], "map_id": [ - 5113 + 5086 ], "map_pool_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -2872,10 +2869,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2883,10 +2880,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2894,10 +2891,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2930,10 +2927,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 3035 + 3008 ], "map_pool_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -2941,10 +2938,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2953,10 +2950,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2975,10 +2972,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -2999,16 +2996,16 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3105,7 +3102,7 @@ export default { 129 ], "count": [ - 3035 + 3008 ], "max": [ 135 @@ -3159,7 +3156,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3176,16 +3173,16 @@ export default { 130 ], "abandoned_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "steam_id": [ 261 @@ -3205,16 +3202,16 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3225,13 +3222,13 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3242,16 +3239,16 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3259,13 +3256,13 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3276,16 +3273,16 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3318,19 +3315,19 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3338,7 +3335,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -3347,13 +3344,13 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3372,7 +3369,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3388,7 +3385,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3404,7 +3401,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3423,13 +3420,13 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -3448,7 +3445,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3479,7 +3476,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3495,7 +3492,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3511,7 +3508,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3519,16 +3516,16 @@ export default { }, "api_keys": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3614,16 +3611,16 @@ export default { 166 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "label": [ 82 ], "last_used_at": [ - 4612 + 4585 ], "steam_id": [ 261 @@ -3643,16 +3640,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3663,16 +3660,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3683,16 +3680,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3728,19 +3725,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "last_used_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -3748,7 +3745,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -3757,16 +3754,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3812,16 +3809,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "last_used_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -3879,7 +3876,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -3890,31 +3887,31 @@ export default { 231 ], "award_id": [ - 5111 + 5084 ], "awarded_by": [ - 3993 + 3966 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season": [ 2047 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -3926,40 +3923,40 @@ export default { 80 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 ], "season": [ - 4079 + 4052 ], "season_id": [ - 5111 + 5084 ], "source": [ 516 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5047 + 5020 ], "tournament_award": [ - 4613 + 4586 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team": [ - 5005 + 4978 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4053,7 +4050,7 @@ export default { 198 ], "count": [ - 3035 + 3008 ], "max": [ 204 @@ -4113,13 +4110,13 @@ export default { }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4139,31 +4136,31 @@ export default { 235 ], "award_id": [ - 5113 + 5086 ], "awarded_by": [ - 3997 + 3970 ], "awarded_by_steam_id": [ 261 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "id": [ - 5113 + 5086 ], "league_season": [ 2052 ], "league_season_id": [ - 5113 + 5086 ], "note": [ 82 @@ -4175,40 +4172,40 @@ export default { 82 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 ], "season": [ - 4083 + 4056 ], "season_id": [ - 5113 + 5086 ], "source": [ 517 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "tournament": [ - 5068 + 5041 ], "tournament_award": [ - 4622 + 4595 ], "tournament_id": [ - 5113 + 5086 ], "tournament_team": [ - 5014 + 4987 ], "tournament_team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -4234,31 +4231,31 @@ export default { 242 ], "award_id": [ - 5111 + 5084 ], "awarded_by": [ - 4004 + 3977 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season": [ 2062 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -4267,40 +4264,40 @@ export default { 40 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 ], "season": [ - 4090 + 4063 ], "season_id": [ - 5111 + 5084 ], "source": [ 516 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5077 + 5050 ], "tournament_award": [ - 4631 + 4604 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team": [ - 5023 + 4996 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4308,22 +4305,22 @@ export default { }, "award_recipients_max_fields": { "award_id": [ - 5111 + 5084 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -4338,16 +4335,16 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4355,46 +4352,46 @@ export default { }, "award_recipients_max_order_by": { "award_id": [ - 3035 + 3008 ], "awarded_by_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "note": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "placement_tier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4402,22 +4399,22 @@ export default { }, "award_recipients_min_fields": { "award_id": [ - 5111 + 5084 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -4432,16 +4429,16 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4449,46 +4446,46 @@ export default { }, "award_recipients_min_order_by": { "award_id": [ - 3035 + 3008 ], "awarded_by_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "note": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "placement_tier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4524,76 +4521,76 @@ export default { 244 ], "award_id": [ - 3035 + 3008 ], "awarded_by": [ - 4006 + 3979 ], "awarded_by_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season": [ 2064 ], "league_season_id": [ - 3035 + 3008 ], "note": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "placement_tier": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "season": [ - 4092 + 4065 ], "season_id": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_award": [ - 4633 + 4606 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team": [ - 5025 + 4998 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4601,7 +4598,7 @@ export default { }, "award_recipients_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4610,22 +4607,22 @@ export default { "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5111 + 5084 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -4637,19 +4634,19 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "source": [ 516 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4671,13 +4668,13 @@ export default { }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4699,13 +4696,13 @@ export default { }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4727,13 +4724,13 @@ export default { }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4752,22 +4749,22 @@ export default { }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5111 + 5084 ], "awarded_by_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -4782,19 +4779,19 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "source": [ 516 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -4816,13 +4813,13 @@ export default { }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4859,13 +4856,13 @@ export default { }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4887,13 +4884,13 @@ export default { }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4915,13 +4912,13 @@ export default { }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -4932,10 +4929,10 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by": [ - 3993 + 3966 ], "created_by_steam_id": [ 259 @@ -4947,10 +4944,10 @@ export default { 1663 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -4959,7 +4956,7 @@ export default { 2047 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 @@ -5009,10 +5006,10 @@ export default { } ], "season": [ - 4079 + 4052 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5024,13 +5021,13 @@ export default { 536 ], "tournament": [ - 5047 + 5020 ], "tournament_configs": [ - 4613, + 4586, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -5040,19 +5037,19 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_configs_aggregate": [ - 4614, + 4587, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -5062,19 +5059,19 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5163,10 +5160,10 @@ export default { 6 ], "created_at": [ - 4612 + 4585 ], "created_by": [ - 3997 + 3970 ], "created_by_steam_id": [ 261 @@ -5178,10 +5175,10 @@ export default { 1667 ], "event_id": [ - 5113 + 5086 ], "id": [ - 5113 + 5086 ], "image_url": [ 82 @@ -5190,7 +5187,7 @@ export default { 2052 ], "league_season_id": [ - 5113 + 5086 ], "name": [ 82 @@ -5202,10 +5199,10 @@ export default { 192 ], "season": [ - 4083 + 4056 ], "season_id": [ - 5113 + 5086 ], "silhouette": [ 41 @@ -5217,19 +5214,19 @@ export default { 537 ], "tournament": [ - 5068 + 5041 ], "tournament_configs": [ - 4622 + 4595 ], "tournament_configs_aggregate": [ - 4615 + 4588 ], "tournament_id": [ - 5113 + 5086 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -5252,10 +5249,10 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by": [ - 4004 + 3977 ], "created_by_steam_id": [ 259 @@ -5267,10 +5264,10 @@ export default { 1674 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -5279,7 +5276,7 @@ export default { 2062 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 @@ -5288,10 +5285,10 @@ export default { 196 ], "season": [ - 4090 + 4063 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5303,16 +5300,16 @@ export default { 536 ], "tournament": [ - 5077 + 5050 ], "tournament_configs": [ - 4619 + 4592 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5320,7 +5317,7 @@ export default { }, "awards_max_fields": { "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -5329,22 +5326,22 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5353,10 +5350,10 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5364,7 +5361,7 @@ export default { }, "awards_min_fields": { "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -5373,22 +5370,22 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5397,10 +5394,10 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5444,70 +5441,70 @@ export default { }, "awards_order_by": { "allow_multiple": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "created_by": [ - 4006 + 3979 ], "created_by_steam_id": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "image_url": [ - 3035 + 3008 ], "league_season": [ 2064 ], "league_season_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "recipients_aggregate": [ 195 ], "season": [ - 4092 + 4065 ], "season_id": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "system_key": [ - 3035 + 3008 ], "tier": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_configs_aggregate": [ - 4618 + 4591 ], "tournament_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -5515,7 +5512,7 @@ export default { }, "awards_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -5527,7 +5524,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -5536,22 +5533,22 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5563,10 +5560,10 @@ export default { 536 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5621,7 +5618,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -5630,22 +5627,22 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80 ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -5657,10 +5654,10 @@ export default { 536 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -5831,13 +5828,13 @@ export default { }, "clip_render_jobs": { "clip": [ - 2362 + 2335 ], "clip_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -5849,31 +5846,31 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map": [ - 2657 + 2630 ], "match_map_demo": [ - 2537 + 2510 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "paused": [ 5 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -5901,7 +5898,7 @@ export default { } ], "user": [ - 3993 + 3966 ], "user_steam_id": [ 259 @@ -6038,7 +6035,7 @@ export default { 275 ], "count": [ - 3035 + 3008 ], "max": [ 284 @@ -6109,13 +6106,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6132,13 +6129,13 @@ export default { 276 ], "clip": [ - 2371 + 2344 ], "clip_id": [ - 5113 + 5086 ], "created_at": [ - 4612 + 4585 ], "error_message": [ 82 @@ -6150,31 +6147,31 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "k8s_job_name": [ 82 ], "last_status_at": [ - 4612 + 4585 ], "match_map": [ - 2666 + 2639 ], "match_map_demo": [ - 2549 + 2522 ], "match_map_demo_id": [ - 5113 + 5086 ], "match_map_id": [ - 5113 + 5086 ], "paused": [ 6 ], "progress": [ - 3034 + 3007 ], "session_token": [ 82 @@ -6192,7 +6189,7 @@ export default { 1846 ], "user": [ - 3997 + 3970 ], "user_steam_id": [ 261 @@ -6237,7 +6234,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 3033 + 3006 ], "sort_index": [ 40 @@ -6251,13 +6248,13 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2380 + 2353 ], "clip_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -6269,31 +6266,31 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map": [ - 2675 + 2648 ], "match_map_demo": [ - 2561 + 2534 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "paused": [ 5 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -6311,7 +6308,7 @@ export default { 1844 ], "user": [ - 4004 + 3977 ], "user_steam_id": [ 259 @@ -6322,10 +6319,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -6334,22 +6331,22 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -6369,46 +6366,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "progress": [ - 3035 + 3008 ], "session_token": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6416,10 +6413,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -6428,22 +6425,22 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -6463,46 +6460,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "progress": [ - 3035 + 3008 ], "session_token": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6535,70 +6532,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2382 + 2355 ], "clip_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node": [ 1746 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_demo": [ - 2563 + 2536 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "paused": [ - 3035 + 3008 ], "progress": [ - 3035 + 3008 ], "session_token": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "spec": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "status_history": [ - 3035 + 3008 ], "user": [ - 4006 + 3979 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6606,7 +6603,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -6628,10 +6625,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": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -6640,25 +6637,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "paused": [ 5 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -6698,13 +6695,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6726,13 +6723,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6754,13 +6751,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6779,10 +6776,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -6791,25 +6788,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "paused": [ 5 ], "progress": [ - 3033 + 3006 ], "session_token": [ 80 @@ -6835,7 +6832,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 3033 + 3006 ], "sort_index": [ 40 @@ -6849,13 +6846,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6907,13 +6904,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6935,13 +6932,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6963,13 +6960,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 3035 + 3008 ], "sort_index": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -6977,7 +6974,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -6986,7 +6983,7 @@ export default { "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4611 + 4584 ], "deployments": [ 1844, @@ -7006,7 +7003,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_default": [ 5 @@ -7039,7 +7036,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7130,7 +7127,7 @@ export default { 321 ], "created_at": [ - 4612 + 4585 ], "deployments": [ 1846 @@ -7145,7 +7142,7 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "is_default": [ 6 @@ -7178,7 +7175,7 @@ export default { 82 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -7219,7 +7216,7 @@ export default { }, "custom_pages_insert_input": { "created_at": [ - 4611 + 4584 ], "deployments": [ 1844 @@ -7234,7 +7231,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_default": [ 5 @@ -7267,7 +7264,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7275,7 +7272,7 @@ export default { }, "custom_pages_max_fields": { "created_at": [ - 4611 + 4584 ], "exposed_module": [ 80 @@ -7284,7 +7281,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "manifest_url": [ 80 @@ -7311,7 +7308,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7319,7 +7316,7 @@ export default { }, "custom_pages_min_fields": { "created_at": [ - 4611 + 4584 ], "exposed_module": [ 80 @@ -7328,7 +7325,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "manifest_url": [ 80 @@ -7355,7 +7352,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7388,55 +7385,55 @@ export default { }, "custom_pages_order_by": { "created_at": [ - 3035 + 3008 ], "deployments": [ - 3035 + 3008 ], "enabled": [ - 3035 + 3008 ], "exposed_module": [ - 3035 + 3008 ], "icon": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_default": [ - 3035 + 3008 ], "manifest_url": [ - 3035 + 3008 ], "nav_group": [ - 3035 + 3008 ], "nav_order": [ - 3035 + 3008 ], "profile_tab_label": [ - 3035 + 3008 ], "remote_entry_url": [ - 3035 + 3008 ], "remote_scope": [ - 3035 + 3008 ], "required_role": [ - 3035 + 3008 ], "slug": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -7444,7 +7441,7 @@ export default { }, "custom_pages_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -7461,7 +7458,7 @@ export default { "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4611 + 4584 ], "deployments": [ 1844 @@ -7476,7 +7473,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_default": [ 5 @@ -7509,7 +7506,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7552,7 +7549,7 @@ export default { }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "deployments": [ 1844 @@ -7567,7 +7564,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_default": [ 5 @@ -7600,7 +7597,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -7670,10 +7667,10 @@ export default { }, "db_backups": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -7762,10 +7759,10 @@ export default { 352 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "name": [ 82 @@ -7788,10 +7785,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -7805,10 +7802,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -7822,10 +7819,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -7864,16 +7861,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "__typename": [ 80 @@ -7881,7 +7878,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -7890,10 +7887,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -7942,10 +7939,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -8009,22 +8006,22 @@ export default { 5 ], "captain": [ - 3993 + 3966 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "draft_game": [ 465 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "is_organizer": [ 5 @@ -8033,7 +8030,7 @@ export default { 40 ], "picked": [ - 3993 + 3966 ], "picked_steam_id": [ 259 @@ -8170,7 +8167,7 @@ export default { 385 ], "count": [ - 3035 + 3008 ], "max": [ 391 @@ -8230,13 +8227,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8256,22 +8253,22 @@ export default { 6 ], "captain": [ - 3997 + 3970 ], "captain_steam_id": [ 261 ], "created_at": [ - 4612 + 4585 ], "draft_game": [ 476 ], "draft_game_id": [ - 5113 + 5086 ], "id": [ - 5113 + 5086 ], "is_organizer": [ 6 @@ -8280,7 +8277,7 @@ export default { 41 ], "picked": [ - 3997 + 3970 ], "picked_steam_id": [ 261 @@ -8309,28 +8306,28 @@ export default { 5 ], "captain": [ - 4004 + 3977 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "draft_game": [ 485 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "lineup": [ 40 ], "picked": [ - 4004 + 3977 ], "picked_steam_id": [ 259 @@ -8344,13 +8341,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "lineup": [ 40 @@ -8364,22 +8361,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "draft_game_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8390,13 +8387,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "lineup": [ 40 @@ -8410,22 +8407,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "draft_game_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8458,37 +8455,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 3035 + 3008 ], "captain": [ - 4006 + 3979 ], "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "draft_game": [ 487 ], "draft_game_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked": [ - 4006 + 3979 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8496,7 +8493,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -8513,13 +8510,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "lineup": [ 40 @@ -8547,13 +8544,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8575,13 +8572,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8603,13 +8600,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8634,13 +8631,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "draft_game_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "lineup": [ 40 @@ -8668,13 +8665,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8711,13 +8708,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8739,13 +8736,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8767,13 +8764,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "picked_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -8784,7 +8781,7 @@ export default { 465 ], "draft_game_id": [ - 5111 + 5084 ], "e_draft_game_player_status": [ 634 @@ -8799,7 +8796,7 @@ export default { 5 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -8808,7 +8805,7 @@ export default { 40 ], "player": [ - 3993 + 3966 ], "status": [ 639 @@ -8948,7 +8945,7 @@ export default { 430 ], "count": [ - 3035 + 3008 ], "max": [ 436 @@ -9011,16 +9008,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9040,7 +9037,7 @@ export default { 476 ], "draft_game_id": [ - 5113 + 5086 ], "e_draft_game_player_status": [ 637 @@ -9055,7 +9052,7 @@ export default { 6 ], "joined_at": [ - 4612 + 4585 ], "lineup": [ 41 @@ -9064,7 +9061,7 @@ export default { 41 ], "player": [ - 3997 + 3970 ], "status": [ 640 @@ -9099,7 +9096,7 @@ export default { 485 ], "draft_game_id": [ - 5111 + 5084 ], "e_draft_game_player_status": [ 645 @@ -9111,7 +9108,7 @@ export default { 5 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -9120,7 +9117,7 @@ export default { 40 ], "player": [ - 4004 + 3977 ], "status": [ 639 @@ -9134,13 +9131,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 5111 + 5084 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -9157,22 +9154,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3035 + 3008 ], "elo_snapshot": [ - 3035 + 3008 ], "joined_at": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9180,13 +9177,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 5111 + 5084 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -9203,22 +9200,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3035 + 3008 ], "elo_snapshot": [ - 3035 + 3008 ], "joined_at": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9254,37 +9251,37 @@ export default { 487 ], "draft_game_id": [ - 3035 + 3008 ], "e_draft_game_player_status": [ 647 ], "elo_snapshot": [ - 3035 + 3008 ], "is_captain": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "joined_at": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "status": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9292,7 +9289,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -9306,7 +9303,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": [ - 5111 + 5084 ], "elo_snapshot": [ 40 @@ -9315,7 +9312,7 @@ export default { 5 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -9352,16 +9349,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9386,16 +9383,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9420,16 +9417,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9448,7 +9445,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5111 + 5084 ], "elo_snapshot": [ 40 @@ -9457,7 +9454,7 @@ export default { 5 ], "joined_at": [ - 4611 + 4584 ], "lineup": [ 40 @@ -9494,16 +9491,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9543,16 +9540,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9577,16 +9574,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9611,16 +9608,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3035 + 3008 ], "lineup": [ - 3035 + 3008 ], "pick_order": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -9637,7 +9634,7 @@ export default { 576 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 @@ -9661,22 +9658,22 @@ export default { 862 ], "expires_at": [ - 4611 + 4584 ], "host": [ - 3993 + 3966 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "inner_squad": [ 5 ], "invite_code": [ - 5111 + 5084 ], "is_organizer": [ 5 @@ -9685,16 +9682,16 @@ export default { 2287 ], "map_pool_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -9706,7 +9703,7 @@ export default { 618 ], "options": [ - 2699 + 2672 ], "pattern": [ 1844, @@ -9717,7 +9714,7 @@ export default { } ], "pick_deadline": [ - 4611 + 4584 ], "picks": [ 375, @@ -9814,28 +9811,28 @@ export default { 5 ], "scheduled_at": [ - 4611 + 4584 ], "status": [ 660 ], "team_1": [ - 4562 + 4535 ], "team_1_id": [ - 5111 + 5084 ], "team_2": [ - 4562 + 4535 ], "team_2_id": [ - 5111 + 5084 ], "type": [ 1031 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -9969,7 +9966,7 @@ export default { 475 ], "count": [ - 3035 + 3008 ], "max": [ 481 @@ -10035,19 +10032,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10073,7 +10070,7 @@ export default { 577 ], "created_at": [ - 4612 + 4585 ], "current_pick_lineup": [ 41 @@ -10097,22 +10094,22 @@ export default { 865 ], "expires_at": [ - 4612 + 4585 ], "host": [ - 3997 + 3970 ], "host_steam_id": [ 261 ], "id": [ - 5113 + 5086 ], "inner_squad": [ 6 ], "invite_code": [ - 5113 + 5086 ], "is_organizer": [ 6 @@ -10121,16 +10118,16 @@ export default { 2290 ], "map_pool_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_options_id": [ - 5113 + 5086 ], "max_elo": [ 41 @@ -10142,13 +10139,13 @@ export default { 619 ], "options": [ - 2703 + 2676 ], "pattern": [ 1846 ], "pick_deadline": [ - 4612 + 4585 ], "picks": [ 386 @@ -10169,28 +10166,28 @@ export default { 6 ], "scheduled_at": [ - 4612 + 4585 ], "status": [ 661 ], "team_1": [ - 4573 + 4546 ], "team_1_id": [ - 5113 + 5086 ], "team_2": [ - 4573 + 4546 ], "team_2_id": [ - 5113 + 5086 ], "type": [ 1032 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -10228,7 +10225,7 @@ export default { 576 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 @@ -10252,37 +10249,37 @@ export default { 873 ], "expires_at": [ - 4611 + 4584 ], "host": [ - 4004 + 3977 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "inner_squad": [ 5 ], "invite_code": [ - 5111 + 5084 ], "map_pool": [ 2296 ], "map_pool_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -10294,10 +10291,10 @@ export default { 618 ], "options": [ - 2710 + 2683 ], "pick_deadline": [ - 4611 + 4584 ], "picks": [ 383 @@ -10312,28 +10309,28 @@ export default { 5 ], "scheduled_at": [ - 4611 + 4584 ], "status": [ 660 ], "team_1": [ - 4582 + 4555 ], "team_1_id": [ - 5111 + 5084 ], "team_2": [ - 4582 + 4555 ], "team_2_id": [ - 5111 + 5084 ], "type": [ 1031 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -10344,31 +10341,31 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4611 + 4584 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "invite_code": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -10377,22 +10374,22 @@ export default { 40 ], "pick_deadline": [ - 4611 + 4584 ], "regions": [ 80 ], "scheduled_at": [ - 4611 + 4584 ], "team_1_id": [ - 5111 + 5084 ], "team_2_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -10400,58 +10397,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invite_code": [ - 3035 + 3008 ], "map_pool_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "pick_deadline": [ - 3035 + 3008 ], "regions": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "team_1_id": [ - 3035 + 3008 ], "team_2_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10462,31 +10459,31 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4611 + 4584 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "invite_code": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -10495,22 +10492,22 @@ export default { 40 ], "pick_deadline": [ - 4611 + 4584 ], "regions": [ 80 ], "scheduled_at": [ - 4611 + 4584 ], "team_1_id": [ - 5111 + 5084 ], "team_2_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -10518,58 +10515,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invite_code": [ - 3035 + 3008 ], "map_pool_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "pick_deadline": [ - 3035 + 3008 ], "regions": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "team_1_id": [ - 3035 + 3008 ], "team_2_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10613,22 +10610,22 @@ export default { }, "draft_games_order_by": { "access": [ - 3035 + 3008 ], "capacity": [ - 3035 + 3008 ], "captain_selection": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "draft_order": [ - 3035 + 3008 ], "e_draft_game_captain_selection": [ 584 @@ -10646,58 +10643,58 @@ export default { 875 ], "expires_at": [ - 3035 + 3008 ], "host": [ - 4006 + 3979 ], "host_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "inner_squad": [ - 3035 + 3008 ], "invite_code": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "map_pool": [ 2298 ], "map_pool_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "mode": [ - 3035 + 3008 ], "options": [ - 2712 + 2685 ], "pattern": [ - 3035 + 3008 ], "pick_deadline": [ - 3035 + 3008 ], "picks_aggregate": [ 382 @@ -10706,34 +10703,34 @@ export default { 427 ], "regions": [ - 3035 + 3008 ], "require_approval": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "team_1": [ - 4584 + 4557 ], "team_1_id": [ - 3035 + 3008 ], "team_2": [ - 4584 + 4557 ], "team_2_id": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10741,7 +10738,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -10761,7 +10758,7 @@ export default { 576 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 @@ -10770,28 +10767,28 @@ export default { 597 ], "expires_at": [ - 4611 + 4584 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "inner_squad": [ 5 ], "invite_code": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -10803,7 +10800,7 @@ export default { 618 ], "pick_deadline": [ - 4611 + 4584 ], "regions": [ 80 @@ -10812,22 +10809,22 @@ export default { 5 ], "scheduled_at": [ - 4611 + 4584 ], "status": [ 660 ], "team_1_id": [ - 5111 + 5084 ], "team_2_id": [ - 5111 + 5084 ], "type": [ 1031 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -10855,19 +10852,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10895,19 +10892,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10935,19 +10932,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -10975,7 +10972,7 @@ export default { 576 ], "created_at": [ - 4611 + 4584 ], "current_pick_lineup": [ 40 @@ -10984,28 +10981,28 @@ export default { 597 ], "expires_at": [ - 4611 + 4584 ], "host_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "inner_squad": [ 5 ], "invite_code": [ - 5111 + 5084 ], "map_pool_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_elo": [ 40 @@ -11017,7 +11014,7 @@ export default { 618 ], "pick_deadline": [ - 4611 + 4584 ], "regions": [ 80 @@ -11026,22 +11023,22 @@ export default { 5 ], "scheduled_at": [ - 4611 + 4584 ], "status": [ 660 ], "team_1_id": [ - 5111 + 5084 ], "team_2_id": [ - 5111 + 5084 ], "type": [ 1031 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -11069,19 +11066,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11124,19 +11121,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11164,19 +11161,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11204,19 +11201,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 3035 + 3008 ], "current_pick_lineup": [ - 3035 + 3008 ], "host_steam_id": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11369,10 +11366,10 @@ export default { }, "e_award_sources_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11579,10 +11576,10 @@ export default { }, "e_award_tiers_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -11789,10 +11786,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -12010,10 +12007,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -12231,10 +12228,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -12452,10 +12449,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -12673,10 +12670,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -12894,10 +12891,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -13104,10 +13101,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -13314,10 +13311,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -13535,10 +13532,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -13745,10 +13742,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -13966,10 +13963,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -14187,10 +14184,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -14408,10 +14405,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -14629,10 +14626,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -14850,10 +14847,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -15071,10 +15068,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -15281,10 +15278,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -15502,10 +15499,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -15570,10 +15567,10 @@ export default { 80 ], "match_clips": [ - 2362, + 2335, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -15583,19 +15580,19 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_aggregate": [ - 2363, + 2336, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -15605,11 +15602,11 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], @@ -15668,10 +15665,10 @@ export default { 82 ], "match_clips": [ - 2371 + 2344 ], "match_clips_aggregate": [ - 2364 + 2337 ], "value": [ 82 @@ -15707,7 +15704,7 @@ export default { 80 ], "match_clips": [ - 2368 + 2341 ], "value": [ 80 @@ -15765,13 +15762,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 3035 + 3008 ], "match_clips_aggregate": [ - 2367 + 2340 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -15836,10 +15833,10 @@ export default { 80 ], "match_maps": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -15849,19 +15846,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -15871,11 +15868,11 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], @@ -15934,10 +15931,10 @@ export default { 82 ], "match_maps": [ - 2666 + 2639 ], "match_maps_aggregate": [ - 2659 + 2632 ], "value": [ 82 @@ -15973,7 +15970,7 @@ export default { 80 ], "match_maps": [ - 2663 + 2636 ], "value": [ 80 @@ -16042,13 +16039,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 3035 + 3008 ], "match_maps_aggregate": [ - 2662 + 2635 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -16255,10 +16252,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -16323,10 +16320,10 @@ export default { 80 ], "match_lineup_players": [ - 2450, + 2423, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16336,19 +16333,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match_lineup_players_aggregate": [ - 2451, + 2424, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -16358,11 +16355,11 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], @@ -16421,10 +16418,10 @@ export default { 82 ], "match_lineup_players": [ - 2461 + 2434 ], "match_lineup_players_aggregate": [ - 2452 + 2425 ], "value": [ 82 @@ -16460,7 +16457,7 @@ export default { 80 ], "match_lineup_players": [ - 2458 + 2431 ], "value": [ 80 @@ -16518,13 +16515,13 @@ export default { }, "e_match_party_sources_order_by": { "description": [ - 3035 + 3008 ], "match_lineup_players_aggregate": [ - 2457 + 2430 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -16589,10 +16586,10 @@ export default { 80 ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -16602,19 +16599,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_aggregate": [ - 2824, + 2797, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -16624,11 +16621,11 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], @@ -16687,10 +16684,10 @@ export default { 82 ], "matches": [ - 2832 + 2805 ], "matches_aggregate": [ - 2825 + 2798 ], "value": [ 82 @@ -16726,7 +16723,7 @@ export default { 80 ], "matches": [ - 2829 + 2802 ], "value": [ 80 @@ -16795,13 +16792,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 3035 + 3008 ], "matches_aggregate": [ - 2828 + 2801 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -17072,13 +17069,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 3035 + 3008 ], "maps_aggregate": [ 2313 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -17285,10 +17282,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -17353,10 +17350,10 @@ export default { 80 ], "player_objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -17366,19 +17363,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -17388,11 +17385,11 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], @@ -17451,10 +17448,10 @@ export default { 82 ], "player_objectives": [ - 3600 + 3573 ], "player_objectives_aggregate": [ - 3593 + 3566 ], "value": [ 82 @@ -17490,7 +17487,7 @@ export default { 80 ], "player_objectives": [ - 3597 + 3570 ], "value": [ 80 @@ -17548,13 +17545,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 3035 + 3008 ], "player_objectives_aggregate": [ - 3596 + 3569 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -17761,10 +17758,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -17971,10 +17968,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -18181,10 +18178,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -18402,10 +18399,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -18470,10 +18467,10 @@ export default { 80 ], "scrim_requests": [ - 4461, + 4434, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18483,19 +18480,19 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], "scrim_requests_aggregate": [ - 4462, + 4435, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -18505,11 +18502,11 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], @@ -18568,10 +18565,10 @@ export default { 82 ], "scrim_requests": [ - 4472 + 4445 ], "scrim_requests_aggregate": [ - 4463 + 4436 ], "value": [ 82 @@ -18607,7 +18604,7 @@ export default { 80 ], "scrim_requests": [ - 4469 + 4442 ], "value": [ 80 @@ -18665,13 +18662,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 3035 + 3008 ], "scrim_requests_aggregate": [ - 4468 + 4441 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -18736,10 +18733,10 @@ export default { 80 ], "servers": [ - 4134, + 4107, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -18749,19 +18746,19 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_aggregate": [ - 4135, + 4108, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -18771,11 +18768,11 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], @@ -18834,10 +18831,10 @@ export default { 82 ], "servers": [ - 4145 + 4118 ], "servers_aggregate": [ - 4136 + 4109 ], "value": [ 82 @@ -18873,7 +18870,7 @@ export default { 80 ], "servers": [ - 4142 + 4115 ], "value": [ 80 @@ -18931,13 +18928,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 3035 + 3008 ], "servers_aggregate": [ - 4141 + 4114 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -19002,10 +18999,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -19015,19 +19012,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_map_lineup_1_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -19037,19 +19034,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_map_lineup_2": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -19059,19 +19056,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_map_lineup_2_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -19081,11 +19078,11 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], @@ -19144,16 +19141,16 @@ export default { 82 ], "match_map_lineup_1": [ - 2666 + 2639 ], "match_map_lineup_1_aggregate": [ - 2659 + 2632 ], "match_map_lineup_2": [ - 2666 + 2639 ], "match_map_lineup_2_aggregate": [ - 2659 + 2632 ], "value": [ 82 @@ -19189,10 +19186,10 @@ export default { 80 ], "match_map_lineup_1": [ - 2663 + 2636 ], "match_map_lineup_2": [ - 2663 + 2636 ], "value": [ 80 @@ -19250,16 +19247,16 @@ export default { }, "e_sides_order_by": { "description": [ - 3035 + 3008 ], "match_map_lineup_1_aggregate": [ - 2662 + 2635 ], "match_map_lineup_2_aggregate": [ - 2662 + 2635 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -19466,10 +19463,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -19534,10 +19531,10 @@ export default { 80 ], "team_rosters": [ - 4320, + 4293, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -19547,19 +19544,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_rosters_aggregate": [ - 4321, + 4294, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -19569,19 +19566,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "tournament_team_rosters": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19591,19 +19588,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_team_rosters_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -19613,11 +19610,11 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], @@ -19676,16 +19673,16 @@ export default { 82 ], "team_rosters": [ - 4331 + 4304 ], "team_rosters_aggregate": [ - 4322 + 4295 ], "tournament_team_rosters": [ - 4973 + 4946 ], "tournament_team_rosters_aggregate": [ - 4966 + 4939 ], "value": [ 82 @@ -19721,10 +19718,10 @@ export default { 80 ], "team_rosters": [ - 4328 + 4301 ], "tournament_team_rosters": [ - 4970 + 4943 ], "value": [ 80 @@ -19793,16 +19790,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 3035 + 3008 ], "team_rosters_aggregate": [ - 4327 + 4300 ], "tournament_team_rosters_aggregate": [ - 4969 + 4942 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -20009,10 +20006,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -20219,10 +20216,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -20287,10 +20284,10 @@ export default { 80 ], "tournament_categories": [ - 4701, + 4674, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -20300,19 +20297,19 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "tournament_categories_aggregate": [ - 4702, + 4675, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -20322,11 +20319,11 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], @@ -20385,10 +20382,10 @@ export default { 82 ], "tournament_categories": [ - 4708 + 4681 ], "tournament_categories_aggregate": [ - 4703 + 4676 ], "value": [ 82 @@ -20424,7 +20421,7 @@ export default { 80 ], "tournament_categories": [ - 4707 + 4680 ], "value": [ 80 @@ -20493,13 +20490,13 @@ export default { }, "e_tournament_categories_order_by": { "description": [ - 3035 + 3008 ], "tournament_categories_aggregate": [ - 4706 + 4679 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -20564,10 +20561,10 @@ export default { 80 ], "tournament_stages": [ - 4872, + 4845, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -20577,19 +20574,19 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "tournament_stages_aggregate": [ - 4873, + 4846, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -20599,11 +20596,11 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], @@ -20662,10 +20659,10 @@ export default { 82 ], "tournament_stages": [ - 4884 + 4857 ], "tournament_stages_aggregate": [ - 4874 + 4847 ], "value": [ 82 @@ -20701,7 +20698,7 @@ export default { 80 ], "tournament_stages": [ - 4881 + 4854 ], "value": [ 80 @@ -20770,13 +20767,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 3035 + 3008 ], "tournament_stages_aggregate": [ - 4879 + 4852 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -20841,10 +20838,10 @@ export default { 80 ], "tournaments": [ - 5047, + 5020, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -20854,19 +20851,19 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_aggregate": [ - 5048, + 5021, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -20876,11 +20873,11 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], @@ -20939,10 +20936,10 @@ export default { 82 ], "tournaments": [ - 5068 + 5041 ], "tournaments_aggregate": [ - 5049 + 5022 ], "value": [ 82 @@ -20978,7 +20975,7 @@ export default { 80 ], "tournaments": [ - 5065 + 5038 ], "value": [ 80 @@ -21047,13 +21044,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 3035 + 3008 ], "tournaments_aggregate": [ - 5064 + 5037 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -21118,10 +21115,10 @@ export default { 80 ], "player_utilities": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -21131,19 +21128,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utilities_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -21153,11 +21150,11 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], @@ -21216,10 +21213,10 @@ export default { 82 ], "player_utilities": [ - 3928 + 3901 ], "player_utilities_aggregate": [ - 3921 + 3894 ], "value": [ 82 @@ -21255,7 +21252,7 @@ export default { 80 ], "player_utilities": [ - 3925 + 3898 ], "value": [ 80 @@ -21313,13 +21310,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 3035 + 3008 ], "player_utilities_aggregate": [ - 3924 + 3897 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -21384,10 +21381,10 @@ export default { 80 ], "match_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21397,19 +21394,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -21419,11 +21416,11 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], @@ -21482,10 +21479,10 @@ export default { 82 ], "match_veto_picks": [ - 2638 + 2611 ], "match_veto_picks_aggregate": [ - 2631 + 2604 ], "value": [ 82 @@ -21521,7 +21518,7 @@ export default { 80 ], "match_veto_picks": [ - 2637 + 2610 ], "value": [ 80 @@ -21579,13 +21576,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 3035 + 3008 ], "match_veto_picks_aggregate": [ - 2636 + 2609 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -21792,10 +21789,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -21857,19 +21854,19 @@ export default { }, "event_match_links": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -21920,19 +21917,19 @@ export default { 1435 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -21941,19 +21938,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -21961,13 +21958,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -21975,13 +21972,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -22014,19 +22011,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22034,10 +22031,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -22046,13 +22043,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -22071,13 +22068,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -22097,13 +22094,13 @@ export default { }, "event_media": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -22112,7 +22109,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -22171,7 +22168,7 @@ export default { 80 ], "uploader": [ - 3993 + 3966 ], "uploader_steam_id": [ 259 @@ -22268,7 +22265,7 @@ export default { 1458 ], "count": [ - 3035 + 3008 ], "max": [ 1464 @@ -22325,10 +22322,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22345,13 +22342,13 @@ export default { 1459 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "external_url": [ 82 @@ -22360,7 +22357,7 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "mime_type": [ 82 @@ -22381,7 +22378,7 @@ export default { 82 ], "uploader": [ - 3997 + 3970 ], "uploader_steam_id": [ 261 @@ -22404,13 +22401,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -22419,7 +22416,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -22437,7 +22434,7 @@ export default { 80 ], "uploader": [ - 4004 + 3977 ], "uploader_steam_id": [ 259 @@ -22448,10 +22445,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -22460,7 +22457,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -22483,34 +22480,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "external_url": [ - 3035 + 3008 ], "filename": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "mime_type": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "thumbnail_filename": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22518,10 +22515,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -22530,7 +22527,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -22553,34 +22550,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "external_url": [ - 3035 + 3008 ], "filename": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "mime_type": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "thumbnail_filename": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22624,43 +22621,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "external_url": [ - 3035 + 3008 ], "filename": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "mime_type": [ - 3035 + 3008 ], "players_aggregate": [ 1477 ], "size": [ - 3035 + 3008 ], "thumbnail_filename": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "uploader": [ - 4006 + 3979 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22668,7 +22665,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -22676,16 +22673,16 @@ export default { }, "event_media_players": { "created_at": [ - 4611 + 4584 ], "media": [ 1450 ], "media_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -22782,7 +22779,7 @@ export default { 1480 ], "count": [ - 3035 + 3008 ], "max": [ 1486 @@ -22836,7 +22833,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22853,16 +22850,16 @@ export default { 1481 ], "created_at": [ - 4612 + 4585 ], "media": [ 1459 ], "media_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -22882,16 +22879,16 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4611 + 4584 ], "media": [ 1468 ], "media_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 @@ -22902,10 +22899,10 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4611 + 4584 ], "media_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -22916,13 +22913,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 3035 + 3008 ], "media_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22930,10 +22927,10 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4611 + 4584 ], "media_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -22944,13 +22941,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 3035 + 3008 ], "media_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -22983,19 +22980,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 3035 + 3008 ], "media": [ 1470 ], "media_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23003,7 +23000,7 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23015,10 +23012,10 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4611 + 4584 ], "media_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23037,7 +23034,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23053,7 +23050,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23069,7 +23066,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23088,10 +23085,10 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "media_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23110,7 +23107,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23141,7 +23138,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23157,7 +23154,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23173,7 +23170,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23182,10 +23179,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -23194,7 +23191,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -23228,10 +23225,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23250,10 +23247,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23272,10 +23269,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23294,10 +23291,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "external_url": [ 80 @@ -23306,7 +23303,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "mime_type": [ 80 @@ -23340,10 +23337,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23377,10 +23374,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23399,10 +23396,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23421,10 +23418,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 3035 + 3008 ], "uploader_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23432,16 +23429,16 @@ export default { }, "event_organizers": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "organizer": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -23538,7 +23535,7 @@ export default { 1541 ], "count": [ - 3035 + 3008 ], "max": [ 1547 @@ -23592,7 +23589,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23609,16 +23606,16 @@ export default { 1542 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "organizer": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -23638,16 +23635,16 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "organizer": [ - 4004 + 3977 ], "steam_id": [ 259 @@ -23658,10 +23655,10 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23672,13 +23669,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23686,10 +23683,10 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23700,13 +23697,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23739,19 +23736,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "organizer": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23759,7 +23756,7 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23771,10 +23768,10 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23793,7 +23790,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23809,7 +23806,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23825,7 +23822,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23844,10 +23841,10 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -23866,7 +23863,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23897,7 +23894,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23913,7 +23910,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23929,7 +23926,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -23937,16 +23934,16 @@ export default { }, "event_players": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -24043,7 +24040,7 @@ export default { 1582 ], "count": [ - 3035 + 3008 ], "max": [ 1588 @@ -24097,7 +24094,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24114,16 +24111,16 @@ export default { 1583 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -24143,16 +24140,16 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 @@ -24163,10 +24160,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -24177,13 +24174,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24191,10 +24188,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -24205,13 +24202,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24244,19 +24241,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24264,7 +24261,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -24276,10 +24273,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -24298,7 +24295,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24314,7 +24311,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24330,7 +24327,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24349,10 +24346,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -24371,7 +24368,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24402,7 +24399,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24418,7 +24415,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24434,7 +24431,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24442,19 +24439,19 @@ export default { }, "event_teams": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24521,7 +24518,7 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ 1626 @@ -24555,19 +24552,19 @@ export default { 1622 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -24576,19 +24573,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24596,13 +24593,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24610,13 +24607,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24624,13 +24621,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24638,13 +24635,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24677,19 +24674,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24697,10 +24694,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24709,13 +24706,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24734,13 +24731,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24760,19 +24757,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4611 + 4584 ], "event": [ 1663 ], "event_id": [ - 5111 + 5084 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24839,7 +24836,7 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ 1650 @@ -24873,19 +24870,19 @@ export default { 1646 ], "created_at": [ - 4612 + 4585 ], "event": [ 1667 ], "event_id": [ - 5113 + 5086 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -24894,19 +24891,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4611 + 4584 ], "event": [ 1674 ], "event_id": [ - 5111 + 5084 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24914,13 +24911,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24928,13 +24925,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24942,13 +24939,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -24956,13 +24953,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -24995,19 +24992,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -25015,10 +25012,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -25027,13 +25024,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -25052,13 +25049,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "event_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -25125,7 +25122,7 @@ export default { 1450 ], "banner_media_id": [ - 5111 + 5084 ], "can_upload_media": [ 5 @@ -25134,19 +25131,19 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "hide_creator_organizer": [ 5 ], "id": [ - 5111 + 5084 ], "is_organizer": [ 5 @@ -25202,7 +25199,7 @@ export default { 80 ], "organizer": [ - 3993 + 3966 ], "organizer_steam_id": [ 259 @@ -25252,10 +25249,10 @@ export default { } ], "player_stats": [ - 5114, + 5087, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25265,19 +25262,19 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], "player_stats_aggregate": [ - 5115, + 5088, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -25287,11 +25284,11 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], @@ -25340,7 +25337,7 @@ export default { } ], "starts_at": [ - 4611 + 4584 ], "teams": [ 1615, @@ -25523,7 +25520,7 @@ export default { 1459 ], "banner_media_id": [ - 5113 + 5086 ], "can_upload_media": [ 6 @@ -25532,19 +25529,19 @@ export default { 6 ], "created_at": [ - 4612 + 4585 ], "description": [ 82 ], "ends_at": [ - 4612 + 4585 ], "hide_creator_organizer": [ 6 ], "id": [ - 5113 + 5086 ], "is_organizer": [ 6 @@ -25562,7 +25559,7 @@ export default { 82 ], "organizer": [ - 3997 + 3970 ], "organizer_steam_id": [ 261 @@ -25574,10 +25571,10 @@ export default { 1535 ], "player_stats": [ - 5133 + 5106 ], "player_stats_aggregate": [ - 5116 + 5089 ], "players": [ 1583 @@ -25586,7 +25583,7 @@ export default { 1576 ], "starts_at": [ - 4612 + 4585 ], "teams": [ 1622 @@ -25624,22 +25621,22 @@ export default { 1468 ], "banner_media_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "hide_creator_organizer": [ 5 ], "id": [ - 5111 + 5084 ], "media": [ 1456 @@ -25651,7 +25648,7 @@ export default { 80 ], "organizer": [ - 4004 + 3977 ], "organizer_steam_id": [ 259 @@ -25660,13 +25657,13 @@ export default { 1539 ], "player_stats": [ - 5130 + 5103 ], "players": [ 1580 ], "starts_at": [ - 4611 + 4584 ], "teams": [ 1621 @@ -25683,19 +25680,19 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -25704,7 +25701,7 @@ export default { 259 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -25712,19 +25709,19 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -25733,7 +25730,7 @@ export default { 259 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -25783,58 +25780,58 @@ export default { 1470 ], "banner_media_id": [ - 3035 + 3008 ], "can_upload_media": [ - 3035 + 3008 ], "can_view": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "ends_at": [ - 3035 + 3008 ], "hide_creator_organizer": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "media_access": [ - 3035 + 3008 ], "media_aggregate": [ 1455 ], "name": [ - 3035 + 3008 ], "organizer": [ - 4006 + 3979 ], "organizer_steam_id": [ - 3035 + 3008 ], "organizers_aggregate": [ 1538 ], "player_stats_aggregate": [ - 5129 + 5102 ], "players_aggregate": [ 1579 ], "starts_at": [ - 3035 + 3008 ], "teams_aggregate": [ 1620 @@ -25843,7 +25840,7 @@ export default { 1644 ], "visibility": [ - 3035 + 3008 ], "__typename": [ 80 @@ -25851,7 +25848,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -25860,22 +25857,22 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "hide_creator_organizer": [ 5 ], "id": [ - 5111 + 5084 ], "media_access": [ 681 @@ -25887,7 +25884,7 @@ export default { 259 ], "starts_at": [ - 4611 + 4584 ], "visibility": [ 701 @@ -25933,22 +25930,22 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "hide_creator_organizer": [ 5 ], "id": [ - 5111 + 5084 ], "media_access": [ 681 @@ -25960,7 +25957,7 @@ export default { 259 ], "starts_at": [ - 4611 + 4584 ], "visibility": [ 701 @@ -26242,13 +26239,13 @@ export default { 729 ], "other_player_steam_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "__typename": [ 80 @@ -26466,7 +26463,7 @@ export default { 40 ], "e_region": [ - 4107 + 4080 ], "e_status": [ 757 @@ -26513,7 +26510,7 @@ export default { 1840 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -26537,10 +26534,10 @@ export default { 80 ], "servers": [ - 4134, + 4107, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -26550,19 +26547,19 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_aggregate": [ - 4135, + 4108, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -26572,16 +26569,16 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -26753,7 +26750,7 @@ export default { 1731 ], "count": [ - 3035 + 3008 ], "max": [ 1740 @@ -26872,40 +26869,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -26964,7 +26961,7 @@ export default { 41 ], "e_region": [ - 4111 + 4084 ], "e_status": [ 760 @@ -27006,7 +27003,7 @@ export default { 1841 ], "offline_at": [ - 4612 + 4585 ], "pin_build_id": [ 41 @@ -27030,13 +27027,13 @@ export default { 82 ], "servers": [ - 4145 + 4118 ], "servers_aggregate": [ - 4136 + 4109 ], "shader_bake_progress": [ - 3034 + 3007 ], "shader_bake_progress_stage": [ 82 @@ -27186,7 +27183,7 @@ export default { 40 ], "shader_bake_progress": [ - 3033 + 3006 ], "start_port_range": [ 40 @@ -27236,7 +27233,7 @@ export default { 40 ], "e_region": [ - 4117 + 4090 ], "e_status": [ 768 @@ -27278,7 +27275,7 @@ export default { 1840 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -27299,10 +27296,10 @@ export default { 80 ], "servers": [ - 4142 + 4115 ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -27376,7 +27373,7 @@ export default { 80 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -27391,7 +27388,7 @@ export default { 80 ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -27417,70 +27414,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "pin_plugin_runtime": [ - 3035 + 3008 ], "pin_plugin_version": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "shader_bake_progress_stage": [ - 3035 + 3008 ], "shader_bake_status": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "token": [ - 3035 + 3008 ], "update_status": [ - 3035 + 3008 ], "__typename": [ 80 @@ -27524,7 +27521,7 @@ export default { 80 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -27539,7 +27536,7 @@ export default { 80 ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -27565,70 +27562,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "pin_plugin_runtime": [ - 3035 + 3008 ], "pin_plugin_version": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "shader_bake_progress_stage": [ - 3035 + 3008 ], "shader_bake_status": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "token": [ - 3035 + 3008 ], "update_status": [ - 3035 + 3008 ], "__typename": [ 80 @@ -27672,148 +27669,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 3035 + 3008 ], "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_frequency_info": [ - 3035 + 3008 ], "cpu_governor_info": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "cpu_warnings": [ - 3035 + 3008 ], "cs2_launch_options": [ - 3035 + 3008 ], "cs2_video_settings": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "e_region": [ - 4119 + 4092 ], "e_status": [ 770 ], "enabled": [ - 3035 + 3008 ], "enabled_for_match_making": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "gpu": [ - 3035 + 3008 ], "gpu_demos_enabled": [ - 3035 + 3008 ], "gpu_info": [ - 3035 + 3008 ], "gpu_rendering_enabled": [ - 3035 + 3008 ], "gpu_streaming_enabled": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "lan_ip": [ - 3035 + 3008 ], "node_ip": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "pin_plugin_runtime": [ - 3035 + 3008 ], "pin_plugin_version": [ - 3035 + 3008 ], "pinned_version": [ 1788 ], "plugin_supported": [ - 3035 + 3008 ], "public_ip": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "servers_aggregate": [ - 4141 + 4114 ], "shader_bake_progress": [ - 3035 + 3008 ], "shader_bake_progress_stage": [ - 3035 + 3008 ], "shader_bake_status": [ - 3035 + 3008 ], "shader_bake_status_history": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "supports_cpu_pinning": [ - 3035 + 3008 ], "supports_low_latency": [ - 3035 + 3008 ], "token": [ - 3035 + 3008 ], "total_server_count": [ - 3035 + 3008 ], "update_status": [ - 3035 + 3008 ], "version": [ 1788 @@ -27936,7 +27933,7 @@ export default { 1840 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -27954,7 +27951,7 @@ export default { 80 ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -28036,40 +28033,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28124,40 +28121,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28212,40 +28209,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28339,7 +28336,7 @@ export default { 1840 ], "offline_at": [ - 4611 + 4584 ], "pin_build_id": [ 40 @@ -28357,7 +28354,7 @@ export default { 80 ], "shader_bake_progress": [ - 3033 + 3006 ], "shader_bake_progress_stage": [ 80 @@ -28425,7 +28422,7 @@ export default { 40 ], "shader_bake_progress": [ - 3033 + 3006 ], "start_port_range": [ 40 @@ -28439,40 +28436,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28557,40 +28554,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28645,40 +28642,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28733,40 +28730,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 3035 + 3008 ], "cpu_cores_per_socket": [ - 3035 + 3008 ], "cpu_sockets": [ - 3035 + 3008 ], "cpu_threads_per_core": [ - 3035 + 3008 ], "csgo_build_id": [ - 3035 + 3008 ], "demo_network_limiter": [ - 3035 + 3008 ], "disk_available_gb": [ - 3035 + 3008 ], "disk_used_percent": [ - 3035 + 3008 ], "end_port_range": [ - 3035 + 3008 ], "pin_build_id": [ - 3035 + 3008 ], "shader_bake_progress": [ - 3035 + 3008 ], "start_port_range": [ - 3035 + 3008 ], "__typename": [ 80 @@ -28794,7 +28791,7 @@ export default { } ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -28903,7 +28900,7 @@ export default { 1846 ], "updated_at": [ - 4612 + 4585 ], "version": [ 82 @@ -28962,7 +28959,7 @@ export default { 1844 ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -28979,7 +28976,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -28996,7 +28993,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -29043,25 +29040,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 3035 + 3008 ], "current": [ - 3035 + 3008 ], "cvars": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "downloads": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "version": [ - 3035 + 3008 ], "__typename": [ 80 @@ -29101,7 +29098,7 @@ export default { 1844 ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -29162,7 +29159,7 @@ export default { 1844 ], "updated_at": [ - 4611 + 4584 ], "version": [ 80 @@ -29244,7 +29241,7 @@ export default { 1771 ], "id": [ - 5111 + 5084 ], "results": [ 1844, @@ -29258,7 +29255,7 @@ export default { 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29358,7 +29355,7 @@ export default { 1776 ], "id": [ - 5113 + 5086 ], "results": [ 1846 @@ -29367,7 +29364,7 @@ export default { 82 ], "validated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -29417,7 +29414,7 @@ export default { 1786 ], "id": [ - 5111 + 5084 ], "results": [ 1844 @@ -29426,7 +29423,7 @@ export default { 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29440,13 +29437,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "status": [ 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29460,13 +29457,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "status": [ 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29499,25 +29496,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 3035 + 3008 ], "build_id": [ - 3035 + 3008 ], "game_version": [ 1788 ], "id": [ - 3035 + 3008 ], "results": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "validated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -29525,7 +29522,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -29548,7 +29545,7 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "results": [ 1844 @@ -29557,7 +29554,7 @@ export default { 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29606,7 +29603,7 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "results": [ 1844 @@ -29615,7 +29612,7 @@ export default { 80 ], "validated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -29688,7 +29685,7 @@ export default { 80 ], "_event_id": [ - 5111 + 5084 ], "_match_type": [ 80 @@ -29714,7 +29711,7 @@ export default { 80 ], "_season_id": [ - 5111 + 5084 ], "_source": [ 80 @@ -29731,7 +29728,7 @@ export default { 80 ], "_league_season_id": [ - 5111 + 5084 ], "_role": [ 80 @@ -29754,7 +29751,7 @@ export default { 80 ], "_season_id": [ - 5111 + 5084 ], "_source": [ 80 @@ -30165,31 +30162,31 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 3035 + 3008 ], "player_avatar_url": [ - 3035 + 3008 ], "player_country": [ - 3035 + 3008 ], "player_custom_avatar_url": [ - 3035 + 3008 ], "player_name": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "secondary_value": [ - 3035 + 3008 ], "tertiary_value": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -30406,10 +30403,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5111 + 5084 ], "_winning_tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -30417,10 +30414,10 @@ export default { }, "league_divisions": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -30470,7 +30467,7 @@ export default { } ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30553,10 +30550,10 @@ export default { 1875 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "name": [ 82 @@ -30568,7 +30565,7 @@ export default { 2024 ], "tier": [ - 4199 + 4172 ], "__typename": [ 80 @@ -30577,7 +30574,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30585,10 +30582,10 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -30597,7 +30594,7 @@ export default { 2028 ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30605,16 +30602,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30622,16 +30619,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30675,19 +30672,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "season_divisions_aggregate": [ 2027 ], "tier": [ - 3035 + 3008 ], "__typename": [ 80 @@ -30695,7 +30692,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -30704,16 +30701,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30756,16 +30753,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 ], "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30773,7 +30770,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 4198 + 4171 ], "__typename": [ 80 @@ -30820,22 +30817,22 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "season": [ 2047 @@ -30935,7 +30932,7 @@ export default { 1907 ], "count": [ - 3035 + 3008 ], "max": [ 1913 @@ -30989,7 +30986,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31006,22 +31003,22 @@ export default { 1908 ], "closes_at": [ - 4612 + 4585 ], "created_at": [ - 4612 + 4585 ], "default_match_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "opens_at": [ - 4612 + 4585 ], "season": [ 2052 @@ -31044,22 +31041,22 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "season": [ 2062 @@ -31073,22 +31070,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "week_number": [ 40 @@ -31099,25 +31096,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31125,22 +31122,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "week_number": [ 40 @@ -31151,25 +31148,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31202,28 +31199,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "season": [ 2064 ], "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31231,7 +31228,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31240,22 +31237,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "week_number": [ 40 @@ -31274,7 +31271,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31290,7 +31287,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31306,7 +31303,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31325,22 +31322,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "week_number": [ 40 @@ -31359,7 +31356,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31390,7 +31387,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31406,7 +31403,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31422,7 +31419,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31430,40 +31427,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4611 + 4584 ], "higher_division": [ 1871 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division": [ 1871 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "season": [ 2047 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31557,7 +31554,7 @@ export default { 1948 ], "count": [ - 3035 + 3008 ], "max": [ 1954 @@ -31611,7 +31608,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31628,40 +31625,40 @@ export default { 1949 ], "created_at": [ - 4612 + 4585 ], "higher_division": [ 1875 ], "higher_division_id": [ - 5113 + 5086 ], "higher_slots": [ 41 ], "id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "lower_division": [ 1875 ], "lower_division_id": [ - 5113 + 5086 ], "resolved_at": [ - 4612 + 4585 ], "season": [ 2052 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -31678,40 +31675,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4611 + 4584 ], "higher_division": [ 1882 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division": [ 1882 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "season": [ 2062 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31719,28 +31716,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4611 + 4584 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31748,28 +31745,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3035 + 3008 ], "higher_division_id": [ - 3035 + 3008 ], "higher_slots": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "lower_division_id": [ - 3035 + 3008 ], "resolved_at": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31777,28 +31774,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4611 + 4584 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31806,28 +31803,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3035 + 3008 ], "higher_division_id": [ - 3035 + 3008 ], "higher_slots": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "lower_division_id": [ - 3035 + 3008 ], "resolved_at": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31860,40 +31857,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 3035 + 3008 ], "higher_division": [ 1884 ], "higher_division_id": [ - 3035 + 3008 ], "higher_slots": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "lower_division": [ 1884 ], "lower_division_id": [ - 3035 + 3008 ], "resolved_at": [ - 3035 + 3008 ], "season": [ 2064 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31901,7 +31898,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31910,28 +31907,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4611 + 4584 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -31947,7 +31944,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31963,7 +31960,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31979,7 +31976,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -31998,28 +31995,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "higher_division_id": [ - 5111 + 5084 ], "higher_slots": [ 40 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "lower_division_id": [ - 5111 + 5084 ], "resolved_at": [ - 4611 + 4584 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32035,7 +32032,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32066,7 +32063,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32082,7 +32079,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32098,7 +32095,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32106,34 +32103,34 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4655 + 4628 ], "created_at": [ - 4611 + 4584 ], "e_proposal_status": [ 799 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by": [ - 3993 + 3966 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by": [ - 3993 + 3966 ], "responded_by_steam_id": [ 259 @@ -32145,7 +32142,7 @@ export default { 2162 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32239,7 +32236,7 @@ export default { 1989 ], "count": [ - 3035 + 3008 ], "max": [ 1995 @@ -32296,10 +32293,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32316,34 +32313,34 @@ export default { 1990 ], "bracket": [ - 4666 + 4639 ], "created_at": [ - 4612 + 4585 ], "e_proposal_status": [ 802 ], "id": [ - 5113 + 5086 ], "message": [ 82 ], "proposed_by": [ - 3997 + 3970 ], "proposed_by_league_team_season_id": [ - 5113 + 5086 ], "proposed_by_steam_id": [ 261 ], "proposed_time": [ - 4612 + 4585 ], "responded_by": [ - 3997 + 3970 ], "responded_by_steam_id": [ 261 @@ -32355,7 +32352,7 @@ export default { 2171 ], "tournament_bracket_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -32375,34 +32372,34 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4675 + 4648 ], "created_at": [ - 4611 + 4584 ], "e_proposal_status": [ 810 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by": [ - 4004 + 3977 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by": [ - 4004 + 3977 ], "responded_by_steam_id": [ 259 @@ -32414,7 +32411,7 @@ export default { 2180 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32422,28 +32419,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by_steam_id": [ 259 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32451,28 +32448,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "proposed_by_league_team_season_id": [ - 3035 + 3008 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_time": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "tournament_bracket_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32480,28 +32477,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by_steam_id": [ 259 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32509,28 +32506,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "proposed_by_league_team_season_id": [ - 3035 + 3008 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_time": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "tournament_bracket_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32563,46 +32560,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4677 + 4650 ], "created_at": [ - 3035 + 3008 ], "e_proposal_status": [ 812 ], "id": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "proposed_by": [ - 4006 + 3979 ], "proposed_by_league_team_season_id": [ - 3035 + 3008 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_time": [ - 3035 + 3008 ], "responded_by": [ - 4006 + 3979 ], "responded_by_steam_id": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "team_season": [ 2182 ], "tournament_bracket_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32610,7 +32607,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32619,22 +32616,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by_steam_id": [ 259 @@ -32643,7 +32640,7 @@ export default { 804 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32662,10 +32659,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32684,10 +32681,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32706,10 +32703,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32728,22 +32725,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 ], "proposed_by_league_team_season_id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_time": [ - 4611 + 4584 ], "responded_by_steam_id": [ 259 @@ -32752,7 +32749,7 @@ export default { 804 ], "tournament_bracket_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32771,10 +32768,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32808,10 +32805,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32830,10 +32827,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32852,10 +32849,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "responded_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -32863,28 +32860,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4611 + 4584 ], "division": [ 1871 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "season": [ 2047 ], "standings": [ - 5183, + 5156, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32894,19 +32891,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "standings_aggregate": [ - 5184, + 5157, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -32916,19 +32913,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -32995,7 +32992,7 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ 2033 @@ -33029,34 +33026,34 @@ export default { 2029 ], "created_at": [ - 4612 + 4585 ], "division": [ 1875 ], "id": [ - 5113 + 5086 ], "league_division_id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "season": [ 2052 ], "standings": [ - 5192 + 5165 ], "standings_aggregate": [ - 5185 + 5158 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -33065,31 +33062,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4611 + 4584 ], "division": [ 1882 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "season": [ 2062 ], "standings": [ - 5189 + 5162 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33097,19 +33094,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33117,19 +33114,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -33137,19 +33134,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33157,19 +33154,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -33213,31 +33210,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 3035 + 3008 ], "division": [ 1884 ], "id": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "season": [ 2064 ], "standings_aggregate": [ - 5188 + 5161 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -33245,7 +33242,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33254,19 +33251,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33285,19 +33282,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "league_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -33367,7 +33364,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -33388,7 +33385,7 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "is_league_admin": [ 5 @@ -33397,7 +33394,7 @@ export default { 5 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks": [ 1899, @@ -33522,13 +33519,13 @@ export default { 80 ], "options": [ - 2699 + 2672 ], "player_stats": [ - 5216, + 5189, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33538,19 +33535,19 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], "player_stats_aggregate": [ - 5217, + 5190, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -33560,11 +33557,11 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], @@ -33648,7 +33645,7 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_divisions": [ 2022, @@ -33698,16 +33695,16 @@ export default { 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "standings": [ - 5183, + 5156, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33717,19 +33714,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "standings_aggregate": [ - 5184, + 5157, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -33739,16 +33736,16 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "starts_at": [ - 4611 + 4584 ], "status": [ 846 @@ -33951,7 +33948,7 @@ export default { 6 ], "created_at": [ - 4612 + 4585 ], "created_by_steam_id": [ 261 @@ -33972,7 +33969,7 @@ export default { 41 ], "id": [ - 5113 + 5086 ], "is_league_admin": [ 6 @@ -33981,7 +33978,7 @@ export default { 6 ], "match_options_id": [ - 5113 + 5086 ], "match_weeks": [ 1908 @@ -34011,13 +34008,13 @@ export default { 82 ], "options": [ - 2703 + 2676 ], "player_stats": [ - 5235 + 5208 ], "player_stats_aggregate": [ - 5218 + 5191 ], "playoff_best_of": [ 41 @@ -34056,7 +34053,7 @@ export default { 41 ], "roster_lock_at": [ - 4612 + 4585 ], "season_divisions": [ 2029 @@ -34068,19 +34065,19 @@ export default { 41 ], "signup_closes_at": [ - 4612 + 4585 ], "signup_opens_at": [ - 4612 + 4585 ], "standings": [ - 5192 + 5165 ], "standings_aggregate": [ - 5185 + 5158 ], "starts_at": [ - 4612 + 4585 ], "status": [ 847 @@ -34190,7 +34187,7 @@ export default { 196 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -34211,10 +34208,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks": [ 1905 @@ -34235,10 +34232,10 @@ export default { 80 ], "options": [ - 2710 + 2683 ], "player_stats": [ - 5232 + 5205 ], "playoff_best_of": [ 40 @@ -34274,7 +34271,7 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_divisions": [ 2028 @@ -34283,16 +34280,16 @@ export default { 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "standings": [ - 5189 + 5162 ], "starts_at": [ - 4611 + 4584 ], "status": [ 846 @@ -34309,7 +34306,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -34327,10 +34324,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks_count": [ 40 @@ -34363,19 +34360,19 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_number": [ 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -34383,7 +34380,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -34401,10 +34398,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks_count": [ 40 @@ -34437,19 +34434,19 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_number": [ 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -34493,58 +34490,58 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3035 + 3008 ], "awards_aggregate": [ 195 ], "can_register": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "created_by_steam_id": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "direct_promote_count": [ - 3035 + 3008 ], "direct_relegate_count": [ - 3035 + 3008 ], "e_league_season_status": [ 854 ], "games_per_week": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_league_admin": [ - 3035 + 3008 ], "is_roster_locked": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "match_weeks_aggregate": [ 1904 ], "match_weeks_count": [ - 3035 + 3008 ], "max_roster_size": [ - 3035 + 3008 ], "min_roster_size": [ - 3035 + 3008 ], "movements_aggregate": [ 2085 @@ -34553,76 +34550,76 @@ export default { 2167 ], "name": [ - 3035 + 3008 ], "options": [ - 2712 + 2685 ], "player_stats_aggregate": [ - 5231 + 5204 ], "playoff_best_of": [ - 3035 + 3008 ], "playoff_round_best_of": [ - 3035 + 3008 ], "playoff_seats": [ - 3035 + 3008 ], "playoff_stage_type": [ - 3035 + 3008 ], "playoff_third_place_match": [ - 3035 + 3008 ], "promote_count": [ - 3035 + 3008 ], "regular_season_stage_type": [ - 3035 + 3008 ], "relegate_count": [ - 3035 + 3008 ], "relegation_down_count": [ - 3035 + 3008 ], "relegation_playoffs_aggregate": [ 1945 ], "relegation_up_count": [ - 3035 + 3008 ], "roster_lock_at": [ - 3035 + 3008 ], "season_divisions_aggregate": [ 2027 ], "season_number": [ - 3035 + 3008 ], "signup_closes_at": [ - 3035 + 3008 ], "signup_opens_at": [ - 3035 + 3008 ], "standings_aggregate": [ - 5188 + 5161 ], "starts_at": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "team_seasons_aggregate": [ 2167 ], "week_best_of": [ - 3035 + 3008 ], "__typename": [ 80 @@ -34630,7 +34627,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -34653,7 +34650,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -34671,10 +34668,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks_count": [ 40 @@ -34719,19 +34716,19 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_number": [ 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "starts_at": [ - 4611 + 4584 ], "status": [ 846 @@ -34909,7 +34906,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "created_by_steam_id": [ 259 @@ -34927,10 +34924,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_weeks_count": [ 40 @@ -34975,19 +34972,19 @@ export default { 40 ], "roster_lock_at": [ - 4611 + 4584 ], "season_number": [ 40 ], "signup_closes_at": [ - 4611 + 4584 ], "signup_opens_at": [ - 4611 + 4584 ], "starts_at": [ - 4611 + 4584 ], "status": [ 846 @@ -35231,10 +35228,10 @@ export default { }, "league_team_movements": { "approved_at": [ - 4611 + 4584 ], "approved_by": [ - 3993 + 3966 ], "approved_by_steam_id": [ 259 @@ -35243,10 +35240,10 @@ export default { 1871 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "e_movement_type": [ 778 @@ -35258,25 +35255,25 @@ export default { 1871 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division": [ 1871 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2204 ], "league_team_id": [ - 5111 + 5084 ], "season": [ 2047 @@ -35376,7 +35373,7 @@ export default { 2088 ], "count": [ - 3035 + 3008 ], "max": [ 2094 @@ -35433,10 +35430,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35453,10 +35450,10 @@ export default { 2089 ], "approved_at": [ - 4612 + 4585 ], "approved_by": [ - 3997 + 3970 ], "approved_by_steam_id": [ 261 @@ -35465,10 +35462,10 @@ export default { 1875 ], "computed_to_division_id": [ - 5113 + 5086 ], "created_at": [ - 4612 + 4585 ], "e_movement_type": [ 781 @@ -35480,25 +35477,25 @@ export default { 1875 ], "final_to_division_id": [ - 5113 + 5086 ], "from_division": [ 1875 ], "from_division_id": [ - 5113 + 5086 ], "id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "league_team": [ 2207 ], "league_team_id": [ - 5113 + 5086 ], "season": [ 2052 @@ -35524,10 +35521,10 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4611 + 4584 ], "approved_by": [ - 4004 + 3977 ], "approved_by_steam_id": [ 259 @@ -35536,10 +35533,10 @@ export default { 1882 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "e_movement_type": [ 789 @@ -35551,25 +35548,25 @@ export default { 1882 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division": [ 1882 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2213 ], "league_team_id": [ - 5111 + 5084 ], "season": [ 2062 @@ -35583,34 +35580,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4611 + 4584 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -35618,34 +35615,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 3035 + 3008 ], "approved_by_steam_id": [ - 3035 + 3008 ], "computed_to_division_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "final_to_division_id": [ - 3035 + 3008 ], "from_division_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35653,34 +35650,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4611 + 4584 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -35688,34 +35685,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 3035 + 3008 ], "approved_by_steam_id": [ - 3035 + 3008 ], "computed_to_division_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "final_to_division_id": [ - 3035 + 3008 ], "from_division_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35748,58 +35745,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 3035 + 3008 ], "approved_by": [ - 4006 + 3979 ], "approved_by_steam_id": [ - 3035 + 3008 ], "computed_to_division": [ 1884 ], "computed_to_division_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "e_movement_type": [ 791 ], "final_rank": [ - 3035 + 3008 ], "final_to_division": [ 1884 ], "final_to_division_id": [ - 3035 + 3008 ], "from_division": [ 1884 ], "from_division_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team": [ 2215 ], "league_team_id": [ - 3035 + 3008 ], "season": [ 2064 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35807,7 +35804,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -35816,34 +35813,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4611 + 4584 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "type": [ 783 @@ -35865,10 +35862,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35887,10 +35884,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35909,10 +35906,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -35931,34 +35928,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4611 + 4584 ], "approved_by_steam_id": [ 259 ], "computed_to_division_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5111 + 5084 ], "from_division_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "type": [ 783 @@ -35980,10 +35977,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36017,10 +36014,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36039,10 +36036,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36061,10 +36058,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3035 + 3008 ], "final_rank": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36072,19 +36069,19 @@ export default { }, "league_team_rosters": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36187,7 +36184,7 @@ export default { 2129 ], "count": [ - 3035 + 3008 ], "max": [ 2135 @@ -36241,7 +36238,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36258,19 +36255,19 @@ export default { 2130 ], "added_at": [ - 4612 + 4585 ], "league_team_season_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 ], "removed_at": [ - 4612 + 4585 ], "removed_reason": [ 82 @@ -36296,19 +36293,19 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36325,16 +36322,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36345,19 +36342,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "removed_at": [ - 3035 + 3008 ], "removed_reason": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36365,16 +36362,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36385,19 +36382,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "removed_at": [ - 3035 + 3008 ], "removed_reason": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36430,25 +36427,25 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "removed_at": [ - 3035 + 3008 ], "removed_reason": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "team_season": [ 2182 @@ -36459,7 +36456,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -36471,16 +36468,16 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36502,7 +36499,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36518,7 +36515,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36534,7 +36531,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36553,16 +36550,16 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4611 + 4584 ], "league_team_season_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 ], "removed_at": [ - 4611 + 4584 ], "removed_reason": [ 80 @@ -36584,7 +36581,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36615,7 +36612,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36631,7 +36628,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36647,7 +36644,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36658,16 +36655,16 @@ export default { 1871 ], "assigned_division_id": [ - 5111 + 5084 ], "captain": [ - 3993 + 3966 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 @@ -36676,19 +36673,19 @@ export default { 820 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2204 ], "league_team_id": [ - 5111 + 5084 ], "registered_by": [ - 3993 + 3966 ], "registered_by_steam_id": [ 259 @@ -36697,7 +36694,7 @@ export default { 1871 ], "requested_division_id": [ - 5111 + 5084 ], "roster": [ 2121, @@ -36753,10 +36750,10 @@ export default { 825 ], "tournament_team": [ - 5005 + 4978 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -36850,7 +36847,7 @@ export default { 2170 ], "count": [ - 3035 + 3008 ], "max": [ 2176 @@ -36910,13 +36907,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -36936,16 +36933,16 @@ export default { 1875 ], "assigned_division_id": [ - 5113 + 5086 ], "captain": [ - 3997 + 3970 ], "captain_steam_id": [ 261 ], "created_at": [ - 4612 + 4585 ], "decline_reason": [ 82 @@ -36954,19 +36951,19 @@ export default { 823 ], "id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "league_team": [ 2207 ], "league_team_id": [ - 5113 + 5086 ], "registered_by": [ - 3997 + 3970 ], "registered_by_steam_id": [ 261 @@ -36975,7 +36972,7 @@ export default { 1875 ], "requested_division_id": [ - 5113 + 5086 ], "roster": [ 2130 @@ -36993,10 +36990,10 @@ export default { 826 ], "tournament_team": [ - 5014 + 4987 ], "tournament_team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -37022,16 +37019,16 @@ export default { 1882 ], "assigned_division_id": [ - 5111 + 5084 ], "captain": [ - 4004 + 3977 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 @@ -37040,19 +37037,19 @@ export default { 831 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2213 ], "league_team_id": [ - 5111 + 5084 ], "registered_by": [ - 4004 + 3977 ], "registered_by_steam_id": [ 259 @@ -37061,7 +37058,7 @@ export default { 1882 ], "requested_division_id": [ - 5111 + 5084 ], "roster": [ 2127 @@ -37076,10 +37073,10 @@ export default { 825 ], "tournament_team": [ - 5023 + 4996 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37087,37 +37084,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5111 + 5084 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5111 + 5084 ], "seed": [ 40 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37125,37 +37122,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3035 + 3008 ], "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "decline_reason": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "requested_division_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37163,37 +37160,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5111 + 5084 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5111 + 5084 ], "seed": [ 40 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37201,37 +37198,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3035 + 3008 ], "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "decline_reason": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "requested_division_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37278,46 +37275,46 @@ export default { 1884 ], "assigned_division_id": [ - 3035 + 3008 ], "captain": [ - 4006 + 3979 ], "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "decline_reason": [ - 3035 + 3008 ], "e_registration_status": [ 833 ], "id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team": [ 2215 ], "league_team_id": [ - 3035 + 3008 ], "registered_by": [ - 4006 + 3979 ], "registered_by_steam_id": [ - 3035 + 3008 ], "requested_division": [ 1884 ], "requested_division_id": [ - 3035 + 3008 ], "roster_aggregate": [ 2126 @@ -37326,16 +37323,16 @@ export default { 2064 ], "seed": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "tournament_team": [ - 5025 + 4998 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37343,7 +37340,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37352,31 +37349,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5111 + 5084 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5111 + 5084 ], "seed": [ 40 @@ -37385,7 +37382,7 @@ export default { 825 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37407,13 +37404,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37435,13 +37432,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37463,13 +37460,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37488,31 +37485,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5111 + 5084 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "decline_reason": [ 80 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "registered_by_steam_id": [ 259 ], "requested_division_id": [ - 5111 + 5084 ], "seed": [ 40 @@ -37521,7 +37518,7 @@ export default { 825 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37543,13 +37540,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37586,13 +37583,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37614,13 +37611,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37642,13 +37639,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "registered_by_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -37656,10 +37653,10 @@ export default { }, "league_teams": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "movements": [ 2080, @@ -37706,10 +37703,10 @@ export default { } ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "team_seasons": [ 2162, @@ -37804,10 +37801,10 @@ export default { 2207 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "movements": [ 2089 @@ -37816,10 +37813,10 @@ export default { 2082 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "team_seasons": [ 2171 @@ -37834,19 +37831,19 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "movements": [ 2086 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "team_seasons": [ 2168 @@ -37857,13 +37854,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37871,13 +37868,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37921,19 +37918,19 @@ export default { }, "league_teams_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "movements_aggregate": [ 2085 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "team_seasons_aggregate": [ 2167 @@ -37944,7 +37941,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37953,13 +37950,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -37978,13 +37975,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38007,13 +38004,13 @@ export default { 867 ], "created_at": [ - 4611 + 4584 ], "e_lobby_access": [ 862 ], "id": [ - 5111 + 5084 ], "players": [ 2242, @@ -38111,13 +38108,13 @@ export default { 868 ], "created_at": [ - 4612 + 4585 ], "e_lobby_access": [ 865 ], "id": [ - 5113 + 5086 ], "players": [ 2253 @@ -38135,13 +38132,13 @@ export default { 867 ], "created_at": [ - 4611 + 4584 ], "e_lobby_access": [ 873 ], "id": [ - 5111 + 5084 ], "players": [ 2250 @@ -38152,10 +38149,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38163,10 +38160,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38210,16 +38207,16 @@ export default { }, "lobbies_order_by": { "access": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "e_lobby_access": [ 875 ], "id": [ - 3035 + 3008 ], "players_aggregate": [ 2249 @@ -38230,7 +38227,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38242,10 +38239,10 @@ export default { 867 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38267,10 +38264,10 @@ export default { 867 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -38299,10 +38296,10 @@ export default { 2223 ], "lobby_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "status": [ 888 @@ -38442,7 +38439,7 @@ export default { 2252 ], "count": [ - 3035 + 3008 ], "max": [ 2258 @@ -38499,10 +38496,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38528,10 +38525,10 @@ export default { 2226 ], "lobby_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "status": [ 889 @@ -38566,10 +38563,10 @@ export default { 2232 ], "lobby_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "status": [ 888 @@ -38586,7 +38583,7 @@ export default { 259 ], "lobby_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -38597,13 +38594,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "lobby_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38614,7 +38611,7 @@ export default { 259 ], "lobby_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -38625,13 +38622,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "lobby_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38664,25 +38661,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "lobby": [ 2234 ], "lobby_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "status": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38690,7 +38687,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -38710,7 +38707,7 @@ export default { 259 ], "lobby_id": [ - 5111 + 5084 ], "status": [ 888 @@ -38735,10 +38732,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38757,10 +38754,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38779,10 +38776,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38807,7 +38804,7 @@ export default { 259 ], "lobby_id": [ - 5111 + 5084 ], "status": [ 888 @@ -38832,10 +38829,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38869,10 +38866,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38891,10 +38888,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38913,10 +38910,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -38930,13 +38927,13 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "maps": [ - 5771, + 5744, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38946,19 +38943,19 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], "maps_aggregate": [ - 5772, + 5745, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -38968,11 +38965,11 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], @@ -39037,13 +39034,13 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "maps": [ - 5780 + 5753 ], "maps_aggregate": [ - 5773 + 5746 ], "seed": [ 6 @@ -39064,10 +39061,10 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "maps": [ - 5779 + 5752 ], "seed": [ 5 @@ -39081,7 +39078,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -39089,7 +39086,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -39136,19 +39133,19 @@ export default { 916 ], "enabled": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "maps_aggregate": [ - 5778 + 5751 ], "seed": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -39156,7 +39153,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -39168,7 +39165,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "seed": [ 5 @@ -39196,7 +39193,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "seed": [ 5 @@ -39231,16 +39228,16 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "match_maps": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -39250,19 +39247,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -39272,19 +39269,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39294,19 +39291,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -39316,11 +39313,11 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], @@ -39444,7 +39441,7 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ 2319 @@ -39487,22 +39484,22 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "label": [ 82 ], "match_maps": [ - 2666 + 2639 ], "match_maps_aggregate": [ - 2659 + 2632 ], "match_veto_picks": [ - 2638 + 2611 ], "match_veto_picks_aggregate": [ - 2631 + 2604 ], "name": [ 82 @@ -39535,16 +39532,16 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "match_maps": [ - 2663 + 2636 ], "match_veto_picks": [ - 2637 + 2610 ], "name": [ 80 @@ -39567,7 +39564,7 @@ export default { }, "maps_max_fields": { "id": [ - 5111 + 5084 ], "label": [ 80 @@ -39590,22 +39587,22 @@ export default { }, "maps_max_order_by": { "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -39613,7 +39610,7 @@ export default { }, "maps_min_fields": { "id": [ - 5111 + 5084 ], "label": [ 80 @@ -39636,22 +39633,22 @@ export default { }, "maps_min_order_by": { "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -39695,40 +39692,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 3035 + 3008 ], "e_match_type": [ 1039 ], "enabled": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "match_maps_aggregate": [ - 2662 + 2635 ], "match_veto_picks_aggregate": [ - 2636 + 2609 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -39736,7 +39733,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -39753,7 +39750,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -39796,7 +39793,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -39832,381 +39829,9 @@ export default { 80 ] }, - "match_camera_tokens": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match": [ - 2823 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_aggregate": { - "aggregate": [ - 2337 - ], - "nodes": [ - 2335 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_aggregate_fields": { - "avg": [ - 2338 - ], - "count": [ - 40, - { - "columns": [ - 2349, - "[match_camera_tokens_select_column!]" - ], - "distinct": [ - 5 - ] - } - ], - "max": [ - 2343 - ], - "min": [ - 2344 - ], - "stddev": [ - 2351 - ], - "stddev_pop": [ - 2352 - ], - "stddev_samp": [ - 2353 - ], - "sum": [ - 2356 - ], - "var_pop": [ - 2359 - ], - "var_samp": [ - 2360 - ], - "variance": [ - 2361 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_avg_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_bool_exp": { - "_and": [ - 2339 - ], - "_not": [ - 2339 - ], - "_or": [ - 2339 - ], - "created_at": [ - 4612 - ], - "id": [ - 5113 - ], - "match": [ - 2832 - ], - "match_id": [ - 5113 - ], - "steam_id": [ - 261 - ], - "token": [ - 5113 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_constraint": {}, - "match_camera_tokens_inc_input": { - "steam_id": [ - 259 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_insert_input": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match": [ - 2841 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_max_fields": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_min_fields": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_mutation_response": { - "affected_rows": [ - 40 - ], - "returning": [ - 2335 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_on_conflict": { - "constraint": [ - 2340 - ], - "update_columns": [ - 2357 - ], - "where": [ - 2339 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_order_by": { - "created_at": [ - 3035 - ], - "id": [ - 3035 - ], - "match": [ - 2843 - ], - "match_id": [ - 3035 - ], - "steam_id": [ - 3035 - ], - "token": [ - 3035 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_pk_columns_input": { - "id": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_select_column": {}, - "match_camera_tokens_set_input": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_stddev_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_stddev_pop_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_stddev_samp_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_stream_cursor_input": { - "initial_value": [ - 2355 - ], - "ordering": [ - 315 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_stream_cursor_value_input": { - "created_at": [ - 4611 - ], - "id": [ - 5111 - ], - "match_id": [ - 5111 - ], - "steam_id": [ - 259 - ], - "token": [ - 5111 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_sum_fields": { - "steam_id": [ - 259 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_update_column": {}, - "match_camera_tokens_updates": { - "_inc": [ - 2341 - ], - "_set": [ - 2350 - ], - "where": [ - 2339 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_var_pop_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_var_samp_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, - "match_camera_tokens_variance_fields": { - "steam_id": [ - 31 - ], - "__typename": [ - 80 - ] - }, "match_clips": { "created_at": [ - 4611 + 4584 ], "download_url": [ 80 @@ -40218,22 +39843,22 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map": [ - 2657 + 2630 ], "match_map_demo": [ - 2537 + 2510 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "render_jobs": [ 264, @@ -40286,7 +39911,7 @@ export default { 259 ], "target": [ - 3993 + 3966 ], "target_steam_id": [ 259 @@ -40301,7 +39926,7 @@ export default { 80 ], "user": [ - 3993 + 3966 ], "user_steam_id": [ 259 @@ -40318,10 +39943,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2366 + 2339 ], "nodes": [ - 2362 + 2335 ], "__typename": [ 80 @@ -40329,7 +39954,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2365 + 2338 ], "__typename": [ 80 @@ -40337,13 +39962,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2384 + 2357 ], "distinct": [ 5 ], "filter": [ - 2371 + 2344 ], "predicate": [ 41 @@ -40354,13 +39979,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2369 + 2342 ], "count": [ 40, { "columns": [ - 2384, + 2357, "[match_clips_select_column!]" ], "distinct": [ @@ -40369,31 +39994,31 @@ export default { } ], "max": [ - 2375 + 2348 ], "min": [ - 2377 + 2350 ], "stddev": [ - 2386 + 2359 ], "stddev_pop": [ - 2388 + 2361 ], "stddev_samp": [ - 2390 + 2363 ], "sum": [ - 2394 + 2367 ], "var_pop": [ - 2398 + 2371 ], "var_samp": [ - 2400 + 2373 ], "variance": [ - 2402 + 2375 ], "__typename": [ 80 @@ -40401,37 +40026,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2370 + 2343 ], "count": [ - 3035 + 3008 ], "max": [ - 2376 + 2349 ], "min": [ - 2378 + 2351 ], "stddev": [ - 2387 + 2360 ], "stddev_pop": [ - 2389 + 2362 ], "stddev_samp": [ - 2391 + 2364 ], "sum": [ - 2395 + 2368 ], "var_pop": [ - 2399 + 2372 ], "var_samp": [ - 2401 + 2374 ], "variance": [ - 2403 + 2376 ], "__typename": [ 80 @@ -40439,10 +40064,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2374 + 2347 ], "on_conflict": [ - 2381 + 2354 ], "__typename": [ 80 @@ -40476,25 +40101,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -40502,16 +40127,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2371 + 2344 ], "_not": [ - 2371 + 2344 ], "_or": [ - 2371 + 2344 ], "created_at": [ - 4612 + 4585 ], "download_url": [ 82 @@ -40523,22 +40148,22 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "kills_count": [ 41 ], "match_map": [ - 2666 + 2639 ], "match_map_demo": [ - 2549 + 2522 ], "match_map_demo_id": [ - 5113 + 5086 ], "match_map_id": [ - 5113 + 5086 ], "render_jobs": [ 276 @@ -40553,7 +40178,7 @@ export default { 261 ], "target": [ - 3997 + 3970 ], "target_steam_id": [ 261 @@ -40568,7 +40193,7 @@ export default { 82 ], "user": [ - 3997 + 3970 ], "user_steam_id": [ 261 @@ -40612,7 +40237,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4611 + 4584 ], "duration_ms": [ 40 @@ -40621,22 +40246,22 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map": [ - 2675 + 2648 ], "match_map_demo": [ - 2561 + 2534 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "render_jobs": [ 273 @@ -40648,7 +40273,7 @@ export default { 259 ], "target": [ - 4004 + 3977 ], "target_steam_id": [ 259 @@ -40660,7 +40285,7 @@ export default { 80 ], "user": [ - 4004 + 3977 ], "user_steam_id": [ 259 @@ -40677,7 +40302,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4611 + 4584 ], "download_url": [ 80 @@ -40689,16 +40314,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -40730,46 +40355,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 3035 + 3008 ], "duration_ms": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "thumbnail_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -40777,7 +40402,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4611 + 4584 ], "download_url": [ 80 @@ -40789,16 +40414,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -40830,46 +40455,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 3035 + 3008 ], "duration_ms": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "thumbnail_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -40880,7 +40505,7 @@ export default { 40 ], "returning": [ - 2362 + 2335 ], "__typename": [ 80 @@ -40888,10 +40513,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2374 + 2347 ], "on_conflict": [ - 2381 + 2354 ], "__typename": [ 80 @@ -40899,13 +40524,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2372 + 2345 ], "update_columns": [ - 2396 + 2369 ], "where": [ - 2371 + 2344 ], "__typename": [ 80 @@ -40913,70 +40538,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 3035 + 3008 ], "download_url": [ - 3035 + 3008 ], "duration_ms": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_demo": [ - 2563 + 2536 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "render_jobs_aggregate": [ 271 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target": [ - 4006 + 3979 ], "target_steam_id": [ - 3035 + 3008 ], "thumbnail_download_url": [ - 3035 + 3008 ], "thumbnail_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "user": [ - 4006 + 3979 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "visibility": [ - 3035 + 3008 ], "__typename": [ 80 @@ -40984,7 +40609,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -40993,7 +40618,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4611 + 4584 ], "duration_ms": [ 40 @@ -41002,16 +40627,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -41069,25 +40694,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41121,25 +40746,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41173,25 +40798,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41199,7 +40824,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2393 + 2366 ], "ordering": [ 315 @@ -41210,7 +40835,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "duration_ms": [ 40 @@ -41219,16 +40844,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -41286,25 +40911,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41313,13 +40938,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2373 + 2346 ], "_set": [ - 2385 + 2358 ], "where": [ - 2371 + 2344 ], "__typename": [ 80 @@ -41353,25 +40978,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41405,25 +41030,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41457,25 +41082,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 3035 + 3008 ], "kills_count": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "target_steam_id": [ - 3035 + 3008 ], "user_steam_id": [ - 3035 + 3008 ], "views_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41483,7 +41108,7 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -41495,34 +41120,34 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_demo": [ - 2537 + 2510 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -41539,7 +41164,7 @@ export default { 80 ], "watcher": [ - 3993 + 3966 ], "watcher_steam_id": [ 259 @@ -41550,10 +41175,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2408 + 2381 ], "nodes": [ - 2404 + 2377 ], "__typename": [ 80 @@ -41561,7 +41186,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2407 + 2380 ], "__typename": [ 80 @@ -41569,13 +41194,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2430 + 2403 ], "distinct": [ 5 ], "filter": [ - 2414 + 2387 ], "predicate": [ 41 @@ -41586,13 +41211,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2412 + 2385 ], "count": [ 40, { "columns": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -41601,31 +41226,31 @@ export default { } ], "max": [ - 2421 + 2394 ], "min": [ - 2423 + 2396 ], "stddev": [ - 2432 + 2405 ], "stddev_pop": [ - 2434 + 2407 ], "stddev_samp": [ - 2436 + 2409 ], "sum": [ - 2440 + 2413 ], "var_pop": [ - 2444 + 2417 ], "var_samp": [ - 2446 + 2419 ], "variance": [ - 2448 + 2421 ], "__typename": [ 80 @@ -41633,37 +41258,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2413 + 2386 ], "count": [ - 3035 + 3008 ], "max": [ - 2422 + 2395 ], "min": [ - 2424 + 2397 ], "stddev": [ - 2433 + 2406 ], "stddev_pop": [ - 2435 + 2408 ], "stddev_samp": [ - 2437 + 2410 ], "sum": [ - 2441 + 2414 ], "var_pop": [ - 2445 + 2418 ], "var_samp": [ - 2447 + 2420 ], "variance": [ - 2449 + 2422 ], "__typename": [ 80 @@ -41679,10 +41304,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2420 + 2393 ], "on_conflict": [ - 2426 + 2399 ], "__typename": [ 80 @@ -41698,7 +41323,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41706,16 +41331,16 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2414 + 2387 ], "_not": [ - 2414 + 2387 ], "_or": [ - 2414 + 2387 ], "created_at": [ - 4612 + 4585 ], "error_message": [ 82 @@ -41727,34 +41352,34 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "k8s_job_name": [ 82 ], "last_activity_at": [ - 4612 + 4585 ], "last_status_at": [ - 4612 + 4585 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_demo": [ - 2549 + 2522 ], "match_map_demo_id": [ - 5113 + 5086 ], "match_map_id": [ - 5113 + 5086 ], "status": [ 82 @@ -41766,7 +41391,7 @@ export default { 82 ], "watcher": [ - 3997 + 3970 ], "watcher_steam_id": [ 261 @@ -41810,7 +41435,7 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -41822,34 +41447,34 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_demo": [ - 2561 + 2534 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -41861,7 +41486,7 @@ export default { 80 ], "watcher": [ - 4004 + 3977 ], "watcher_steam_id": [ 259 @@ -41872,7 +41497,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -41881,25 +41506,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -41916,43 +41541,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_activity_at": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -41960,7 +41585,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -41969,25 +41594,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -42004,43 +41629,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_activity_at": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42051,7 +41676,7 @@ export default { 40 ], "returning": [ - 2404 + 2377 ], "__typename": [ 80 @@ -42059,13 +41684,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2415 + 2388 ], "update_columns": [ - 2442 + 2415 ], "where": [ - 2414 + 2387 ], "__typename": [ 80 @@ -42073,61 +41698,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node": [ 1746 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "last_activity_at": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_demo": [ - 2563 + 2536 ], "match_map_demo_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "status_history": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "watcher": [ - 4006 + 3979 ], "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42135,7 +41760,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -42152,7 +41777,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -42161,25 +41786,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -42207,7 +41832,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42223,7 +41848,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42239,7 +41864,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42247,7 +41872,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2439 + 2412 ], "ordering": [ 315 @@ -42258,7 +41883,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "error_message": [ 80 @@ -42267,25 +41892,25 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4611 + 4584 ], "last_status_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "status": [ 80 @@ -42313,7 +41938,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42322,28 +41947,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2410 + 2383 ], "_delete_at_path": [ - 2416 + 2389 ], "_delete_elem": [ - 2417 + 2390 ], "_delete_key": [ - 2418 + 2391 ], "_inc": [ - 2419 + 2392 ], "_prepend": [ - 2429 + 2402 ], "_set": [ - 2431 + 2404 ], "where": [ - 2414 + 2387 ], "__typename": [ 80 @@ -42359,7 +41984,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42375,7 +42000,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42391,7 +42016,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42408,19 +42033,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_connected": [ 5 ], "lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "party_source": [ 990 @@ -42429,7 +42054,7 @@ export default { 80 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -42440,10 +42065,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2456 + 2429 ], "nodes": [ - 2450 + 2423 ], "__typename": [ 80 @@ -42451,13 +42076,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2453 + 2426 ], "bool_or": [ - 2454 + 2427 ], "count": [ - 2455 + 2428 ], "__typename": [ 80 @@ -42465,13 +42090,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2474 + 2447 ], "distinct": [ 5 ], "filter": [ - 2461 + 2434 ], "predicate": [ 6 @@ -42482,13 +42107,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2475 + 2448 ], "distinct": [ 5 ], "filter": [ - 2461 + 2434 ], "predicate": [ 6 @@ -42499,13 +42124,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2473 + 2446 ], "distinct": [ 5 ], "filter": [ - 2461 + 2434 ], "predicate": [ 41 @@ -42516,13 +42141,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2459 + 2432 ], "count": [ 40, { "columns": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -42531,31 +42156,31 @@ export default { } ], "max": [ - 2465 + 2438 ], "min": [ - 2467 + 2440 ], "stddev": [ - 2477 + 2450 ], "stddev_pop": [ - 2479 + 2452 ], "stddev_samp": [ - 2481 + 2454 ], "sum": [ - 2485 + 2458 ], "var_pop": [ - 2489 + 2462 ], "var_samp": [ - 2491 + 2464 ], "variance": [ - 2493 + 2466 ], "__typename": [ 80 @@ -42563,37 +42188,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2460 + 2433 ], "count": [ - 3035 + 3008 ], "max": [ - 2466 + 2439 ], "min": [ - 2468 + 2441 ], "stddev": [ - 2478 + 2451 ], "stddev_pop": [ - 2480 + 2453 ], "stddev_samp": [ - 2482 + 2455 ], "sum": [ - 2486 + 2459 ], "var_pop": [ - 2490 + 2463 ], "var_samp": [ - 2492 + 2465 ], "variance": [ - 2494 + 2467 ], "__typename": [ 80 @@ -42601,10 +42226,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2464 + 2437 ], "on_conflict": [ - 2470 + 2443 ], "__typename": [ 80 @@ -42620,7 +42245,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42628,13 +42253,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2461 + 2434 ], "_not": [ - 2461 + 2434 ], "_or": [ - 2461 + 2434 ], "captain": [ 6 @@ -42646,19 +42271,19 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "is_connected": [ 6 ], "lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "party_id": [ - 5113 + 5086 ], "party_source": [ 991 @@ -42667,7 +42292,7 @@ export default { 82 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -42696,19 +42321,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_connected": [ 5 ], "lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "party_source": [ 990 @@ -42717,7 +42342,7 @@ export default { 80 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 @@ -42731,13 +42356,13 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -42751,22 +42376,22 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "party_id": [ - 3035 + 3008 ], "placeholder_name": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42777,13 +42402,13 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -42797,22 +42422,22 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "party_id": [ - 3035 + 3008 ], "placeholder_name": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42823,7 +42448,7 @@ export default { 40 ], "returning": [ - 2450 + 2423 ], "__typename": [ 80 @@ -42831,13 +42456,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2462 + 2435 ], "update_columns": [ - 2487 + 2460 ], "where": [ - 2461 + 2434 ], "__typename": [ 80 @@ -42845,40 +42470,40 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 3035 + 3008 ], "checked_in": [ - 3035 + 3008 ], "discord_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_connected": [ - 3035 + 3008 ], "lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "party_id": [ - 3035 + 3008 ], "party_source": [ - 3035 + 3008 ], "placeholder_name": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42886,7 +42511,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -42906,16 +42531,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "party_source": [ 990 @@ -42940,7 +42565,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42956,7 +42581,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42972,7 +42597,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -42980,7 +42605,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2484 + 2457 ], "ordering": [ 315 @@ -43000,16 +42625,16 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5111 + 5084 ], "party_id": [ - 5111 + 5084 ], "party_source": [ 990 @@ -43034,7 +42659,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43043,13 +42668,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2463 + 2436 ], "_set": [ - 2476 + 2449 ], "where": [ - 2461 + 2434 ], "__typename": [ 80 @@ -43065,7 +42690,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43081,7 +42706,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43097,7 +42722,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43114,16 +42739,16 @@ export default { 5 ], "captain": [ - 5267 + 5240 ], "coach": [ - 3993 + 3966 ], "coach_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "is_on_lineup": [ 5 @@ -43138,10 +42763,10 @@ export default { 5 ], "lineup_players": [ - 2450, + 2423, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -43151,19 +42776,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "lineup_players_aggregate": [ - 2451, + 2424, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -43173,25 +42798,25 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43201,19 +42826,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43223,11 +42848,11 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], @@ -43235,10 +42860,10 @@ export default { 80 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43249,10 +42874,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2499 + 2472 ], "nodes": [ - 2495 + 2468 ], "__typename": [ 80 @@ -43260,7 +42885,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2498 + 2471 ], "__typename": [ 80 @@ -43268,13 +42893,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2517 + 2490 ], "distinct": [ 5 ], "filter": [ - 2504 + 2477 ], "predicate": [ 41 @@ -43285,13 +42910,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2502 + 2475 ], "count": [ 40, { "columns": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "distinct": [ @@ -43300,31 +42925,31 @@ export default { } ], "max": [ - 2508 + 2481 ], "min": [ - 2510 + 2483 ], "stddev": [ - 2519 + 2492 ], "stddev_pop": [ - 2521 + 2494 ], "stddev_samp": [ - 2523 + 2496 ], "sum": [ - 2527 + 2500 ], "var_pop": [ - 2531 + 2504 ], "var_samp": [ - 2533 + 2506 ], "variance": [ - 2535 + 2508 ], "__typename": [ 80 @@ -43332,37 +42957,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2503 + 2476 ], "count": [ - 3035 + 3008 ], "max": [ - 2509 + 2482 ], "min": [ - 2511 + 2484 ], "stddev": [ - 2520 + 2493 ], "stddev_pop": [ - 2522 + 2495 ], "stddev_samp": [ - 2524 + 2497 ], "sum": [ - 2528 + 2501 ], "var_pop": [ - 2532 + 2505 ], "var_samp": [ - 2534 + 2507 ], "variance": [ - 2536 + 2509 ], "__typename": [ 80 @@ -43370,10 +42995,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2507 + 2480 ], "on_conflict": [ - 2514 + 2487 ], "__typename": [ 80 @@ -43389,7 +43014,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43397,13 +43022,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2504 + 2477 ], "_not": [ - 2504 + 2477 ], "_or": [ - 2504 + 2477 ], "can_pick_map_veto": [ 6 @@ -43415,16 +43040,16 @@ export default { 6 ], "captain": [ - 5271 + 5244 ], "coach": [ - 3997 + 3970 ], "coach_steam_id": [ 261 ], "id": [ - 5113 + 5086 ], "is_on_lineup": [ 6 @@ -43439,31 +43064,31 @@ export default { 6 ], "lineup_players": [ - 2461 + 2434 ], "lineup_players_aggregate": [ - 2452 + 2425 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_veto_picks": [ - 2638 + 2611 ], "match_veto_picks_aggregate": [ - 2631 + 2604 ], "name": [ 82 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "team_name": [ 82 @@ -43483,34 +43108,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 5277 + 5250 ], "coach": [ - 4004 + 3977 ], "coach_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "lineup_players": [ - 2458 + 2431 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_veto_picks": [ - 2637 + 2610 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43524,16 +43149,16 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "name": [ 80 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43544,19 +43169,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "team_name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43567,16 +43192,16 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "name": [ 80 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43587,19 +43212,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "team_name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43610,7 +43235,7 @@ export default { 40 ], "returning": [ - 2495 + 2468 ], "__typename": [ 80 @@ -43618,10 +43243,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2507 + 2480 ], "on_conflict": [ - 2514 + 2487 ], "__typename": [ 80 @@ -43629,13 +43254,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2505 + 2478 ], "update_columns": [ - 2529 + 2502 ], "where": [ - 2504 + 2477 ], "__typename": [ 80 @@ -43643,61 +43268,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3035 + 3008 ], "can_pick_region_veto": [ - 3035 + 3008 ], "can_update_lineup": [ - 3035 + 3008 ], "captain": [ - 5278 + 5251 ], "coach": [ - 4006 + 3979 ], "coach_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_on_lineup": [ - 3035 + 3008 ], "is_picking_map_veto": [ - 3035 + 3008 ], "is_picking_region_veto": [ - 3035 + 3008 ], "is_ready": [ - 3035 + 3008 ], "lineup_players_aggregate": [ - 2457 + 2430 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_veto_picks_aggregate": [ - 2636 + 2609 ], "name": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "team_name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43705,7 +43330,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -43717,13 +43342,13 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43742,7 +43367,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43758,7 +43383,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43774,7 +43399,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43782,7 +43407,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2526 + 2499 ], "ordering": [ 315 @@ -43796,13 +43421,13 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "team_name": [ 80 @@ -43821,7 +43446,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43830,13 +43455,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2506 + 2479 ], "_set": [ - 2518 + 2491 ], "where": [ - 2504 + 2477 ], "__typename": [ 80 @@ -43852,7 +43477,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43868,7 +43493,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43884,7 +43509,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -43944,16 +43569,16 @@ export default { } ], "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2404, + 2377, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43963,19 +43588,19 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], "demo_sessions_aggregate": [ - 2405, + 2378, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -43985,11 +43610,11 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], @@ -44006,7 +43631,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "kills": [ 1844, @@ -44020,13 +43645,13 @@ export default { 80 ], "match": [ - 2823 + 2796 ], "match_clips": [ - 2362, + 2335, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -44036,19 +43661,19 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_aggregate": [ - 2363, + 2336, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -44058,25 +43683,25 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -44121,10 +43746,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2543 + 2516 ], "nodes": [ - 2537 + 2510 ], "__typename": [ 80 @@ -44132,13 +43757,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2540 + 2513 ], "bool_or": [ - 2541 + 2514 ], "count": [ - 2542 + 2515 ], "__typename": [ 80 @@ -44146,13 +43771,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2567 + 2540 ], "distinct": [ 5 ], "filter": [ - 2549 + 2522 ], "predicate": [ 6 @@ -44163,13 +43788,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2568 + 2541 ], "distinct": [ 5 ], "filter": [ - 2549 + 2522 ], "predicate": [ 6 @@ -44180,13 +43805,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2566 + 2539 ], "distinct": [ 5 ], "filter": [ - 2549 + 2522 ], "predicate": [ 41 @@ -44197,13 +43822,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2547 + 2520 ], "count": [ 40, { "columns": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "distinct": [ @@ -44212,31 +43837,31 @@ export default { } ], "max": [ - 2556 + 2529 ], "min": [ - 2558 + 2531 ], "stddev": [ - 2570 + 2543 ], "stddev_pop": [ - 2572 + 2545 ], "stddev_samp": [ - 2574 + 2547 ], "sum": [ - 2578 + 2551 ], "var_pop": [ - 2582 + 2555 ], "var_samp": [ - 2584 + 2557 ], "variance": [ - 2586 + 2559 ], "__typename": [ 80 @@ -44244,37 +43869,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2548 + 2521 ], "count": [ - 3035 + 3008 ], "max": [ - 2557 + 2530 ], "min": [ - 2559 + 2532 ], "stddev": [ - 2571 + 2544 ], "stddev_pop": [ - 2573 + 2546 ], "stddev_samp": [ - 2575 + 2548 ], "sum": [ - 2579 + 2552 ], "var_pop": [ - 2583 + 2556 ], "var_samp": [ - 2585 + 2558 ], "variance": [ - 2587 + 2560 ], "__typename": [ 80 @@ -44299,10 +43924,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2555 + 2528 ], "on_conflict": [ - 2562 + 2535 ], "__typename": [ 80 @@ -44330,19 +43955,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -44350,13 +43975,13 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2549 + 2522 ], "_not": [ - 2549 + 2522 ], "_or": [ - 2549 + 2522 ], "bombs": [ 1846 @@ -44368,16 +43993,16 @@ export default { 266 ], "created_at": [ - 4612 + 4585 ], "cs2_build": [ 82 ], "demo_sessions": [ - 2414 + 2387 ], "demo_sessions_aggregate": [ - 2406 + 2379 ], "download_url": [ 82 @@ -44392,7 +44017,7 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "kills": [ 1846 @@ -44401,25 +44026,25 @@ export default { 82 ], "match": [ - 2832 + 2805 ], "match_clips": [ - 2371 + 2344 ], "match_clips_aggregate": [ - 2364 + 2337 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "metadata_parsed_at": [ - 4612 + 4585 ], "playback_file": [ 82 @@ -44529,13 +44154,13 @@ export default { 273 ], "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2411 + 2384 ], "file": [ 80 @@ -44544,7 +44169,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "kills": [ 1844 @@ -44553,22 +44178,22 @@ export default { 80 ], "match": [ - 2841 + 2814 ], "match_clips": [ - 2368 + 2341 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -44600,7 +44225,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 @@ -44615,19 +44240,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "map_name": [ 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -44656,49 +44281,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 3035 + 3008 ], "cs2_build": [ - 3035 + 3008 ], "duration_seconds": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map_name": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "metadata_parsed_at": [ - 3035 + 3008 ], "playback_file": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "workshop_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -44706,7 +44331,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 @@ -44721,19 +44346,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "map_name": [ 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -44762,49 +44387,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 3035 + 3008 ], "cs2_build": [ - 3035 + 3008 ], "duration_seconds": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map_name": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "metadata_parsed_at": [ - 3035 + 3008 ], "playback_file": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "workshop_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -44815,7 +44440,7 @@ export default { 40 ], "returning": [ - 2537 + 2510 ], "__typename": [ 80 @@ -44823,10 +44448,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2555 + 2528 ], "on_conflict": [ - 2562 + 2535 ], "__typename": [ 80 @@ -44834,13 +44459,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2550 + 2523 ], "update_columns": [ - 2580 + 2553 ], "where": [ - 2549 + 2522 ], "__typename": [ 80 @@ -44848,85 +44473,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 3035 + 3008 ], "clip_render_jobs_aggregate": [ 271 ], "created_at": [ - 3035 + 3008 ], "cs2_build": [ - 3035 + 3008 ], "demo_sessions_aggregate": [ - 2409 + 2382 ], "download_url": [ - 3035 + 3008 ], "duration_seconds": [ - 3035 + 3008 ], "file": [ - 3035 + 3008 ], "geometry_validated": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_name": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_clips_aggregate": [ - 2367 + 2340 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "metadata_parsed_at": [ - 3035 + 3008 ], "playback_file": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "playback_url": [ - 3035 + 3008 ], "players": [ - 3035 + 3008 ], "round_ticks": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "workshop_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -44934,7 +44559,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -44965,7 +44590,7 @@ export default { 1844 ], "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 @@ -44977,7 +44602,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "kills": [ 1844 @@ -44986,13 +44611,13 @@ export default { 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -45044,19 +44669,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45084,19 +44709,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45124,19 +44749,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45144,7 +44769,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2577 + 2550 ], "ordering": [ 315 @@ -45158,7 +44783,7 @@ export default { 1844 ], "created_at": [ - 4611 + 4584 ], "cs2_build": [ 80 @@ -45173,7 +44798,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "kills": [ 1844 @@ -45182,13 +44807,13 @@ export default { 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "metadata_parsed_at": [ - 4611 + 4584 ], "playback_file": [ 80 @@ -45240,19 +44865,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45261,28 +44886,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2545 + 2518 ], "_delete_at_path": [ - 2551 + 2524 ], "_delete_elem": [ - 2552 + 2525 ], "_delete_key": [ - 2553 + 2526 ], "_inc": [ - 2554 + 2527 ], "_prepend": [ - 2565 + 2538 ], "_set": [ - 2569 + 2542 ], "where": [ - 2549 + 2522 ], "__typename": [ 80 @@ -45310,19 +44935,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45350,19 +44975,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45390,19 +45015,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3035 + 3008 ], "playback_size": [ - 3035 + 3008 ], "size": [ - 3035 + 3008 ], "tick_rate": [ - 3035 + 3008 ], "total_ticks": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45410,10 +45035,10 @@ export default { }, "match_map_rounds": { "assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -45423,19 +45048,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -45445,11 +45070,11 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], @@ -45457,22 +45082,22 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "has_backup_file": [ 5 ], "id": [ - 5111 + 5084 ], "kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -45482,19 +45107,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -45504,11 +45129,11 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], @@ -45537,16 +45162,16 @@ export default { 40 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_reason": [ 1417 @@ -45560,10 +45185,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2592 + 2565 ], "nodes": [ - 2588 + 2561 ], "__typename": [ 80 @@ -45571,7 +45196,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2591 + 2564 ], "__typename": [ 80 @@ -45579,13 +45204,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2609 + 2582 ], "distinct": [ 5 ], "filter": [ - 2597 + 2570 ], "predicate": [ 41 @@ -45596,13 +45221,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2595 + 2568 ], "count": [ 40, { "columns": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -45611,31 +45236,31 @@ export default { } ], "max": [ - 2601 + 2574 ], "min": [ - 2603 + 2576 ], "stddev": [ - 2611 + 2584 ], "stddev_pop": [ - 2613 + 2586 ], "stddev_samp": [ - 2615 + 2588 ], "sum": [ - 2619 + 2592 ], "var_pop": [ - 2623 + 2596 ], "var_samp": [ - 2625 + 2598 ], "variance": [ - 2627 + 2600 ], "__typename": [ 80 @@ -45643,37 +45268,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2596 + 2569 ], "count": [ - 3035 + 3008 ], "max": [ - 2602 + 2575 ], "min": [ - 2604 + 2577 ], "stddev": [ - 2612 + 2585 ], "stddev_pop": [ - 2614 + 2587 ], "stddev_samp": [ - 2616 + 2589 ], "sum": [ - 2620 + 2593 ], "var_pop": [ - 2624 + 2597 ], "var_samp": [ - 2626 + 2599 ], "variance": [ - 2628 + 2601 ], "__typename": [ 80 @@ -45681,10 +45306,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2600 + 2573 ], "on_conflict": [ - 2606 + 2579 ], "__typename": [ 80 @@ -45718,25 +45343,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -45744,40 +45369,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2597 + 2570 ], "_not": [ - 2597 + 2570 ], "_or": [ - 2597 + 2570 ], "assists": [ - 3184 + 3157 ], "assists_aggregate": [ - 3175 + 3148 ], "backup_file": [ 82 ], "created_at": [ - 4612 + 4585 ], "deleted_at": [ - 4612 + 4585 ], "has_backup_file": [ 6 ], "id": [ - 5113 + 5086 ], "kills": [ - 3401 + 3374 ], "kills_aggregate": [ - 3392 + 3365 ], "lineup_1_money": [ 41 @@ -45804,16 +45429,16 @@ export default { 41 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "round": [ 41 ], "time": [ - 4612 + 4585 ], "winning_reason": [ 1418 @@ -45854,22 +45479,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 3181 + 3154 ], "backup_file": [ 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "kills": [ - 3398 + 3371 ], "lineup_1_money": [ 40 @@ -45896,16 +45521,16 @@ export default { 40 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_reason": [ 1417 @@ -45922,13 +45547,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "lineup_1_money": [ 40 @@ -45949,13 +45574,13 @@ export default { 40 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_side": [ 80 @@ -45966,46 +45591,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "winning_side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46016,13 +45641,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "lineup_1_money": [ 40 @@ -46043,13 +45668,13 @@ export default { 40 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_side": [ 80 @@ -46060,46 +45685,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "winning_side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46110,7 +45735,7 @@ export default { 40 ], "returning": [ - 2588 + 2561 ], "__typename": [ 80 @@ -46118,13 +45743,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2598 + 2571 ], "update_columns": [ - 2621 + 2594 ], "where": [ - 2597 + 2570 ], "__typename": [ 80 @@ -46132,67 +45757,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3180 + 3153 ], "backup_file": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "has_backup_file": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "kills_aggregate": [ - 3397 + 3370 ], "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_side": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_side": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "winning_reason": [ - 3035 + 3008 ], "winning_side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46200,7 +45825,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -46212,13 +45837,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "lineup_1_money": [ 40 @@ -46245,13 +45870,13 @@ export default { 40 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_reason": [ 1417 @@ -46291,25 +45916,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46343,25 +45968,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46395,25 +46020,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46421,7 +46046,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2618 + 2591 ], "ordering": [ 315 @@ -46435,13 +46060,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "lineup_1_money": [ 40 @@ -46468,13 +46093,13 @@ export default { 40 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "winning_reason": [ 1417 @@ -46514,25 +46139,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46541,13 +46166,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2599 + 2572 ], "_set": [ - 2610 + 2583 ], "where": [ - 2597 + 2570 ], "__typename": [ 80 @@ -46581,25 +46206,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46633,25 +46258,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46685,25 +46310,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_money": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -46714,28 +46339,28 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map": [ 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -46749,10 +46374,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2635 + 2608 ], "nodes": [ - 2629 + 2602 ], "__typename": [ 80 @@ -46760,13 +46385,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2632 + 2605 ], "bool_or": [ - 2633 + 2606 ], "count": [ - 2634 + 2607 ], "__typename": [ 80 @@ -46774,13 +46399,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2650 + 2623 ], "distinct": [ 5 ], "filter": [ - 2638 + 2611 ], "predicate": [ 6 @@ -46791,13 +46416,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2651 + 2624 ], "distinct": [ 5 ], "filter": [ - 2638 + 2611 ], "predicate": [ 6 @@ -46808,13 +46433,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2649 + 2622 ], "distinct": [ 5 ], "filter": [ - 2638 + 2611 ], "predicate": [ 41 @@ -46828,7 +46453,7 @@ export default { 40, { "columns": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -46837,10 +46462,10 @@ export default { } ], "max": [ - 2641 + 2614 ], "min": [ - 2643 + 2616 ], "__typename": [ 80 @@ -46848,13 +46473,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 2642 + 2615 ], "min": [ - 2644 + 2617 ], "__typename": [ 80 @@ -46862,10 +46487,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2640 + 2613 ], "on_conflict": [ - 2646 + 2619 ], "__typename": [ 80 @@ -46873,40 +46498,40 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2638 + 2611 ], "_not": [ - 2638 + 2611 ], "_or": [ - 2638 + 2611 ], "auto_picked": [ 6 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "map": [ 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "side": [ 82 @@ -46924,28 +46549,28 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map": [ 2323 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -46959,19 +46584,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -46982,22 +46607,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -47005,19 +46630,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -47028,22 +46653,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -47054,7 +46679,7 @@ export default { 40 ], "returning": [ - 2629 + 2602 ], "__typename": [ 80 @@ -47062,13 +46687,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2639 + 2612 ], "update_columns": [ - 2655 + 2628 ], "where": [ - 2638 + 2611 ], "__typename": [ 80 @@ -47076,37 +46701,37 @@ export default { }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map": [ 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -47114,7 +46739,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -47128,19 +46753,19 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -47154,7 +46779,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2654 + 2627 ], "ordering": [ 315 @@ -47168,19 +46793,19 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "side": [ 80 @@ -47195,10 +46820,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2652 + 2625 ], "where": [ - 2638 + 2611 ], "__typename": [ 80 @@ -47209,16 +46834,16 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "demos": [ - 2537, + 2510, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -47228,19 +46853,19 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "demos_aggregate": [ - 2538, + 2511, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -47250,11 +46875,11 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], @@ -47268,13 +46893,13 @@ export default { 944 ], "ended_at": [ - 4611 + 4584 ], "flashes": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -47284,19 +46909,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "flashes_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -47306,22 +46931,22 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "id": [ - 5111 + 5084 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_score": [ 40 @@ -47345,16 +46970,16 @@ export default { 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_clips": [ - 2362, + 2335, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -47364,19 +46989,19 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_aggregate": [ - 2363, + 2336, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -47386,22 +47011,22 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_id": [ - 5111 + 5084 ], "objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -47411,19 +47036,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -47433,11 +47058,11 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], @@ -47445,10 +47070,10 @@ export default { 40 ], "player_assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -47458,19 +47083,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -47480,19 +47105,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_damages": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -47502,19 +47127,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -47524,19 +47149,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -47546,19 +47171,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -47568,19 +47193,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_unused_utilities": [ - 3878, + 3851, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47590,19 +47215,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utilities_aggregate": [ - 3879, + 3852, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47612,11 +47237,11 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], @@ -47624,13 +47249,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "rounds": [ - 2588, + 2561, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47640,19 +47265,19 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "rounds_aggregate": [ - 2589, + 2562, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -47662,25 +47287,25 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "started_at": [ - 4611 + 4584 ], "status": [ 949 ], "utility": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -47690,19 +47315,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "utility_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -47712,19 +47337,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "vetos": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47734,19 +47359,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "vetos_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47756,16 +47381,16 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -47773,10 +47398,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2661 + 2634 ], "nodes": [ - 2657 + 2630 ], "__typename": [ 80 @@ -47784,7 +47409,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2660 + 2633 ], "__typename": [ 80 @@ -47792,13 +47417,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2679 + 2652 ], "distinct": [ 5 ], "filter": [ - 2666 + 2639 ], "predicate": [ 41 @@ -47809,13 +47434,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2664 + 2637 ], "count": [ 40, { "columns": [ - 2679, + 2652, "[match_maps_select_column!]" ], "distinct": [ @@ -47824,31 +47449,31 @@ export default { } ], "max": [ - 2670 + 2643 ], "min": [ - 2672 + 2645 ], "stddev": [ - 2681 + 2654 ], "stddev_pop": [ - 2683 + 2656 ], "stddev_samp": [ - 2685 + 2658 ], "sum": [ - 2689 + 2662 ], "var_pop": [ - 2693 + 2666 ], "var_samp": [ - 2695 + 2668 ], "variance": [ - 2697 + 2670 ], "__typename": [ 80 @@ -47856,37 +47481,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2665 + 2638 ], "count": [ - 3035 + 3008 ], "max": [ - 2671 + 2644 ], "min": [ - 2673 + 2646 ], "stddev": [ - 2682 + 2655 ], "stddev_pop": [ - 2684 + 2657 ], "stddev_samp": [ - 2686 + 2659 ], "sum": [ - 2690 + 2663 ], "var_pop": [ - 2694 + 2667 ], "var_samp": [ - 2696 + 2669 ], "variance": [ - 2698 + 2671 ], "__typename": [ 80 @@ -47894,10 +47519,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2669 + 2642 ], "on_conflict": [ - 2676 + 2649 ], "__typename": [ 80 @@ -47934,19 +47559,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -47954,28 +47579,28 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2666 + 2639 ], "_not": [ - 2666 + 2639 ], "_or": [ - 2666 + 2639 ], "clips_count": [ 41 ], "created_at": [ - 4612 + 4585 ], "demo_processing_started_at": [ - 4612 + 4585 ], "demos": [ - 2549 + 2522 ], "demos_aggregate": [ - 2539 + 2512 ], "demos_download_url": [ 82 @@ -47987,22 +47612,22 @@ export default { 947 ], "ended_at": [ - 4612 + 4585 ], "flashes": [ - 3356 + 3329 ], "flashes_aggregate": [ - 3347 + 3320 ], "id": [ - 5113 + 5086 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4612 + 4585 ], "lineup_1_score": [ 41 @@ -48026,85 +47651,85 @@ export default { 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_clips": [ - 2371 + 2344 ], "match_clips_aggregate": [ - 2364 + 2337 ], "match_id": [ - 5113 + 5086 ], "objectives": [ - 3600 + 3573 ], "objectives_aggregate": [ - 3593 + 3566 ], "order": [ 41 ], "player_assists": [ - 3184 + 3157 ], "player_assists_aggregate": [ - 3175 + 3148 ], "player_damages": [ - 3245 + 3218 ], "player_damages_aggregate": [ - 3238 + 3211 ], "player_kills": [ - 3401 + 3374 ], "player_kills_aggregate": [ - 3392 + 3365 ], "player_unused_utilities": [ - 3887 + 3860 ], "player_unused_utilities_aggregate": [ - 3880 + 3853 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4612 + 4585 ], "rounds": [ - 2597 + 2570 ], "rounds_aggregate": [ - 2590 + 2563 ], "started_at": [ - 4612 + 4585 ], "status": [ 950 ], "utility": [ - 3928 + 3901 ], "utility_aggregate": [ - 3921 + 3894 ], "vetos": [ - 2638 + 2611 ], "vetos_aggregate": [ - 2631 + 2604 ], "winning_lineup_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -48136,28 +47761,28 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "demos": [ - 2546 + 2519 ], "e_match_map_status": [ 955 ], "ended_at": [ - 4611 + 4584 ], "flashes": [ - 3353 + 3326 ], "id": [ - 5111 + 5084 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_side": [ 1213 @@ -48175,58 +47800,58 @@ export default { 2323 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_clips": [ - 2368 + 2341 ], "match_id": [ - 5111 + 5084 ], "objectives": [ - 3597 + 3570 ], "order": [ 40 ], "player_assists": [ - 3181 + 3154 ], "player_damages": [ - 3242 + 3215 ], "player_kills": [ - 3398 + 3371 ], "player_unused_utilities": [ - 3884 + 3857 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "rounds": [ - 2594 + 2567 ], "started_at": [ - 4611 + 4584 ], "status": [ 949 ], "utility": [ - 3925 + 3898 ], "vetos": [ - 2637 + 2610 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48237,10 +47862,10 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "demos_download_url": [ 80 @@ -48249,13 +47874,13 @@ export default { 40 ], "ended_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_score": [ 40 @@ -48270,10 +47895,10 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "order": [ 40 @@ -48282,13 +47907,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "started_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48296,49 +47921,49 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "demo_processing_started_at": [ - 3035 + 3008 ], "ended_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "latest_clip_at": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "public_latest_clip_at": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48349,10 +47974,10 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "demos_download_url": [ 80 @@ -48361,13 +47986,13 @@ export default { 40 ], "ended_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_score": [ 40 @@ -48382,10 +48007,10 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "order": [ 40 @@ -48394,13 +48019,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "started_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48408,49 +48033,49 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "demo_processing_started_at": [ - 3035 + 3008 ], "ended_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "latest_clip_at": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "public_latest_clip_at": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48461,7 +48086,7 @@ export default { 40 ], "returning": [ - 2657 + 2630 ], "__typename": [ 80 @@ -48469,10 +48094,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2669 + 2642 ], "on_conflict": [ - 2676 + 2649 ], "__typename": [ 80 @@ -48480,13 +48105,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2667 + 2640 ], "update_columns": [ - 2691 + 2664 ], "where": [ - 2666 + 2639 ], "__typename": [ 80 @@ -48494,115 +48119,115 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "demo_processing_started_at": [ - 3035 + 3008 ], "demos_aggregate": [ - 2544 + 2517 ], "demos_download_url": [ - 3035 + 3008 ], "demos_total_size": [ - 3035 + 3008 ], "e_match_map_status": [ 957 ], "ended_at": [ - 3035 + 3008 ], "flashes_aggregate": [ - 3352 + 3325 ], "id": [ - 3035 + 3008 ], "is_current_map": [ - 3035 + 3008 ], "latest_clip_at": [ - 3035 + 3008 ], "lineup_1_score": [ - 3035 + 3008 ], "lineup_1_side": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_score": [ - 3035 + 3008 ], "lineup_2_side": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "map": [ 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_clips_aggregate": [ - 2367 + 2340 ], "match_id": [ - 3035 + 3008 ], "objectives_aggregate": [ - 3596 + 3569 ], "order": [ - 3035 + 3008 ], "player_assists_aggregate": [ - 3180 + 3153 ], "player_damages_aggregate": [ - 3241 + 3214 ], "player_kills_aggregate": [ - 3397 + 3370 ], "player_unused_utilities_aggregate": [ - 3883 + 3856 ], "public_clips_count": [ - 3035 + 3008 ], "public_latest_clip_at": [ - 3035 + 3008 ], "rounds_aggregate": [ - 2593 + 2566 ], "started_at": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "utility_aggregate": [ - 3924 + 3897 ], "vetos_aggregate": [ - 2636 + 2609 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48610,7 +48235,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48622,19 +48247,19 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_side": [ 1213 @@ -48649,10 +48274,10 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "order": [ 40 @@ -48661,16 +48286,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "started_at": [ - 4611 + 4584 ], "status": [ 949 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48707,19 +48332,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48756,19 +48381,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48805,19 +48430,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48825,7 +48450,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2688 + 2661 ], "ordering": [ 315 @@ -48839,19 +48464,19 @@ export default { 40 ], "created_at": [ - 4611 + 4584 ], "demo_processing_started_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "latest_clip_at": [ - 4611 + 4584 ], "lineup_1_side": [ 1213 @@ -48866,10 +48491,10 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "order": [ 40 @@ -48878,16 +48503,16 @@ export default { 40 ], "public_latest_clip_at": [ - 4611 + 4584 ], "started_at": [ - 4611 + 4584 ], "status": [ 949 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -48924,19 +48549,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -48945,13 +48570,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2668 + 2641 ], "_set": [ - 2680 + 2653 ], "where": [ - 2666 + 2639 ], "__typename": [ 80 @@ -48988,19 +48613,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -49037,19 +48662,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -49086,19 +48711,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 3035 + 3008 ], "lineup_1_timeouts_available": [ - 3035 + 3008 ], "lineup_2_timeouts_available": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "public_clips_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -49136,7 +48761,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -49151,7 +48776,7 @@ export default { 2287 ], "map_pool_id": [ - 5111 + 5084 ], "map_veto": [ 5 @@ -49160,10 +48785,10 @@ export default { 970 ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -49173,19 +48798,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_aggregate": [ - 2824, + 2797, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -49195,11 +48820,11 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], @@ -49234,13 +48859,13 @@ export default { 1294 ], "tournament": [ - 5047 + 5020 ], "tournament_bracket": [ - 4655 + 4628 ], "tournament_stage": [ - 4872 + 4845 ], "tv_delay": [ 40 @@ -49257,10 +48882,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2701 + 2674 ], "nodes": [ - 2699 + 2672 ], "__typename": [ 80 @@ -49268,13 +48893,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2702 + 2675 ], "count": [ 40, { "columns": [ - 2714, + 2687, "[match_options_select_column!]" ], "distinct": [ @@ -49283,31 +48908,31 @@ export default { } ], "max": [ - 2707 + 2680 ], "min": [ - 2708 + 2681 ], "stddev": [ - 2716 + 2689 ], "stddev_pop": [ - 2717 + 2690 ], "stddev_samp": [ - 2718 + 2691 ], "sum": [ - 2721 + 2694 ], "var_pop": [ - 2724 + 2697 ], "var_samp": [ - 2725 + 2698 ], "variance": [ - 2726 + 2699 ], "__typename": [ 80 @@ -49344,13 +48969,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2703 + 2676 ], "_not": [ - 2703 + 2676 ], "_or": [ - 2703 + 2676 ], "auto_cancel_duration": [ 41 @@ -49383,7 +49008,7 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "invite_code": [ 82 @@ -49398,7 +49023,7 @@ export default { 2290 ], "map_pool_id": [ - 5113 + 5086 ], "map_veto": [ 6 @@ -49407,10 +49032,10 @@ export default { 971 ], "matches": [ - 2832 + 2805 ], "matches_aggregate": [ - 2825 + 2798 ], "mr": [ 41 @@ -49443,13 +49068,13 @@ export default { 1295 ], "tournament": [ - 5068 + 5041 ], "tournament_bracket": [ - 4666 + 4639 ], "tournament_stage": [ - 4884 + 4857 ], "tv_delay": [ 41 @@ -49523,7 +49148,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -49538,7 +49163,7 @@ export default { 2296 ], "map_pool_id": [ - 5111 + 5084 ], "map_veto": [ 5 @@ -49547,7 +49172,7 @@ export default { 970 ], "matches": [ - 2829 + 2802 ], "mr": [ 40 @@ -49580,13 +49205,13 @@ export default { 1294 ], "tournament": [ - 5077 + 5050 ], "tournament_bracket": [ - 4675 + 4648 ], "tournament_stage": [ - 4896 + 4869 ], "tv_delay": [ 40 @@ -49609,7 +49234,7 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -49618,7 +49243,7 @@ export default { 40 ], "map_pool_id": [ - 5111 + 5084 ], "mr": [ 40 @@ -49650,7 +49275,7 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -49659,7 +49284,7 @@ export default { 40 ], "map_pool_id": [ - 5111 + 5084 ], "mr": [ 40 @@ -49688,7 +49313,7 @@ export default { 40 ], "returning": [ - 2699 + 2672 ], "__typename": [ 80 @@ -49696,10 +49321,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2706 + 2679 ], "on_conflict": [ - 2711 + 2684 ], "__typename": [ 80 @@ -49707,13 +49332,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2704 + 2677 ], "update_columns": [ - 2722 + 2695 ], "where": [ - 2703 + 2676 ], "__typename": [ 80 @@ -49721,109 +49346,109 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 3035 + 3008 ], "auto_cancellation": [ - 3035 + 3008 ], "best_of": [ - 3035 + 3008 ], "camera_allow_teammates": [ - 3035 + 3008 ], "camera_required": [ - 3035 + 3008 ], "check_in_setting": [ - 3035 + 3008 ], "coaches": [ - 3035 + 3008 ], "default_models": [ - 3035 + 3008 ], "halftime_pausematch": [ - 3035 + 3008 ], "has_active_matches": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invite_code": [ - 3035 + 3008 ], "knife_round": [ - 3035 + 3008 ], "live_match_timeout": [ - 3035 + 3008 ], "map_pool": [ 2298 ], "map_pool_id": [ - 3035 + 3008 ], "map_veto": [ - 3035 + 3008 ], "match_mode": [ - 3035 + 3008 ], "matches_aggregate": [ - 2828 + 2801 ], "mr": [ - 3035 + 3008 ], "number_of_substitutes": [ - 3035 + 3008 ], "overtime": [ - 3035 + 3008 ], "prefer_dedicated_server": [ - 3035 + 3008 ], "ready_setting": [ - 3035 + 3008 ], "region_veto": [ - 3035 + 3008 ], "regions": [ - 3035 + 3008 ], "round_restart_delay": [ - 3035 + 3008 ], "tech_timeout_setting": [ - 3035 + 3008 ], "timeout_setting": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_bracket": [ - 4677 + 4650 ], "tournament_stage": [ - 4898 + 4871 ], "tv_delay": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "veto_pick_timeout": [ - 3035 + 3008 ], "__typename": [ 80 @@ -49831,7 +49456,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -49867,7 +49492,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -49879,7 +49504,7 @@ export default { 40 ], "map_pool_id": [ - 5111 + 5084 ], "map_veto": [ 5 @@ -50019,7 +49644,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2720 + 2693 ], "ordering": [ 315 @@ -50057,7 +49682,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -50069,7 +49694,7 @@ export default { 40 ], "map_pool_id": [ - 5111 + 5084 ], "map_veto": [ 5 @@ -50152,13 +49777,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2705 + 2678 ], "_set": [ - 2715 + 2688 ], "where": [ - 2703 + 2676 ], "__typename": [ 80 @@ -50256,22 +49881,22 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50285,10 +49910,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2733 + 2706 ], "nodes": [ - 2727 + 2700 ], "__typename": [ 80 @@ -50296,13 +49921,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2730 + 2703 ], "bool_or": [ - 2731 + 2704 ], "count": [ - 2732 + 2705 ], "__typename": [ 80 @@ -50310,13 +49935,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2748 + 2721 ], "distinct": [ 5 ], "filter": [ - 2736 + 2709 ], "predicate": [ 6 @@ -50327,13 +49952,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2749 + 2722 ], "distinct": [ 5 ], "filter": [ - 2736 + 2709 ], "predicate": [ 6 @@ -50344,13 +49969,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2747 + 2720 ], "distinct": [ 5 ], "filter": [ - 2736 + 2709 ], "predicate": [ 41 @@ -50364,7 +49989,7 @@ export default { 40, { "columns": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -50373,10 +49998,10 @@ export default { } ], "max": [ - 2739 + 2712 ], "min": [ - 2741 + 2714 ], "__typename": [ 80 @@ -50384,13 +50009,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 2740 + 2713 ], "min": [ - 2742 + 2715 ], "__typename": [ 80 @@ -50398,10 +50023,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2738 + 2711 ], "on_conflict": [ - 2744 + 2717 ], "__typename": [ 80 @@ -50409,34 +50034,34 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2736 + 2709 ], "_not": [ - 2736 + 2709 ], "_or": [ - 2736 + 2709 ], "auto_picked": [ 6 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "region": [ 82 @@ -50454,22 +50079,22 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50483,16 +50108,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50503,19 +50128,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "__typename": [ 80 @@ -50523,16 +50148,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50543,19 +50168,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "__typename": [ 80 @@ -50566,7 +50191,7 @@ export default { 40 ], "returning": [ - 2727 + 2700 ], "__typename": [ 80 @@ -50574,13 +50199,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2737 + 2710 ], "update_columns": [ - 2753 + 2726 ], "where": [ - 2736 + 2709 ], "__typename": [ 80 @@ -50588,31 +50213,31 @@ export default { }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -50620,7 +50245,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -50634,16 +50259,16 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50657,7 +50282,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2752 + 2725 ], "ordering": [ 315 @@ -50671,16 +50296,16 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "region": [ 80 @@ -50695,10 +50320,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2750 + 2723 ], "where": [ - 2736 + 2709 ], "__typename": [ 80 @@ -50718,7 +50343,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_game_streamer": [ 5 @@ -50730,16 +50355,16 @@ export default { 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -50770,10 +50395,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2761 + 2734 ], "nodes": [ - 2755 + 2728 ], "__typename": [ 80 @@ -50781,13 +50406,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2758 + 2731 ], "bool_or": [ - 2759 + 2732 ], "count": [ - 2760 + 2733 ], "__typename": [ 80 @@ -50795,13 +50420,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2784 + 2757 ], "distinct": [ 5 ], "filter": [ - 2767 + 2740 ], "predicate": [ 6 @@ -50812,13 +50437,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2785 + 2758 ], "distinct": [ 5 ], "filter": [ - 2767 + 2740 ], "predicate": [ 6 @@ -50829,13 +50454,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2783 + 2756 ], "distinct": [ 5 ], "filter": [ - 2767 + 2740 ], "predicate": [ 41 @@ -50846,13 +50471,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2765 + 2738 ], "count": [ 40, { "columns": [ - 2783, + 2756, "[match_streams_select_column!]" ], "distinct": [ @@ -50861,31 +50486,31 @@ export default { } ], "max": [ - 2774 + 2747 ], "min": [ - 2776 + 2749 ], "stddev": [ - 2787 + 2760 ], "stddev_pop": [ - 2789 + 2762 ], "stddev_samp": [ - 2791 + 2764 ], "sum": [ - 2795 + 2768 ], "var_pop": [ - 2799 + 2772 ], "var_samp": [ - 2801 + 2774 ], "variance": [ - 2803 + 2776 ], "__typename": [ 80 @@ -50893,37 +50518,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2766 + 2739 ], "count": [ - 3035 + 3008 ], "max": [ - 2775 + 2748 ], "min": [ - 2777 + 2750 ], "stddev": [ - 2788 + 2761 ], "stddev_pop": [ - 2790 + 2763 ], "stddev_samp": [ - 2792 + 2765 ], "sum": [ - 2796 + 2769 ], "var_pop": [ - 2800 + 2773 ], "var_samp": [ - 2802 + 2775 ], "variance": [ - 2804 + 2777 ], "__typename": [ 80 @@ -50939,10 +50564,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2773 + 2746 ], "on_conflict": [ - 2779 + 2752 ], "__typename": [ 80 @@ -50958,7 +50583,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -50966,13 +50591,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2767 + 2740 ], "_not": [ - 2767 + 2740 ], "_or": [ - 2767 + 2740 ], "autodirector": [ 6 @@ -50987,7 +50612,7 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "is_game_streamer": [ 6 @@ -50999,16 +50624,16 @@ export default { 82 ], "last_status_at": [ - 4612 + 4585 ], "link": [ 82 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "mode": [ 82 @@ -51079,7 +50704,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_game_streamer": [ 5 @@ -51091,16 +50716,16 @@ export default { 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -51132,19 +50757,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -51167,40 +50792,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_service_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "link": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "mode": [ - 3035 + 3008 ], "priority": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51214,19 +50839,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "k8s_service_name": [ 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -51249,40 +50874,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_service_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "link": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "mode": [ - 3035 + 3008 ], "priority": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51293,7 +50918,7 @@ export default { 40 ], "returning": [ - 2755 + 2728 ], "__typename": [ 80 @@ -51301,13 +50926,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2768 + 2741 ], "update_columns": [ - 2797 + 2770 ], "where": [ - 2767 + 2740 ], "__typename": [ 80 @@ -51315,58 +50940,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 3035 + 3008 ], "error_message": [ - 3035 + 3008 ], "game_server_node": [ 1746 ], "game_server_node_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_game_streamer": [ - 3035 + 3008 ], "is_live": [ - 3035 + 3008 ], "k8s_service_name": [ - 3035 + 3008 ], "last_status_at": [ - 3035 + 3008 ], "link": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "mode": [ - 3035 + 3008 ], "priority": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "status_history": [ - 3035 + 3008 ], "stream_url": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51374,7 +50999,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -51402,7 +51027,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_game_streamer": [ 5 @@ -51414,13 +51039,13 @@ export default { 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -51454,7 +51079,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51470,7 +51095,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51486,7 +51111,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51494,7 +51119,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2794 + 2767 ], "ordering": [ 315 @@ -51514,7 +51139,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_game_streamer": [ 5 @@ -51526,13 +51151,13 @@ export default { 80 ], "last_status_at": [ - 4611 + 4584 ], "link": [ 80 ], "match_id": [ - 5111 + 5084 ], "mode": [ 80 @@ -51566,7 +51191,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51575,28 +51200,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2763 + 2736 ], "_delete_at_path": [ - 2769 + 2742 ], "_delete_elem": [ - 2770 + 2743 ], "_delete_key": [ - 2771 + 2744 ], "_inc": [ - 2772 + 2745 ], "_prepend": [ - 2782 + 2755 ], "_set": [ - 2786 + 2759 ], "where": [ - 2767 + 2740 ], "__typename": [ 80 @@ -51612,7 +51237,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51628,7 +51253,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51644,7 +51269,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51663,10 +51288,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2807 + 2780 ], "nodes": [ - 2805 + 2778 ], "__typename": [ 80 @@ -51677,7 +51302,7 @@ export default { 40, { "columns": [ - 2817, + 2790, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -51686,10 +51311,10 @@ export default { } ], "max": [ - 2811 + 2784 ], "min": [ - 2812 + 2785 ], "__typename": [ 80 @@ -51697,13 +51322,13 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2808 + 2781 ], "_not": [ - 2808 + 2781 ], "_or": [ - 2808 + 2781 ], "cfg": [ 82 @@ -51748,7 +51373,7 @@ export default { 40 ], "returning": [ - 2805 + 2778 ], "__typename": [ 80 @@ -51756,13 +51381,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2809 + 2782 ], "update_columns": [ - 2821 + 2794 ], "where": [ - 2808 + 2781 ], "__typename": [ 80 @@ -51770,10 +51395,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -51801,7 +51426,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2820 + 2793 ], "ordering": [ 315 @@ -51824,10 +51449,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2818 + 2791 ], "where": [ - 2808 + 2781 ], "__typename": [ 80 @@ -51859,13 +51484,13 @@ export default { 5 ], "cancels_at": [ - 4611 + 4584 ], "clutches": [ - 5291, + 5264, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51875,19 +51500,19 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], "clutches_aggregate": [ - 5292, + 5265, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -51897,11 +51522,11 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], @@ -51912,16 +51537,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "current_match_map_id": [ - 5111 + 5084 ], "demos": [ - 2537, + 2510, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -51931,19 +51556,19 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "demos_aggregate": [ - 2538, + 2511, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -51953,11 +51578,11 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], @@ -52009,16 +51634,16 @@ export default { 1005 ], "e_region": [ - 4107 + 4080 ], "effective_at": [ - 4611 + 4584 ], "elo_changes": [ - 5488, + 5461, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -52028,19 +51653,19 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "elo_changes_aggregate": [ - 5489, + 5462, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -52050,22 +51675,22 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -52098,16 +51723,16 @@ export default { 80 ], "lineup_1": [ - 2495 + 2468 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2": [ - 2495 + 2468 ], "lineup_2_id": [ - 5111 + 5084 ], "lineup_counts": [ 1842, @@ -52118,13 +51743,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 5111 + 5084 ], "map_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -52134,19 +51759,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "map_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -52156,11 +51781,11 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], @@ -52168,10 +51793,10 @@ export default { 80 ], "match_maps": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -52181,19 +51806,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -52203,16 +51828,16 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -52221,10 +51846,10 @@ export default { 40 ], "opening_duels": [ - 5419, + 5392, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52234,19 +51859,19 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "opening_duels_aggregate": [ - 5420, + 5393, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -52256,19 +51881,19 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "options": [ - 2699 + 2672 ], "organizer": [ - 3993 + 3966 ], "organizer_steam_id": [ 259 @@ -52277,10 +51902,10 @@ export default { 80 ], "player_assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -52290,19 +51915,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -52312,19 +51937,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_damages": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -52334,19 +51959,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -52356,19 +51981,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_flashes": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -52378,19 +52003,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_flashes_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -52400,19 +52025,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -52422,19 +52047,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -52444,19 +52069,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -52466,19 +52091,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -52488,19 +52113,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_unused_utilities": [ - 3878, + 3851, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52510,19 +52135,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utilities_aggregate": [ - 3879, + 3852, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -52532,19 +52157,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_utility": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -52554,19 +52179,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utility_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -52576,11 +52201,11 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], @@ -52588,13 +52213,13 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5111 + 5084 ], "region_veto_picks": [ - 2727, + 2700, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52604,19 +52229,19 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], "region_veto_picks_aggregate": [ - 2728, + 2701, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -52626,11 +52251,11 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], @@ -52638,16 +52263,16 @@ export default { 5 ], "scheduled_at": [ - 4611 + 4584 ], "server": [ - 4134 + 4107 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "server_plugin_runtime": [ 80 @@ -52665,16 +52290,16 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "status": [ 1010 ], "streams": [ - 2755, + 2728, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -52684,19 +52309,19 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "streams_aggregate": [ - 2756, + 2729, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -52706,19 +52331,19 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "teams": [ - 4562, + 4535, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -52728,19 +52353,19 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "tournament_brackets": [ - 4655, + 4628, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52750,19 +52375,19 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "tournament_brackets_aggregate": [ - 4656, + 4629, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -52772,11 +52397,11 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], @@ -52784,13 +52409,13 @@ export default { 80 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winner": [ - 2495 + 2468 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -52798,10 +52423,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2827 + 2800 ], "nodes": [ - 2823 + 2796 ], "__typename": [ 80 @@ -52809,7 +52434,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2826 + 2799 ], "__typename": [ 80 @@ -52817,13 +52442,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2845 + 2818 ], "distinct": [ 5 ], "filter": [ - 2832 + 2805 ], "predicate": [ 41 @@ -52834,13 +52459,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2830 + 2803 ], "count": [ 40, { "columns": [ - 2845, + 2818, "[matches_select_column!]" ], "distinct": [ @@ -52849,31 +52474,31 @@ export default { } ], "max": [ - 2836 + 2809 ], "min": [ - 2838 + 2811 ], "stddev": [ - 2847 + 2820 ], "stddev_pop": [ - 2849 + 2822 ], "stddev_samp": [ - 2851 + 2824 ], "sum": [ - 2855 + 2828 ], "var_pop": [ - 2859 + 2832 ], "var_samp": [ - 2861 + 2834 ], "variance": [ - 2863 + 2836 ], "__typename": [ 80 @@ -52881,37 +52506,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2831 + 2804 ], "count": [ - 3035 + 3008 ], "max": [ - 2837 + 2810 ], "min": [ - 2839 + 2812 ], "stddev": [ - 2848 + 2821 ], "stddev_pop": [ - 2850 + 2823 ], "stddev_samp": [ - 2852 + 2825 ], "sum": [ - 2856 + 2829 ], "var_pop": [ - 2860 + 2833 ], "var_samp": [ - 2862 + 2835 ], "variance": [ - 2864 + 2837 ], "__typename": [ 80 @@ -52919,10 +52544,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2835 + 2808 ], "on_conflict": [ - 2842 + 2815 ], "__typename": [ 80 @@ -52944,7 +52569,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -52952,13 +52577,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2832 + 2805 ], "_not": [ - 2832 + 2805 ], "_or": [ - 2832 + 2805 ], "can_assign_server": [ 6 @@ -52985,13 +52610,13 @@ export default { 6 ], "cancels_at": [ - 4612 + 4585 ], "clutches": [ - 5300 + 5273 ], "clutches_aggregate": [ - 5293 + 5266 ], "connection_link": [ 82 @@ -53000,16 +52625,16 @@ export default { 82 ], "created_at": [ - 4612 + 4585 ], "current_match_map_id": [ - 5113 + 5086 ], "demos": [ - 2549 + 2522 ], "demos_aggregate": [ - 2539 + 2512 ], "draft_games": [ 476 @@ -53021,25 +52646,25 @@ export default { 1008 ], "e_region": [ - 4111 + 4084 ], "effective_at": [ - 4612 + 4585 ], "elo_changes": [ - 5507 + 5480 ], "elo_changes_aggregate": [ - 5490 + 5463 ], "ended_at": [ - 4612 + 4585 ], "external_id": [ 82 ], "id": [ - 5113 + 5086 ], "invite_code": [ 82 @@ -53072,40 +52697,40 @@ export default { 82 ], "lineup_1": [ - 2504 + 2477 ], "lineup_1_id": [ - 5113 + 5086 ], "lineup_2": [ - 2504 + 2477 ], "lineup_2_id": [ - 5113 + 5086 ], "lineup_counts": [ 1843 ], "map_veto_picking_lineup_id": [ - 5113 + 5086 ], "map_veto_picks": [ - 2638 + 2611 ], "map_veto_picks_aggregate": [ - 2631 + 2604 ], "map_veto_type": [ 82 ], "match_maps": [ - 2666 + 2639 ], "match_maps_aggregate": [ - 2659 + 2632 ], "match_options_id": [ - 5113 + 5086 ], "max_players_per_lineup": [ 41 @@ -53114,16 +52739,16 @@ export default { 41 ], "opening_duels": [ - 5428 + 5401 ], "opening_duels_aggregate": [ - 5421 + 5394 ], "options": [ - 2703 + 2676 ], "organizer": [ - 3997 + 3970 ], "organizer_steam_id": [ 261 @@ -53132,73 +52757,73 @@ export default { 82 ], "player_assists": [ - 3184 + 3157 ], "player_assists_aggregate": [ - 3175 + 3148 ], "player_damages": [ - 3245 + 3218 ], "player_damages_aggregate": [ - 3238 + 3211 ], "player_flashes": [ - 3356 + 3329 ], "player_flashes_aggregate": [ - 3347 + 3320 ], "player_kills": [ - 3401 + 3374 ], "player_kills_aggregate": [ - 3392 + 3365 ], "player_objectives": [ - 3600 + 3573 ], "player_objectives_aggregate": [ - 3593 + 3566 ], "player_unused_utilities": [ - 3887 + 3860 ], "player_unused_utilities_aggregate": [ - 3880 + 3853 ], "player_utility": [ - 3928 + 3901 ], "player_utility_aggregate": [ - 3921 + 3894 ], "region": [ 82 ], "region_veto_picking_lineup_id": [ - 5113 + 5086 ], "region_veto_picks": [ - 2736 + 2709 ], "region_veto_picks_aggregate": [ - 2729 + 2702 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4612 + 4585 ], "server": [ - 4145 + 4118 ], "server_error": [ 82 ], "server_id": [ - 5113 + 5086 ], "server_plugin_runtime": [ 82 @@ -53216,37 +52841,37 @@ export default { 82 ], "started_at": [ - 4612 + 4585 ], "status": [ 1011 ], "streams": [ - 2767 + 2740 ], "streams_aggregate": [ - 2757 + 2730 ], "teams": [ - 4573 + 4546 ], "tournament_brackets": [ - 4666 + 4639 ], "tournament_brackets_aggregate": [ - 4657 + 4630 ], "tv_connection_string": [ 82 ], "veto_pick_expires_at": [ - 4612 + 4585 ], "winner": [ - 2504 + 2477 ], "winning_lineup_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -53263,16 +52888,16 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4611 + 4584 ], "clutches": [ - 5297 + 5270 ], "created_at": [ - 4611 + 4584 ], "demos": [ - 2546 + 2519 ], "draft_games": [ 473 @@ -53281,52 +52906,52 @@ export default { 1016 ], "e_region": [ - 4117 + 4090 ], "elo_changes": [ - 5504 + 5477 ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "lineup_1": [ - 2513 + 2486 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2": [ - 2513 + 2486 ], "lineup_2_id": [ - 5111 + 5084 ], "map_veto_picks": [ - 2637 + 2610 ], "match_maps": [ - 2663 + 2636 ], "match_options_id": [ - 5111 + 5084 ], "opening_duels": [ - 5425 + 5398 ], "options": [ - 2710 + 2683 ], "organizer": [ - 4004 + 3977 ], "organizer_steam_id": [ 259 @@ -53335,43 +52960,43 @@ export default { 80 ], "player_assists": [ - 3181 + 3154 ], "player_damages": [ - 3242 + 3215 ], "player_flashes": [ - 3353 + 3326 ], "player_kills": [ - 3398 + 3371 ], "player_objectives": [ - 3597 + 3570 ], "player_unused_utilities": [ - 3884 + 3857 ], "player_utility": [ - 3925 + 3898 ], "region": [ 80 ], "region_veto_picks": [ - 2735 + 2708 ], "scheduled_at": [ - 4611 + 4584 ], "server": [ - 4154 + 4127 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "share_code": [ 80 @@ -53380,25 +53005,25 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "status": [ 1010 ], "streams": [ - 2764 + 2737 ], "tournament_brackets": [ - 4663 + 4636 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winner": [ - 2513 + 2486 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -53406,7 +53031,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4611 + 4584 ], "connection_link": [ 80 @@ -53415,22 +53040,22 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "current_match_map_id": [ - 5111 + 5084 ], "effective_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -53439,19 +53064,19 @@ export default { 80 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2_id": [ - 5111 + 5084 ], "map_veto_picking_lineup_id": [ - 5111 + 5084 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -53469,16 +53094,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5111 + 5084 ], "scheduled_at": [ - 4611 + 4584 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "server_plugin_runtime": [ 80 @@ -53496,16 +53121,16 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -53513,67 +53138,67 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "effective_at": [ - 3035 + 3008 ], "ended_at": [ - 3035 + 3008 ], "external_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "lineup_1_id": [ - 3035 + 3008 ], "lineup_2_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "password": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "server_error": [ - 3035 + 3008 ], "server_id": [ - 3035 + 3008 ], "share_code": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "veto_pick_expires_at": [ - 3035 + 3008 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -53581,7 +53206,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4611 + 4584 ], "connection_link": [ 80 @@ -53590,22 +53215,22 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "current_match_map_id": [ - 5111 + 5084 ], "effective_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "invite_code": [ 80 @@ -53614,19 +53239,19 @@ export default { 80 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2_id": [ - 5111 + 5084 ], "map_veto_picking_lineup_id": [ - 5111 + 5084 ], "map_veto_type": [ 80 ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -53644,16 +53269,16 @@ export default { 80 ], "region_veto_picking_lineup_id": [ - 5111 + 5084 ], "scheduled_at": [ - 4611 + 4584 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "server_plugin_runtime": [ 80 @@ -53671,16 +53296,16 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "tv_connection_string": [ 80 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -53688,67 +53313,67 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "effective_at": [ - 3035 + 3008 ], "ended_at": [ - 3035 + 3008 ], "external_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "lineup_1_id": [ - 3035 + 3008 ], "lineup_2_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "password": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "server_error": [ - 3035 + 3008 ], "server_id": [ - 3035 + 3008 ], "share_code": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "veto_pick_expires_at": [ - 3035 + 3008 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -53759,7 +53384,7 @@ export default { 40 ], "returning": [ - 2823 + 2796 ], "__typename": [ 80 @@ -53767,10 +53392,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2835 + 2808 ], "on_conflict": [ - 2842 + 2815 ], "__typename": [ 80 @@ -53778,13 +53403,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2833 + 2806 ], "update_columns": [ - 2857 + 2830 ], "where": [ - 2832 + 2805 ], "__typename": [ 80 @@ -53792,49 +53417,49 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 3035 + 3008 ], "can_cancel": [ - 3035 + 3008 ], "can_check_in": [ - 3035 + 3008 ], "can_reassign_winner": [ - 3035 + 3008 ], "can_schedule": [ - 3035 + 3008 ], "can_start": [ - 3035 + 3008 ], "can_stream_live": [ - 3035 + 3008 ], "can_stream_tv": [ - 3035 + 3008 ], "cancels_at": [ - 3035 + 3008 ], "clutches_aggregate": [ - 5296 + 5269 ], "connection_link": [ - 3035 + 3008 ], "connection_string": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current_match_map_id": [ - 3035 + 3008 ], "demos_aggregate": [ - 2544 + 2517 ], "draft_games_aggregate": [ 472 @@ -53843,190 +53468,190 @@ export default { 1018 ], "e_region": [ - 4119 + 4092 ], "effective_at": [ - 3035 + 3008 ], "elo_changes_aggregate": [ - 5503 + 5476 ], "ended_at": [ - 3035 + 3008 ], "external_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invite_code": [ - 3035 + 3008 ], "is_captain": [ - 3035 + 3008 ], "is_coach": [ - 3035 + 3008 ], "is_friend_in_match_lineup": [ - 3035 + 3008 ], "is_in_lineup": [ - 3035 + 3008 ], "is_match_server_available": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "is_server_online": [ - 3035 + 3008 ], "is_tournament_match": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "lineup_1": [ - 2515 + 2488 ], "lineup_1_id": [ - 3035 + 3008 ], "lineup_2": [ - 2515 + 2488 ], "lineup_2_id": [ - 3035 + 3008 ], "lineup_counts": [ - 3035 + 3008 ], "map_veto_picking_lineup_id": [ - 3035 + 3008 ], "map_veto_picks_aggregate": [ - 2636 + 2609 ], "map_veto_type": [ - 3035 + 3008 ], "match_maps_aggregate": [ - 2662 + 2635 ], "match_options_id": [ - 3035 + 3008 ], "max_players_per_lineup": [ - 3035 + 3008 ], "min_players_per_lineup": [ - 3035 + 3008 ], "opening_duels_aggregate": [ - 5424 + 5397 ], "options": [ - 2712 + 2685 ], "organizer": [ - 4006 + 3979 ], "organizer_steam_id": [ - 3035 + 3008 ], "password": [ - 3035 + 3008 ], "player_assists_aggregate": [ - 3180 + 3153 ], "player_damages_aggregate": [ - 3241 + 3214 ], "player_flashes_aggregate": [ - 3352 + 3325 ], "player_kills_aggregate": [ - 3397 + 3370 ], "player_objectives_aggregate": [ - 3596 + 3569 ], "player_unused_utilities_aggregate": [ - 3883 + 3856 ], "player_utility_aggregate": [ - 3924 + 3897 ], "region": [ - 3035 + 3008 ], "region_veto_picking_lineup_id": [ - 3035 + 3008 ], "region_veto_picks_aggregate": [ - 2734 + 2707 ], "requested_organizer": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "server": [ - 4156 + 4129 ], "server_error": [ - 3035 + 3008 ], "server_id": [ - 3035 + 3008 ], "server_plugin_runtime": [ - 3035 + 3008 ], "server_region": [ - 3035 + 3008 ], "server_type": [ - 3035 + 3008 ], "share_code": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "streams_aggregate": [ - 2762 + 2735 ], "teams_aggregate": [ - 4569 + 4542 ], "tournament_brackets_aggregate": [ - 4662 + 4635 ], "tv_connection_string": [ - 3035 + 3008 ], "veto_pick_expires_at": [ - 3035 + 3008 ], "winner": [ - 2515 + 2488 ], "winning_lineup_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54034,7 +53659,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -54043,31 +53668,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "organizer_steam_id": [ 259 @@ -54079,13 +53704,13 @@ export default { 80 ], "scheduled_at": [ - 4611 + 4584 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "share_code": [ 80 @@ -54094,16 +53719,16 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "status": [ 1010 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -54125,7 +53750,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54147,7 +53772,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54169,7 +53794,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54177,7 +53802,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2854 + 2827 ], "ordering": [ 315 @@ -54188,34 +53813,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "effective_at": [ - 4611 + 4584 ], "ended_at": [ - 4611 + 4584 ], "external_id": [ 80 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "lineup_1_id": [ - 5111 + 5084 ], "lineup_2_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "organizer_steam_id": [ 259 @@ -54227,13 +53852,13 @@ export default { 80 ], "scheduled_at": [ - 4611 + 4584 ], "server_error": [ 80 ], "server_id": [ - 5111 + 5084 ], "share_code": [ 80 @@ -54242,16 +53867,16 @@ export default { 80 ], "started_at": [ - 4611 + 4584 ], "status": [ 1010 ], "veto_pick_expires_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -54273,7 +53898,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54282,13 +53907,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2834 + 2807 ], "_set": [ - 2846 + 2819 ], "where": [ - 2832 + 2805 ], "__typename": [ 80 @@ -54310,7 +53935,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54332,7 +53957,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54354,7 +53979,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54373,10 +53998,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2867 + 2840 ], "nodes": [ - 2865 + 2838 ], "__typename": [ 80 @@ -54387,7 +54012,7 @@ export default { 40, { "columns": [ - 2877, + 2850, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -54396,10 +54021,10 @@ export default { } ], "max": [ - 2871 + 2844 ], "min": [ - 2872 + 2845 ], "__typename": [ 80 @@ -54407,13 +54032,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2868 + 2841 ], "_not": [ - 2868 + 2841 ], "_or": [ - 2868 + 2841 ], "hash": [ 82 @@ -54464,7 +54089,7 @@ export default { 40 ], "returning": [ - 2865 + 2838 ], "__typename": [ 80 @@ -54472,13 +54097,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2869 + 2842 ], "update_columns": [ - 2881 + 2854 ], "where": [ - 2868 + 2841 ], "__typename": [ 80 @@ -54486,10 +54111,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54517,7 +54142,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2880 + 2853 ], "ordering": [ 315 @@ -54540,10 +54165,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2878 + 2851 ], "where": [ - 2868 + 2841 ], "__typename": [ 80 @@ -54557,7 +54182,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -54589,7 +54214,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -54615,10 +54240,10 @@ export default { } ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -54627,16 +54252,16 @@ export default { 5 ], "player": [ - 3993 + 3966 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -54654,7 +54279,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -54671,10 +54296,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2889 + 2862 ], "nodes": [ - 2883 + 2856 ], "__typename": [ 80 @@ -54682,13 +54307,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2886 + 2859 ], "bool_or": [ - 2887 + 2860 ], "count": [ - 2888 + 2861 ], "__typename": [ 80 @@ -54696,13 +54321,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2909 + 2882 ], "distinct": [ 5 ], "filter": [ - 2895 + 2868 ], "predicate": [ 6 @@ -54713,13 +54338,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2910 + 2883 ], "distinct": [ 5 ], "filter": [ - 2895 + 2868 ], "predicate": [ 6 @@ -54730,13 +54355,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2908 + 2881 ], "distinct": [ 5 ], "filter": [ - 2895 + 2868 ], "predicate": [ 41 @@ -54747,13 +54372,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2893 + 2866 ], "count": [ 40, { "columns": [ - 2908, + 2881, "[my_friends_select_column!]" ], "distinct": [ @@ -54762,31 +54387,31 @@ export default { } ], "max": [ - 2901 + 2874 ], "min": [ - 2903 + 2876 ], "stddev": [ - 2912 + 2885 ], "stddev_pop": [ - 2914 + 2887 ], "stddev_samp": [ - 2916 + 2889 ], "sum": [ - 2920 + 2893 ], "var_pop": [ - 2923 + 2896 ], "var_samp": [ - 2925 + 2898 ], "variance": [ - 2927 + 2900 ], "__typename": [ 80 @@ -54794,37 +54419,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2894 + 2867 ], "count": [ - 3035 + 3008 ], "max": [ - 2902 + 2875 ], "min": [ - 2904 + 2877 ], "stddev": [ - 2913 + 2886 ], "stddev_pop": [ - 2915 + 2888 ], "stddev_samp": [ - 2917 + 2890 ], "sum": [ - 2921 + 2894 ], "var_pop": [ - 2924 + 2897 ], "var_samp": [ - 2926 + 2899 ], "variance": [ - 2928 + 2901 ], "__typename": [ 80 @@ -54843,7 +54468,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2900 + 2873 ], "__typename": [ 80 @@ -54883,31 +54508,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -54915,13 +54540,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2895 + 2868 ], "_not": [ - 2895 + 2868 ], "_or": [ - 2895 + 2868 ], "avatar_url": [ 82 @@ -54930,7 +54555,7 @@ export default { 82 ], "created_at": [ - 4612 + 4585 ], "custom_avatar_url": [ 82 @@ -54957,7 +54582,7 @@ export default { 41 ], "faceit_updated_at": [ - 4612 + 4585 ], "faceit_url": [ 82 @@ -54978,10 +54603,10 @@ export default { 1846 ], "last_read_news_at": [ - 4612 + 4585 ], "last_sign_in_at": [ - 4612 + 4585 ], "name": [ 82 @@ -54990,16 +54615,16 @@ export default { 6 ], "player": [ - 3997 + 3970 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4612 + 4585 ], "presence_updated_at": [ - 4612 + 4585 ], "profile_url": [ 82 @@ -55017,7 +54642,7 @@ export default { 82 ], "steam_bans_checked_at": [ - 4612 + 4585 ], "steam_id": [ 261 @@ -55105,7 +54730,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -55132,7 +54757,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -55153,10 +54778,10 @@ export default { 1844 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -55165,16 +54790,16 @@ export default { 5 ], "player": [ - 4004 + 3977 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -55192,7 +54817,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -55215,7 +54840,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -55239,7 +54864,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -55257,10 +54882,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -55269,10 +54894,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -55287,7 +54912,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -55301,91 +54926,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 3035 + 3008 ], "country": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_avatar_url": [ - 3035 + 3008 ], "days_since_last_ban": [ - 3035 + 3008 ], "discord_id": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_nickname": [ - 3035 + 3008 ], "faceit_player_id": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "faceit_updated_at": [ - 3035 + 3008 ], "faceit_url": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "language": [ - 3035 + 3008 ], "last_read_news_at": [ - 3035 + 3008 ], "last_sign_in_at": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "premier_rank_updated_at": [ - 3035 + 3008 ], "presence_updated_at": [ - 3035 + 3008 ], "profile_url": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "steam_bans_checked_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -55399,7 +55024,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -55423,7 +55048,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -55441,10 +55066,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -55453,10 +55078,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -55471,7 +55096,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -55485,91 +55110,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 3035 + 3008 ], "country": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_avatar_url": [ - 3035 + 3008 ], "days_since_last_ban": [ - 3035 + 3008 ], "discord_id": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_nickname": [ - 3035 + 3008 ], "faceit_player_id": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "faceit_updated_at": [ - 3035 + 3008 ], "faceit_url": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "language": [ - 3035 + 3008 ], "last_read_news_at": [ - 3035 + 3008 ], "last_sign_in_at": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "premier_rank_updated_at": [ - 3035 + 3008 ], "presence_updated_at": [ - 3035 + 3008 ], "profile_url": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "steam_bans_checked_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -55580,7 +55205,7 @@ export default { 40 ], "returning": [ - 2883 + 2856 ], "__typename": [ 80 @@ -55588,109 +55213,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 3035 + 3008 ], "country": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_avatar_url": [ - 3035 + 3008 ], "days_since_last_ban": [ - 3035 + 3008 ], "discord_id": [ - 3035 + 3008 ], "elo": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_nickname": [ - 3035 + 3008 ], "faceit_player_id": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "faceit_updated_at": [ - 3035 + 3008 ], "faceit_url": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "language": [ - 3035 + 3008 ], "last_presence_state": [ - 3035 + 3008 ], "last_read_news_at": [ - 3035 + 3008 ], "last_sign_in_at": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "name_registered": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "premier_rank": [ - 3035 + 3008 ], "premier_rank_updated_at": [ - 3035 + 3008 ], "presence_updated_at": [ - 3035 + 3008 ], "profile_url": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "show_match_ready_modal": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "steam_bans_checked_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "vac_banned": [ - 3035 + 3008 ], "__typename": [ 80 @@ -55718,7 +55343,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -55745,7 +55370,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -55766,10 +55391,10 @@ export default { 1844 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -55781,10 +55406,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -55802,7 +55427,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -55851,31 +55476,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -55915,31 +55540,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -55979,31 +55604,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56011,7 +55636,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2919 + 2892 ], "ordering": [ 315 @@ -56028,7 +55653,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -56055,7 +55680,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -56076,10 +55701,10 @@ export default { 1844 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -56091,10 +55716,10 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "presence_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -56112,7 +55737,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -56161,31 +55786,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56193,28 +55818,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2891 + 2864 ], "_delete_at_path": [ - 2896 + 2869 ], "_delete_elem": [ - 2897 + 2870 ], "_delete_key": [ - 2898 + 2871 ], "_inc": [ - 2899 + 2872 ], "_prepend": [ - 2907 + 2880 ], "_set": [ - 2911 + 2884 ], "where": [ - 2895 + 2868 ], "__typename": [ 80 @@ -56254,31 +55879,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56318,31 +55943,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56382,31 +56007,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3035 + 3008 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_skill_level": [ - 3035 + 3008 ], "friend_steam_id": [ - 3035 + 3008 ], "game_ban_count": [ - 3035 + 3008 ], "invited_by_steam_id": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "vac_ban_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56414,7 +56039,7 @@ export default { }, "news_articles": { "author": [ - 3993 + 3966 ], "author_steam_id": [ 259 @@ -56426,13 +56051,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56447,7 +56072,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56458,10 +56083,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2931 + 2904 ], "nodes": [ - 2929 + 2902 ], "__typename": [ 80 @@ -56469,13 +56094,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2932 + 2905 ], "count": [ 40, { "columns": [ - 2943, + 2916, "[news_articles_select_column!]" ], "distinct": [ @@ -56484,31 +56109,31 @@ export default { } ], "max": [ - 2937 + 2910 ], "min": [ - 2938 + 2911 ], "stddev": [ - 2945 + 2918 ], "stddev_pop": [ - 2946 + 2919 ], "stddev_samp": [ - 2947 + 2920 ], "sum": [ - 2950 + 2923 ], "var_pop": [ - 2953 + 2926 ], "var_samp": [ - 2954 + 2927 ], "variance": [ - 2955 + 2928 ], "__typename": [ 80 @@ -56527,16 +56152,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2933 + 2906 ], "_not": [ - 2933 + 2906 ], "_or": [ - 2933 + 2906 ], "author": [ - 3997 + 3970 ], "author_steam_id": [ 261 @@ -56548,13 +56173,13 @@ export default { 82 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "published_at": [ - 4612 + 4585 ], "slug": [ 82 @@ -56569,7 +56194,7 @@ export default { 82 ], "updated_at": [ - 4612 + 4585 ], "view_count": [ 261 @@ -56592,7 +56217,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 4004 + 3977 ], "author_steam_id": [ 259 @@ -56604,13 +56229,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56625,7 +56250,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56645,13 +56270,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56666,7 +56291,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56686,13 +56311,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56707,7 +56332,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56721,7 +56346,7 @@ export default { 40 ], "returning": [ - 2929 + 2902 ], "__typename": [ 80 @@ -56729,13 +56354,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2934 + 2907 ], "update_columns": [ - 2951 + 2924 ], "where": [ - 2933 + 2906 ], "__typename": [ 80 @@ -56743,43 +56368,43 @@ export default { }, "news_articles_order_by": { "author": [ - 4006 + 3979 ], "author_steam_id": [ - 3035 + 3008 ], "content_markdown": [ - 3035 + 3008 ], "cover_image_url": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "published_at": [ - 3035 + 3008 ], "slug": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "teaser": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "view_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -56787,7 +56412,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -56805,13 +56430,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56826,7 +56451,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56870,7 +56495,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2949 + 2922 ], "ordering": [ 315 @@ -56890,13 +56515,13 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "published_at": [ - 4611 + 4584 ], "slug": [ 80 @@ -56911,7 +56536,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "view_count": [ 259 @@ -56934,13 +56559,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2935 + 2908 ], "_set": [ - 2944 + 2917 ], "where": [ - 2933 + 2906 ], "__typename": [ 80 @@ -56993,7 +56618,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57001,10 +56626,10 @@ export default { }, "notification_preferences_aggregate": { "aggregate": [ - 2958 + 2931 ], "nodes": [ - 2956 + 2929 ], "__typename": [ 80 @@ -57012,13 +56637,13 @@ export default { }, "notification_preferences_aggregate_fields": { "avg": [ - 2959 + 2932 ], "count": [ 40, { "columns": [ - 2970, + 2943, "[notification_preferences_select_column!]" ], "distinct": [ @@ -57027,31 +56652,31 @@ export default { } ], "max": [ - 2964 + 2937 ], "min": [ - 2965 + 2938 ], "stddev": [ - 2972 + 2945 ], "stddev_pop": [ - 2973 + 2946 ], "stddev_samp": [ - 2974 + 2947 ], "sum": [ - 2977 + 2950 ], "var_pop": [ - 2980 + 2953 ], "var_samp": [ - 2981 + 2954 ], "variance": [ - 2982 + 2955 ], "__typename": [ 80 @@ -57067,13 +56692,13 @@ export default { }, "notification_preferences_bool_exp": { "_and": [ - 2960 + 2933 ], "_not": [ - 2960 + 2933 ], "_or": [ - 2960 + 2933 ], "channel": [ 82 @@ -57088,7 +56713,7 @@ export default { 261 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -57117,7 +56742,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57134,7 +56759,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57151,7 +56776,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57162,7 +56787,7 @@ export default { 40 ], "returning": [ - 2956 + 2929 ], "__typename": [ 80 @@ -57170,13 +56795,13 @@ export default { }, "notification_preferences_on_conflict": { "constraint": [ - 2961 + 2934 ], "update_columns": [ - 2978 + 2951 ], "where": [ - 2960 + 2933 ], "__typename": [ 80 @@ -57184,19 +56809,19 @@ export default { }, "notification_preferences_order_by": { "channel": [ - 3035 + 3008 ], "enabled": [ - 3035 + 3008 ], "key": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57231,7 +56856,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57263,7 +56888,7 @@ export default { }, "notification_preferences_stream_cursor_input": { "initial_value": [ - 2976 + 2949 ], "ordering": [ 315 @@ -57286,7 +56911,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -57303,13 +56928,13 @@ export default { "notification_preferences_update_column": {}, "notification_preferences_updates": { "_inc": [ - 2962 + 2935 ], "_set": [ - 2971 + 2944 ], "where": [ - 2960 + 2933 ], "__typename": [ 80 @@ -57349,19 +56974,19 @@ export default { } ], "created_at": [ - 4611 + 4584 ], "deletable": [ 5 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "is_read": [ 5 @@ -57370,7 +56995,7 @@ export default { 80 ], "player": [ - 3993 + 3966 ], "role": [ 1092 @@ -57390,10 +57015,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2989 + 2962 ], "nodes": [ - 2983 + 2956 ], "__typename": [ 80 @@ -57401,13 +57026,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2986 + 2959 ], "bool_or": [ - 2987 + 2960 ], "count": [ - 2988 + 2961 ], "__typename": [ 80 @@ -57415,13 +57040,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 3012 + 2985 ], "distinct": [ 5 ], "filter": [ - 2995 + 2968 ], "predicate": [ 6 @@ -57432,13 +57057,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 3013 + 2986 ], "distinct": [ 5 ], "filter": [ - 2995 + 2968 ], "predicate": [ 6 @@ -57449,13 +57074,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 3011 + 2984 ], "distinct": [ 5 ], "filter": [ - 2995 + 2968 ], "predicate": [ 41 @@ -57466,13 +57091,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2993 + 2966 ], "count": [ 40, { "columns": [ - 3011, + 2984, "[notifications_select_column!]" ], "distinct": [ @@ -57481,31 +57106,31 @@ export default { } ], "max": [ - 3002 + 2975 ], "min": [ - 3004 + 2977 ], "stddev": [ - 3015 + 2988 ], "stddev_pop": [ - 3017 + 2990 ], "stddev_samp": [ - 3019 + 2992 ], "sum": [ - 3023 + 2996 ], "var_pop": [ - 3027 + 3000 ], "var_samp": [ - 3029 + 3002 ], "variance": [ - 3031 + 3004 ], "__typename": [ 80 @@ -57513,37 +57138,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2994 + 2967 ], "count": [ - 3035 + 3008 ], "max": [ - 3003 + 2976 ], "min": [ - 3005 + 2978 ], "stddev": [ - 3016 + 2989 ], "stddev_pop": [ - 3018 + 2991 ], "stddev_samp": [ - 3020 + 2993 ], "sum": [ - 3024 + 2997 ], "var_pop": [ - 3028 + 3001 ], "var_samp": [ - 3030 + 3003 ], "variance": [ - 3032 + 3005 ], "__typename": [ 80 @@ -57559,10 +57184,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 3001 + 2974 ], "on_conflict": [ - 3007 + 2980 ], "__typename": [ 80 @@ -57578,7 +57203,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57586,31 +57211,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2995 + 2968 ], "_not": [ - 2995 + 2968 ], "_or": [ - 2995 + 2968 ], "actions": [ 1846 ], "created_at": [ - 4612 + 4585 ], "deletable": [ 6 ], "deleted_at": [ - 4612 + 4585 ], "entity_id": [ 82 ], "id": [ - 5113 + 5086 ], "is_read": [ 6 @@ -57619,7 +57244,7 @@ export default { 82 ], "player": [ - 3997 + 3970 ], "role": [ 1093 @@ -57675,19 +57300,19 @@ export default { 1844 ], "created_at": [ - 4611 + 4584 ], "deletable": [ 5 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "is_read": [ 5 @@ -57696,7 +57321,7 @@ export default { 80 ], "player": [ - 4004 + 3977 ], "role": [ 1092 @@ -57716,16 +57341,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "message": [ 80 @@ -57742,25 +57367,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "entity_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57768,16 +57393,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "message": [ 80 @@ -57794,25 +57419,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "entity_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57823,7 +57448,7 @@ export default { 40 ], "returning": [ - 2983 + 2956 ], "__typename": [ 80 @@ -57831,13 +57456,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2996 + 2969 ], "update_columns": [ - 3025 + 2998 ], "where": [ - 2995 + 2968 ], "__typename": [ 80 @@ -57845,43 +57470,43 @@ export default { }, "notifications_order_by": { "actions": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "deletable": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "entity_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_read": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "role": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57889,7 +57514,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -57911,19 +57536,19 @@ export default { 1844 ], "created_at": [ - 4611 + 4584 ], "deletable": [ 5 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "is_read": [ 5 @@ -57957,7 +57582,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57973,7 +57598,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57989,7 +57614,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -57997,7 +57622,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 3022 + 2995 ], "ordering": [ 315 @@ -58011,19 +57636,19 @@ export default { 1844 ], "created_at": [ - 4611 + 4584 ], "deletable": [ 5 ], "deleted_at": [ - 4611 + 4584 ], "entity_id": [ 80 ], "id": [ - 5111 + 5084 ], "is_read": [ 5 @@ -58057,7 +57682,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58066,28 +57691,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2991 + 2964 ], "_delete_at_path": [ - 2997 + 2970 ], "_delete_elem": [ - 2998 + 2971 ], "_delete_key": [ - 2999 + 2972 ], "_inc": [ - 3000 + 2973 ], "_prepend": [ - 3010 + 2983 ], "_set": [ - 3014 + 2987 ], "where": [ - 2995 + 2968 ], "__typename": [ 80 @@ -58103,7 +57728,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58119,7 +57744,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58135,7 +57760,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58144,31 +57769,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3033 + 3006 ], "_gt": [ - 3033 + 3006 ], "_gte": [ - 3033 + 3006 ], "_in": [ - 3033 + 3006 ], "_is_null": [ 5 ], "_lt": [ - 3033 + 3006 ], "_lte": [ - 3033 + 3006 ], "_neq": [ - 3033 + 3006 ], "_nin": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58177,19 +57802,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4611 + 4584 ], "pending_match_import": [ - 3077 + 3050 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58197,10 +57822,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 3040 + 3013 ], "nodes": [ - 3036 + 3009 ], "__typename": [ 80 @@ -58208,7 +57833,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3039 + 3012 ], "__typename": [ 80 @@ -58216,13 +57841,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3057 + 3030 ], "distinct": [ 5 ], "filter": [ - 3045 + 3018 ], "predicate": [ 41 @@ -58233,13 +57858,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3043 + 3016 ], "count": [ 40, { "columns": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -58248,31 +57873,31 @@ export default { } ], "max": [ - 3049 + 3022 ], "min": [ - 3051 + 3024 ], "stddev": [ - 3059 + 3032 ], "stddev_pop": [ - 3061 + 3034 ], "stddev_samp": [ - 3063 + 3036 ], "sum": [ - 3067 + 3040 ], "var_pop": [ - 3071 + 3044 ], "var_samp": [ - 3073 + 3046 ], "variance": [ - 3075 + 3048 ], "__typename": [ 80 @@ -58280,37 +57905,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3044 + 3017 ], "count": [ - 3035 + 3008 ], "max": [ - 3050 + 3023 ], "min": [ - 3052 + 3025 ], "stddev": [ - 3060 + 3033 ], "stddev_pop": [ - 3062 + 3035 ], "stddev_samp": [ - 3064 + 3037 ], "sum": [ - 3068 + 3041 ], "var_pop": [ - 3072 + 3045 ], "var_samp": [ - 3074 + 3047 ], "variance": [ - 3076 + 3049 ], "__typename": [ 80 @@ -58318,10 +57943,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3048 + 3021 ], "on_conflict": [ - 3054 + 3027 ], "__typename": [ 80 @@ -58340,10 +57965,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58351,28 +57976,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 3045 + 3018 ], "_not": [ - 3045 + 3018 ], "_or": [ - 3045 + 3018 ], "created_at": [ - 4612 + 4585 ], "pending_match_import": [ - 3081 + 3054 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 ], "valve_match_id": [ - 3034 + 3007 ], "__typename": [ 80 @@ -58384,7 +58009,7 @@ export default { 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58392,19 +58017,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4611 + 4584 ], "pending_match_import": [ - 3088 + 3061 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58412,13 +58037,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58426,13 +58051,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58440,13 +58065,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58454,13 +58079,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58471,7 +58096,7 @@ export default { 40 ], "returning": [ - 3036 + 3009 ], "__typename": [ 80 @@ -58479,13 +58104,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 3046 + 3019 ], "update_columns": [ - 3069 + 3042 ], "where": [ - 3045 + 3018 ], "__typename": [ 80 @@ -58493,19 +58118,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 3035 + 3008 ], "pending_match_import": [ - 3090 + 3063 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58516,7 +58141,7 @@ export default { 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58525,13 +58150,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58550,10 +58175,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58572,10 +58197,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58594,10 +58219,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58605,7 +58230,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3066 + 3039 ], "ordering": [ 315 @@ -58616,13 +58241,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58633,7 +58258,7 @@ export default { 259 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58641,10 +58266,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58653,13 +58278,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3047 + 3020 ], "_set": [ - 3058 + 3031 ], "where": [ - 3045 + 3018 ], "__typename": [ 80 @@ -58678,10 +58303,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58700,10 +58325,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58722,10 +58347,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -58733,7 +58358,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -58745,13 +58370,13 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "players": [ - 3036, + 3009, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -58761,19 +58386,19 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "players_aggregate": [ - 3037, + 3010, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -58783,11 +58408,11 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], @@ -58798,10 +58423,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58809,10 +58434,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 3079 + 3052 ], "nodes": [ - 3077 + 3050 ], "__typename": [ 80 @@ -58820,13 +58445,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 3080 + 3053 ], "count": [ 40, { "columns": [ - 3092, + 3065, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -58835,31 +58460,31 @@ export default { } ], "max": [ - 3085 + 3058 ], "min": [ - 3086 + 3059 ], "stddev": [ - 3094 + 3067 ], "stddev_pop": [ - 3095 + 3068 ], "stddev_samp": [ - 3096 + 3069 ], "sum": [ - 3099 + 3072 ], "var_pop": [ - 3102 + 3075 ], "var_samp": [ - 3103 + 3076 ], "variance": [ - 3104 + 3077 ], "__typename": [ 80 @@ -58875,16 +58500,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 3081 + 3054 ], "_not": [ - 3081 + 3054 ], "_or": [ - 3081 + 3054 ], "created_at": [ - 4612 + 4585 ], "demo_url": [ 82 @@ -58896,13 +58521,13 @@ export default { 82 ], "match_start_time": [ - 4612 + 4585 ], "players": [ - 3045 + 3018 ], "players_aggregate": [ - 3038 + 3011 ], "share_code": [ 82 @@ -58911,10 +58536,10 @@ export default { 82 ], "updated_at": [ - 4612 + 4585 ], "valve_match_id": [ - 3034 + 3007 ], "__typename": [ 80 @@ -58923,7 +58548,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58931,7 +58556,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -58943,10 +58568,10 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "players": [ - 3042 + 3015 ], "share_code": [ 80 @@ -58955,10 +58580,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58966,7 +58591,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -58978,7 +58603,7 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "share_code": [ 80 @@ -58987,10 +58612,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -58998,7 +58623,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -59010,7 +58635,7 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "share_code": [ 80 @@ -59019,10 +58644,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -59033,7 +58658,7 @@ export default { 40 ], "returning": [ - 3077 + 3050 ], "__typename": [ 80 @@ -59041,10 +58666,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3084 + 3057 ], "on_conflict": [ - 3089 + 3062 ], "__typename": [ 80 @@ -59052,13 +58677,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 3082 + 3055 ], "update_columns": [ - 3100 + 3073 ], "where": [ - 3081 + 3054 ], "__typename": [ 80 @@ -59066,34 +58691,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 3035 + 3008 ], "demo_url": [ - 3035 + 3008 ], "error": [ - 3035 + 3008 ], "map_name": [ - 3035 + 3008 ], "match_start_time": [ - 3035 + 3008 ], "players_aggregate": [ - 3041 + 3014 ], "share_code": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "valve_match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -59101,7 +58726,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -59110,7 +58735,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -59122,7 +58747,7 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "share_code": [ 80 @@ -59131,10 +58756,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -59166,7 +58791,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3098 + 3071 ], "ordering": [ 315 @@ -59177,7 +58802,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "demo_url": [ 80 @@ -59189,7 +58814,7 @@ export default { 80 ], "match_start_time": [ - 4611 + 4584 ], "share_code": [ 80 @@ -59198,10 +58823,10 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -59209,7 +58834,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3033 + 3006 ], "__typename": [ 80 @@ -59218,13 +58843,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3083 + 3056 ], "_set": [ - 3093 + 3066 ], "where": [ - 3081 + 3054 ], "__typename": [ 80 @@ -59256,7 +58881,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3993 + 3966 ], "attacker_steam_id": [ 259 @@ -59271,7 +58896,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59289,16 +58914,16 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -59319,7 +58944,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -59330,10 +58955,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3107 + 3080 ], "nodes": [ - 3105 + 3078 ], "__typename": [ 80 @@ -59341,13 +58966,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3108 + 3081 ], "count": [ 40, { "columns": [ - 3119, + 3092, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -59356,31 +58981,31 @@ export default { } ], "max": [ - 3113 + 3086 ], "min": [ - 3114 + 3087 ], "stddev": [ - 3121 + 3094 ], "stddev_pop": [ - 3122 + 3095 ], "stddev_samp": [ - 3123 + 3096 ], "sum": [ - 3126 + 3099 ], "var_pop": [ - 3129 + 3102 ], "var_samp": [ - 3130 + 3103 ], "variance": [ - 3131 + 3104 ], "__typename": [ 80 @@ -59447,16 +59072,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3109 + 3082 ], "_not": [ - 3109 + 3082 ], "_or": [ - 3109 + 3082 ], "attacker": [ - 3997 + 3970 ], "attacker_steam_id": [ 261 @@ -59471,7 +59096,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3034 + 3007 ], "first_bullet_hits": [ 41 @@ -59489,16 +59114,16 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "non_awp_hits": [ 41 @@ -59519,7 +59144,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3034 + 3007 ], "total_engagement_frames": [ 41 @@ -59543,7 +59168,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59579,7 +59204,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -59590,7 +59215,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 4004 + 3977 ], "attacker_steam_id": [ 259 @@ -59605,7 +59230,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59623,16 +59248,16 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -59653,7 +59278,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -59676,7 +59301,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59694,10 +59319,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -59718,7 +59343,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -59741,7 +59366,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59759,10 +59384,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -59783,7 +59408,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -59797,7 +59422,7 @@ export default { 40 ], "returning": [ - 3105 + 3078 ], "__typename": [ 80 @@ -59805,13 +59430,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3110 + 3083 ], "update_columns": [ - 3127 + 3100 ], "where": [ - 3109 + 3082 ], "__typename": [ 80 @@ -59819,73 +59444,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 4006 + 3979 ], "attacker_steam_id": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "__typename": [ 80 @@ -59896,7 +59521,7 @@ export default { 259 ], "match_map_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -59917,7 +59542,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -59935,10 +59560,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -59959,7 +59584,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -60147,7 +59772,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3125 + 3098 ], "ordering": [ 315 @@ -60170,7 +59795,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -60188,10 +59813,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "non_awp_hits": [ 40 @@ -60212,7 +59837,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -60235,7 +59860,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "first_bullet_hits": [ 40 @@ -60271,7 +59896,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -60283,13 +59908,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3111 + 3084 ], "_set": [ - 3120 + 3093 ], "where": [ - 3109 + 3082 ], "__typename": [ 80 @@ -60486,19 +60111,19 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "shots": [ 40 @@ -60518,10 +60143,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3136 + 3109 ], "nodes": [ - 3132 + 3105 ], "__typename": [ 80 @@ -60529,7 +60154,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3135 + 3108 ], "__typename": [ 80 @@ -60537,13 +60162,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3153 + 3126 ], "distinct": [ 5 ], "filter": [ - 3141 + 3114 ], "predicate": [ 41 @@ -60554,13 +60179,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3139 + 3112 ], "count": [ 40, { "columns": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -60569,31 +60194,31 @@ export default { } ], "max": [ - 3145 + 3118 ], "min": [ - 3147 + 3120 ], "stddev": [ - 3155 + 3128 ], "stddev_pop": [ - 3157 + 3130 ], "stddev_samp": [ - 3159 + 3132 ], "sum": [ - 3163 + 3136 ], "var_pop": [ - 3167 + 3140 ], "var_samp": [ - 3169 + 3142 ], "variance": [ - 3171 + 3144 ], "__typename": [ 80 @@ -60601,37 +60226,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3140 + 3113 ], "count": [ - 3035 + 3008 ], "max": [ - 3146 + 3119 ], "min": [ - 3148 + 3121 ], "stddev": [ - 3156 + 3129 ], "stddev_pop": [ - 3158 + 3131 ], "stddev_samp": [ - 3160 + 3133 ], "sum": [ - 3164 + 3137 ], "var_pop": [ - 3168 + 3141 ], "var_samp": [ - 3170 + 3143 ], "variance": [ - 3172 + 3145 ], "__typename": [ 80 @@ -60639,10 +60264,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3144 + 3117 ], "on_conflict": [ - 3150 + 3123 ], "__typename": [ 80 @@ -60676,25 +60301,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -60702,13 +60327,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3141 + 3114 ], "_not": [ - 3141 + 3114 ], "_or": [ - 3141 + 3114 ], "first_bullet_hits": [ 41 @@ -60723,19 +60348,19 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "shots": [ 41 @@ -60794,19 +60419,19 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "shots": [ 40 @@ -60838,10 +60463,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -60861,34 +60486,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -60908,10 +60533,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -60931,34 +60556,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -60969,7 +60594,7 @@ export default { 40 ], "returning": [ - 3132 + 3105 ], "__typename": [ 80 @@ -60977,13 +60602,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3142 + 3115 ], "update_columns": [ - 3165 + 3138 ], "where": [ - 3141 + 3114 ], "__typename": [ 80 @@ -60991,43 +60616,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61035,7 +60660,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -61062,10 +60687,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -61111,25 +60736,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61163,25 +60788,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61215,25 +60840,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61241,7 +60866,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3162 + 3135 ], "ordering": [ 315 @@ -61264,10 +60889,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -61313,25 +60938,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61340,13 +60965,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3143 + 3116 ], "_set": [ - 3154 + 3127 ], "where": [ - 3141 + 3114 ], "__typename": [ 80 @@ -61380,25 +61005,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61432,25 +61057,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61484,25 +61109,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61510,7 +61135,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3993 + 3966 ], "attacked_steam_id": [ 259 @@ -61525,7 +61150,7 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "flash": [ 5 @@ -61534,25 +61159,25 @@ export default { 5 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -61560,10 +61185,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 3179 + 3152 ], "nodes": [ - 3173 + 3146 ], "__typename": [ 80 @@ -61571,13 +61196,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3176 + 3149 ], "bool_or": [ - 3177 + 3150 ], "count": [ - 3178 + 3151 ], "__typename": [ 80 @@ -61585,13 +61210,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3197 + 3170 ], "distinct": [ 5 ], "filter": [ - 3184 + 3157 ], "predicate": [ 6 @@ -61602,13 +61227,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3198 + 3171 ], "distinct": [ 5 ], "filter": [ - 3184 + 3157 ], "predicate": [ 6 @@ -61619,13 +61244,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3196 + 3169 ], "distinct": [ 5 ], "filter": [ - 3184 + 3157 ], "predicate": [ 41 @@ -61636,13 +61261,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 3182 + 3155 ], "count": [ 40, { "columns": [ - 3196, + 3169, "[player_assists_select_column!]" ], "distinct": [ @@ -61651,31 +61276,31 @@ export default { } ], "max": [ - 3188 + 3161 ], "min": [ - 3190 + 3163 ], "stddev": [ - 3200 + 3173 ], "stddev_pop": [ - 3202 + 3175 ], "stddev_samp": [ - 3204 + 3177 ], "sum": [ - 3208 + 3181 ], "var_pop": [ - 3212 + 3185 ], "var_samp": [ - 3214 + 3187 ], "variance": [ - 3216 + 3189 ], "__typename": [ 80 @@ -61683,37 +61308,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 3183 + 3156 ], "count": [ - 3035 + 3008 ], "max": [ - 3189 + 3162 ], "min": [ - 3191 + 3164 ], "stddev": [ - 3201 + 3174 ], "stddev_pop": [ - 3203 + 3176 ], "stddev_samp": [ - 3205 + 3178 ], "sum": [ - 3209 + 3182 ], "var_pop": [ - 3213 + 3186 ], "var_samp": [ - 3215 + 3188 ], "variance": [ - 3217 + 3190 ], "__typename": [ 80 @@ -61721,10 +61346,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 3187 + 3160 ], "on_conflict": [ - 3193 + 3166 ], "__typename": [ 80 @@ -61746,13 +61371,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61760,16 +61385,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 3184 + 3157 ], "_not": [ - 3184 + 3157 ], "_or": [ - 3184 + 3157 ], "attacked_player": [ - 3997 + 3970 ], "attacked_steam_id": [ 261 @@ -61784,7 +61409,7 @@ export default { 82 ], "deleted_at": [ - 4612 + 4585 ], "flash": [ 6 @@ -61793,25 +61418,25 @@ export default { 6 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "round": [ 41 ], "time": [ - 4612 + 4585 ], "__typename": [ 80 @@ -61834,7 +61459,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 4004 + 3977 ], "attacked_steam_id": [ 259 @@ -61849,31 +61474,31 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "flash": [ 5 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -61893,19 +61518,19 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -61913,31 +61538,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -61957,19 +61582,19 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -61977,31 +61602,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62012,7 +61637,7 @@ export default { 40 ], "returning": [ - 3173 + 3146 ], "__typename": [ 80 @@ -62020,13 +61645,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 3185 + 3158 ], "update_columns": [ - 3210 + 3183 ], "where": [ - 3184 + 3157 ], "__typename": [ 80 @@ -62034,49 +61659,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 4006 + 3979 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "flash": [ - 3035 + 3008 ], "is_team_assist": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62090,10 +61715,10 @@ export default { 259 ], "match_map_id": [ - 5111 + 5084 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -62116,22 +61741,22 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "flash": [ 5 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -62153,13 +61778,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62181,13 +61806,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62209,13 +61834,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62223,7 +61848,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 3207 + 3180 ], "ordering": [ 315 @@ -62246,22 +61871,22 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "flash": [ 5 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -62283,13 +61908,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62298,13 +61923,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3186 + 3159 ], "_set": [ - 3199 + 3172 ], "where": [ - 3184 + 3157 ], "__typename": [ 80 @@ -62326,13 +61951,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62354,13 +61979,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62382,13 +62007,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62396,28 +62021,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "counter_strafe_pct": [ - 3033 + 3006 ], "crosshair_deg": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "maps": [ 40 @@ -62432,16 +62057,16 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "time_to_damage_s": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "__typename": [ 80 @@ -62449,10 +62074,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 3220 + 3193 ], "nodes": [ - 3218 + 3191 ], "__typename": [ 80 @@ -62460,13 +62085,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3221 + 3194 ], "count": [ 40, { "columns": [ - 3226, + 3199, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -62475,31 +62100,31 @@ export default { } ], "max": [ - 3223 + 3196 ], "min": [ - 3224 + 3197 ], "stddev": [ - 3227 + 3200 ], "stddev_pop": [ - 3228 + 3201 ], "stddev_samp": [ - 3229 + 3202 ], "sum": [ - 3232 + 3205 ], "var_pop": [ - 3233 + 3206 ], "var_samp": [ - 3234 + 3207 ], "variance": [ - 3235 + 3208 ], "__typename": [ 80 @@ -62560,37 +62185,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 3222 + 3195 ], "_not": [ - 3222 + 3195 ], "_or": [ - 3222 + 3195 ], "accuracy": [ - 3034 + 3007 ], "accuracy_spotted": [ - 3034 + 3007 ], "counter_strafe_pct": [ - 3034 + 3007 ], "crosshair_deg": [ - 3034 + 3007 ], "enemy_blind_pr": [ - 3034 + 3007 ], "flash_assists_pr": [ - 3034 + 3007 ], "hs_pct": [ - 3034 + 3007 ], "kast_pct": [ - 3034 + 3007 ], "maps": [ 41 @@ -62605,16 +62230,16 @@ export default { 261 ], "survival_pct": [ - 3034 + 3007 ], "time_to_damage_s": [ - 3034 + 3007 ], "traded_death_pct": [ - 3034 + 3007 ], "util_efficiency": [ - 3034 + 3007 ], "__typename": [ 80 @@ -62622,28 +62247,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "counter_strafe_pct": [ - 3033 + 3006 ], "crosshair_deg": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "maps": [ 40 @@ -62658,16 +62283,16 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "time_to_damage_s": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "__typename": [ 80 @@ -62675,28 +62300,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "counter_strafe_pct": [ - 3033 + 3006 ], "crosshair_deg": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "maps": [ 40 @@ -62711,16 +62336,16 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "time_to_damage_s": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "__typename": [ 80 @@ -62728,52 +62353,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 3035 + 3008 ], "accuracy_spotted": [ - 3035 + 3008 ], "counter_strafe_pct": [ - 3035 + 3008 ], "crosshair_deg": [ - 3035 + 3008 ], "enemy_blind_pr": [ - 3035 + 3008 ], "flash_assists_pr": [ - 3035 + 3008 ], "hs_pct": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "maps": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "survival_pct": [ - 3035 + 3008 ], "time_to_damage_s": [ - 3035 + 3008 ], "traded_death_pct": [ - 3035 + 3008 ], "util_efficiency": [ - 3035 + 3008 ], "__typename": [ 80 @@ -62941,7 +62566,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3231 + 3204 ], "ordering": [ 315 @@ -62952,28 +62577,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "counter_strafe_pct": [ - 3033 + 3006 ], "crosshair_deg": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "maps": [ 40 @@ -62988,16 +62613,16 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "time_to_damage_s": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "__typename": [ 80 @@ -63005,28 +62630,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "counter_strafe_pct": [ - 3033 + 3006 ], "crosshair_deg": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "maps": [ 40 @@ -63041,16 +62666,16 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "time_to_damage_s": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "__typename": [ 80 @@ -63226,7 +62851,7 @@ export default { 80 ], "attacked_player": [ - 3993 + 3966 ], "attacked_steam_id": [ 259 @@ -63253,7 +62878,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -63262,31 +62887,31 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "round": [ - 3033 + 3006 ], "team_damage": [ 5 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -63297,10 +62922,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 3240 + 3213 ], "nodes": [ - 3236 + 3209 ], "__typename": [ 80 @@ -63308,7 +62933,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 3239 + 3212 ], "__typename": [ 80 @@ -63316,13 +62941,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3257 + 3230 ], "distinct": [ 5 ], "filter": [ - 3245 + 3218 ], "predicate": [ 41 @@ -63333,13 +62958,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 3243 + 3216 ], "count": [ 40, { "columns": [ - 3257, + 3230, "[player_damages_select_column!]" ], "distinct": [ @@ -63348,31 +62973,31 @@ export default { } ], "max": [ - 3249 + 3222 ], "min": [ - 3251 + 3224 ], "stddev": [ - 3259 + 3232 ], "stddev_pop": [ - 3261 + 3234 ], "stddev_samp": [ - 3263 + 3236 ], "sum": [ - 3267 + 3240 ], "var_pop": [ - 3271 + 3244 ], "var_samp": [ - 3273 + 3246 ], "variance": [ - 3275 + 3248 ], "__typename": [ 80 @@ -63380,37 +63005,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 3244 + 3217 ], "count": [ - 3035 + 3008 ], "max": [ - 3250 + 3223 ], "min": [ - 3252 + 3225 ], "stddev": [ - 3260 + 3233 ], "stddev_pop": [ - 3262 + 3235 ], "stddev_samp": [ - 3264 + 3237 ], "sum": [ - 3268 + 3241 ], "var_pop": [ - 3272 + 3245 ], "var_samp": [ - 3274 + 3247 ], "variance": [ - 3276 + 3249 ], "__typename": [ 80 @@ -63418,10 +63043,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 3248 + 3221 ], "on_conflict": [ - 3254 + 3227 ], "__typename": [ 80 @@ -63455,25 +63080,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -63481,13 +63106,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 3245 + 3218 ], "_not": [ - 3245 + 3218 ], "_or": [ - 3245 + 3218 ], "armor": [ 41 @@ -63499,7 +63124,7 @@ export default { 82 ], "attacked_player": [ - 3997 + 3970 ], "attacked_steam_id": [ 261 @@ -63526,7 +63151,7 @@ export default { 41 ], "deleted_at": [ - 4612 + 4585 ], "health": [ 41 @@ -63535,31 +63160,31 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "round": [ - 3034 + 3007 ], "team_damage": [ 6 ], "time": [ - 4612 + 4585 ], "with": [ 82 @@ -63589,7 +63214,7 @@ export default { 40 ], "round": [ - 3033 + 3006 ], "__typename": [ 80 @@ -63606,7 +63231,7 @@ export default { 80 ], "attacked_player": [ - 4004 + 3977 ], "attacked_steam_id": [ 259 @@ -63633,7 +63258,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -63642,28 +63267,28 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "round": [ - 3033 + 3006 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -63707,7 +63332,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -63716,19 +63341,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ - 3033 + 3006 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -63739,64 +63364,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 3035 + 3008 ], "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -63837,7 +63462,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -63846,19 +63471,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ - 3033 + 3006 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -63869,64 +63494,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 3035 + 3008 ], "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -63937,7 +63562,7 @@ export default { 40 ], "returning": [ - 3236 + 3209 ], "__typename": [ 80 @@ -63945,13 +63570,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 3246 + 3219 ], "update_columns": [ - 3269 + 3242 ], "where": [ - 3245 + 3218 ], "__typename": [ 80 @@ -63959,79 +63584,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 3035 + 3008 ], "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_player": [ - 4006 + 3979 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "round": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64039,13 +63664,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -64087,7 +63712,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -64096,19 +63721,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ - 3033 + 3006 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -64145,25 +63770,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64197,25 +63822,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64249,25 +63874,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64275,7 +63900,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3266 + 3239 ], "ordering": [ 315 @@ -64319,7 +63944,7 @@ export default { 40 ], "deleted_at": [ - 4611 + 4584 ], "health": [ 40 @@ -64328,19 +63953,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ - 3033 + 3006 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -64369,7 +63994,7 @@ export default { 40 ], "round": [ - 3033 + 3006 ], "__typename": [ 80 @@ -64377,25 +64002,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64404,13 +64029,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3247 + 3220 ], "_set": [ - 3258 + 3231 ], "where": [ - 3245 + 3218 ], "__typename": [ 80 @@ -64444,25 +64069,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64496,25 +64121,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64548,25 +64173,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_armor": [ - 3035 + 3008 ], "health": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -64580,13 +64205,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -64601,7 +64226,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -64619,10 +64244,10 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -64631,7 +64256,7 @@ export default { 1691 ], "player": [ - 3993 + 3966 ], "player_team_elo_avg": [ 1691 @@ -64640,10 +64265,10 @@ export default { 1691 ], "season": [ - 4079 + 4052 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -64663,10 +64288,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3279 + 3252 ], "nodes": [ - 3277 + 3250 ], "__typename": [ 80 @@ -64674,13 +64299,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3280 + 3253 ], "count": [ 40, { "columns": [ - 3291, + 3264, "[player_elo_select_column!]" ], "distinct": [ @@ -64689,31 +64314,31 @@ export default { } ], "max": [ - 3285 + 3258 ], "min": [ - 3286 + 3259 ], "stddev": [ - 3293 + 3266 ], "stddev_pop": [ - 3294 + 3267 ], "stddev_samp": [ - 3295 + 3268 ], "sum": [ - 3298 + 3271 ], "var_pop": [ - 3301 + 3274 ], "var_samp": [ - 3302 + 3275 ], "variance": [ - 3303 + 3276 ], "__typename": [ 80 @@ -64789,13 +64414,13 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3281 + 3254 ], "_not": [ - 3281 + 3254 ], "_or": [ - 3281 + 3254 ], "actual_score": [ 1692 @@ -64804,13 +64429,13 @@ export default { 41 ], "change": [ - 3034 + 3007 ], "created_at": [ - 4612 + 4585 ], "current": [ - 3034 + 3007 ], "damage": [ 41 @@ -64825,7 +64450,7 @@ export default { 1692 ], "impact": [ - 3034 + 3007 ], "k_factor": [ 41 @@ -64843,10 +64468,10 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "opponent_team_elo_avg": [ 1692 @@ -64855,7 +64480,7 @@ export default { 1692 ], "player": [ - 3997 + 3970 ], "player_team_elo_avg": [ 1692 @@ -64864,10 +64489,10 @@ export default { 1692 ], "season": [ - 4083 + 4056 ], "season_id": [ - 5113 + 5086 ], "series_multiplier": [ 41 @@ -64894,10 +64519,10 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -64912,7 +64537,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -64962,13 +64587,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -64983,7 +64608,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65001,10 +64626,10 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -65013,7 +64638,7 @@ export default { 1691 ], "player": [ - 4004 + 3977 ], "player_team_elo_avg": [ 1691 @@ -65022,10 +64647,10 @@ export default { 1691 ], "season": [ - 4090 + 4063 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -65051,13 +64676,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -65072,7 +64697,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65090,7 +64715,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -65105,7 +64730,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -65128,13 +64753,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -65149,7 +64774,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65167,7 +64792,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -65182,7 +64807,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -65202,7 +64827,7 @@ export default { 40 ], "returning": [ - 3277 + 3250 ], "__typename": [ 80 @@ -65210,13 +64835,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3282 + 3255 ], "update_columns": [ - 3299 + 3272 ], "where": [ - 3281 + 3254 ], "__typename": [ 80 @@ -65224,88 +64849,88 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "change": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "season": [ - 4092 + 4065 ], "season_id": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -65313,7 +64938,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -65334,13 +64959,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -65355,7 +64980,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65373,7 +64998,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -65388,7 +65013,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -65612,7 +65237,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3297 + 3270 ], "ordering": [ 315 @@ -65629,13 +65254,13 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "created_at": [ - 4611 + 4584 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -65650,7 +65275,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65668,7 +65293,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "opponent_team_elo_avg": [ 1691 @@ -65683,7 +65308,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -65709,10 +65334,10 @@ export default { 40 ], "change": [ - 3033 + 3006 ], "current": [ - 3033 + 3006 ], "damage": [ 40 @@ -65727,7 +65352,7 @@ export default { 1691 ], "impact": [ - 3033 + 3006 ], "k_factor": [ 40 @@ -65772,13 +65397,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3283 + 3256 ], "_set": [ - 3292 + 3265 ], "where": [ - 3281 + 3254 ], "__typename": [ 80 @@ -65993,19 +65618,19 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "player": [ - 3993 + 3966 ], "previous_rank": [ 40 @@ -66022,10 +65647,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3308 + 3281 ], "nodes": [ - 3304 + 3277 ], "__typename": [ 80 @@ -66033,7 +65658,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3307 + 3280 ], "__typename": [ 80 @@ -66041,13 +65666,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3325 + 3298 ], "distinct": [ 5 ], "filter": [ - 3313 + 3286 ], "predicate": [ 41 @@ -66058,13 +65683,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3311 + 3284 ], "count": [ 40, { "columns": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -66073,31 +65698,31 @@ export default { } ], "max": [ - 3317 + 3290 ], "min": [ - 3319 + 3292 ], "stddev": [ - 3327 + 3300 ], "stddev_pop": [ - 3329 + 3302 ], "stddev_samp": [ - 3331 + 3304 ], "sum": [ - 3335 + 3308 ], "var_pop": [ - 3339 + 3312 ], "var_samp": [ - 3341 + 3314 ], "variance": [ - 3343 + 3316 ], "__typename": [ 80 @@ -66105,37 +65730,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3312 + 3285 ], "count": [ - 3035 + 3008 ], "max": [ - 3318 + 3291 ], "min": [ - 3320 + 3293 ], "stddev": [ - 3328 + 3301 ], "stddev_pop": [ - 3330 + 3303 ], "stddev_samp": [ - 3332 + 3305 ], "sum": [ - 3336 + 3309 ], "var_pop": [ - 3340 + 3313 ], "var_samp": [ - 3342 + 3315 ], "variance": [ - 3344 + 3317 ], "__typename": [ 80 @@ -66143,10 +65768,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3316 + 3289 ], "on_conflict": [ - 3322 + 3295 ], "__typename": [ 80 @@ -66171,16 +65796,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66188,31 +65813,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3313 + 3286 ], "_not": [ - 3313 + 3286 ], "_or": [ - 3313 + 3286 ], "elo": [ 41 ], "id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "observed_at": [ - 4612 + 4585 ], "player": [ - 3997 + 3970 ], "previous_rank": [ 41 @@ -66250,19 +65875,19 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "player": [ - 4004 + 3977 ], "previous_rank": [ 40 @@ -66282,13 +65907,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -66305,25 +65930,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66334,13 +65959,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -66357,25 +65982,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66386,7 +66011,7 @@ export default { 40 ], "returning": [ - 3304 + 3277 ], "__typename": [ 80 @@ -66394,13 +66019,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3314 + 3287 ], "update_columns": [ - 3337 + 3310 ], "where": [ - 3313 + 3286 ], "__typename": [ 80 @@ -66408,31 +66033,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66440,7 +66065,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -66452,13 +66077,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -66492,16 +66117,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66526,16 +66151,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66560,16 +66185,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66577,7 +66202,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3334 + 3307 ], "ordering": [ 315 @@ -66591,13 +66216,13 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -66631,16 +66256,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66649,13 +66274,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3315 + 3288 ], "_set": [ - 3326 + 3299 ], "where": [ - 3313 + 3286 ], "__typename": [ 80 @@ -66680,16 +66305,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66714,16 +66339,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66748,16 +66373,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "skill_level": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -66771,25 +66396,25 @@ export default { 259 ], "blinded": [ - 3993 + 3966 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -66798,10 +66423,10 @@ export default { 5 ], "thrown_by": [ - 3993 + 3966 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -66809,10 +66434,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3351 + 3324 ], "nodes": [ - 3345 + 3318 ], "__typename": [ 80 @@ -66820,13 +66445,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3348 + 3321 ], "bool_or": [ - 3349 + 3322 ], "count": [ - 3350 + 3323 ], "__typename": [ 80 @@ -66834,13 +66459,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3369 + 3342 ], "distinct": [ 5 ], "filter": [ - 3356 + 3329 ], "predicate": [ 6 @@ -66851,13 +66476,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3370 + 3343 ], "distinct": [ 5 ], "filter": [ - 3356 + 3329 ], "predicate": [ 6 @@ -66868,13 +66493,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3368 + 3341 ], "distinct": [ 5 ], "filter": [ - 3356 + 3329 ], "predicate": [ 41 @@ -66885,13 +66510,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3354 + 3327 ], "count": [ 40, { "columns": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "distinct": [ @@ -66900,31 +66525,31 @@ export default { } ], "max": [ - 3360 + 3333 ], "min": [ - 3362 + 3335 ], "stddev": [ - 3372 + 3345 ], "stddev_pop": [ - 3374 + 3347 ], "stddev_samp": [ - 3376 + 3349 ], "sum": [ - 3380 + 3353 ], "var_pop": [ - 3384 + 3357 ], "var_samp": [ - 3386 + 3359 ], "variance": [ - 3388 + 3361 ], "__typename": [ 80 @@ -66932,37 +66557,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3355 + 3328 ], "count": [ - 3035 + 3008 ], "max": [ - 3361 + 3334 ], "min": [ - 3363 + 3336 ], "stddev": [ - 3373 + 3346 ], "stddev_pop": [ - 3375 + 3348 ], "stddev_samp": [ - 3377 + 3350 ], "sum": [ - 3381 + 3354 ], "var_pop": [ - 3385 + 3358 ], "var_samp": [ - 3387 + 3360 ], "variance": [ - 3389 + 3362 ], "__typename": [ 80 @@ -66970,10 +66595,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3359 + 3332 ], "on_conflict": [ - 3365 + 3338 ], "__typename": [ 80 @@ -66998,16 +66623,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67015,13 +66640,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3356 + 3329 ], "_not": [ - 3356 + 3329 ], "_or": [ - 3356 + 3329 ], "attacked_steam_id": [ 261 @@ -67030,25 +66655,25 @@ export default { 261 ], "blinded": [ - 3997 + 3970 ], "deleted_at": [ - 4612 + 4585 ], "duration": [ - 3034 + 3007 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "round": [ 41 @@ -67057,10 +66682,10 @@ export default { 6 ], "thrown_by": [ - 3997 + 3970 ], "time": [ - 4612 + 4585 ], "__typename": [ 80 @@ -67075,7 +66700,7 @@ export default { 259 ], "duration": [ - 3033 + 3006 ], "round": [ 40 @@ -67092,25 +66717,25 @@ export default { 259 ], "blinded": [ - 4004 + 3977 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -67119,10 +66744,10 @@ export default { 5 ], "thrown_by": [ - 4004 + 3977 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67136,22 +66761,22 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67159,28 +66784,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67194,22 +66819,22 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67217,28 +66842,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67249,7 +66874,7 @@ export default { 40 ], "returning": [ - 3345 + 3318 ], "__typename": [ 80 @@ -67257,13 +66882,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3357 + 3330 ], "update_columns": [ - 3382 + 3355 ], "where": [ - 3356 + 3329 ], "__typename": [ 80 @@ -67271,43 +66896,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "blinded": [ - 4006 + 3979 ], "deleted_at": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_flash": [ - 3035 + 3008 ], "thrown_by": [ - 4006 + 3979 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67321,10 +66946,10 @@ export default { 259 ], "match_map_id": [ - 5111 + 5084 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67341,16 +66966,16 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -67359,7 +66984,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67384,16 +67009,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67418,16 +67043,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67452,16 +67077,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67469,7 +67094,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3379 + 3352 ], "ordering": [ 315 @@ -67486,16 +67111,16 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "duration": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -67504,7 +67129,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -67518,7 +67143,7 @@ export default { 259 ], "duration": [ - 3033 + 3006 ], "round": [ 40 @@ -67529,16 +67154,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67547,13 +67172,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3358 + 3331 ], "_set": [ - 3371 + 3344 ], "where": [ - 3356 + 3329 ], "__typename": [ 80 @@ -67578,16 +67203,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67612,16 +67237,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67646,16 +67271,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "duration": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67672,7 +67297,7 @@ export default { 80 ], "attacked_player": [ - 3993 + 3966 ], "attacked_steam_id": [ 259 @@ -67696,7 +67321,7 @@ export default { 5 ], "deleted_at": [ - 4611 + 4584 ], "headshot": [ 5 @@ -67711,22 +67336,22 @@ export default { 5 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "no_scope": [ 5 ], "player": [ - 3993 + 3966 ], "round": [ 40 @@ -67741,7 +67366,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -67752,10 +67377,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3396 + 3369 ], "nodes": [ - 3390 + 3363 ], "__typename": [ 80 @@ -67763,13 +67388,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3393 + 3366 ], "bool_or": [ - 3394 + 3367 ], "count": [ - 3395 + 3368 ], "__typename": [ 80 @@ -67777,13 +67402,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3455 + 3428 ], "distinct": [ 5 ], "filter": [ - 3401 + 3374 ], "predicate": [ 6 @@ -67794,13 +67419,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3456 + 3429 ], "distinct": [ 5 ], "filter": [ - 3401 + 3374 ], "predicate": [ 6 @@ -67811,13 +67436,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3454 + 3427 ], "distinct": [ 5 ], "filter": [ - 3401 + 3374 ], "predicate": [ 41 @@ -67828,13 +67453,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3399 + 3372 ], "count": [ 40, { "columns": [ - 3454, + 3427, "[player_kills_select_column!]" ], "distinct": [ @@ -67843,31 +67468,31 @@ export default { } ], "max": [ - 3446 + 3419 ], "min": [ - 3448 + 3421 ], "stddev": [ - 3458 + 3431 ], "stddev_pop": [ - 3460 + 3433 ], "stddev_samp": [ - 3462 + 3435 ], "sum": [ - 3466 + 3439 ], "var_pop": [ - 3470 + 3443 ], "var_samp": [ - 3472 + 3445 ], "variance": [ - 3474 + 3447 ], "__typename": [ 80 @@ -67875,37 +67500,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3400 + 3373 ], "count": [ - 3035 + 3008 ], "max": [ - 3447 + 3420 ], "min": [ - 3449 + 3422 ], "stddev": [ - 3459 + 3432 ], "stddev_pop": [ - 3461 + 3434 ], "stddev_samp": [ - 3463 + 3436 ], "sum": [ - 3467 + 3440 ], "var_pop": [ - 3471 + 3444 ], "var_samp": [ - 3473 + 3446 ], "variance": [ - 3475 + 3448 ], "__typename": [ 80 @@ -67913,10 +67538,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3445 + 3418 ], "on_conflict": [ - 3451 + 3424 ], "__typename": [ 80 @@ -67938,13 +67563,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -67952,13 +67577,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3401 + 3374 ], "_not": [ - 3401 + 3374 ], "_or": [ - 3401 + 3374 ], "assisted": [ 6 @@ -67970,7 +67595,7 @@ export default { 82 ], "attacked_player": [ - 3997 + 3970 ], "attacked_steam_id": [ 261 @@ -67994,7 +67619,7 @@ export default { 6 ], "deleted_at": [ - 4612 + 4585 ], "headshot": [ 6 @@ -68009,22 +67634,22 @@ export default { 6 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "no_scope": [ 6 ], "player": [ - 3997 + 3970 ], "round": [ 41 @@ -68039,7 +67664,7 @@ export default { 6 ], "time": [ - 4612 + 4585 ], "with": [ 82 @@ -68053,7 +67678,7 @@ export default { 259 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -68067,10 +67692,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3406 + 3379 ], "nodes": [ - 3402 + 3375 ], "__typename": [ 80 @@ -68078,7 +67703,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3405 + 3378 ], "__typename": [ 80 @@ -68086,13 +67711,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3423 + 3396 ], "distinct": [ 5 ], "filter": [ - 3411 + 3384 ], "predicate": [ 41 @@ -68103,13 +67728,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3409 + 3382 ], "count": [ 40, { "columns": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -68118,31 +67743,31 @@ export default { } ], "max": [ - 3415 + 3388 ], "min": [ - 3417 + 3390 ], "stddev": [ - 3425 + 3398 ], "stddev_pop": [ - 3427 + 3400 ], "stddev_samp": [ - 3429 + 3402 ], "sum": [ - 3433 + 3406 ], "var_pop": [ - 3437 + 3410 ], "var_samp": [ - 3439 + 3412 ], "variance": [ - 3441 + 3414 ], "__typename": [ 80 @@ -68150,37 +67775,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3410 + 3383 ], "count": [ - 3035 + 3008 ], "max": [ - 3416 + 3389 ], "min": [ - 3418 + 3391 ], "stddev": [ - 3426 + 3399 ], "stddev_pop": [ - 3428 + 3401 ], "stddev_samp": [ - 3430 + 3403 ], "sum": [ - 3434 + 3407 ], "var_pop": [ - 3438 + 3411 ], "var_samp": [ - 3440 + 3413 ], "variance": [ - 3442 + 3415 ], "__typename": [ 80 @@ -68188,10 +67813,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3414 + 3387 ], "on_conflict": [ - 3420 + 3393 ], "__typename": [ 80 @@ -68210,10 +67835,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68221,19 +67846,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3411 + 3384 ], "_not": [ - 3411 + 3384 ], "_or": [ - 3411 + 3384 ], "kill_count": [ 261 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -68262,7 +67887,7 @@ export default { 259 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -68290,13 +67915,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68318,13 +67943,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68335,7 +67960,7 @@ export default { 40 ], "returning": [ - 3402 + 3375 ], "__typename": [ 80 @@ -68343,13 +67968,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3412 + 3385 ], "update_columns": [ - 3435 + 3408 ], "where": [ - 3411 + 3384 ], "__typename": [ 80 @@ -68357,16 +67982,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68411,10 +68036,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68433,10 +68058,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68455,10 +68080,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68466,7 +68091,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3432 + 3405 ], "ordering": [ 315 @@ -68502,10 +68127,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68514,13 +68139,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3413 + 3386 ], "_set": [ - 3424 + 3397 ], "where": [ - 3411 + 3384 ], "__typename": [ 80 @@ -68539,10 +68164,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68561,10 +68186,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68583,10 +68208,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68618,7 +68243,7 @@ export default { 80 ], "attacked_player": [ - 4004 + 3977 ], "attacked_steam_id": [ 259 @@ -68642,7 +68267,7 @@ export default { 5 ], "deleted_at": [ - 4611 + 4584 ], "headshot": [ 5 @@ -68654,22 +68279,22 @@ export default { 5 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "no_scope": [ 5 ], "player": [ - 4004 + 3977 ], "round": [ 40 @@ -68681,7 +68306,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -68716,22 +68341,22 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "hitgroup": [ 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -68742,49 +68367,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68816,22 +68441,22 @@ export default { 80 ], "deleted_at": [ - 4611 + 4584 ], "hitgroup": [ 80 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -68842,49 +68467,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -68895,7 +68520,7 @@ export default { 40 ], "returning": [ - 3390 + 3363 ], "__typename": [ 80 @@ -68903,13 +68528,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3443 + 3416 ], "update_columns": [ - 3468 + 3441 ], "where": [ - 3401 + 3374 ], "__typename": [ 80 @@ -68917,88 +68542,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 3035 + 3008 ], "attacked_location": [ - 3035 + 3008 ], "attacked_location_coordinates": [ - 3035 + 3008 ], "attacked_player": [ - 4006 + 3979 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacked_team": [ - 3035 + 3008 ], "attacker_location": [ - 3035 + 3008 ], "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "attacker_team": [ - 3035 + 3008 ], "blinded": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "headshot": [ - 3035 + 3008 ], "hitgroup": [ - 3035 + 3008 ], "in_air": [ - 3035 + 3008 ], "is_suicide": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "no_scope": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "round": [ - 3035 + 3008 ], "team_kill": [ - 3035 + 3008 ], "thru_smoke": [ - 3035 + 3008 ], "thru_wall": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69012,10 +68637,10 @@ export default { 259 ], "match_map_id": [ - 5111 + 5084 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -69056,7 +68681,7 @@ export default { 5 ], "deleted_at": [ - 4611 + 4584 ], "headshot": [ 5 @@ -69068,10 +68693,10 @@ export default { 5 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "no_scope": [ 5 @@ -69086,7 +68711,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -69111,13 +68736,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69139,13 +68764,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69167,13 +68792,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69181,7 +68806,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3465 + 3438 ], "ordering": [ 315 @@ -69222,7 +68847,7 @@ export default { 5 ], "deleted_at": [ - 4611 + 4584 ], "headshot": [ 5 @@ -69234,10 +68859,10 @@ export default { 5 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "no_scope": [ 5 @@ -69252,7 +68877,7 @@ export default { 5 ], "time": [ - 4611 + 4584 ], "with": [ 80 @@ -69277,13 +68902,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69292,13 +68917,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3444 + 3417 ], "_set": [ - 3457 + 3430 ], "where": [ - 3401 + 3374 ], "__typename": [ 80 @@ -69320,13 +68945,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69348,13 +68973,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69376,13 +69001,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69407,10 +69032,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3478 + 3451 ], "nodes": [ - 3476 + 3449 ], "__typename": [ 80 @@ -69418,13 +69043,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3479 + 3452 ], "count": [ 40, { "columns": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -69433,31 +69058,31 @@ export default { } ], "max": [ - 3483 + 3456 ], "min": [ - 3484 + 3457 ], "stddev": [ - 3489 + 3462 ], "stddev_pop": [ - 3490 + 3463 ], "stddev_samp": [ - 3491 + 3464 ], "sum": [ - 3494 + 3467 ], "var_pop": [ - 3496 + 3469 ], "var_samp": [ - 3497 + 3470 ], "variance": [ - 3498 + 3471 ], "__typename": [ 80 @@ -69479,13 +69104,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3480 + 3453 ], "_not": [ - 3480 + 3453 ], "_or": [ - 3480 + 3453 ], "player_steam_id": [ 82 @@ -69573,7 +69198,7 @@ export default { 40 ], "returning": [ - 3476 + 3449 ], "__typename": [ 80 @@ -69581,16 +69206,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "total": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -69658,7 +69283,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3493 + 3466 ], "ordering": [ 315 @@ -69700,13 +69325,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3481 + 3454 ], "_set": [ - 3488 + 3461 ], "where": [ - 3480 + 3453 ], "__typename": [ 80 @@ -69774,7 +69399,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -69816,7 +69441,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -69870,16 +69495,16 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -69894,7 +69519,7 @@ export default { 40 ], "player": [ - 3993 + 3966 ], "rounds_ct": [ 40 @@ -69942,7 +69567,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -69972,7 +69597,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -69992,10 +69617,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3503 + 3476 ], "nodes": [ - 3499 + 3472 ], "__typename": [ 80 @@ -70003,7 +69628,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3502 + 3475 ], "__typename": [ 80 @@ -70011,13 +69636,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3520 + 3493 ], "distinct": [ 5 ], "filter": [ - 3508 + 3481 ], "predicate": [ 41 @@ -70028,13 +69653,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3506 + 3479 ], "count": [ 40, { "columns": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -70043,31 +69668,31 @@ export default { } ], "max": [ - 3512 + 3485 ], "min": [ - 3514 + 3487 ], "stddev": [ - 3522 + 3495 ], "stddev_pop": [ - 3524 + 3497 ], "stddev_samp": [ - 3526 + 3499 ], "sum": [ - 3530 + 3503 ], "var_pop": [ - 3534 + 3507 ], "var_samp": [ - 3536 + 3509 ], "variance": [ - 3538 + 3511 ], "__typename": [ 80 @@ -70075,37 +69700,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3507 + 3480 ], "count": [ - 3035 + 3008 ], "max": [ - 3513 + 3486 ], "min": [ - 3515 + 3488 ], "stddev": [ - 3523 + 3496 ], "stddev_pop": [ - 3525 + 3498 ], "stddev_samp": [ - 3527 + 3500 ], "sum": [ - 3531 + 3504 ], "var_pop": [ - 3535 + 3508 ], "var_samp": [ - 3537 + 3510 ], "variance": [ - 3539 + 3512 ], "__typename": [ 80 @@ -70113,10 +69738,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3511 + 3484 ], "on_conflict": [ - 3517 + 3490 ], "__typename": [ 80 @@ -70342,217 +69967,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -70560,13 +70185,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3508 + 3481 ], "_not": [ - 3508 + 3481 ], "_or": [ - 3508 + 3481 ], "assists": [ 41 @@ -70587,7 +70212,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3034 + 3007 ], "damage": [ 41 @@ -70629,7 +70254,7 @@ export default { 41 ], "flash_duration_sum": [ - 3034 + 3007 ], "flashes_thrown": [ 41 @@ -70683,16 +70308,16 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "molotov_damage": [ 41 @@ -70707,7 +70332,7 @@ export default { 41 ], "player": [ - 3997 + 3970 ], "rounds_ct": [ 41 @@ -70755,7 +70380,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3034 + 3007 ], "total_engagement_frames": [ 41 @@ -70785,7 +70410,7 @@ export default { 41 ], "updated_at": [ - 4612 + 4585 ], "util_on_death_count": [ 41 @@ -70824,7 +70449,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -70866,7 +70491,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -70977,7 +70602,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -71042,7 +70667,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -71084,7 +70709,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -71138,16 +70763,16 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -71162,7 +70787,7 @@ export default { 40 ], "player": [ - 4004 + 3977 ], "rounds_ct": [ 40 @@ -71210,7 +70835,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -71240,7 +70865,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -71278,7 +70903,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -71320,7 +70945,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -71374,10 +70999,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -71437,7 +71062,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -71467,7 +71092,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -71487,226 +71112,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -71732,7 +71357,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -71774,7 +71399,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -71828,10 +71453,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -71891,7 +71516,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -71921,7 +71546,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -71941,226 +71566,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -72171,7 +71796,7 @@ export default { 40 ], "returning": [ - 3499 + 3472 ], "__typename": [ 80 @@ -72179,13 +71804,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3509 + 3482 ], "update_columns": [ - 3532 + 3505 ], "where": [ - 3508 + 3481 ], "__typename": [ 80 @@ -72193,235 +71818,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -72429,7 +72054,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5111 + 5084 ], "steam_id": [ 259 @@ -72459,7 +72084,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -72501,7 +72126,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -72555,10 +72180,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -72618,7 +72243,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -72648,7 +72273,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -72886,217 +72511,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -73322,217 +72947,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -73758,217 +73383,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -73976,7 +73601,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3529 + 3502 ], "ordering": [ 315 @@ -74005,7 +73630,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -74047,7 +73672,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -74101,10 +73726,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -74164,7 +73789,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -74194,7 +73819,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "util_on_death_count": [ 40 @@ -74232,7 +73857,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3033 + 3006 ], "damage": [ 40 @@ -74274,7 +73899,7 @@ export default { 40 ], "flash_duration_sum": [ - 3033 + 3006 ], "flashes_thrown": [ 40 @@ -74385,7 +74010,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3033 + 3006 ], "total_engagement_frames": [ 40 @@ -74432,217 +74057,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -74651,13 +74276,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3510 + 3483 ], "_set": [ - 3521 + 3494 ], "where": [ - 3508 + 3481 ], "__typename": [ 80 @@ -74883,217 +74508,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -75319,217 +74944,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -75755,217 +75380,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "crosshair_angle_count": [ - 3035 + 3008 ], "crosshair_angle_sum_deg": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flash_duration_count": [ - 3035 + 3008 ], "flash_duration_sum": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kast_rounds": [ - 3035 + 3008 ], "kast_total_rounds": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "time_to_damage_count": [ - 3035 + 3008 ], "time_to_damage_sum_s": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "util_on_death_count": [ - 3035 + 3008 ], "util_on_death_sum": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -75973,37 +75598,37 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "aim_rating": [ 1691 ], "counter_strafe_pct": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "overall_rating": [ 1691 ], "played_at": [ - 4611 + 4584 ], "positioning_rating": [ 1691 @@ -76018,13 +75643,13 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "utility_rating": [ 1691 @@ -76035,10 +75660,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3542 + 3515 ], "nodes": [ - 3540 + 3513 ], "__typename": [ 80 @@ -76046,13 +75671,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3543 + 3516 ], "count": [ 40, { "columns": [ - 3548, + 3521, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -76061,31 +75686,31 @@ export default { } ], "max": [ - 3545 + 3518 ], "min": [ - 3546 + 3519 ], "stddev": [ - 3549 + 3522 ], "stddev_pop": [ - 3550 + 3523 ], "stddev_samp": [ - 3551 + 3524 ], "sum": [ - 3554 + 3527 ], "var_pop": [ - 3555 + 3528 ], "var_samp": [ - 3556 + 3529 ], "variance": [ - 3557 + 3530 ], "__typename": [ 80 @@ -76146,46 +75771,46 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3544 + 3517 ], "_not": [ - 3544 + 3517 ], "_or": [ - 3544 + 3517 ], "accuracy": [ - 3034 + 3007 ], "accuracy_spotted": [ - 3034 + 3007 ], "aim_rating": [ 1692 ], "counter_strafe_pct": [ - 3034 + 3007 ], "enemy_blind_pr": [ - 3034 + 3007 ], "flash_assists_pr": [ - 3034 + 3007 ], "hs_pct": [ - 3034 + 3007 ], "kast_pct": [ - 3034 + 3007 ], "match_id": [ - 5113 + 5086 ], "overall_rating": [ 1692 ], "played_at": [ - 4612 + 4585 ], "positioning_rating": [ 1692 @@ -76200,13 +75825,13 @@ export default { 261 ], "survival_pct": [ - 3034 + 3007 ], "traded_death_pct": [ - 3034 + 3007 ], "util_efficiency": [ - 3034 + 3007 ], "utility_rating": [ 1692 @@ -76217,37 +75842,37 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "aim_rating": [ 1691 ], "counter_strafe_pct": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "overall_rating": [ 1691 ], "played_at": [ - 4611 + 4584 ], "positioning_rating": [ 1691 @@ -76262,13 +75887,13 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "utility_rating": [ 1691 @@ -76279,37 +75904,37 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "aim_rating": [ 1691 ], "counter_strafe_pct": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "overall_rating": [ 1691 ], "played_at": [ - 4611 + 4584 ], "positioning_rating": [ 1691 @@ -76324,13 +75949,13 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "utility_rating": [ 1691 @@ -76341,61 +75966,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 3035 + 3008 ], "accuracy_spotted": [ - 3035 + 3008 ], "aim_rating": [ - 3035 + 3008 ], "counter_strafe_pct": [ - 3035 + 3008 ], "enemy_blind_pr": [ - 3035 + 3008 ], "flash_assists_pr": [ - 3035 + 3008 ], "hs_pct": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "overall_rating": [ - 3035 + 3008 ], "played_at": [ - 3035 + 3008 ], "positioning_rating": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "survival_pct": [ - 3035 + 3008 ], "traded_death_pct": [ - 3035 + 3008 ], "util_efficiency": [ - 3035 + 3008 ], "utility_rating": [ - 3035 + 3008 ], "__typename": [ 80 @@ -76563,7 +76188,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3553 + 3526 ], "ordering": [ 315 @@ -76574,37 +76199,37 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "aim_rating": [ 1691 ], "counter_strafe_pct": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "overall_rating": [ 1691 ], "played_at": [ - 4611 + 4584 ], "positioning_rating": [ 1691 @@ -76619,13 +76244,13 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "utility_rating": [ 1691 @@ -76636,28 +76261,28 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3033 + 3006 ], "accuracy_spotted": [ - 3033 + 3006 ], "aim_rating": [ 1691 ], "counter_strafe_pct": [ - 3033 + 3006 ], "enemy_blind_pr": [ - 3033 + 3006 ], "flash_assists_pr": [ - 3033 + 3006 ], "hs_pct": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "overall_rating": [ 1691 @@ -76672,13 +76297,13 @@ export default { 259 ], "survival_pct": [ - 3033 + 3006 ], "traded_death_pct": [ - 3033 + 3006 ], "util_efficiency": [ - 3033 + 3006 ], "utility_rating": [ 1691 @@ -76857,13 +76482,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -76953,7 +76578,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -77037,7 +76662,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -77051,10 +76676,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3562 + 3535 ], "nodes": [ - 3558 + 3531 ], "__typename": [ 80 @@ -77062,7 +76687,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3561 + 3534 ], "__typename": [ 80 @@ -77070,13 +76695,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3574 + 3547 ], "distinct": [ 5 ], "filter": [ - 3567 + 3540 ], "predicate": [ 41 @@ -77087,13 +76712,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3565 + 3538 ], "count": [ 40, { "columns": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -77102,31 +76727,31 @@ export default { } ], "max": [ - 3569 + 3542 ], "min": [ - 3571 + 3544 ], "stddev": [ - 3575 + 3548 ], "stddev_pop": [ - 3577 + 3550 ], "stddev_samp": [ - 3579 + 3552 ], "sum": [ - 3583 + 3556 ], "var_pop": [ - 3585 + 3558 ], "var_samp": [ - 3587 + 3560 ], "variance": [ - 3589 + 3562 ], "__typename": [ 80 @@ -77134,37 +76759,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3566 + 3539 ], "count": [ - 3035 + 3008 ], "max": [ - 3570 + 3543 ], "min": [ - 3572 + 3545 ], "stddev": [ - 3576 + 3549 ], "stddev_pop": [ - 3578 + 3551 ], "stddev_samp": [ - 3580 + 3553 ], "sum": [ - 3584 + 3557 ], "var_pop": [ - 3586 + 3559 ], "var_samp": [ - 3588 + 3561 ], "variance": [ - 3590 + 3563 ], "__typename": [ 80 @@ -77172,7 +76797,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3568 + 3541 ], "__typename": [ 80 @@ -77380,199 +77005,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -77580,13 +77205,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3567 + 3540 ], "_not": [ - 3567 + 3540 ], "_or": [ - 3567 + 3540 ], "assists": [ 41 @@ -77598,13 +77223,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3034 + 3007 ], "avg_flash_duration": [ - 3034 + 3007 ], "avg_time_to_damage_s": [ - 3034 + 3007 ], "counter_strafe_eligible_shots": [ 41 @@ -77694,7 +77319,7 @@ export default { 41 ], "match_id": [ - 5113 + 5086 ], "molotov_damage": [ 41 @@ -77778,7 +77403,7 @@ export default { 41 ], "utility_on_death": [ - 3034 + 3007 ], "wasted_magazine_shots": [ 41 @@ -77801,13 +77426,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -77897,7 +77522,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -77981,7 +77606,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -78004,13 +77629,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -78100,7 +77725,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -78184,7 +77809,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -78198,202 +77823,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -78410,13 +78035,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -78506,7 +78131,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -78590,7 +78215,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -78604,202 +78229,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -78807,202 +78432,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -79211,199 +78836,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -79611,199 +79236,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -80011,199 +79636,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -80211,7 +79836,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3582 + 3555 ], "ordering": [ 315 @@ -80231,13 +79856,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -80327,7 +79952,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "molotov_damage": [ 40 @@ -80411,7 +80036,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -80434,13 +80059,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3033 + 3006 ], "avg_flash_duration": [ - 3033 + 3006 ], "avg_time_to_damage_s": [ - 3033 + 3006 ], "counter_strafe_eligible_shots": [ 40 @@ -80611,7 +80236,7 @@ export default { 40 ], "utility_on_death": [ - 3033 + 3006 ], "wasted_magazine_shots": [ 40 @@ -80625,199 +80250,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -81025,199 +80650,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -81425,199 +81050,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -81825,199 +81450,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 3035 + 3008 ], "assists_ct": [ - 3035 + 3008 ], "assists_t": [ - 3035 + 3008 ], "avg_crosshair_angle_deg": [ - 3035 + 3008 ], "avg_flash_duration": [ - 3035 + 3008 ], "avg_time_to_damage_s": [ - 3035 + 3008 ], "counter_strafe_eligible_shots": [ - 3035 + 3008 ], "counter_strafed_shots": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_ct": [ - 3035 + 3008 ], "damage_t": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "deaths_ct": [ - 3035 + 3008 ], "deaths_t": [ - 3035 + 3008 ], "decoy_throws": [ - 3035 + 3008 ], "enemies_flashed": [ - 3035 + 3008 ], "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "five_kill_rounds": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "flashes_thrown": [ - 3035 + 3008 ], "four_kill_rounds": [ - 3035 + 3008 ], "he_damage": [ - 3035 + 3008 ], "he_team_damage": [ - 3035 + 3008 ], "he_throws": [ - 3035 + 3008 ], "headshot_hits": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_at_spotted": [ - 3035 + 3008 ], "hs_kills": [ - 3035 + 3008 ], "hs_kills_ct": [ - 3035 + 3008 ], "hs_kills_t": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kills_ct": [ - 3035 + 3008 ], "kills_t": [ - 3035 + 3008 ], "knife_kills": [ - 3035 + 3008 ], "molotov_damage": [ - 3035 + 3008 ], "molotov_throws": [ - 3035 + 3008 ], "non_awp_hits": [ - 3035 + 3008 ], "on_target_frames": [ - 3035 + 3008 ], "rounds_ct": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "rounds_t": [ - 3035 + 3008 ], "shots_at_spotted": [ - 3035 + 3008 ], "shots_fired": [ - 3035 + 3008 ], "smoke_throws": [ - 3035 + 3008 ], "spotted_count": [ - 3035 + 3008 ], "spotted_with_damage_count": [ - 3035 + 3008 ], "spray_hits": [ - 3035 + 3008 ], "spray_shots": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_damage": [ - 3035 + 3008 ], "team_flashed": [ - 3035 + 3008 ], "three_kill_rounds": [ - 3035 + 3008 ], "total_engagement_frames": [ - 3035 + 3008 ], "trade_kill_attempts": [ - 3035 + 3008 ], "trade_kill_opportunities": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_attempts": [ - 3035 + 3008 ], "traded_death_opportunities": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "two_kill_rounds": [ - 3035 + 3008 ], "unused_utility_value": [ - 3035 + 3008 ], "utility_on_death": [ - 3035 + 3008 ], "wasted_magazine_shots": [ - 3035 + 3008 ], "zeus_kills": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82025,22 +81650,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4611 + 4584 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -82049,7 +81674,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "type": [ 1072 @@ -82060,10 +81685,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3595 + 3568 ], "nodes": [ - 3591 + 3564 ], "__typename": [ 80 @@ -82071,7 +81696,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3594 + 3567 ], "__typename": [ 80 @@ -82079,13 +81704,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3612 + 3585 ], "distinct": [ 5 ], "filter": [ - 3600 + 3573 ], "predicate": [ 41 @@ -82096,13 +81721,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3598 + 3571 ], "count": [ 40, { "columns": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "distinct": [ @@ -82111,31 +81736,31 @@ export default { } ], "max": [ - 3604 + 3577 ], "min": [ - 3606 + 3579 ], "stddev": [ - 3614 + 3587 ], "stddev_pop": [ - 3616 + 3589 ], "stddev_samp": [ - 3618 + 3591 ], "sum": [ - 3622 + 3595 ], "var_pop": [ - 3626 + 3599 ], "var_samp": [ - 3628 + 3601 ], "variance": [ - 3630 + 3603 ], "__typename": [ 80 @@ -82143,37 +81768,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3599 + 3572 ], "count": [ - 3035 + 3008 ], "max": [ - 3605 + 3578 ], "min": [ - 3607 + 3580 ], "stddev": [ - 3615 + 3588 ], "stddev_pop": [ - 3617 + 3590 ], "stddev_samp": [ - 3619 + 3592 ], "sum": [ - 3623 + 3596 ], "var_pop": [ - 3627 + 3600 ], "var_samp": [ - 3629 + 3602 ], "variance": [ - 3631 + 3604 ], "__typename": [ 80 @@ -82181,10 +81806,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3603 + 3576 ], "on_conflict": [ - 3609 + 3582 ], "__typename": [ 80 @@ -82203,10 +81828,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82214,31 +81839,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3600 + 3573 ], "_not": [ - 3600 + 3573 ], "_or": [ - 3600 + 3573 ], "deleted_at": [ - 4612 + 4585 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -82247,7 +81872,7 @@ export default { 41 ], "time": [ - 4612 + 4585 ], "type": [ 1073 @@ -82270,22 +81895,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4611 + 4584 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -82294,7 +81919,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "type": [ 1072 @@ -82305,13 +81930,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -82320,7 +81945,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -82328,22 +81953,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82351,13 +81976,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -82366,7 +81991,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -82374,22 +81999,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82400,7 +82025,7 @@ export default { 40 ], "returning": [ - 3591 + 3564 ], "__typename": [ 80 @@ -82408,13 +82033,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3601 + 3574 ], "update_columns": [ - 3624 + 3597 ], "where": [ - 3600 + 3573 ], "__typename": [ 80 @@ -82422,34 +82047,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82457,13 +82082,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -82472,13 +82097,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -82487,7 +82112,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "type": [ 1072 @@ -82509,10 +82134,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82531,10 +82156,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82553,10 +82178,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82564,7 +82189,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3621 + 3594 ], "ordering": [ 315 @@ -82575,13 +82200,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -82590,7 +82215,7 @@ export default { 40 ], "time": [ - 4611 + 4584 ], "type": [ 1072 @@ -82612,10 +82237,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82624,13 +82249,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3602 + 3575 ], "_set": [ - 3613 + 3586 ], "where": [ - 3600 + 3573 ], "__typename": [ 80 @@ -82649,10 +82274,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82671,10 +82296,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82693,10 +82318,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -82781,10 +82406,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3634 + 3607 ], "nodes": [ - 3632 + 3605 ], "__typename": [ 80 @@ -82792,13 +82417,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3635 + 3608 ], "count": [ 40, { "columns": [ - 3640, + 3613, "[player_performance_v_select_column!]" ], "distinct": [ @@ -82807,31 +82432,31 @@ export default { } ], "max": [ - 3637 + 3610 ], "min": [ - 3638 + 3611 ], "stddev": [ - 3641 + 3614 ], "stddev_pop": [ - 3642 + 3615 ], "stddev_samp": [ - 3643 + 3616 ], "sum": [ - 3646 + 3619 ], "var_pop": [ - 3647 + 3620 ], "var_samp": [ - 3648 + 3621 ], "variance": [ - 3649 + 3622 ], "__typename": [ 80 @@ -82916,13 +82541,13 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3636 + 3609 ], "_not": [ - 3636 + 3609 ], "_or": [ - 3636 + 3609 ], "accuracy_score": [ 1692 @@ -83156,76 +82781,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 3035 + 3008 ], "aim_goal": [ - 3035 + 3008 ], "aim_rating": [ - 3035 + 3008 ], "band": [ - 3035 + 3008 ], "band_sample": [ - 3035 + 3008 ], "blind_score": [ - 3035 + 3008 ], "counter_strafe_score": [ - 3035 + 3008 ], "crosshair_score": [ - 3035 + 3008 ], "flash_assists_score": [ - 3035 + 3008 ], "hs_score": [ - 3035 + 3008 ], "kast_score": [ - 3035 + 3008 ], "maps": [ - 3035 + 3008 ], "positioning_goal": [ - 3035 + 3008 ], "positioning_rating": [ - 3035 + 3008 ], "premier_rank": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "spotted_score": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "survival_score": [ - 3035 + 3008 ], "traded_score": [ - 3035 + 3008 ], "ttd_score": [ - 3035 + 3008 ], "util_eff_score": [ - 3035 + 3008 ], "utility_goal": [ - 3035 + 3008 ], "utility_rating": [ - 3035 + 3008 ], "__typename": [ 80 @@ -83465,7 +83090,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3645 + 3618 ], "ordering": [ 315 @@ -83861,25 +83486,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 5111 + 5084 ], "map": [ 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "player": [ - 3993 + 3966 ], "previous_rank": [ 40 @@ -83899,10 +83524,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3654 + 3627 ], "nodes": [ - 3650 + 3623 ], "__typename": [ 80 @@ -83910,7 +83535,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3653 + 3626 ], "__typename": [ 80 @@ -83918,13 +83543,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3671 + 3644 ], "distinct": [ 5 ], "filter": [ - 3659 + 3632 ], "predicate": [ 41 @@ -83935,13 +83560,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3657 + 3630 ], "count": [ 40, { "columns": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -83950,31 +83575,31 @@ export default { } ], "max": [ - 3663 + 3636 ], "min": [ - 3665 + 3638 ], "stddev": [ - 3673 + 3646 ], "stddev_pop": [ - 3675 + 3648 ], "stddev_samp": [ - 3677 + 3650 ], "sum": [ - 3681 + 3654 ], "var_pop": [ - 3685 + 3658 ], "var_samp": [ - 3687 + 3660 ], "variance": [ - 3689 + 3662 ], "__typename": [ 80 @@ -83982,37 +83607,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3658 + 3631 ], "count": [ - 3035 + 3008 ], "max": [ - 3664 + 3637 ], "min": [ - 3666 + 3639 ], "stddev": [ - 3674 + 3647 ], "stddev_pop": [ - 3676 + 3649 ], "stddev_samp": [ - 3678 + 3651 ], "sum": [ - 3682 + 3655 ], "var_pop": [ - 3686 + 3659 ], "var_samp": [ - 3688 + 3661 ], "variance": [ - 3690 + 3663 ], "__typename": [ 80 @@ -84020,10 +83645,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3662 + 3635 ], "on_conflict": [ - 3668 + 3641 ], "__typename": [ 80 @@ -84048,16 +83673,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84065,34 +83690,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3659 + 3632 ], "_not": [ - 3659 + 3632 ], "_or": [ - 3659 + 3632 ], "id": [ - 5113 + 5086 ], "map": [ 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "observed_at": [ - 4612 + 4585 ], "player": [ - 3997 + 3970 ], "previous_rank": [ 41 @@ -84130,25 +83755,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 5111 + 5084 ], "map": [ 2323 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "player": [ - 4004 + 3977 ], "previous_rank": [ 40 @@ -84168,16 +83793,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -84197,28 +83822,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84226,16 +83851,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -84255,28 +83880,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 3035 + 3008 ], "map_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84287,7 +83912,7 @@ export default { 40 ], "returning": [ - 3650 + 3623 ], "__typename": [ 80 @@ -84295,13 +83920,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3660 + 3633 ], "update_columns": [ - 3683 + 3656 ], "where": [ - 3659 + 3632 ], "__typename": [ 80 @@ -84309,37 +83934,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 3035 + 3008 ], "map": [ 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "observed_at": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84347,7 +83972,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -84356,16 +83981,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -84402,16 +84027,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84436,16 +84061,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84470,16 +84095,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84487,7 +84112,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3680 + 3653 ], "ordering": [ 315 @@ -84498,16 +84123,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5111 + 5084 ], "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "observed_at": [ - 4611 + 4584 ], "previous_rank": [ 40 @@ -84544,16 +84169,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84562,13 +84187,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3661 + 3634 ], "_set": [ - 3672 + 3645 ], "where": [ - 3659 + 3632 ], "__typename": [ 80 @@ -84593,16 +84218,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84627,16 +84252,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84661,16 +84286,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rank_type": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84678,19 +84303,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "e_sanction_type": [ 1147 ], "id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -84699,10 +84324,10 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by": [ - 3993 + 3966 ], "sanctioned_by_steam_id": [ 259 @@ -84716,10 +84341,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3695 + 3668 ], "nodes": [ - 3691 + 3664 ], "__typename": [ 80 @@ -84727,7 +84352,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3694 + 3667 ], "__typename": [ 80 @@ -84735,13 +84360,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3712 + 3685 ], "distinct": [ 5 ], "filter": [ - 3700 + 3673 ], "predicate": [ 41 @@ -84752,13 +84377,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3698 + 3671 ], "count": [ 40, { "columns": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "distinct": [ @@ -84767,31 +84392,31 @@ export default { } ], "max": [ - 3704 + 3677 ], "min": [ - 3706 + 3679 ], "stddev": [ - 3714 + 3687 ], "stddev_pop": [ - 3716 + 3689 ], "stddev_samp": [ - 3718 + 3691 ], "sum": [ - 3722 + 3695 ], "var_pop": [ - 3726 + 3699 ], "var_samp": [ - 3728 + 3701 ], "variance": [ - 3730 + 3703 ], "__typename": [ 80 @@ -84799,37 +84424,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3699 + 3672 ], "count": [ - 3035 + 3008 ], "max": [ - 3705 + 3678 ], "min": [ - 3707 + 3680 ], "stddev": [ - 3715 + 3688 ], "stddev_pop": [ - 3717 + 3690 ], "stddev_samp": [ - 3719 + 3692 ], "sum": [ - 3723 + 3696 ], "var_pop": [ - 3727 + 3700 ], "var_samp": [ - 3729 + 3702 ], "variance": [ - 3731 + 3704 ], "__typename": [ 80 @@ -84837,10 +84462,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3703 + 3676 ], "on_conflict": [ - 3709 + 3682 ], "__typename": [ 80 @@ -84859,10 +84484,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -84870,28 +84495,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3700 + 3673 ], "_not": [ - 3700 + 3673 ], "_or": [ - 3700 + 3673 ], "created_at": [ - 4612 + 4585 ], "deleted_at": [ - 4612 + 4585 ], "e_sanction_type": [ 1150 ], "id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -84900,10 +84525,10 @@ export default { 82 ], "remove_sanction_date": [ - 4612 + 4585 ], "sanctioned_by": [ - 3997 + 3970 ], "sanctioned_by_steam_id": [ 261 @@ -84929,19 +84554,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "e_sanction_type": [ 1158 ], "id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -84950,10 +84575,10 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by": [ - 4004 + 3977 ], "sanctioned_by_steam_id": [ 259 @@ -84967,13 +84592,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -84982,7 +84607,7 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by_steam_id": [ 259 @@ -84993,25 +84618,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "reason": [ - 3035 + 3008 ], "remove_sanction_date": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85019,13 +84644,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -85034,7 +84659,7 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by_steam_id": [ 259 @@ -85045,25 +84670,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "reason": [ - 3035 + 3008 ], "remove_sanction_date": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85074,7 +84699,7 @@ export default { 40 ], "returning": [ - 3691 + 3664 ], "__typename": [ 80 @@ -85082,13 +84707,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3701 + 3674 ], "update_columns": [ - 3724 + 3697 ], "where": [ - 3700 + 3673 ], "__typename": [ 80 @@ -85096,37 +84721,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "e_sanction_type": [ 1160 ], "id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "reason": [ - 3035 + 3008 ], "remove_sanction_date": [ - 3035 + 3008 ], "sanctioned_by": [ - 4006 + 3979 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85134,10 +84759,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -85146,13 +84771,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -85161,7 +84786,7 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by_steam_id": [ 259 @@ -85186,10 +84811,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85208,10 +84833,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85230,10 +84855,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85241,7 +84866,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3721 + 3694 ], "ordering": [ 315 @@ -85252,13 +84877,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "deleted_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -85267,7 +84892,7 @@ export default { 80 ], "remove_sanction_date": [ - 4611 + 4584 ], "sanctioned_by_steam_id": [ 259 @@ -85292,10 +84917,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85304,13 +84929,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3702 + 3675 ], "_set": [ - 3713 + 3686 ], "where": [ - 3700 + 3673 ], "__typename": [ 80 @@ -85329,10 +84954,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85351,10 +84976,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85373,10 +84998,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "sanctioned_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85399,16 +85024,16 @@ export default { 259 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 ], "season": [ - 4079 + 4052 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -85416,10 +85041,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3746 + 3719 ], "nodes": [ - 3732 + 3705 ], "__typename": [ 80 @@ -85427,31 +85052,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3735 + 3708 ], "corr": [ - 3736 + 3709 ], "count": [ - 3738 + 3711 ], "covar_samp": [ - 3739 + 3712 ], "max": [ - 3741 + 3714 ], "min": [ - 3742 + 3715 ], "stddev_samp": [ - 3743 + 3716 ], "sum": [ - 3744 + 3717 ], "var_samp": [ - 3745 + 3718 ], "__typename": [ 80 @@ -85459,13 +85084,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3764 + 3737 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85476,13 +85101,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3737 + 3710 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85493,10 +85118,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3765 + 3738 ], "Y": [ - 3765 + 3738 ], "__typename": [ 80 @@ -85504,13 +85129,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3763 + 3736 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 41 @@ -85521,13 +85146,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3740 + 3713 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85538,10 +85163,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3766 + 3739 ], "Y": [ - 3766 + 3739 ], "__typename": [ 80 @@ -85549,13 +85174,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3767 + 3740 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85566,13 +85191,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3768 + 3741 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85583,13 +85208,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3769 + 3742 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85600,13 +85225,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3770 + 3743 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85617,13 +85242,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3771 + 3744 ], "distinct": [ 5 ], "filter": [ - 3751 + 3724 ], "predicate": [ 1692 @@ -85634,13 +85259,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3749 + 3722 ], "count": [ 40, { "columns": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "distinct": [ @@ -85649,31 +85274,31 @@ export default { } ], "max": [ - 3755 + 3728 ], "min": [ - 3757 + 3730 ], "stddev": [ - 3773 + 3746 ], "stddev_pop": [ - 3775 + 3748 ], "stddev_samp": [ - 3777 + 3750 ], "sum": [ - 3781 + 3754 ], "var_pop": [ - 3785 + 3758 ], "var_samp": [ - 3787 + 3760 ], "variance": [ - 3789 + 3762 ], "__typename": [ 80 @@ -85681,37 +85306,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3750 + 3723 ], "count": [ - 3035 + 3008 ], "max": [ - 3756 + 3729 ], "min": [ - 3758 + 3731 ], "stddev": [ - 3774 + 3747 ], "stddev_pop": [ - 3776 + 3749 ], "stddev_samp": [ - 3778 + 3751 ], "sum": [ - 3782 + 3755 ], "var_pop": [ - 3786 + 3759 ], "var_samp": [ - 3788 + 3761 ], "variance": [ - 3790 + 3763 ], "__typename": [ 80 @@ -85719,10 +85344,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3754 + 3727 ], "on_conflict": [ - 3760 + 3733 ], "__typename": [ 80 @@ -85753,22 +85378,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85776,13 +85401,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3751 + 3724 ], "_not": [ - 3751 + 3724 ], "_or": [ - 3751 + 3724 ], "assists": [ 261 @@ -85800,16 +85425,16 @@ export default { 261 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 ], "season": [ - 4083 + 4056 ], "season_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -85856,16 +85481,16 @@ export default { 259 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 ], "season": [ - 4090 + 4063 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -85891,7 +85516,7 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -85899,25 +85524,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85943,7 +85568,7 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -85951,25 +85576,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -85980,7 +85605,7 @@ export default { 40 ], "returning": [ - 3732 + 3705 ], "__typename": [ 80 @@ -85988,13 +85613,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3752 + 3725 ], "update_columns": [ - 3783 + 3756 ], "where": [ - 3751 + 3724 ], "__typename": [ 80 @@ -86002,31 +85627,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "season": [ - 4092 + 4065 ], "season_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86037,7 +85662,7 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -86072,7 +85697,7 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -86103,22 +85728,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86149,22 +85774,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86195,22 +85820,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86218,7 +85843,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3780 + 3753 ], "ordering": [ 315 @@ -86247,7 +85872,7 @@ export default { 259 ], "season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -86278,22 +85903,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86302,13 +85927,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3753 + 3726 ], "_set": [ - 3772 + 3745 ], "where": [ - 3751 + 3724 ], "__typename": [ 80 @@ -86339,22 +85964,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86385,22 +86010,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86431,22 +86056,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86469,7 +86094,7 @@ export default { 259 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -86480,10 +86105,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3793 + 3766 ], "nodes": [ - 3791 + 3764 ], "__typename": [ 80 @@ -86491,13 +86116,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3794 + 3767 ], "count": [ 40, { "columns": [ - 3806, + 3779, "[player_stats_select_column!]" ], "distinct": [ @@ -86506,31 +86131,31 @@ export default { } ], "max": [ - 3799 + 3772 ], "min": [ - 3800 + 3773 ], "stddev": [ - 3808 + 3781 ], "stddev_pop": [ - 3809 + 3782 ], "stddev_samp": [ - 3810 + 3783 ], "sum": [ - 3813 + 3786 ], "var_pop": [ - 3816 + 3789 ], "var_samp": [ - 3817 + 3790 ], "variance": [ - 3818 + 3791 ], "__typename": [ 80 @@ -86561,13 +86186,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3795 + 3768 ], "_not": [ - 3795 + 3768 ], "_or": [ - 3795 + 3768 ], "assists": [ 261 @@ -86585,7 +86210,7 @@ export default { 261 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -86635,7 +86260,7 @@ export default { 259 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -86695,7 +86320,7 @@ export default { 40 ], "returning": [ - 3791 + 3764 ], "__typename": [ 80 @@ -86703,10 +86328,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3798 + 3771 ], "on_conflict": [ - 3803 + 3776 ], "__typename": [ 80 @@ -86714,13 +86339,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3796 + 3769 ], "update_columns": [ - 3814 + 3787 ], "where": [ - 3795 + 3768 ], "__typename": [ 80 @@ -86728,25 +86353,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -86855,7 +86480,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3812 + 3785 ], "ordering": [ 315 @@ -86913,13 +86538,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3797 + 3770 ], "_set": [ - 3807 + 3780 ], "where": [ - 3795 + 3768 ], "__typename": [ 80 @@ -86996,16 +86621,16 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "last_presence_state": [ 1844, @@ -87016,7 +86641,7 @@ export default { } ], "player": [ - 3993 + 3966 ], "status": [ 80 @@ -87025,7 +86650,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87033,10 +86658,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3821 + 3794 ], "nodes": [ - 3819 + 3792 ], "__typename": [ 80 @@ -87044,13 +86669,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3823 + 3796 ], "count": [ 40, { "columns": [ - 3838, + 3811, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -87059,31 +86684,31 @@ export default { } ], "max": [ - 3831 + 3804 ], "min": [ - 3832 + 3805 ], "stddev": [ - 3840 + 3813 ], "stddev_pop": [ - 3841 + 3814 ], "stddev_samp": [ - 3842 + 3815 ], "sum": [ - 3845 + 3818 ], "var_pop": [ - 3848 + 3821 ], "var_samp": [ - 3849 + 3822 ], "variance": [ - 3850 + 3823 ], "__typename": [ 80 @@ -87110,31 +86735,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3824 + 3797 ], "_not": [ - 3824 + 3797 ], "_or": [ - 3824 + 3797 ], "bot_steam_account_id": [ - 5113 + 5086 ], "bot_steamid64": [ 261 ], "created_at": [ - 4612 + 4585 ], "friended_at": [ - 4612 + 4585 ], "last_presence_state": [ 1846 ], "player": [ - 3997 + 3970 ], "status": [ 82 @@ -87143,7 +86768,7 @@ export default { 261 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -87187,22 +86812,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "last_presence_state": [ 1844 ], "player": [ - 4004 + 3977 ], "status": [ 80 @@ -87211,7 +86836,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87219,16 +86844,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "status": [ 80 @@ -87237,7 +86862,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87245,16 +86870,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "status": [ 80 @@ -87263,7 +86888,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87274,7 +86899,7 @@ export default { 40 ], "returning": [ - 3819 + 3792 ], "__typename": [ 80 @@ -87282,13 +86907,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3825 + 3798 ], "update_columns": [ - 3846 + 3819 ], "where": [ - 3824 + 3797 ], "__typename": [ 80 @@ -87296,31 +86921,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3035 + 3008 ], "bot_steamid64": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "friended_at": [ - 3035 + 3008 ], "last_presence_state": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "status": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -87345,16 +86970,16 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "last_presence_state": [ 1844 @@ -87366,7 +86991,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87407,7 +87032,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3844 + 3817 ], "ordering": [ 315 @@ -87418,16 +87043,16 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5111 + 5084 ], "bot_steamid64": [ 259 ], "created_at": [ - 4611 + 4584 ], "friended_at": [ - 4611 + 4584 ], "last_presence_state": [ 1844 @@ -87439,7 +87064,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87459,28 +87084,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3822 + 3795 ], "_delete_at_path": [ - 3826 + 3799 ], "_delete_elem": [ - 3827 + 3800 ], "_delete_key": [ - 3828 + 3801 ], "_inc": [ - 3829 + 3802 ], "_prepend": [ - 3837 + 3810 ], "_set": [ - 3839 + 3812 ], "where": [ - 3824 + 3797 ], "__typename": [ 80 @@ -87524,7 +87149,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87533,16 +87158,16 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87550,10 +87175,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3853 + 3826 ], "nodes": [ - 3851 + 3824 ], "__typename": [ 80 @@ -87561,13 +87186,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3854 + 3827 ], "count": [ 40, { "columns": [ - 3865, + 3838, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -87576,31 +87201,31 @@ export default { } ], "max": [ - 3859 + 3832 ], "min": [ - 3860 + 3833 ], "stddev": [ - 3867 + 3840 ], "stddev_pop": [ - 3868 + 3841 ], "stddev_samp": [ - 3869 + 3842 ], "sum": [ - 3872 + 3845 ], "var_pop": [ - 3875 + 3848 ], "var_samp": [ - 3876 + 3849 ], "variance": [ - 3877 + 3850 ], "__typename": [ 80 @@ -87616,19 +87241,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3855 + 3828 ], "_not": [ - 3855 + 3828 ], "_or": [ - 3855 + 3828 ], "auth_code": [ 82 ], "created_at": [ - 4612 + 4585 ], "last_error": [ 82 @@ -87637,16 +87262,16 @@ export default { 82 ], "last_polled_at": [ - 4612 + 4585 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -87666,7 +87291,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87675,16 +87300,16 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87695,7 +87320,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87704,13 +87329,13 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87721,7 +87346,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87730,13 +87355,13 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87747,7 +87372,7 @@ export default { 40 ], "returning": [ - 3851 + 3824 ], "__typename": [ 80 @@ -87755,13 +87380,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3856 + 3829 ], "update_columns": [ - 3873 + 3846 ], "where": [ - 3855 + 3828 ], "__typename": [ 80 @@ -87769,28 +87394,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "last_error": [ - 3035 + 3008 ], "last_known_share_code": [ - 3035 + 3008 ], "last_polled_at": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -87810,7 +87435,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87819,13 +87444,13 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87857,7 +87482,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3871 + 3844 ], "ordering": [ 315 @@ -87871,7 +87496,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "last_error": [ 80 @@ -87880,13 +87505,13 @@ export default { 80 ], "last_polled_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -87903,13 +87528,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3857 + 3830 ], "_set": [ - 3866 + 3839 ], "where": [ - 3855 + 3828 ], "__typename": [ 80 @@ -87941,22 +87566,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4611 + 4584 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -87973,10 +87598,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3882 + 3855 ], "nodes": [ - 3878 + 3851 ], "__typename": [ 80 @@ -87984,7 +87609,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3881 + 3854 ], "__typename": [ 80 @@ -87992,13 +87617,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3899 + 3872 ], "distinct": [ 5 ], "filter": [ - 3887 + 3860 ], "predicate": [ 41 @@ -88009,13 +87634,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3885 + 3858 ], "count": [ 40, { "columns": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -88024,31 +87649,31 @@ export default { } ], "max": [ - 3891 + 3864 ], "min": [ - 3893 + 3866 ], "stddev": [ - 3901 + 3874 ], "stddev_pop": [ - 3903 + 3876 ], "stddev_samp": [ - 3905 + 3878 ], "sum": [ - 3909 + 3882 ], "var_pop": [ - 3913 + 3886 ], "var_samp": [ - 3915 + 3888 ], "variance": [ - 3917 + 3890 ], "__typename": [ 80 @@ -88056,37 +87681,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3886 + 3859 ], "count": [ - 3035 + 3008 ], "max": [ - 3892 + 3865 ], "min": [ - 3894 + 3867 ], "stddev": [ - 3902 + 3875 ], "stddev_pop": [ - 3904 + 3877 ], "stddev_samp": [ - 3906 + 3879 ], "sum": [ - 3910 + 3883 ], "var_pop": [ - 3914 + 3887 ], "var_samp": [ - 3916 + 3889 ], "variance": [ - 3918 + 3891 ], "__typename": [ 80 @@ -88094,10 +87719,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3890 + 3863 ], "on_conflict": [ - 3896 + 3869 ], "__typename": [ 80 @@ -88119,13 +87744,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88133,31 +87758,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3887 + 3860 ], "_not": [ - 3887 + 3860 ], "_or": [ - 3887 + 3860 ], "deleted_at": [ - 4612 + 4585 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -88189,22 +87814,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4611 + 4584 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -88221,13 +87846,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -88244,22 +87869,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88267,13 +87892,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -88290,22 +87915,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88316,7 +87941,7 @@ export default { 40 ], "returning": [ - 3878 + 3851 ], "__typename": [ 80 @@ -88324,13 +87949,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3888 + 3861 ], "update_columns": [ - 3911 + 3884 ], "where": [ - 3887 + 3860 ], "__typename": [ 80 @@ -88338,31 +87963,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88370,7 +87995,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -88382,13 +88007,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -88419,13 +88044,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88447,13 +88072,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88475,13 +88100,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88489,7 +88114,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3908 + 3881 ], "ordering": [ 315 @@ -88500,13 +88125,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "player_steam_id": [ 259 @@ -88537,13 +88162,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88552,13 +88177,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3889 + 3862 ], "_set": [ - 3900 + 3873 ], "where": [ - 3887 + 3860 ], "__typename": [ 80 @@ -88580,13 +88205,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88608,13 +88233,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88636,13 +88261,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "unused": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88656,28 +88281,28 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "type": [ 1377 @@ -88688,10 +88313,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3923 + 3896 ], "nodes": [ - 3919 + 3892 ], "__typename": [ 80 @@ -88699,7 +88324,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3922 + 3895 ], "__typename": [ 80 @@ -88707,13 +88332,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3940 + 3913 ], "distinct": [ 5 ], "filter": [ - 3928 + 3901 ], "predicate": [ 41 @@ -88724,13 +88349,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3926 + 3899 ], "count": [ 40, { "columns": [ - 3940, + 3913, "[player_utility_select_column!]" ], "distinct": [ @@ -88739,31 +88364,31 @@ export default { } ], "max": [ - 3932 + 3905 ], "min": [ - 3934 + 3907 ], "stddev": [ - 3942 + 3915 ], "stddev_pop": [ - 3944 + 3917 ], "stddev_samp": [ - 3946 + 3919 ], "sum": [ - 3950 + 3923 ], "var_pop": [ - 3954 + 3927 ], "var_samp": [ - 3956 + 3929 ], "variance": [ - 3958 + 3931 ], "__typename": [ 80 @@ -88771,37 +88396,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3927 + 3900 ], "count": [ - 3035 + 3008 ], "max": [ - 3933 + 3906 ], "min": [ - 3935 + 3908 ], "stddev": [ - 3943 + 3916 ], "stddev_pop": [ - 3945 + 3918 ], "stddev_samp": [ - 3947 + 3920 ], "sum": [ - 3951 + 3924 ], "var_pop": [ - 3955 + 3928 ], "var_samp": [ - 3957 + 3930 ], "variance": [ - 3959 + 3932 ], "__typename": [ 80 @@ -88809,10 +88434,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3931 + 3904 ], "on_conflict": [ - 3937 + 3910 ], "__typename": [ 80 @@ -88831,10 +88456,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88842,13 +88467,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3928 + 3901 ], "_not": [ - 3928 + 3901 ], "_or": [ - 3928 + 3901 ], "attacker_location_coordinates": [ 82 @@ -88857,28 +88482,28 @@ export default { 261 ], "deleted_at": [ - 4612 + 4585 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "round": [ 41 ], "time": [ - 4612 + 4585 ], "type": [ 1378 @@ -88907,28 +88532,28 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "type": [ 1377 @@ -88945,19 +88570,19 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -88965,25 +88590,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -88997,19 +88622,19 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -89017,25 +88642,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89046,7 +88671,7 @@ export default { 40 ], "returning": [ - 3919 + 3892 ], "__typename": [ 80 @@ -89054,13 +88679,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3929 + 3902 ], "update_columns": [ - 3952 + 3925 ], "where": [ - 3928 + 3901 ], "__typename": [ 80 @@ -89068,37 +88693,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3035 + 3008 ], "attacker_steam_id": [ - 3035 + 3008 ], "deleted_at": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "round": [ - 3035 + 3008 ], "time": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89109,10 +88734,10 @@ export default { 259 ], "match_map_id": [ - 5111 + 5084 ], "time": [ - 4611 + 4584 ], "__typename": [ 80 @@ -89127,19 +88752,19 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "type": [ 1377 @@ -89161,10 +88786,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89183,10 +88808,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89205,10 +88830,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89216,7 +88841,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3949 + 3922 ], "ordering": [ 315 @@ -89233,19 +88858,19 @@ export default { 259 ], "deleted_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 ], "time": [ - 4611 + 4584 ], "type": [ 1377 @@ -89267,10 +88892,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89279,13 +88904,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3930 + 3903 ], "_set": [ - 3941 + 3914 ], "where": [ - 3928 + 3901 ], "__typename": [ 80 @@ -89304,10 +88929,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89326,10 +88951,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89348,10 +88973,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89371,7 +88996,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -89391,10 +89016,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3964 + 3937 ], "nodes": [ - 3960 + 3933 ], "__typename": [ 80 @@ -89402,7 +89027,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3963 + 3936 ], "__typename": [ 80 @@ -89410,13 +89035,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3976 + 3949 ], "distinct": [ 5 ], "filter": [ - 3969 + 3942 ], "predicate": [ 41 @@ -89427,13 +89052,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3967 + 3940 ], "count": [ 40, { "columns": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -89442,31 +89067,31 @@ export default { } ], "max": [ - 3971 + 3944 ], "min": [ - 3973 + 3946 ], "stddev": [ - 3977 + 3950 ], "stddev_pop": [ - 3979 + 3952 ], "stddev_samp": [ - 3981 + 3954 ], "sum": [ - 3985 + 3958 ], "var_pop": [ - 3987 + 3960 ], "var_samp": [ - 3989 + 3962 ], "variance": [ - 3991 + 3964 ], "__typename": [ 80 @@ -89474,37 +89099,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3968 + 3941 ], "count": [ - 3035 + 3008 ], "max": [ - 3972 + 3945 ], "min": [ - 3974 + 3947 ], "stddev": [ - 3978 + 3951 ], "stddev_pop": [ - 3980 + 3953 ], "stddev_samp": [ - 3982 + 3955 ], "sum": [ - 3986 + 3959 ], "var_pop": [ - 3988 + 3961 ], "var_samp": [ - 3990 + 3963 ], "variance": [ - 3992 + 3965 ], "__typename": [ 80 @@ -89512,7 +89137,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3970 + 3943 ], "__typename": [ 80 @@ -89546,25 +89171,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89572,13 +89197,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3969 + 3942 ], "_not": [ - 3969 + 3942 ], "_or": [ - 3969 + 3942 ], "first_bullet_hits": [ 41 @@ -89593,7 +89218,7 @@ export default { 41 ], "match_id": [ - 5113 + 5086 ], "shots": [ 41 @@ -89625,7 +89250,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -89657,7 +89282,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -89677,31 +89302,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89721,7 +89346,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -89741,31 +89366,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89773,31 +89398,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "weapon_class": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89832,25 +89457,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89884,25 +89509,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89936,25 +89561,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -89962,7 +89587,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3984 + 3957 ], "ordering": [ 315 @@ -89985,7 +89610,7 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "shots": [ 40 @@ -90031,25 +89656,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -90083,25 +89708,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -90135,25 +89760,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -90187,25 +89812,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3035 + 3008 ], "first_bullet_shots": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "hits_spotted": [ - 3035 + 3008 ], "shots": [ - 3035 + 3008 ], "shots_spotted": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -90257,10 +89882,10 @@ export default { } ], "aim_weapon_stats": [ - 3132, + 3105, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -90270,19 +89895,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "aim_weapon_stats_aggregate": [ - 3133, + 3106, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -90292,19 +89917,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -90314,19 +89939,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -90336,19 +89961,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "assited_by_players": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -90358,19 +89983,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "assited_by_players_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -90380,11 +90005,11 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], @@ -90436,13 +90061,13 @@ export default { } ], "banned_until": [ - 4611 + 4584 ], "coach_lineups": [ - 2495, + 2468, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -90452,19 +90077,19 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "coach_lineups_aggregate": [ - 2496, + 2469, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -90474,11 +90099,11 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], @@ -90486,19 +90111,19 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "current_lobby_id": [ - 5111 + 5084 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -90508,19 +90133,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "damage_dealt_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -90530,19 +90155,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "damage_taken": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -90552,19 +90177,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "damage_taken_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -90574,11 +90199,11 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], @@ -90586,10 +90211,10 @@ export default { 40 ], "deaths": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -90599,19 +90224,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "deaths_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -90621,11 +90246,11 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], @@ -90685,10 +90310,10 @@ export default { } ], "elo_history": [ - 5488, + 5461, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -90698,19 +90323,19 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "elo_history_aggregate": [ - 5489, + 5462, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -90720,11 +90345,11 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], @@ -90738,10 +90363,10 @@ export default { 80 ], "faceit_rank_history": [ - 3304, + 3277, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -90751,19 +90376,19 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], "faceit_rank_history_aggregate": [ - 3305, + 3278, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -90773,11 +90398,11 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], @@ -90785,16 +90410,16 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -90804,19 +90429,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "flashed_by_players_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -90826,19 +90451,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "flashed_players": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -90848,19 +90473,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "flashed_players_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -90870,19 +90495,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "friends": [ - 2883, + 2856, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -90892,19 +90517,19 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], "friends_aggregate": [ - 2884, + 2857, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -90914,11 +90539,11 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], @@ -90926,10 +90551,10 @@ export default { 40 ], "invited_players": [ - 4279, + 4252, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -90939,19 +90564,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "invited_players_aggregate": [ - 4280, + 4253, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -90961,11 +90586,11 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], @@ -90994,10 +90619,10 @@ export default { 5 ], "kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -91007,19 +90632,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -91029,19 +90654,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "kills_by_weapons": [ - 3402, + 3375, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -91051,19 +90676,19 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], "kills_by_weapons_aggregate": [ - 3403, + 3376, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -91073,11 +90698,11 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], @@ -91085,10 +90710,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "lobby_players": [ 2242, @@ -91147,10 +90772,10 @@ export default { 40 ], "match_map_hltv": [ - 5593, + 5566, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -91160,19 +90785,19 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "match_map_hltv_aggregate": [ - 5594, + 5567, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -91182,19 +90807,19 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "match_map_stats": [ - 3499, + 3472, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -91204,19 +90829,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "match_map_stats_aggregate": [ - 3500, + 3473, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -91226,19 +90851,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "match_stats": [ - 3558, + 3531, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -91248,19 +90873,19 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "match_stats_aggregate": [ - 3559, + 3532, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -91270,19 +90895,19 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -91292,22 +90917,22 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matchmaking_cooldown": [ - 4611 + 4584 ], "multi_kills": [ - 5684, + 5657, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -91317,19 +90942,19 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], "multi_kills_aggregate": [ - 5685, + 5658, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -91339,11 +90964,11 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], @@ -91357,10 +90982,10 @@ export default { 80 ], "notifications": [ - 2983, + 2956, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -91370,19 +90995,19 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "notifications_aggregate": [ - 2984, + 2957, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -91392,19 +91017,19 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -91414,19 +91039,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -91436,19 +91061,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "owned_teams": [ - 4562, + 4535, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -91458,19 +91083,19 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "owned_teams_aggregate": [ - 4563, + 4536, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -91480,11 +91105,11 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], @@ -91497,10 +91122,10 @@ export default { } ], "pending_match_imports": [ - 3036, + 3009, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -91510,19 +91135,19 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "pending_match_imports_aggregate": [ - 3037, + 3010, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -91532,19 +91157,19 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "player_lineup": [ - 2450, + 2423, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -91554,19 +91179,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "player_lineup_aggregate": [ - 2451, + 2424, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -91576,19 +91201,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "player_unused_utilities": [ - 3878, + 3851, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -91598,19 +91223,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utilities_aggregate": [ - 3879, + 3852, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -91620,11 +91245,11 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], @@ -91632,10 +91257,10 @@ export default { 40 ], "premier_rank_history": [ - 3650, + 3623, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -91645,19 +91270,19 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "premier_rank_history_aggregate": [ - 3651, + 3624, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -91667,25 +91292,25 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 ], "quiet_hours_end": [ - 4608 + 4581 ], "quiet_hours_start": [ - 4608 + 4581 ], "role": [ 1092 @@ -91694,10 +91319,10 @@ export default { 80 ], "sanctions": [ - 3691, + 3664, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -91707,19 +91332,19 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "sanctions_aggregate": [ - 3692, + 3665, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -91729,19 +91354,19 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "season_stats": [ - 3732, + 3705, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -91751,19 +91376,19 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "season_stats_aggregate": [ - 3733, + 3706, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -91773,11 +91398,11 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], @@ -91785,19 +91410,19 @@ export default { 5 ], "stats": [ - 3791 + 3764 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "team_invites": [ - 4279, + 4252, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -91807,19 +91432,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_invites_aggregate": [ - 4280, + 4253, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -91829,19 +91454,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_members": [ - 4320, + 4293, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -91851,19 +91476,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_members_aggregate": [ - 4321, + 4294, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -91873,19 +91498,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "teams": [ - 4562, + 4535, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -91895,11 +91520,11 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], @@ -91907,10 +91532,10 @@ export default { 40 ], "tournament_organizers": [ - 4749, + 4722, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91920,19 +91545,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_organizers_aggregate": [ - 4750, + 4723, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -91942,19 +91567,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_rosters": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91964,19 +91589,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_rosters_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -91986,19 +91611,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournaments": [ - 5047, + 5020, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -92008,19 +91633,19 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_aggregate": [ - 5048, + 5021, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -92030,19 +91655,19 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "utility_thrown": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -92052,19 +91677,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "utility_thrown_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -92074,11 +91699,11 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], @@ -92089,10 +91714,10 @@ export default { 5 ], "weapon_stats": [ - 3960, + 3933, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -92102,19 +91727,19 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], "weapon_stats_aggregate": [ - 3961, + 3934, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -92124,11 +91749,11 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], @@ -92150,10 +91775,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3995 + 3968 ], "nodes": [ - 3993 + 3966 ], "__typename": [ 80 @@ -92161,13 +91786,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3996 + 3969 ], "count": [ 40, { "columns": [ - 4008, + 3981, "[players_select_column!]" ], "distinct": [ @@ -92176,31 +91801,31 @@ export default { } ], "max": [ - 4001 + 3974 ], "min": [ - 4002 + 3975 ], "stddev": [ - 4010 + 3983 ], "stddev_pop": [ - 4011 + 3984 ], "stddev_samp": [ - 4012 + 3985 ], "sum": [ - 4015 + 3988 ], "var_pop": [ - 4018 + 3991 ], "var_samp": [ - 4019 + 3992 ], "variance": [ - 4020 + 3993 ], "__typename": [ 80 @@ -92261,13 +91886,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3997 + 3970 ], "_not": [ - 3997 + 3970 ], "_or": [ - 3997 + 3970 ], "abandoned_matches": [ 130 @@ -92276,22 +91901,22 @@ export default { 123 ], "aim_weapon_stats": [ - 3141 + 3114 ], "aim_weapon_stats_aggregate": [ - 3134 + 3107 ], "assists": [ - 3184 + 3157 ], "assists_aggregate": [ - 3175 + 3148 ], "assited_by_players": [ - 3184 + 3157 ], "assited_by_players_aggregate": [ - 3175 + 3148 ], "avatar_url": [ 82 @@ -92303,46 +91928,46 @@ export default { 192 ], "banned_until": [ - 4612 + 4585 ], "coach_lineups": [ - 2504 + 2477 ], "coach_lineups_aggregate": [ - 2497 + 2470 ], "country": [ 82 ], "created_at": [ - 4612 + 4585 ], "current_lobby_id": [ - 5113 + 5086 ], "custom_avatar_url": [ 82 ], "damage_dealt": [ - 3245 + 3218 ], "damage_dealt_aggregate": [ - 3238 + 3211 ], "damage_taken": [ - 3245 + 3218 ], "damage_taken_aggregate": [ - 3238 + 3211 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3401 + 3374 ], "deaths_aggregate": [ - 3392 + 3365 ], "discord_id": [ 82 @@ -92357,10 +91982,10 @@ export default { 1846 ], "elo_history": [ - 5507 + 5480 ], "elo_history_aggregate": [ - 5490 + 5463 ], "faceit_elo": [ 41 @@ -92372,46 +91997,46 @@ export default { 82 ], "faceit_rank_history": [ - 3313 + 3286 ], "faceit_rank_history_aggregate": [ - 3306 + 3279 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4612 + 4585 ], "faceit_url": [ 82 ], "flashed_by_players": [ - 3356 + 3329 ], "flashed_by_players_aggregate": [ - 3347 + 3320 ], "flashed_players": [ - 3356 + 3329 ], "flashed_players_aggregate": [ - 3347 + 3320 ], "friends": [ - 2895 + 2868 ], "friends_aggregate": [ - 2885 + 2858 ], "game_ban_count": [ 41 ], "invited_players": [ - 4288 + 4261 ], "invited_players_aggregate": [ - 4281 + 4254 ], "is_admin_sanctioned": [ 6 @@ -92438,25 +92063,25 @@ export default { 6 ], "kills": [ - 3401 + 3374 ], "kills_aggregate": [ - 3392 + 3365 ], "kills_by_weapons": [ - 3411 + 3384 ], "kills_by_weapons_aggregate": [ - 3404 + 3377 ], "language": [ 82 ], "last_read_news_at": [ - 4612 + 4585 ], "last_sign_in_at": [ - 4612 + 4585 ], "lobby_players": [ 2253 @@ -92477,34 +92102,34 @@ export default { 41 ], "match_map_hltv": [ - 5602 + 5575 ], "match_map_hltv_aggregate": [ - 5595 + 5568 ], "match_map_stats": [ - 3508 + 3481 ], "match_map_stats_aggregate": [ - 3501 + 3474 ], "match_stats": [ - 3567 + 3540 ], "match_stats_aggregate": [ - 3560 + 3533 ], "matches": [ - 2832 + 2805 ], "matchmaking_cooldown": [ - 4612 + 4585 ], "multi_kills": [ - 5693 + 5666 ], "multi_kills_aggregate": [ - 5686 + 5659 ], "name": [ 82 @@ -92516,64 +92141,64 @@ export default { 82 ], "notifications": [ - 2995 + 2968 ], "notifications_aggregate": [ - 2985 + 2958 ], "objectives": [ - 3600 + 3573 ], "objectives_aggregate": [ - 3593 + 3566 ], "owned_teams": [ - 4573 + 4546 ], "owned_teams_aggregate": [ - 4564 + 4537 ], "peak_elo": [ 1846 ], "pending_match_imports": [ - 3045 + 3018 ], "pending_match_imports_aggregate": [ - 3038 + 3011 ], "player_lineup": [ - 2461 + 2434 ], "player_lineup_aggregate": [ - 2452 + 2425 ], "player_unused_utilities": [ - 3887 + 3860 ], "player_unused_utilities_aggregate": [ - 3880 + 3853 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3659 + 3632 ], "premier_rank_history_aggregate": [ - 3652 + 3625 ], "premier_rank_updated_at": [ - 4612 + 4585 ], "profile_url": [ 82 ], "quiet_hours_end": [ - 4609 + 4582 ], "quiet_hours_start": [ - 4609 + 4582 ], "role": [ 1093 @@ -92582,70 +92207,70 @@ export default { 82 ], "sanctions": [ - 3700 + 3673 ], "sanctions_aggregate": [ - 3693 + 3666 ], "season_stats": [ - 3751 + 3724 ], "season_stats_aggregate": [ - 3734 + 3707 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3795 + 3768 ], "steam_bans_checked_at": [ - 4612 + 4585 ], "steam_id": [ 261 ], "team_invites": [ - 4288 + 4261 ], "team_invites_aggregate": [ - 4281 + 4254 ], "team_members": [ - 4331 + 4304 ], "team_members_aggregate": [ - 4322 + 4295 ], "teams": [ - 4573 + 4546 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4758 + 4731 ], "tournament_organizers_aggregate": [ - 4751 + 4724 ], "tournament_rosters": [ - 4973 + 4946 ], "tournament_rosters_aggregate": [ - 4966 + 4939 ], "tournaments": [ - 5068 + 5041 ], "tournaments_aggregate": [ - 5049 + 5022 ], "utility_thrown": [ - 3928 + 3901 ], "utility_thrown_aggregate": [ - 3921 + 3894 ], "vac_ban_count": [ 41 @@ -92654,10 +92279,10 @@ export default { 6 ], "weapon_stats": [ - 3969 + 3942 ], "weapon_stats_aggregate": [ - 3962 + 3935 ], "wins": [ 41 @@ -92707,13 +92332,13 @@ export default { 127 ], "aim_weapon_stats": [ - 3138 + 3111 ], "assists": [ - 3181 + 3154 ], "assited_by_players": [ - 3181 + 3154 ], "avatar_url": [ 80 @@ -92722,28 +92347,28 @@ export default { 196 ], "coach_lineups": [ - 2501 + 2474 ], "country": [ 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 3242 + 3215 ], "damage_taken": [ - 3242 + 3215 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3398 + 3371 ], "discord_id": [ 80 @@ -92752,7 +92377,7 @@ export default { 428 ], "elo_history": [ - 5504 + 5477 ], "faceit_elo": [ 40 @@ -92764,61 +92389,61 @@ export default { 80 ], "faceit_rank_history": [ - 3310 + 3283 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3353 + 3326 ], "flashed_players": [ - 3353 + 3326 ], "friends": [ - 2892 + 2865 ], "game_ban_count": [ 40 ], "invited_players": [ - 4285 + 4258 ], "kills": [ - 3398 + 3371 ], "kills_by_weapons": [ - 3408 + 3381 ], "language": [ 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "lobby_players": [ 2250 ], "match_map_hltv": [ - 5599 + 5572 ], "match_map_stats": [ - 3505 + 3478 ], "match_stats": [ - 3564 + 3537 ], "multi_kills": [ - 5690 + 5663 ], "name": [ 80 @@ -92830,40 +92455,40 @@ export default { 80 ], "notifications": [ - 2992 + 2965 ], "objectives": [ - 3597 + 3570 ], "owned_teams": [ - 4570 + 4543 ], "pending_match_imports": [ - 3042 + 3015 ], "player_lineup": [ - 2458 + 2431 ], "player_unused_utilities": [ - 3884 + 3857 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3656 + 3629 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 ], "quiet_hours_end": [ - 4608 + 4581 ], "quiet_hours_start": [ - 4608 + 4581 ], "role": [ 1092 @@ -92872,40 +92497,40 @@ export default { 80 ], "sanctions": [ - 3697 + 3670 ], "season_stats": [ - 3748 + 3721 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3802 + 3775 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 ], "team_invites": [ - 4285 + 4258 ], "team_members": [ - 4328 + 4301 ], "tournament_organizers": [ - 4755 + 4728 ], "tournament_rosters": [ - 4970 + 4943 ], "tournaments": [ - 5065 + 5038 ], "utility_thrown": [ - 3925 + 3898 ], "vac_ban_count": [ 40 @@ -92914,7 +92539,7 @@ export default { 5 ], "weapon_stats": [ - 3966 + 3939 ], "__typename": [ 80 @@ -92925,16 +92550,16 @@ export default { 80 ], "banned_until": [ - 4611 + 4584 ], "country": [ 80 ], "created_at": [ - 4611 + 4584 ], "current_lobby_id": [ - 5111 + 5084 ], "custom_avatar_url": [ 80 @@ -92958,7 +92583,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -92970,10 +92595,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "losses": [ 40 @@ -92988,7 +92613,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4611 + 4584 ], "name": [ 80 @@ -93000,7 +92625,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -93009,7 +92634,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -93041,16 +92666,16 @@ export default { 80 ], "banned_until": [ - 4611 + 4584 ], "country": [ 80 ], "created_at": [ - 4611 + 4584 ], "current_lobby_id": [ - 5111 + 5084 ], "custom_avatar_url": [ 80 @@ -93074,7 +92699,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -93086,10 +92711,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "losses": [ 40 @@ -93104,7 +92729,7 @@ export default { 40 ], "matchmaking_cooldown": [ - 4611 + 4584 ], "name": [ 80 @@ -93116,7 +92741,7 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 @@ -93125,7 +92750,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -93157,7 +92782,7 @@ export default { 40 ], "returning": [ - 3993 + 3966 ], "__typename": [ 80 @@ -93165,10 +92790,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 4000 + 3973 ], "on_conflict": [ - 4005 + 3978 ], "__typename": [ 80 @@ -93176,13 +92801,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3998 + 3971 ], "update_columns": [ - 4016 + 3989 ], "where": [ - 3997 + 3970 ], "__typename": [ 80 @@ -93193,286 +92818,286 @@ export default { 126 ], "aim_weapon_stats_aggregate": [ - 3137 + 3110 ], "assists_aggregate": [ - 3180 + 3153 ], "assited_by_players_aggregate": [ - 3180 + 3153 ], "avatar_url": [ - 3035 + 3008 ], "awards_aggregate": [ 195 ], "banned_until": [ - 3035 + 3008 ], "coach_lineups_aggregate": [ - 2500 + 2473 ], "country": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "current_lobby_id": [ - 3035 + 3008 ], "custom_avatar_url": [ - 3035 + 3008 ], "damage_dealt_aggregate": [ - 3241 + 3214 ], "damage_taken_aggregate": [ - 3241 + 3214 ], "days_since_last_ban": [ - 3035 + 3008 ], "deaths_aggregate": [ - 3397 + 3370 ], "discord_id": [ - 3035 + 3008 ], "draft_game_players_aggregate": [ 427 ], "elo": [ - 3035 + 3008 ], "elo_history_aggregate": [ - 5503 + 5476 ], "faceit_elo": [ - 3035 + 3008 ], "faceit_nickname": [ - 3035 + 3008 ], "faceit_player_id": [ - 3035 + 3008 ], "faceit_rank_history_aggregate": [ - 3309 + 3282 ], "faceit_skill_level": [ - 3035 + 3008 ], "faceit_updated_at": [ - 3035 + 3008 ], "faceit_url": [ - 3035 + 3008 ], "flashed_by_players_aggregate": [ - 3352 + 3325 ], "flashed_players_aggregate": [ - 3352 + 3325 ], "friends_aggregate": [ - 2890 + 2863 ], "game_ban_count": [ - 3035 + 3008 ], "invited_players_aggregate": [ - 4284 + 4257 ], "is_admin_sanctioned": [ - 3035 + 3008 ], "is_banned": [ - 3035 + 3008 ], "is_gagged": [ - 3035 + 3008 ], "is_in_another_match": [ - 3035 + 3008 ], "is_in_draft": [ - 3035 + 3008 ], "is_in_lobby": [ - 3035 + 3008 ], "is_muted": [ - 3035 + 3008 ], "is_registered": [ - 3035 + 3008 ], "kills_aggregate": [ - 3397 + 3370 ], "kills_by_weapons_aggregate": [ - 3407 + 3380 ], "language": [ - 3035 + 3008 ], "last_read_news_at": [ - 3035 + 3008 ], "last_sign_in_at": [ - 3035 + 3008 ], "lobby_players_aggregate": [ 2249 ], "losses": [ - 3035 + 3008 ], "losses_competitive": [ - 3035 + 3008 ], "losses_duel": [ - 3035 + 3008 ], "losses_wingman": [ - 3035 + 3008 ], "match_map_hltv_aggregate": [ - 5598 + 5571 ], "match_map_stats_aggregate": [ - 3504 + 3477 ], "match_stats_aggregate": [ - 3563 + 3536 ], "matches_aggregate": [ - 2828 + 2801 ], "matchmaking_cooldown": [ - 3035 + 3008 ], "multi_kills_aggregate": [ - 5689 + 5662 ], "name": [ - 3035 + 3008 ], "name_registered": [ - 3035 + 3008 ], "notification_timezone": [ - 3035 + 3008 ], "notifications_aggregate": [ - 2990 + 2963 ], "objectives_aggregate": [ - 3596 + 3569 ], "owned_teams_aggregate": [ - 4569 + 4542 ], "peak_elo": [ - 3035 + 3008 ], "pending_match_imports_aggregate": [ - 3041 + 3014 ], "player_lineup_aggregate": [ - 2457 + 2430 ], "player_unused_utilities_aggregate": [ - 3883 + 3856 ], "premier_rank": [ - 3035 + 3008 ], "premier_rank_history_aggregate": [ - 3655 + 3628 ], "premier_rank_updated_at": [ - 3035 + 3008 ], "profile_url": [ - 3035 + 3008 ], "quiet_hours_end": [ - 3035 + 3008 ], "quiet_hours_start": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "sanctions_aggregate": [ - 3696 + 3669 ], "season_stats_aggregate": [ - 3747 + 3720 ], "show_match_ready_modal": [ - 3035 + 3008 ], "stats": [ - 3804 + 3777 ], "steam_bans_checked_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_invites_aggregate": [ - 4284 + 4257 ], "team_members_aggregate": [ - 4327 + 4300 ], "teams_aggregate": [ - 4569 + 4542 ], "total_matches": [ - 3035 + 3008 ], "tournament_organizers_aggregate": [ - 4754 + 4727 ], "tournament_rosters_aggregate": [ - 4969 + 4942 ], "tournaments_aggregate": [ - 5064 + 5037 ], "utility_thrown_aggregate": [ - 3924 + 3897 ], "vac_ban_count": [ - 3035 + 3008 ], "vac_banned": [ - 3035 + 3008 ], "weapon_stats_aggregate": [ - 3965 + 3938 ], "wins": [ - 3035 + 3008 ], "wins_competitive": [ - 3035 + 3008 ], "wins_duel": [ - 3035 + 3008 ], "wins_wingman": [ - 3035 + 3008 ], "__typename": [ 80 @@ -93495,7 +93120,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -93519,7 +93144,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -93531,10 +93156,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -93549,16 +93174,16 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 ], "quiet_hours_end": [ - 4608 + 4581 ], "quiet_hours_start": [ - 4608 + 4581 ], "role": [ 1092 @@ -93570,7 +93195,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -93746,7 +93371,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 4014 + 3987 ], "ordering": [ 315 @@ -93763,7 +93388,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "custom_avatar_url": [ 80 @@ -93787,7 +93412,7 @@ export default { 40 ], "faceit_updated_at": [ - 4611 + 4584 ], "faceit_url": [ 80 @@ -93799,10 +93424,10 @@ export default { 80 ], "last_read_news_at": [ - 4611 + 4584 ], "last_sign_in_at": [ - 4611 + 4584 ], "name": [ 80 @@ -93817,16 +93442,16 @@ export default { 40 ], "premier_rank_updated_at": [ - 4611 + 4584 ], "profile_url": [ 80 ], "quiet_hours_end": [ - 4608 + 4581 ], "quiet_hours_start": [ - 4608 + 4581 ], "role": [ 1092 @@ -93838,7 +93463,7 @@ export default { 5 ], "steam_bans_checked_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -93909,13 +93534,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3999 + 3972 ], "_set": [ - 4009 + 3982 ], "where": [ - 3997 + 3970 ], "__typename": [ 80 @@ -94085,7 +93710,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "runtime": [ 1112 @@ -94099,10 +93724,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 4023 + 3996 ], "nodes": [ - 4021 + 3994 ], "__typename": [ 80 @@ -94110,13 +93735,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 4024 + 3997 ], "count": [ 40, { "columns": [ - 4035, + 4008, "[plugin_versions_select_column!]" ], "distinct": [ @@ -94125,31 +93750,31 @@ export default { } ], "max": [ - 4029 + 4002 ], "min": [ - 4030 + 4003 ], "stddev": [ - 4037 + 4010 ], "stddev_pop": [ - 4038 + 4011 ], "stddev_samp": [ - 4039 + 4012 ], "sum": [ - 4042 + 4015 ], "var_pop": [ - 4045 + 4018 ], "var_samp": [ - 4046 + 4019 ], "variance": [ - 4047 + 4020 ], "__typename": [ 80 @@ -94165,19 +93790,19 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 4025 + 3998 ], "_not": [ - 4025 + 3998 ], "_or": [ - 4025 + 3998 ], "min_game_build_id": [ 41 ], "published_at": [ - 4612 + 4585 ], "runtime": [ 1113 @@ -94203,7 +93828,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "runtime": [ 1112 @@ -94220,7 +93845,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "version": [ 80 @@ -94234,7 +93859,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "version": [ 80 @@ -94248,7 +93873,7 @@ export default { 40 ], "returning": [ - 4021 + 3994 ], "__typename": [ 80 @@ -94256,13 +93881,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 4026 + 3999 ], "update_columns": [ - 4043 + 4016 ], "where": [ - 4025 + 3998 ], "__typename": [ 80 @@ -94270,16 +93895,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 3035 + 3008 ], "published_at": [ - 3035 + 3008 ], "runtime": [ - 3035 + 3008 ], "version": [ - 3035 + 3008 ], "__typename": [ 80 @@ -94302,7 +93927,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "runtime": [ 1112 @@ -94340,7 +93965,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4041 + 4014 ], "ordering": [ 315 @@ -94354,7 +93979,7 @@ export default { 40 ], "published_at": [ - 4611 + 4584 ], "runtime": [ 1112 @@ -94377,13 +94002,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 4027 + 4000 ], "_set": [ - 4036 + 4009 ], "where": [ - 4025 + 3998 ], "__typename": [ 80 @@ -94418,16 +94043,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94444,10 +94069,10 @@ export default { }, "push_subscriptions_aggregate": { "aggregate": [ - 4050 + 4023 ], "nodes": [ - 4048 + 4021 ], "__typename": [ 80 @@ -94455,13 +94080,13 @@ export default { }, "push_subscriptions_aggregate_fields": { "avg": [ - 4051 + 4024 ], "count": [ 40, { "columns": [ - 4062, + 4035, "[push_subscriptions_select_column!]" ], "distinct": [ @@ -94470,31 +94095,31 @@ export default { } ], "max": [ - 4056 + 4029 ], "min": [ - 4057 + 4030 ], "stddev": [ - 4064 + 4037 ], "stddev_pop": [ - 4065 + 4038 ], "stddev_samp": [ - 4066 + 4039 ], "sum": [ - 4069 + 4042 ], "var_pop": [ - 4072 + 4045 ], "var_samp": [ - 4073 + 4046 ], "variance": [ - 4074 + 4047 ], "__typename": [ 80 @@ -94510,28 +94135,28 @@ export default { }, "push_subscriptions_bool_exp": { "_and": [ - 4052 + 4025 ], "_not": [ - 4052 + 4025 ], "_or": [ - 4052 + 4025 ], "auth": [ 82 ], "created_at": [ - 4612 + 4585 ], "endpoint": [ 82 ], "id": [ - 5113 + 5086 ], "last_used_at": [ - 4612 + 4585 ], "p256dh": [ 82 @@ -94560,16 +94185,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94589,16 +94214,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94618,16 +94243,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94647,7 +94272,7 @@ export default { 40 ], "returning": [ - 4048 + 4021 ], "__typename": [ 80 @@ -94655,13 +94280,13 @@ export default { }, "push_subscriptions_on_conflict": { "constraint": [ - 4053 + 4026 ], "update_columns": [ - 4070 + 4043 ], "where": [ - 4052 + 4025 ], "__typename": [ 80 @@ -94669,28 +94294,28 @@ export default { }, "push_subscriptions_order_by": { "auth": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "endpoint": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "last_used_at": [ - 3035 + 3008 ], "p256dh": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "user_agent": [ - 3035 + 3008 ], "__typename": [ 80 @@ -94698,7 +94323,7 @@ export default { }, "push_subscriptions_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -94710,16 +94335,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94760,7 +94385,7 @@ export default { }, "push_subscriptions_stream_cursor_input": { "initial_value": [ - 4068 + 4041 ], "ordering": [ 315 @@ -94774,16 +94399,16 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "endpoint": [ 80 ], "id": [ - 5111 + 5084 ], "last_used_at": [ - 4611 + 4584 ], "p256dh": [ 80 @@ -94809,13 +94434,13 @@ export default { "push_subscriptions_update_column": {}, "push_subscriptions_updates": { "_inc": [ - 4054 + 4027 ], "_set": [ - 4063 + 4036 ], "where": [ - 4052 + 4025 ], "__typename": [ 80 @@ -94847,7 +94472,7 @@ export default { }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -94855,7 +94480,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -94871,7 +94496,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -94923,16 +94548,16 @@ export default { } ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "needs_rebuild": [ 5 @@ -94941,10 +94566,10 @@ export default { 40 ], "player_season_stats": [ - 3732, + 3705, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -94954,19 +94579,19 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "player_season_stats_aggregate": [ - 3733, + 3706, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -94976,16 +94601,16 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -94993,10 +94618,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 4081 + 4054 ], "nodes": [ - 4079 + 4052 ], "__typename": [ 80 @@ -95004,13 +94629,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 4082 + 4055 ], "count": [ 40, { "columns": [ - 4094, + 4067, "[seasons_select_column!]" ], "distinct": [ @@ -95019,31 +94644,31 @@ export default { } ], "max": [ - 4087 + 4060 ], "min": [ - 4088 + 4061 ], "stddev": [ - 4096 + 4069 ], "stddev_pop": [ - 4097 + 4070 ], "stddev_samp": [ - 4098 + 4071 ], "sum": [ - 4101 + 4074 ], "var_pop": [ - 4104 + 4077 ], "var_samp": [ - 4105 + 4078 ], "variance": [ - 4106 + 4079 ], "__typename": [ 80 @@ -95059,13 +94684,13 @@ export default { }, "seasons_bool_exp": { "_and": [ - 4083 + 4056 ], "_not": [ - 4083 + 4056 ], "_or": [ - 4083 + 4056 ], "awards": [ 199 @@ -95074,16 +94699,16 @@ export default { 192 ], "created_at": [ - 4612 + 4585 ], "description": [ 82 ], "ends_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "needs_rebuild": [ 6 @@ -95092,13 +94717,13 @@ export default { 41 ], "player_season_stats": [ - 3751 + 3724 ], "player_season_stats_aggregate": [ - 3734 + 3707 ], "starts_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -95118,16 +94743,16 @@ export default { 196 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "needs_rebuild": [ 5 @@ -95136,10 +94761,10 @@ export default { 40 ], "player_season_stats": [ - 3748 + 3721 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -95147,22 +94772,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "number": [ 40 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -95170,22 +94795,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "number": [ 40 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -95196,7 +94821,7 @@ export default { 40 ], "returning": [ - 4079 + 4052 ], "__typename": [ 80 @@ -95204,10 +94829,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 4086 + 4059 ], "on_conflict": [ - 4091 + 4064 ], "__typename": [ 80 @@ -95215,13 +94840,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 4084 + 4057 ], "update_columns": [ - 4102 + 4075 ], "where": [ - 4083 + 4056 ], "__typename": [ 80 @@ -95232,28 +94857,28 @@ export default { 195 ], "created_at": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "ends_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "needs_rebuild": [ - 3035 + 3008 ], "number": [ - 3035 + 3008 ], "player_season_stats_aggregate": [ - 3747 + 3720 ], "starts_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -95261,7 +94886,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -95270,16 +94895,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "needs_rebuild": [ 5 @@ -95288,7 +94913,7 @@ export default { 40 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -95320,7 +94945,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 4100 + 4073 ], "ordering": [ 315 @@ -95331,16 +94956,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "description": [ 80 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "needs_rebuild": [ 5 @@ -95349,7 +94974,7 @@ export default { 40 ], "starts_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -95366,13 +94991,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4085 + 4058 ], "_set": [ - 4095 + 4068 ], "where": [ - 4083 + 4056 ], "__typename": [ 80 @@ -95477,10 +95102,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 4109 + 4082 ], "nodes": [ - 4107 + 4080 ], "__typename": [ 80 @@ -95488,13 +95113,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 4110 + 4083 ], "count": [ 40, { "columns": [ - 4121, + 4094, "[server_regions_select_column!]" ], "distinct": [ @@ -95503,31 +95128,31 @@ export default { } ], "max": [ - 4114 + 4087 ], "min": [ - 4115 + 4088 ], "stddev": [ - 4123 + 4096 ], "stddev_pop": [ - 4124 + 4097 ], "stddev_samp": [ - 4125 + 4098 ], "sum": [ - 4128 + 4101 ], "var_pop": [ - 4131 + 4104 ], "var_samp": [ - 4132 + 4105 ], "variance": [ - 4133 + 4106 ], "__typename": [ 80 @@ -95546,13 +95171,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 4111 + 4084 ], "_not": [ - 4111 + 4084 ], "_or": [ - 4111 + 4084 ], "available_server_count": [ 41 @@ -95654,7 +95279,7 @@ export default { 40 ], "returning": [ - 4107 + 4080 ], "__typename": [ 80 @@ -95662,10 +95287,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 4113 + 4086 ], "on_conflict": [ - 4118 + 4091 ], "__typename": [ 80 @@ -95673,13 +95298,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 4112 + 4085 ], "update_columns": [ - 4129 + 4102 ], "where": [ - 4111 + 4084 ], "__typename": [ 80 @@ -95687,31 +95312,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "game_server_nodes_aggregate": [ 1727 ], "has_node": [ - 3035 + 3008 ], "is_lan": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "steam_relay": [ - 3035 + 3008 ], "total_server_count": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -95778,7 +95403,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 4127 + 4100 ], "ordering": [ 315 @@ -95818,10 +95443,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4122 + 4095 ], "where": [ - 4111 + 4084 ], "__typename": [ 80 @@ -95862,7 +95487,7 @@ export default { }, "servers": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -95883,7 +95508,7 @@ export default { 80 ], "current_match": [ - 2823 + 2796 ], "enabled": [ 5 @@ -95901,7 +95526,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_dedicated": [ 5 @@ -95910,10 +95535,10 @@ export default { 80 ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -95923,19 +95548,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_aggregate": [ - 2824, + 2797, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -95945,11 +95570,11 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], @@ -95957,7 +95582,7 @@ export default { 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_runtime": [ 1112 @@ -95978,10 +95603,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "server_region": [ - 4107 + 4080 ], "steam_relay": [ 80 @@ -95993,7 +95618,7 @@ export default { 1193 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -96001,10 +95626,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 4140 + 4113 ], "nodes": [ - 4134 + 4107 ], "__typename": [ 80 @@ -96012,13 +95637,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 4137 + 4110 ], "bool_or": [ - 4138 + 4111 ], "count": [ - 4139 + 4112 ], "__typename": [ 80 @@ -96026,13 +95651,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4159 + 4132 ], "distinct": [ 5 ], "filter": [ - 4145 + 4118 ], "predicate": [ 6 @@ -96043,13 +95668,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4160 + 4133 ], "distinct": [ 5 ], "filter": [ - 4145 + 4118 ], "predicate": [ 6 @@ -96060,13 +95685,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4158 + 4131 ], "distinct": [ 5 ], "filter": [ - 4145 + 4118 ], "predicate": [ 41 @@ -96077,13 +95702,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 4143 + 4116 ], "count": [ 40, { "columns": [ - 4158, + 4131, "[servers_select_column!]" ], "distinct": [ @@ -96092,31 +95717,31 @@ export default { } ], "max": [ - 4149 + 4122 ], "min": [ - 4151 + 4124 ], "stddev": [ - 4162 + 4135 ], "stddev_pop": [ - 4164 + 4137 ], "stddev_samp": [ - 4166 + 4139 ], "sum": [ - 4170 + 4143 ], "var_pop": [ - 4174 + 4147 ], "var_samp": [ - 4176 + 4149 ], "variance": [ - 4178 + 4151 ], "__typename": [ 80 @@ -96124,37 +95749,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 4144 + 4117 ], "count": [ - 3035 + 3008 ], "max": [ - 4150 + 4123 ], "min": [ - 4152 + 4125 ], "stddev": [ - 4163 + 4136 ], "stddev_pop": [ - 4165 + 4138 ], "stddev_samp": [ - 4167 + 4140 ], "sum": [ - 4171 + 4144 ], "var_pop": [ - 4175 + 4148 ], "var_samp": [ - 4177 + 4150 ], "variance": [ - 4179 + 4152 ], "__typename": [ 80 @@ -96162,10 +95787,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 4148 + 4121 ], "on_conflict": [ - 4155 + 4128 ], "__typename": [ 80 @@ -96187,13 +95812,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96201,16 +95826,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 4145 + 4118 ], "_not": [ - 4145 + 4118 ], "_or": [ - 4145 + 4118 ], "api_password": [ - 5113 + 5086 ], "boot_status": [ 82 @@ -96231,7 +95856,7 @@ export default { 82 ], "current_match": [ - 2832 + 2805 ], "enabled": [ 6 @@ -96249,7 +95874,7 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "is_dedicated": [ 6 @@ -96258,16 +95883,16 @@ export default { 82 ], "matches": [ - 2832 + 2805 ], "matches_aggregate": [ - 2825 + 2798 ], "max_players": [ 41 ], "offline_at": [ - 4612 + 4585 ], "plugin_runtime": [ 1113 @@ -96288,10 +95913,10 @@ export default { 82 ], "reserved_by_match_id": [ - 5113 + 5086 ], "server_region": [ - 4111 + 4084 ], "steam_relay": [ 82 @@ -96303,7 +95928,7 @@ export default { 1194 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -96326,7 +95951,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -96341,7 +95966,7 @@ export default { 5 ], "current_match": [ - 2841 + 2814 ], "enabled": [ 5 @@ -96359,7 +95984,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_dedicated": [ 5 @@ -96368,13 +95993,13 @@ export default { 80 ], "matches": [ - 2829 + 2802 ], "max_players": [ 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_runtime": [ 1112 @@ -96395,10 +96020,10 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "server_region": [ - 4117 + 4090 ], "steam_relay": [ 80 @@ -96410,7 +96035,7 @@ export default { 1193 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -96418,7 +96043,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -96445,7 +96070,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -96454,7 +96079,7 @@ export default { 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_version": [ 80 @@ -96466,7 +96091,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "steam_relay": [ 80 @@ -96475,7 +96100,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -96483,58 +96108,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 3035 + 3008 ], "boot_status": [ - 3035 + 3008 ], "boot_status_detail": [ - 3035 + 3008 ], "connect_password": [ - 3035 + 3008 ], "game": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "host": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "max_players": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "plugin_version": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "reserved_by_match_id": [ - 3035 + 3008 ], "steam_relay": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96542,7 +96167,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -96569,7 +96194,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -96578,7 +96203,7 @@ export default { 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_version": [ 80 @@ -96590,7 +96215,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "steam_relay": [ 80 @@ -96599,7 +96224,7 @@ export default { 40 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -96607,58 +96232,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 3035 + 3008 ], "boot_status": [ - 3035 + 3008 ], "boot_status_detail": [ - 3035 + 3008 ], "connect_password": [ - 3035 + 3008 ], "game": [ - 3035 + 3008 ], "game_server_node_id": [ - 3035 + 3008 ], "host": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "max_players": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "plugin_version": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "reserved_by_match_id": [ - 3035 + 3008 ], "steam_relay": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96669,7 +96294,7 @@ export default { 40 ], "returning": [ - 4134 + 4107 ], "__typename": [ 80 @@ -96677,10 +96302,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 4148 + 4121 ], "on_conflict": [ - 4155 + 4128 ], "__typename": [ 80 @@ -96688,13 +96313,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 4146 + 4119 ], "update_columns": [ - 4172 + 4145 ], "where": [ - 4145 + 4118 ], "__typename": [ 80 @@ -96702,97 +96327,97 @@ export default { }, "servers_order_by": { "api_password": [ - 3035 + 3008 ], "boot_status": [ - 3035 + 3008 ], "boot_status_detail": [ - 3035 + 3008 ], "connect_password": [ - 3035 + 3008 ], "connected": [ - 3035 + 3008 ], "connection_link": [ - 3035 + 3008 ], "connection_string": [ - 3035 + 3008 ], "current_match": [ - 2843 + 2816 ], "enabled": [ - 3035 + 3008 ], "game": [ - 3035 + 3008 ], "game_server_node": [ 1746 ], "game_server_node_id": [ - 3035 + 3008 ], "host": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_dedicated": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "matches_aggregate": [ - 2828 + 2801 ], "max_players": [ - 3035 + 3008 ], "offline_at": [ - 3035 + 3008 ], "plugin_runtime": [ - 3035 + 3008 ], "plugin_version": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "rcon_password": [ - 3035 + 3008 ], "rcon_status": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "reserved_by_match_id": [ - 3035 + 3008 ], "server_region": [ - 4119 + 4092 ], "steam_relay": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96800,7 +96425,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -96811,7 +96436,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -96838,7 +96463,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_dedicated": [ 5 @@ -96850,7 +96475,7 @@ export default { 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_runtime": [ 1112 @@ -96871,7 +96496,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "steam_relay": [ 80 @@ -96883,7 +96508,7 @@ export default { 1193 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -96905,13 +96530,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96933,13 +96558,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96961,13 +96586,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -96975,7 +96600,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 4169 + 4142 ], "ordering": [ 315 @@ -96986,7 +96611,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 5111 + 5084 ], "boot_status": [ 80 @@ -97013,7 +96638,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_dedicated": [ 5 @@ -97025,7 +96650,7 @@ export default { 40 ], "offline_at": [ - 4611 + 4584 ], "plugin_runtime": [ 1112 @@ -97046,7 +96671,7 @@ export default { 80 ], "reserved_by_match_id": [ - 5111 + 5084 ], "steam_relay": [ 80 @@ -97058,7 +96683,7 @@ export default { 1193 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -97080,13 +96705,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97095,13 +96720,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 4147 + 4120 ], "_set": [ - 4161 + 4134 ], "where": [ - 4145 + 4118 ], "__typename": [ 80 @@ -97123,13 +96748,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97151,13 +96776,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97179,13 +96804,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 3035 + 3008 ], "port": [ - 3035 + 3008 ], "tv_port": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97204,10 +96829,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 4182 + 4155 ], "nodes": [ - 4180 + 4153 ], "__typename": [ 80 @@ -97218,7 +96843,7 @@ export default { 40, { "columns": [ - 4192, + 4165, "[settings_select_column!]" ], "distinct": [ @@ -97227,10 +96852,10 @@ export default { } ], "max": [ - 4186 + 4159 ], "min": [ - 4187 + 4160 ], "__typename": [ 80 @@ -97238,13 +96863,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 4183 + 4156 ], "_not": [ - 4183 + 4156 ], "_or": [ - 4183 + 4156 ], "name": [ 82 @@ -97295,7 +96920,7 @@ export default { 40 ], "returning": [ - 4180 + 4153 ], "__typename": [ 80 @@ -97303,13 +96928,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 4184 + 4157 ], "update_columns": [ - 4196 + 4169 ], "where": [ - 4183 + 4156 ], "__typename": [ 80 @@ -97317,10 +96942,10 @@ export default { }, "settings_order_by": { "name": [ - 3035 + 3008 ], "value": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97348,7 +96973,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 4195 + 4168 ], "ordering": [ 315 @@ -97371,10 +96996,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 4193 + 4166 ], "where": [ - 4183 + 4156 ], "__typename": [ 80 @@ -97383,31 +97008,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4198 + 4171 ], "_gt": [ - 4198 + 4171 ], "_gte": [ - 4198 + 4171 ], "_in": [ - 4198 + 4171 ], "_is_null": [ 5 ], "_lt": [ - 4198 + 4171 ], "_lte": [ - 4198 + 4171 ], "_neq": [ - 4198 + 4171 ], "_nin": [ - 4198 + 4171 ], "__typename": [ 80 @@ -97415,10 +97040,10 @@ export default { }, "steam_account_claims": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97433,10 +97058,10 @@ export default { 80 ], "steam_account": [ - 4224 + 4197 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97444,10 +97069,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 4204 + 4177 ], "nodes": [ - 4200 + 4173 ], "__typename": [ 80 @@ -97455,7 +97080,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4203 + 4176 ], "__typename": [ 80 @@ -97463,13 +97088,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4218 + 4191 ], "distinct": [ 5 ], "filter": [ - 4207 + 4180 ], "predicate": [ 41 @@ -97483,7 +97108,7 @@ export default { 40, { "columns": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -97492,10 +97117,10 @@ export default { } ], "max": [ - 4210 + 4183 ], "min": [ - 4212 + 4185 ], "__typename": [ 80 @@ -97503,13 +97128,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 4211 + 4184 ], "min": [ - 4213 + 4186 ], "__typename": [ 80 @@ -97517,10 +97142,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4209 + 4182 ], "on_conflict": [ - 4215 + 4188 ], "__typename": [ 80 @@ -97528,19 +97153,19 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 4207 + 4180 ], "_not": [ - 4207 + 4180 ], "_or": [ - 4207 + 4180 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "k8s_job_name": [ 82 @@ -97555,10 +97180,10 @@ export default { 82 ], "steam_account": [ - 4228 + 4201 ], "steam_account_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -97567,10 +97192,10 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97585,10 +97210,10 @@ export default { 80 ], "steam_account": [ - 4235 + 4208 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97596,10 +97221,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97611,7 +97236,7 @@ export default { 80 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97619,22 +97244,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "node_id": [ - 3035 + 3008 ], "purpose": [ - 3035 + 3008 ], "steam_account_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97642,10 +97267,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97657,7 +97282,7 @@ export default { 80 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97665,22 +97290,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "node_id": [ - 3035 + 3008 ], "purpose": [ - 3035 + 3008 ], "steam_account_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97691,7 +97316,7 @@ export default { 40 ], "returning": [ - 4200 + 4173 ], "__typename": [ 80 @@ -97699,13 +97324,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 4208 + 4181 ], "update_columns": [ - 4222 + 4195 ], "where": [ - 4207 + 4180 ], "__typename": [ 80 @@ -97713,28 +97338,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "k8s_job_name": [ - 3035 + 3008 ], "node": [ 1746 ], "node_id": [ - 3035 + 3008 ], "purpose": [ - 3035 + 3008 ], "steam_account": [ - 4237 + 4210 ], "steam_account_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -97742,7 +97367,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97751,10 +97376,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97766,7 +97391,7 @@ export default { 80 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97774,7 +97399,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4221 + 4194 ], "ordering": [ 315 @@ -97785,10 +97410,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "k8s_job_name": [ 80 @@ -97800,7 +97425,7 @@ export default { 80 ], "steam_account_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -97809,10 +97434,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4219 + 4192 ], "where": [ - 4207 + 4180 ], "__typename": [ 80 @@ -97820,10 +97445,10 @@ export default { }, "steam_accounts": { "claims": [ - 4200, + 4173, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -97833,19 +97458,19 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "claims_aggregate": [ - 4201, + 4174, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -97855,22 +97480,22 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node": [ 1720 @@ -97891,7 +97516,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -97902,10 +97527,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 4226 + 4199 ], "nodes": [ - 4224 + 4197 ], "__typename": [ 80 @@ -97913,13 +97538,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 4227 + 4200 ], "count": [ 40, { "columns": [ - 4239, + 4212, "[steam_accounts_select_column!]" ], "distinct": [ @@ -97928,31 +97553,31 @@ export default { } ], "max": [ - 4232 + 4205 ], "min": [ - 4233 + 4206 ], "stddev": [ - 4241 + 4214 ], "stddev_pop": [ - 4242 + 4215 ], "stddev_samp": [ - 4243 + 4216 ], "sum": [ - 4246 + 4219 ], "var_pop": [ - 4249 + 4222 ], "var_samp": [ - 4250 + 4223 ], "variance": [ - 4251 + 4224 ], "__typename": [ 80 @@ -97974,28 +97599,28 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 4228 + 4201 ], "_not": [ - 4228 + 4201 ], "_or": [ - 4228 + 4201 ], "claims": [ - 4207 + 4180 ], "claims_aggregate": [ - 4202 + 4175 ], "created_at": [ - 4612 + 4585 ], "friend_capacity": [ 41 ], "id": [ - 5113 + 5086 ], "last_node": [ 1732 @@ -98016,7 +97641,7 @@ export default { 261 ], "updated_at": [ - 4612 + 4585 ], "username": [ 82 @@ -98042,16 +97667,16 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 4206 + 4179 ], "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node": [ 1744 @@ -98072,7 +97697,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -98083,13 +97708,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node_id": [ 80 @@ -98107,7 +97732,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -98118,13 +97743,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node_id": [ 80 @@ -98142,7 +97767,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -98156,7 +97781,7 @@ export default { 40 ], "returning": [ - 4224 + 4197 ], "__typename": [ 80 @@ -98164,10 +97789,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4231 + 4204 ], "on_conflict": [ - 4236 + 4209 ], "__typename": [ 80 @@ -98175,13 +97800,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 4229 + 4202 ], "update_columns": [ - 4247 + 4220 ], "where": [ - 4228 + 4201 ], "__typename": [ 80 @@ -98189,40 +97814,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 4205 + 4178 ], "created_at": [ - 3035 + 3008 ], "friend_capacity": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "last_node": [ 1746 ], "last_node_id": [ - 3035 + 3008 ], "password": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "steam_level": [ - 3035 + 3008 ], "steamid64": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "username": [ - 3035 + 3008 ], "__typename": [ 80 @@ -98230,7 +97855,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -98239,13 +97864,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node_id": [ 80 @@ -98263,7 +97888,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -98316,7 +97941,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4245 + 4218 ], "ordering": [ 315 @@ -98327,13 +97952,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "friend_capacity": [ 40 ], "id": [ - 5111 + 5084 ], "last_node_id": [ 80 @@ -98351,7 +97976,7 @@ export default { 259 ], "updated_at": [ - 4611 + 4584 ], "username": [ 80 @@ -98377,13 +98002,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4230 + 4203 ], "_set": [ - 4240 + 4213 ], "where": [ - 4228 + 4201 ], "__typename": [ 80 @@ -98433,7 +98058,7 @@ export default { }, "system_alerts": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 @@ -98442,10 +98067,10 @@ export default { 5 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "is_active": [ 5 @@ -98460,7 +98085,7 @@ export default { 1233 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98468,10 +98093,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 4254 + 4227 ], "nodes": [ - 4252 + 4225 ], "__typename": [ 80 @@ -98479,13 +98104,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 4255 + 4228 ], "count": [ 40, { "columns": [ - 4266, + 4239, "[system_alerts_select_column!]" ], "distinct": [ @@ -98494,31 +98119,31 @@ export default { } ], "max": [ - 4260 + 4233 ], "min": [ - 4261 + 4234 ], "stddev": [ - 4268 + 4241 ], "stddev_pop": [ - 4269 + 4242 ], "stddev_samp": [ - 4270 + 4243 ], "sum": [ - 4273 + 4246 ], "var_pop": [ - 4276 + 4249 ], "var_samp": [ - 4277 + 4250 ], "variance": [ - 4278 + 4251 ], "__typename": [ 80 @@ -98534,16 +98159,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 4256 + 4229 ], "_not": [ - 4256 + 4229 ], "_or": [ - 4256 + 4229 ], "created_at": [ - 4612 + 4585 ], "created_by": [ 261 @@ -98552,10 +98177,10 @@ export default { 6 ], "expires_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "is_active": [ 6 @@ -98570,7 +98195,7 @@ export default { 1234 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -98587,7 +98212,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 @@ -98596,10 +98221,10 @@ export default { 5 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "is_active": [ 5 @@ -98614,7 +98239,7 @@ export default { 1233 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98622,16 +98247,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 @@ -98640,7 +98265,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98648,16 +98273,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "message": [ 80 @@ -98666,7 +98291,7 @@ export default { 80 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98677,7 +98302,7 @@ export default { 40 ], "returning": [ - 4252 + 4225 ], "__typename": [ 80 @@ -98685,13 +98310,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 4257 + 4230 ], "update_columns": [ - 4274 + 4247 ], "where": [ - 4256 + 4229 ], "__typename": [ 80 @@ -98699,34 +98324,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 3035 + 3008 ], "created_by": [ - 3035 + 3008 ], "dismissible": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_active": [ - 3035 + 3008 ], "message": [ - 3035 + 3008 ], "title": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -98734,7 +98359,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -98743,7 +98368,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 @@ -98752,10 +98377,10 @@ export default { 5 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "is_active": [ 5 @@ -98770,7 +98395,7 @@ export default { 1233 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98802,7 +98427,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4272 + 4245 ], "ordering": [ 315 @@ -98813,7 +98438,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "created_by": [ 259 @@ -98822,10 +98447,10 @@ export default { 5 ], "expires_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "is_active": [ 5 @@ -98840,7 +98465,7 @@ export default { 1233 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -98857,13 +98482,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4258 + 4231 ], "_set": [ - 4267 + 4240 ], "where": [ - 4256 + 4229 ], "__typename": [ 80 @@ -98895,28 +98520,28 @@ export default { }, "team_invites": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by": [ - 3993 + 3966 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -98924,10 +98549,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4283 + 4256 ], "nodes": [ - 4279 + 4252 ], "__typename": [ 80 @@ -98935,7 +98560,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4282 + 4255 ], "__typename": [ 80 @@ -98943,13 +98568,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4300 + 4273 ], "distinct": [ 5 ], "filter": [ - 4288 + 4261 ], "predicate": [ 41 @@ -98960,13 +98585,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4286 + 4259 ], "count": [ 40, { "columns": [ - 4300, + 4273, "[team_invites_select_column!]" ], "distinct": [ @@ -98975,31 +98600,31 @@ export default { } ], "max": [ - 4292 + 4265 ], "min": [ - 4294 + 4267 ], "stddev": [ - 4302 + 4275 ], "stddev_pop": [ - 4304 + 4277 ], "stddev_samp": [ - 4306 + 4279 ], "sum": [ - 4310 + 4283 ], "var_pop": [ - 4314 + 4287 ], "var_samp": [ - 4316 + 4289 ], "variance": [ - 4318 + 4291 ], "__typename": [ 80 @@ -99007,37 +98632,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4287 + 4260 ], "count": [ - 3035 + 3008 ], "max": [ - 4293 + 4266 ], "min": [ - 4295 + 4268 ], "stddev": [ - 4303 + 4276 ], "stddev_pop": [ - 4305 + 4278 ], "stddev_samp": [ - 4307 + 4280 ], "sum": [ - 4311 + 4284 ], "var_pop": [ - 4315 + 4288 ], "var_samp": [ - 4317 + 4290 ], "variance": [ - 4319 + 4292 ], "__typename": [ 80 @@ -99045,10 +98670,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4291 + 4264 ], "on_conflict": [ - 4297 + 4270 ], "__typename": [ 80 @@ -99067,10 +98692,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99078,37 +98703,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4288 + 4261 ], "_not": [ - 4288 + 4261 ], "_or": [ - 4288 + 4261 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "invited_by": [ - 3997 + 3970 ], "invited_by_player_steam_id": [ 261 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -99128,28 +98753,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by": [ - 4004 + 3977 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99157,10 +98782,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -99169,7 +98794,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99177,19 +98802,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99197,10 +98822,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -99209,7 +98834,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99217,19 +98842,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99240,7 +98865,7 @@ export default { 40 ], "returning": [ - 4279 + 4252 ], "__typename": [ 80 @@ -99248,13 +98873,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4289 + 4262 ], "update_columns": [ - 4312 + 4285 ], "where": [ - 4288 + 4261 ], "__typename": [ 80 @@ -99262,28 +98887,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by": [ - 4006 + 3979 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99291,7 +98916,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99300,10 +98925,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -99312,7 +98937,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99331,10 +98956,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99353,10 +98978,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99375,10 +99000,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99386,7 +99011,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4309 + 4282 ], "ordering": [ 315 @@ -99397,10 +99022,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -99409,7 +99034,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99428,10 +99053,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99440,13 +99065,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4290 + 4263 ], "_set": [ - 4301 + 4274 ], "where": [ - 4288 + 4261 ], "__typename": [ 80 @@ -99465,10 +99090,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99487,10 +99112,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99509,10 +99134,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99523,7 +99148,7 @@ export default { 5 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -99538,10 +99163,10 @@ export default { 1274 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99549,10 +99174,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4326 + 4299 ], "nodes": [ - 4320 + 4293 ], "__typename": [ 80 @@ -99560,13 +99185,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4323 + 4296 ], "bool_or": [ - 4324 + 4297 ], "count": [ - 4325 + 4298 ], "__typename": [ 80 @@ -99574,13 +99199,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4344 + 4317 ], "distinct": [ 5 ], "filter": [ - 4331 + 4304 ], "predicate": [ 6 @@ -99591,13 +99216,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4345 + 4318 ], "distinct": [ 5 ], "filter": [ - 4331 + 4304 ], "predicate": [ 6 @@ -99608,13 +99233,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4343 + 4316 ], "distinct": [ 5 ], "filter": [ - 4331 + 4304 ], "predicate": [ 41 @@ -99625,13 +99250,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4329 + 4302 ], "count": [ 40, { "columns": [ - 4343, + 4316, "[team_roster_select_column!]" ], "distinct": [ @@ -99640,31 +99265,31 @@ export default { } ], "max": [ - 4335 + 4308 ], "min": [ - 4337 + 4310 ], "stddev": [ - 4347 + 4320 ], "stddev_pop": [ - 4349 + 4322 ], "stddev_samp": [ - 4351 + 4324 ], "sum": [ - 4355 + 4328 ], "var_pop": [ - 4359 + 4332 ], "var_samp": [ - 4361 + 4334 ], "variance": [ - 4363 + 4336 ], "__typename": [ 80 @@ -99672,37 +99297,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4330 + 4303 ], "count": [ - 3035 + 3008 ], "max": [ - 4336 + 4309 ], "min": [ - 4338 + 4311 ], "stddev": [ - 4348 + 4321 ], "stddev_pop": [ - 4350 + 4323 ], "stddev_samp": [ - 4352 + 4325 ], "sum": [ - 4356 + 4329 ], "var_pop": [ - 4360 + 4333 ], "var_samp": [ - 4362 + 4335 ], "variance": [ - 4364 + 4337 ], "__typename": [ 80 @@ -99710,10 +99335,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4334 + 4307 ], "on_conflict": [ - 4340 + 4313 ], "__typename": [ 80 @@ -99729,7 +99354,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99737,19 +99362,19 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4331 + 4304 ], "_not": [ - 4331 + 4304 ], "_or": [ - 4331 + 4304 ], "coach": [ 6 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -99764,10 +99389,10 @@ export default { 1275 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -99787,7 +99412,7 @@ export default { 5 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -99802,10 +99427,10 @@ export default { 1274 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99819,7 +99444,7 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99827,13 +99452,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99847,7 +99472,7 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99855,13 +99480,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99872,7 +99497,7 @@ export default { 40 ], "returning": [ - 4320 + 4293 ], "__typename": [ 80 @@ -99880,13 +99505,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4332 + 4305 ], "update_columns": [ - 4357 + 4330 ], "where": [ - 4331 + 4304 ], "__typename": [ 80 @@ -99894,28 +99519,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "roster_image_url": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99926,7 +99551,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99952,7 +99577,7 @@ export default { 1274 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -99968,7 +99593,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -99984,7 +99609,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100000,7 +99625,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100008,7 +99633,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4354 + 4327 ], "ordering": [ 315 @@ -100034,7 +99659,7 @@ export default { 1274 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100050,7 +99675,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100059,13 +99684,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4333 + 4306 ], "_set": [ - 4346 + 4319 ], "where": [ - 4331 + 4304 ], "__typename": [ 80 @@ -100081,7 +99706,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100097,7 +99722,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100113,7 +99738,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100121,7 +99746,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100133,19 +99758,19 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100153,10 +99778,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4367 + 4340 ], "nodes": [ - 4365 + 4338 ], "__typename": [ 80 @@ -100164,13 +99789,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4368 + 4341 ], "count": [ 40, { "columns": [ - 4379, + 4352, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -100179,31 +99804,31 @@ export default { } ], "max": [ - 4373 + 4346 ], "min": [ - 4374 + 4347 ], "stddev": [ - 4381 + 4354 ], "stddev_pop": [ - 4382 + 4355 ], "stddev_samp": [ - 4383 + 4356 ], "sum": [ - 4386 + 4359 ], "var_pop": [ - 4389 + 4362 ], "var_samp": [ - 4390 + 4363 ], "variance": [ - 4391 + 4364 ], "__typename": [ 80 @@ -100222,16 +99847,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4369 + 4342 ], "_not": [ - 4369 + 4342 ], "_or": [ - 4369 + 4342 ], "created_at": [ - 4612 + 4585 ], "elo_max": [ 41 @@ -100243,19 +99868,19 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "last_notified_at": [ - 4612 + 4585 ], "regions": [ 81 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -100275,7 +99900,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100287,19 +99912,19 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100307,7 +99932,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100316,16 +99941,16 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100333,7 +99958,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100342,16 +99967,16 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100362,7 +99987,7 @@ export default { 40 ], "returning": [ - 4365 + 4338 ], "__typename": [ 80 @@ -100370,13 +99995,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4370 + 4343 ], "update_columns": [ - 4387 + 4360 ], "where": [ - 4369 + 4342 ], "__typename": [ 80 @@ -100384,31 +100009,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 3035 + 3008 ], "elo_max": [ - 3035 + 3008 ], "elo_min": [ - 3035 + 3008 ], "enabled": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "last_notified_at": [ - 3035 + 3008 ], "regions": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100416,7 +100041,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100425,7 +100050,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100437,16 +100062,16 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100487,7 +100112,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4385 + 4358 ], "ordering": [ 315 @@ -100498,7 +100123,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -100510,16 +100135,16 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "regions": [ 80 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100539,13 +100164,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4371 + 4344 ], "_set": [ - 4380 + 4353 ], "where": [ - 4369 + 4342 ], "__typename": [ 80 @@ -100586,25 +100211,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4611 + 4584 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100612,10 +100237,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4398 + 4371 ], "nodes": [ - 4392 + 4365 ], "__typename": [ 80 @@ -100623,13 +100248,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4395 + 4368 ], "bool_or": [ - 4396 + 4369 ], "count": [ - 4397 + 4370 ], "__typename": [ 80 @@ -100637,13 +100262,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4413 + 4386 ], "distinct": [ 5 ], "filter": [ - 4401 + 4374 ], "predicate": [ 6 @@ -100654,13 +100279,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4414 + 4387 ], "distinct": [ 5 ], "filter": [ - 4401 + 4374 ], "predicate": [ 6 @@ -100671,13 +100296,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4412 + 4385 ], "distinct": [ 5 ], "filter": [ - 4401 + 4374 ], "predicate": [ 41 @@ -100691,7 +100316,7 @@ export default { 40, { "columns": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -100700,10 +100325,10 @@ export default { } ], "max": [ - 4404 + 4377 ], "min": [ - 4406 + 4379 ], "__typename": [ 80 @@ -100711,13 +100336,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 4405 + 4378 ], "min": [ - 4407 + 4380 ], "__typename": [ 80 @@ -100725,10 +100350,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4403 + 4376 ], "on_conflict": [ - 4409 + 4382 ], "__typename": [ 80 @@ -100736,34 +100361,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4401 + 4374 ], "_not": [ - 4401 + 4374 ], "_or": [ - 4401 + 4374 ], "created_at": [ - 4612 + 4585 ], "ends_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4612 + 4585 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -100772,25 +100397,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4611 + 4584 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100798,19 +100423,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "starts_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100818,19 +100443,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 3035 + 3008 ], "ends_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "starts_at": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100838,19 +100463,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "starts_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100858,19 +100483,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 3035 + 3008 ], "ends_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "starts_at": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100881,7 +100506,7 @@ export default { 40 ], "returning": [ - 4392 + 4365 ], "__typename": [ 80 @@ -100889,13 +100514,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4402 + 4375 ], "update_columns": [ - 4418 + 4391 ], "where": [ - 4401 + 4374 ], "__typename": [ 80 @@ -100903,25 +100528,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 3035 + 3008 ], "ends_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "recurring_weekly": [ - 3035 + 3008 ], "starts_at": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -100929,7 +100554,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100940,22 +100565,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": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100963,7 +100588,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4417 + 4390 ], "ordering": [ 315 @@ -100974,22 +100599,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "ends_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -100998,10 +100623,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4415 + 4388 ], "where": [ - 4401 + 4374 ], "__typename": [ 80 @@ -101009,31 +100634,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by": [ - 3993 + 3966 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team": [ - 4562 + 4535 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request": [ - 4461 + 4434 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101041,10 +100666,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4424 + 4397 ], "nodes": [ - 4420 + 4393 ], "__typename": [ 80 @@ -101052,7 +100677,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4423 + 4396 ], "__typename": [ 80 @@ -101060,13 +100685,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4441 + 4414 ], "distinct": [ 5 ], "filter": [ - 4429 + 4402 ], "predicate": [ 41 @@ -101077,13 +100702,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4427 + 4400 ], "count": [ 40, { "columns": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -101092,31 +100717,31 @@ export default { } ], "max": [ - 4433 + 4406 ], "min": [ - 4435 + 4408 ], "stddev": [ - 4443 + 4416 ], "stddev_pop": [ - 4445 + 4418 ], "stddev_samp": [ - 4447 + 4420 ], "sum": [ - 4451 + 4424 ], "var_pop": [ - 4455 + 4428 ], "var_samp": [ - 4457 + 4430 ], "variance": [ - 4459 + 4432 ], "__typename": [ 80 @@ -101124,37 +100749,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4428 + 4401 ], "count": [ - 3035 + 3008 ], "max": [ - 4434 + 4407 ], "min": [ - 4436 + 4409 ], "stddev": [ - 4444 + 4417 ], "stddev_pop": [ - 4446 + 4419 ], "stddev_samp": [ - 4448 + 4421 ], "sum": [ - 4452 + 4425 ], "var_pop": [ - 4456 + 4429 ], "var_samp": [ - 4458 + 4431 ], "variance": [ - 4460 + 4433 ], "__typename": [ 80 @@ -101162,10 +100787,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4432 + 4405 ], "on_conflict": [ - 4438 + 4411 ], "__typename": [ 80 @@ -101181,7 +100806,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101189,40 +100814,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4429 + 4402 ], "_not": [ - 4429 + 4402 ], "_or": [ - 4429 + 4402 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "proposed_by": [ - 3997 + 3970 ], "proposed_by_steam_id": [ 261 ], "proposed_by_team": [ - 4573 + 4546 ], "proposed_by_team_id": [ - 5113 + 5086 ], "proposed_scheduled_at": [ - 4612 + 4585 ], "request": [ - 4472 + 4445 ], "request_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -101239,31 +100864,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by": [ - 4004 + 3977 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team": [ - 4582 + 4555 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request": [ - 4481 + 4454 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101271,22 +100896,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101294,22 +100919,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_by_team_id": [ - 3035 + 3008 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "request_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101317,22 +100942,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101340,22 +100965,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_by_team_id": [ - 3035 + 3008 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "request_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101366,7 +100991,7 @@ export default { 40 ], "returning": [ - 4420 + 4393 ], "__typename": [ 80 @@ -101374,13 +100999,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4430 + 4403 ], "update_columns": [ - 4453 + 4426 ], "where": [ - 4429 + 4402 ], "__typename": [ 80 @@ -101388,31 +101013,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "proposed_by": [ - 4006 + 3979 ], "proposed_by_steam_id": [ - 3035 + 3008 ], "proposed_by_team": [ - 4584 + 4557 ], "proposed_by_team_id": [ - 3035 + 3008 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "request": [ - 4483 + 4456 ], "request_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101420,7 +101045,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101429,22 +101054,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101460,7 +101085,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101476,7 +101101,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101492,7 +101117,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101500,7 +101125,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4450 + 4423 ], "ordering": [ 315 @@ -101511,22 +101136,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "proposed_by_steam_id": [ 259 ], "proposed_by_team_id": [ - 5111 + 5084 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "request_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101542,7 +101167,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101551,13 +101176,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4431 + 4404 ], "_set": [ - 4442 + 4415 ], "where": [ - 4429 + 4402 ], "__typename": [ 80 @@ -101573,7 +101198,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101589,7 +101214,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101605,7 +101230,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101616,55 +101241,55 @@ export default { 5 ], "awaiting_team": [ - 4562 + 4535 ], "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "canceled_late": [ 5 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team": [ - 4562 + 4535 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_options": [ - 2699 + 2672 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposals": [ - 4420, + 4393, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -101674,19 +101299,19 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "proposals_aggregate": [ - 4421, + 4394, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -101696,40 +101321,40 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 ], "requested_by": [ - 3993 + 3966 ], "requested_by_steam_id": [ 259 ], "responded_at": [ - 4611 + 4584 ], "status": [ 1173 ], "to_team": [ - 4562 + 4535 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -101737,10 +101362,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4467 + 4440 ], "nodes": [ - 4461 + 4434 ], "__typename": [ 80 @@ -101748,13 +101373,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4464 + 4437 ], "bool_or": [ - 4465 + 4438 ], "count": [ - 4466 + 4439 ], "__typename": [ 80 @@ -101762,13 +101387,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4486 + 4459 ], "distinct": [ 5 ], "filter": [ - 4472 + 4445 ], "predicate": [ 6 @@ -101779,13 +101404,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4487 + 4460 ], "distinct": [ 5 ], "filter": [ - 4472 + 4445 ], "predicate": [ 6 @@ -101796,13 +101421,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4485 + 4458 ], "distinct": [ 5 ], "filter": [ - 4472 + 4445 ], "predicate": [ 41 @@ -101813,13 +101438,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4470 + 4443 ], "count": [ 40, { "columns": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -101828,31 +101453,31 @@ export default { } ], "max": [ - 4476 + 4449 ], "min": [ - 4478 + 4451 ], "stddev": [ - 4489 + 4462 ], "stddev_pop": [ - 4491 + 4464 ], "stddev_samp": [ - 4493 + 4466 ], "sum": [ - 4497 + 4470 ], "var_pop": [ - 4501 + 4474 ], "var_samp": [ - 4503 + 4476 ], "variance": [ - 4505 + 4478 ], "__typename": [ 80 @@ -101860,37 +101485,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4471 + 4444 ], "count": [ - 3035 + 3008 ], "max": [ - 4477 + 4450 ], "min": [ - 4479 + 4452 ], "stddev": [ - 4490 + 4463 ], "stddev_pop": [ - 4492 + 4465 ], "stddev_samp": [ - 4494 + 4467 ], "sum": [ - 4498 + 4471 ], "var_pop": [ - 4502 + 4475 ], "var_samp": [ - 4504 + 4477 ], "variance": [ - 4506 + 4479 ], "__typename": [ 80 @@ -101898,10 +101523,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4475 + 4448 ], "on_conflict": [ - 4482 + 4455 ], "__typename": [ 80 @@ -101917,7 +101542,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -101925,94 +101550,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4472 + 4445 ], "_not": [ - 4472 + 4445 ], "_or": [ - 4472 + 4445 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4573 + 4546 ], "awaiting_team_id": [ - 5113 + 5086 ], "canceled_by_team_id": [ - 5113 + 5086 ], "canceled_late": [ 6 ], "created_at": [ - 4612 + 4585 ], "expires_at": [ - 4612 + 4585 ], "from_team": [ - 4573 + 4546 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 5113 + 5086 ], "id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_options": [ - 2703 + 2676 ], "match_options_id": [ - 5113 + 5086 ], "match_outcome": [ 82 ], "proposals": [ - 4429 + 4402 ], "proposals_aggregate": [ - 4422 + 4395 ], "proposed_scheduled_at": [ - 4612 + 4585 ], "region": [ 82 ], "requested_by": [ - 3997 + 3970 ], "requested_by_steam_id": [ 261 ], "responded_at": [ - 4612 + 4585 ], "status": [ 1174 ], "to_team": [ - 4573 + 4546 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -102032,79 +101657,79 @@ export default { 5 ], "awaiting_team": [ - 4582 + 4555 ], "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "canceled_late": [ 5 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team": [ - 4582 + 4555 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_options": [ - 2710 + 2683 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposals": [ - 4426 + 4399 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 ], "requested_by": [ - 4004 + 3977 ], "requested_by_steam_id": [ 259 ], "responded_at": [ - 4611 + 4584 ], "status": [ 1173 ], "to_team": [ - 4582 + 4555 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102112,34 +101737,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 @@ -102148,10 +101773,10 @@ export default { 259 ], "responded_at": [ - 4611 + 4584 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102159,46 +101784,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3035 + 3008 ], "canceled_by_team_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "from_team_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "match_outcome": [ - 3035 + 3008 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "requested_by_steam_id": [ - 3035 + 3008 ], "responded_at": [ - 3035 + 3008 ], "to_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102206,34 +101831,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 @@ -102242,10 +101867,10 @@ export default { 259 ], "responded_at": [ - 4611 + 4584 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102253,46 +101878,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3035 + 3008 ], "canceled_by_team_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "from_team_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "match_outcome": [ - 3035 + 3008 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "requested_by_steam_id": [ - 3035 + 3008 ], "responded_at": [ - 3035 + 3008 ], "to_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102303,7 +101928,7 @@ export default { 40 ], "returning": [ - 4461 + 4434 ], "__typename": [ 80 @@ -102311,10 +101936,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4475 + 4448 ], "on_conflict": [ - 4482 + 4455 ], "__typename": [ 80 @@ -102322,13 +101947,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4473 + 4446 ], "update_columns": [ - 4499 + 4472 ], "where": [ - 4472 + 4445 ], "__typename": [ 80 @@ -102336,82 +101961,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 3035 + 3008 ], "awaiting_team": [ - 4584 + 4557 ], "awaiting_team_id": [ - 3035 + 3008 ], "canceled_by_team_id": [ - 3035 + 3008 ], "canceled_late": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "expires_at": [ - 3035 + 3008 ], "from_team": [ - 4584 + 4557 ], "from_team_checked_in": [ - 3035 + 3008 ], "from_team_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_options": [ - 2712 + 2685 ], "match_options_id": [ - 3035 + 3008 ], "match_outcome": [ - 3035 + 3008 ], "proposals_aggregate": [ - 4425 + 4398 ], "proposed_scheduled_at": [ - 3035 + 3008 ], "region": [ - 3035 + 3008 ], "requested_by": [ - 4006 + 3979 ], "requested_by_steam_id": [ - 3035 + 3008 ], "responded_at": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "to_team": [ - 4584 + 4557 ], "to_team_checked_in": [ - 3035 + 3008 ], "to_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102419,7 +102044,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102433,40 +102058,40 @@ export default { 5 ], "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "canceled_late": [ 5 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 @@ -102475,7 +102100,7 @@ export default { 259 ], "responded_at": [ - 4611 + 4584 ], "status": [ 1173 @@ -102484,7 +102109,7 @@ export default { 5 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102500,7 +102125,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102516,7 +102141,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102532,7 +102157,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102540,7 +102165,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4496 + 4469 ], "ordering": [ 315 @@ -102554,40 +102179,40 @@ export default { 5 ], "awaiting_team_id": [ - 5111 + 5084 ], "canceled_by_team_id": [ - 5111 + 5084 ], "canceled_late": [ 5 ], "created_at": [ - 4611 + 4584 ], "expires_at": [ - 4611 + 4584 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "match_outcome": [ 80 ], "proposed_scheduled_at": [ - 4611 + 4584 ], "region": [ 80 @@ -102596,7 +102221,7 @@ export default { 259 ], "responded_at": [ - 4611 + 4584 ], "status": [ 1173 @@ -102605,7 +102230,7 @@ export default { 5 ], "to_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -102621,7 +102246,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102630,13 +102255,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4474 + 4447 ], "_set": [ - 4488 + 4461 ], "where": [ - 4472 + 4445 ], "__typename": [ 80 @@ -102652,7 +102277,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102668,7 +102293,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102684,7 +102309,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -102695,7 +102320,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -102707,10 +102332,10 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -102719,13 +102344,13 @@ export default { 80 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -102733,10 +102358,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4509 + 4482 ], "nodes": [ - 4507 + 4480 ], "__typename": [ 80 @@ -102744,13 +102369,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4510 + 4483 ], "count": [ 40, { "columns": [ - 4522, + 4495, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -102759,31 +102384,31 @@ export default { } ], "max": [ - 4515 + 4488 ], "min": [ - 4516 + 4489 ], "stddev": [ - 4524 + 4497 ], "stddev_pop": [ - 4525 + 4498 ], "stddev_samp": [ - 4526 + 4499 ], "sum": [ - 4529 + 4502 ], "var_pop": [ - 4532 + 4505 ], "var_samp": [ - 4533 + 4506 ], "variance": [ - 4534 + 4507 ], "__typename": [ 80 @@ -102802,19 +102427,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4511 + 4484 ], "_not": [ - 4511 + 4484 ], "_or": [ - 4511 + 4484 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4612 + 4585 ], "elo_max": [ 41 @@ -102826,10 +102451,10 @@ export default { 6 ], "id": [ - 5113 + 5086 ], "map_ids": [ - 5112 + 5085 ], "notes": [ 82 @@ -102838,13 +102463,13 @@ export default { 81 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -102867,7 +102492,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -102879,10 +102504,10 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -102891,13 +102516,13 @@ export default { 80 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -102905,7 +102530,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -102914,10 +102539,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -102926,10 +102551,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -102937,7 +102562,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -102946,10 +102571,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -102958,10 +102583,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -102972,7 +102597,7 @@ export default { 40 ], "returning": [ - 4507 + 4480 ], "__typename": [ 80 @@ -102980,10 +102605,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4514 + 4487 ], "on_conflict": [ - 4519 + 4492 ], "__typename": [ 80 @@ -102991,13 +102616,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4512 + 4485 ], "update_columns": [ - 4530 + 4503 ], "where": [ - 4511 + 4484 ], "__typename": [ 80 @@ -103005,40 +102630,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "elo_max": [ - 3035 + 3008 ], "elo_min": [ - 3035 + 3008 ], "enabled": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "map_ids": [ - 3035 + 3008 ], "notes": [ - 3035 + 3008 ], "regions": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -103046,7 +102671,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -103058,7 +102683,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -103070,10 +102695,10 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -103082,10 +102707,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -103126,7 +102751,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4528 + 4501 ], "ordering": [ 315 @@ -103140,7 +102765,7 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "elo_max": [ 40 @@ -103152,10 +102777,10 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "map_ids": [ - 5111 + 5084 ], "notes": [ 80 @@ -103164,10 +102789,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -103187,13 +102812,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4513 + 4486 ], "_set": [ - 4523 + 4496 ], "where": [ - 4511 + 4484 ], "__typename": [ 80 @@ -103234,16 +102859,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103260,10 +102885,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4537 + 4510 ], "nodes": [ - 4535 + 4508 ], "__typename": [ 80 @@ -103271,13 +102896,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4538 + 4511 ], "count": [ 40, { "columns": [ - 4549, + 4522, "[team_suggestions_select_column!]" ], "distinct": [ @@ -103286,31 +102911,31 @@ export default { } ], "max": [ - 4543 + 4516 ], "min": [ - 4544 + 4517 ], "stddev": [ - 4551 + 4524 ], "stddev_pop": [ - 4552 + 4525 ], "stddev_samp": [ - 4553 + 4526 ], "sum": [ - 4556 + 4529 ], "var_pop": [ - 4559 + 4532 ], "var_samp": [ - 4560 + 4533 ], "variance": [ - 4561 + 4534 ], "__typename": [ 80 @@ -103326,25 +102951,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4539 + 4512 ], "_not": [ - 4539 + 4512 ], "_or": [ - 4539 + 4512 ], "created_at": [ - 4612 + 4585 ], "group_hash": [ 82 ], "id": [ - 5113 + 5086 ], "last_notified_at": [ - 4612 + 4585 ], "member_steam_ids": [ 260 @@ -103370,16 +102995,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103396,16 +103021,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103422,16 +103047,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103451,7 +103076,7 @@ export default { 40 ], "returning": [ - 4535 + 4508 ], "__typename": [ 80 @@ -103459,13 +103084,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4540 + 4513 ], "update_columns": [ - 4557 + 4530 ], "where": [ - 4539 + 4512 ], "__typename": [ 80 @@ -103473,25 +103098,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 3035 + 3008 ], "group_hash": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "last_notified_at": [ - 3035 + 3008 ], "member_steam_ids": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "together_count": [ - 3035 + 3008 ], "__typename": [ 80 @@ -103499,7 +103124,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -103508,16 +103133,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103558,7 +103183,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4555 + 4528 ], "ordering": [ 315 @@ -103569,16 +103194,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "group_hash": [ 80 ], "id": [ - 5111 + 5084 ], "last_notified_at": [ - 4611 + 4584 ], "member_steam_ids": [ 259 @@ -103604,13 +103229,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4541 + 4514 ], "_set": [ - 4550 + 4523 ], "where": [ - 4539 + 4512 ], "__typename": [ 80 @@ -103701,19 +103326,19 @@ export default { 5 ], "captain": [ - 3993 + 3966 ], "captain_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "invites": [ - 4279, + 4252, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -103723,19 +103348,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "invites_aggregate": [ - 4280, + 4253, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -103745,11 +103370,11 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], @@ -103757,10 +103382,10 @@ export default { 5 ], "match_lineups": [ - 2495, + 2468, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -103770,19 +103395,19 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "match_lineups_aggregate": [ - 2496, + 2469, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -103792,19 +103417,19 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -103814,11 +103439,11 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], @@ -103826,25 +103451,25 @@ export default { 80 ], "owner": [ - 3993 + 3966 ], "owner_steam_id": [ 259 ], "ranks": [ - 5813 + 5786 ], "reputation": [ - 5833 + 5806 ], "role": [ 80 ], "roster": [ - 4320, + 4293, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -103854,19 +103479,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "roster_aggregate": [ - 4321, + 4294, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -103876,19 +103501,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "scrim_availability": [ - 4392, + 4365, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -103898,19 +103523,19 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "scrim_availability_aggregate": [ - 4393, + 4366, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -103920,25 +103545,25 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "scrim_settings": [ - 4507 + 4480 ], "short_name": [ 80 ], "tournament_teams": [ - 5005, + 4978, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -103948,19 +103573,19 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "tournament_teams_aggregate": [ - 5006, + 4979, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -103970,11 +103595,11 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], @@ -103984,10 +103609,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4568 + 4541 ], "nodes": [ - 4562 + 4535 ], "__typename": [ 80 @@ -103995,13 +103620,13 @@ export default { }, "teams_aggregate_bool_exp": { "bool_and": [ - 4565 + 4538 ], "bool_or": [ - 4566 + 4539 ], "count": [ - 4567 + 4540 ], "__typename": [ 80 @@ -104009,13 +103634,13 @@ export default { }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4587 + 4560 ], "distinct": [ 5 ], "filter": [ - 4573 + 4546 ], "predicate": [ 6 @@ -104026,13 +103651,13 @@ export default { }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4588 + 4561 ], "distinct": [ 5 ], "filter": [ - 4573 + 4546 ], "predicate": [ 6 @@ -104043,13 +103668,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4586 + 4559 ], "distinct": [ 5 ], "filter": [ - 4573 + 4546 ], "predicate": [ 41 @@ -104060,13 +103685,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4571 + 4544 ], "count": [ 40, { "columns": [ - 4586, + 4559, "[teams_select_column!]" ], "distinct": [ @@ -104075,31 +103700,31 @@ export default { } ], "max": [ - 4577 + 4550 ], "min": [ - 4579 + 4552 ], "stddev": [ - 4590 + 4563 ], "stddev_pop": [ - 4592 + 4565 ], "stddev_samp": [ - 4594 + 4567 ], "sum": [ - 4598 + 4571 ], "var_pop": [ - 4602 + 4575 ], "var_samp": [ - 4604 + 4577 ], "variance": [ - 4606 + 4579 ], "__typename": [ 80 @@ -104107,37 +103732,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4572 + 4545 ], "count": [ - 3035 + 3008 ], "max": [ - 4578 + 4551 ], "min": [ - 4580 + 4553 ], "stddev": [ - 4591 + 4564 ], "stddev_pop": [ - 4593 + 4566 ], "stddev_samp": [ - 4595 + 4568 ], "sum": [ - 4599 + 4572 ], "var_pop": [ - 4603 + 4576 ], "var_samp": [ - 4605 + 4578 ], "variance": [ - 4607 + 4580 ], "__typename": [ 80 @@ -104145,10 +103770,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4576 + 4549 ], "on_conflict": [ - 4583 + 4556 ], "__typename": [ 80 @@ -104167,10 +103792,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104178,13 +103803,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 4573 + 4546 ], "_not": [ - 4573 + 4546 ], "_or": [ - 4573 + 4546 ], "avatar_url": [ 82 @@ -104208,73 +103833,73 @@ export default { 6 ], "captain": [ - 3997 + 3970 ], "captain_steam_id": [ 261 ], "id": [ - 5113 + 5086 ], "invites": [ - 4288 + 4261 ], "invites_aggregate": [ - 4281 + 4254 ], "is_organization": [ 6 ], "match_lineups": [ - 2504 + 2477 ], "match_lineups_aggregate": [ - 2497 + 2470 ], "matches": [ - 2832 + 2805 ], "name": [ 82 ], "owner": [ - 3997 + 3970 ], "owner_steam_id": [ 261 ], "ranks": [ - 5817 + 5790 ], "reputation": [ - 5837 + 5810 ], "role": [ 82 ], "roster": [ - 4331 + 4304 ], "roster_aggregate": [ - 4322 + 4295 ], "scrim_availability": [ - 4401 + 4374 ], "scrim_availability_aggregate": [ - 4394 + 4367 ], "scrim_settings": [ - 4511 + 4484 ], "short_name": [ 82 ], "tournament_teams": [ - 5014 + 4987 ], "tournament_teams_aggregate": [ - 5007 + 4980 ], "__typename": [ 80 @@ -104300,52 +103925,52 @@ export default { 196 ], "captain": [ - 4004 + 3977 ], "captain_steam_id": [ 259 ], "id": [ - 5111 + 5084 ], "invites": [ - 4285 + 4258 ], "is_organization": [ 5 ], "match_lineups": [ - 2501 + 2474 ], "name": [ 80 ], "owner": [ - 4004 + 3977 ], "owner_steam_id": [ 259 ], "ranks": [ - 5821 + 5794 ], "reputation": [ - 5841 + 5814 ], "roster": [ - 4328 + 4301 ], "scrim_availability": [ - 4400 + 4373 ], "scrim_settings": [ - 4518 + 4491 ], "short_name": [ 80 ], "tournament_teams": [ - 5011 + 4984 ], "__typename": [ 80 @@ -104359,7 +103984,7 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -104379,22 +104004,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 3035 + 3008 ], "captain_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "short_name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104408,7 +104033,7 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -104428,22 +104053,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 3035 + 3008 ], "captain_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "short_name": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104454,7 +104079,7 @@ export default { 40 ], "returning": [ - 4562 + 4535 ], "__typename": [ 80 @@ -104462,10 +104087,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4576 + 4549 ], "on_conflict": [ - 4583 + 4556 ], "__typename": [ 80 @@ -104473,13 +104098,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4574 + 4547 ], "update_columns": [ - 4600 + 4573 ], "where": [ - 4573 + 4546 ], "__typename": [ 80 @@ -104487,76 +104112,76 @@ export default { }, "teams_order_by": { "avatar_url": [ - 3035 + 3008 ], "awards_aggregate": [ 195 ], "can_change_role": [ - 3035 + 3008 ], "can_invite": [ - 3035 + 3008 ], "can_manage_scrims": [ - 3035 + 3008 ], "can_remove": [ - 3035 + 3008 ], "captain": [ - 4006 + 3979 ], "captain_steam_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invites_aggregate": [ - 4284 + 4257 ], "is_organization": [ - 3035 + 3008 ], "match_lineups_aggregate": [ - 2500 + 2473 ], "matches_aggregate": [ - 2828 + 2801 ], "name": [ - 3035 + 3008 ], "owner": [ - 4006 + 3979 ], "owner_steam_id": [ - 3035 + 3008 ], "ranks": [ - 5822 + 5795 ], "reputation": [ - 5842 + 5815 ], "role": [ - 3035 + 3008 ], "roster_aggregate": [ - 4327 + 4300 ], "scrim_availability_aggregate": [ - 4399 + 4372 ], "scrim_settings": [ - 4520 + 4493 ], "short_name": [ - 3035 + 3008 ], "tournament_teams_aggregate": [ - 5010 + 4983 ], "__typename": [ 80 @@ -104564,7 +104189,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -104581,7 +104206,7 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "is_organization": [ 5 @@ -104612,10 +104237,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104634,10 +104259,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104656,10 +104281,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104667,7 +104292,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4597 + 4570 ], "ordering": [ 315 @@ -104684,7 +104309,7 @@ export default { 259 ], "id": [ - 5111 + 5084 ], "is_organization": [ 5 @@ -104715,10 +104340,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104727,13 +104352,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4575 + 4548 ], "_set": [ - 4589 + 4562 ], "where": [ - 4573 + 4546 ], "__typename": [ 80 @@ -104752,10 +104377,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104774,10 +104399,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104796,10 +104421,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -104808,31 +104433,31 @@ export default { "time": {}, "time_comparison_exp": { "_eq": [ - 4608 + 4581 ], "_gt": [ - 4608 + 4581 ], "_gte": [ - 4608 + 4581 ], "_in": [ - 4608 + 4581 ], "_is_null": [ 5 ], "_lt": [ - 4608 + 4581 ], "_lte": [ - 4608 + 4581 ], "_neq": [ - 4608 + 4581 ], "_nin": [ - 4608 + 4581 ], "__typename": [ 80 @@ -104842,31 +104467,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4611 + 4584 ], "_gt": [ - 4611 + 4584 ], "_gte": [ - 4611 + 4584 ], "_in": [ - 4611 + 4584 ], "_is_null": [ 5 ], "_lt": [ - 4611 + 4584 ], "_lte": [ - 4611 + 4584 ], "_neq": [ - 4611 + 4584 ], "_nin": [ - 4611 + 4584 ], "__typename": [ 80 @@ -104877,16 +104502,16 @@ export default { 231 ], "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -104898,13 +104523,13 @@ export default { 40 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -104912,10 +104537,10 @@ export default { }, "tournament_awards_aggregate": { "aggregate": [ - 4617 + 4590 ], "nodes": [ - 4613 + 4586 ], "__typename": [ 80 @@ -104923,7 +104548,7 @@ export default { }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4616 + 4589 ], "__typename": [ 80 @@ -104931,13 +104556,13 @@ export default { }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4635 + 4608 ], "distinct": [ 5 ], "filter": [ - 4622 + 4595 ], "predicate": [ 41 @@ -104948,13 +104573,13 @@ export default { }, "tournament_awards_aggregate_fields": { "avg": [ - 4620 + 4593 ], "count": [ 40, { "columns": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "distinct": [ @@ -104963,31 +104588,31 @@ export default { } ], "max": [ - 4626 + 4599 ], "min": [ - 4628 + 4601 ], "stddev": [ - 4637 + 4610 ], "stddev_pop": [ - 4639 + 4612 ], "stddev_samp": [ - 4641 + 4614 ], "sum": [ - 4645 + 4618 ], "var_pop": [ - 4649 + 4622 ], "var_samp": [ - 4651 + 4624 ], "variance": [ - 4653 + 4626 ], "__typename": [ 80 @@ -104995,37 +104620,37 @@ export default { }, "tournament_awards_aggregate_order_by": { "avg": [ - 4621 + 4594 ], "count": [ - 3035 + 3008 ], "max": [ - 4627 + 4600 ], "min": [ - 4629 + 4602 ], "stddev": [ - 4638 + 4611 ], "stddev_pop": [ - 4640 + 4613 ], "stddev_samp": [ - 4642 + 4615 ], "sum": [ - 4646 + 4619 ], "var_pop": [ - 4650 + 4623 ], "var_samp": [ - 4652 + 4625 ], "variance": [ - 4654 + 4627 ], "__typename": [ 80 @@ -105033,10 +104658,10 @@ export default { }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4625 + 4598 ], "on_conflict": [ - 4632 + 4605 ], "__typename": [ 80 @@ -105055,10 +104680,10 @@ export default { }, "tournament_awards_avg_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105066,28 +104691,28 @@ export default { }, "tournament_awards_bool_exp": { "_and": [ - 4622 + 4595 ], "_not": [ - 4622 + 4595 ], "_or": [ - 4622 + 4595 ], "award": [ 235 ], "award_id": [ - 5113 + 5086 ], "created_at": [ - 4612 + 4585 ], "custom_name": [ 82 ], "id": [ - 5113 + 5086 ], "image_url": [ 82 @@ -105099,13 +104724,13 @@ export default { 41 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "updated_at": [ - 4612 + 4585 ], "__typename": [ 80 @@ -105128,16 +104753,16 @@ export default { 242 ], "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -105149,13 +104774,13 @@ export default { 40 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -105163,16 +104788,16 @@ export default { }, "tournament_awards_max_fields": { "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -105184,10 +104809,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -105195,31 +104820,31 @@ export default { }, "tournament_awards_max_order_by": { "award_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_name": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "image_url": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105227,16 +104852,16 @@ export default { }, "tournament_awards_min_fields": { "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -105248,10 +104873,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -105259,31 +104884,31 @@ export default { }, "tournament_awards_min_order_by": { "award_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_name": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "image_url": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105294,7 +104919,7 @@ export default { 40 ], "returning": [ - 4613 + 4586 ], "__typename": [ 80 @@ -105302,10 +104927,10 @@ export default { }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4625 + 4598 ], "on_conflict": [ - 4632 + 4605 ], "__typename": [ 80 @@ -105313,13 +104938,13 @@ export default { }, "tournament_awards_on_conflict": { "constraint": [ - 4623 + 4596 ], "update_columns": [ - 4647 + 4620 ], "where": [ - 4622 + 4595 ], "__typename": [ 80 @@ -105330,34 +104955,34 @@ export default { 244 ], "award_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "custom_name": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "image_url": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "updated_at": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105365,7 +104990,7 @@ export default { }, "tournament_awards_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -105374,16 +104999,16 @@ export default { "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -105395,10 +105020,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -105417,10 +105042,10 @@ export default { }, "tournament_awards_stddev_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105439,10 +105064,10 @@ export default { }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105461,10 +105086,10 @@ export default { }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105472,7 +105097,7 @@ export default { }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4644 + 4617 ], "ordering": [ 315 @@ -105483,16 +105108,16 @@ export default { }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5111 + 5084 ], "created_at": [ - 4611 + 4584 ], "custom_name": [ 80 ], "id": [ - 5111 + 5084 ], "image_url": [ 80 @@ -105504,10 +105129,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "updated_at": [ - 4611 + 4584 ], "__typename": [ 80 @@ -105526,10 +105151,10 @@ export default { }, "tournament_awards_sum_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105538,13 +105163,13 @@ export default { "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4624 + 4597 ], "_set": [ - 4636 + 4609 ], "where": [ - 4622 + 4595 ], "__typename": [ 80 @@ -105563,10 +105188,10 @@ export default { }, "tournament_awards_var_pop_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105585,10 +105210,10 @@ export default { }, "tournament_awards_var_samp_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105607,10 +105232,10 @@ export default { }, "tournament_awards_variance_order_by": { "placement": [ - 3035 + 3008 ], "silhouette": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105621,13 +105246,13 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "feeding_brackets": [ - 4655, + 4628, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -105637,11 +105262,11 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], @@ -105649,37 +105274,37 @@ export default { 5 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_bracket": [ - 4655 + 4628 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "options": [ - 2699 + 2672 ], "parent_bracket": [ - 4655 + 4628 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -105688,10 +105313,10 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "scheduling_proposals": [ 1981, @@ -105738,28 +105363,28 @@ export default { } ], "stage": [ - 4872 + 4845 ], "team_1": [ - 5005 + 4978 ], "team_1_seed": [ 40 ], "team_2": [ - 5005 + 4978 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -105767,10 +105392,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4661 + 4634 ], "nodes": [ - 4655 + 4628 ], "__typename": [ 80 @@ -105778,13 +105403,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4658 + 4631 ], "bool_or": [ - 4659 + 4632 ], "count": [ - 4660 + 4633 ], "__typename": [ 80 @@ -105792,13 +105417,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4680 + 4653 ], "distinct": [ 5 ], "filter": [ - 4666 + 4639 ], "predicate": [ 6 @@ -105809,13 +105434,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4681 + 4654 ], "distinct": [ 5 ], "filter": [ - 4666 + 4639 ], "predicate": [ 6 @@ -105826,13 +105451,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4679 + 4652 ], "distinct": [ 5 ], "filter": [ - 4666 + 4639 ], "predicate": [ 41 @@ -105843,13 +105468,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4664 + 4637 ], "count": [ 40, { "columns": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -105858,31 +105483,31 @@ export default { } ], "max": [ - 4670 + 4643 ], "min": [ - 4672 + 4645 ], "stddev": [ - 4683 + 4656 ], "stddev_pop": [ - 4685 + 4658 ], "stddev_samp": [ - 4687 + 4660 ], "sum": [ - 4691 + 4664 ], "var_pop": [ - 4695 + 4668 ], "var_samp": [ - 4697 + 4670 ], "variance": [ - 4699 + 4672 ], "__typename": [ 80 @@ -105890,37 +105515,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4665 + 4638 ], "count": [ - 3035 + 3008 ], "max": [ - 4671 + 4644 ], "min": [ - 4673 + 4646 ], "stddev": [ - 4684 + 4657 ], "stddev_pop": [ - 4686 + 4659 ], "stddev_samp": [ - 4688 + 4661 ], "sum": [ - 4692 + 4665 ], "var_pop": [ - 4696 + 4669 ], "var_samp": [ - 4698 + 4671 ], "variance": [ - 4700 + 4673 ], "__typename": [ 80 @@ -105928,10 +105553,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4669 + 4642 ], "on_conflict": [ - 4676 + 4649 ], "__typename": [ 80 @@ -105959,19 +105584,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -105979,58 +105604,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4666 + 4639 ], "_not": [ - 4666 + 4639 ], "_or": [ - 4666 + 4639 ], "bye": [ 6 ], "created_at": [ - 4612 + 4585 ], "feeding_brackets": [ - 4666 + 4639 ], "finished": [ 6 ], "group": [ - 3034 + 3007 ], "id": [ - 5113 + 5086 ], "loser_bracket": [ - 4666 + 4639 ], "loser_parent_bracket_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_number": [ 41 ], "match_options_id": [ - 5113 + 5086 ], "options": [ - 2703 + 2676 ], "parent_bracket": [ - 4666 + 4639 ], "parent_bracket_id": [ - 5113 + 5086 ], "path": [ 82 @@ -106039,10 +105664,10 @@ export default { 41 ], "scheduled_at": [ - 4612 + 4585 ], "scheduled_eta": [ - 4612 + 4585 ], "scheduling_proposals": [ 1990 @@ -106051,28 +105676,28 @@ export default { 1983 ], "stage": [ - 4884 + 4857 ], "team_1": [ - 5014 + 4987 ], "team_1_seed": [ 41 ], "team_2": [ - 5014 + 4987 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5113 + 5086 ], "tournament_team_id_1": [ - 5113 + 5086 ], "tournament_team_id_2": [ - 5113 + 5086 ], "__typename": [ 80 @@ -106081,7 +105706,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3033 + 3006 ], "match_number": [ 40 @@ -106104,43 +105729,43 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "finished": [ 5 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_bracket": [ - 4675 + 4648 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "options": [ - 2710 + 2683 ], "parent_bracket": [ - 4675 + 4648 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -106149,37 +105774,37 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "scheduling_proposals": [ 1987 ], "stage": [ - 4896 + 4869 ], "team_1": [ - 5023 + 4996 ], "team_1_seed": [ 40 ], "team_2": [ - 5023 + 4996 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106187,28 +105812,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4611 + 4584 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -106217,10 +105842,10 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "team_1_seed": [ 40 @@ -106229,13 +105854,13 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106243,55 +105868,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 3035 + 3008 ], "group": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "loser_parent_bracket_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "parent_bracket_id": [ - 3035 + 3008 ], "path": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "scheduled_eta": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id_1": [ - 3035 + 3008 ], "tournament_team_id_2": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106299,28 +105924,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4611 + 4584 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -106329,10 +105954,10 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "team_1_seed": [ 40 @@ -106341,13 +105966,13 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106355,55 +105980,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 3035 + 3008 ], "group": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "loser_parent_bracket_id": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "parent_bracket_id": [ - 3035 + 3008 ], "path": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "scheduled_eta": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id_1": [ - 3035 + 3008 ], "tournament_team_id_2": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106414,7 +106039,7 @@ export default { 40 ], "returning": [ - 4655 + 4628 ], "__typename": [ 80 @@ -106422,10 +106047,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4669 + 4642 ], "on_conflict": [ - 4676 + 4649 ], "__typename": [ 80 @@ -106433,13 +106058,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4667 + 4640 ], "update_columns": [ - 4693 + 4666 ], "where": [ - 4666 + 4639 ], "__typename": [ 80 @@ -106447,88 +106072,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "feeding_brackets_aggregate": [ - 4662 + 4635 ], "finished": [ - 3035 + 3008 ], "group": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "loser_bracket": [ - 4677 + 4650 ], "loser_parent_bracket_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "options": [ - 2712 + 2685 ], "parent_bracket": [ - 4677 + 4650 ], "parent_bracket_id": [ - 3035 + 3008 ], "path": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "scheduled_at": [ - 3035 + 3008 ], "scheduled_eta": [ - 3035 + 3008 ], "scheduling_proposals_aggregate": [ 1986 ], "stage": [ - 4898 + 4871 ], "team_1": [ - 5025 + 4998 ], "team_1_seed": [ - 3035 + 3008 ], "team_2": [ - 5025 + 4998 ], "team_2_seed": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id_1": [ - 3035 + 3008 ], "tournament_team_id_2": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106536,7 +106161,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106550,31 +106175,31 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "finished": [ 5 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -106583,10 +106208,10 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "team_1_seed": [ 40 @@ -106595,13 +106220,13 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106629,19 +106254,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106669,19 +106294,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106709,19 +106334,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106729,7 +106354,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4690 + 4663 ], "ordering": [ 315 @@ -106743,31 +106368,31 @@ export default { 5 ], "created_at": [ - 4611 + 4584 ], "finished": [ 5 ], "group": [ - 3033 + 3006 ], "id": [ - 5111 + 5084 ], "loser_parent_bracket_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_number": [ 40 ], "match_options_id": [ - 5111 + 5084 ], "parent_bracket_id": [ - 5111 + 5084 ], "path": [ 80 @@ -106776,10 +106401,10 @@ export default { 40 ], "scheduled_at": [ - 4611 + 4584 ], "scheduled_eta": [ - 4611 + 4584 ], "team_1_seed": [ 40 @@ -106788,13 +106413,13 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id_1": [ - 5111 + 5084 ], "tournament_team_id_2": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106802,7 +106427,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 3033 + 3006 ], "match_number": [ 40 @@ -106822,19 +106447,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106843,13 +106468,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4668 + 4641 ], "_set": [ - 4682 + 4655 ], "where": [ - 4666 + 4639 ], "__typename": [ 80 @@ -106877,19 +106502,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106917,19 +106542,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106957,19 +106582,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 3035 + 3008 ], "match_number": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "team_1_seed": [ - 3035 + 3008 ], "team_2_seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -106983,10 +106608,10 @@ export default { 1309 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -106994,10 +106619,10 @@ export default { }, "tournament_categories_aggregate": { "aggregate": [ - 4705 + 4678 ], "nodes": [ - 4701 + 4674 ], "__typename": [ 80 @@ -107005,7 +106630,7 @@ export default { }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4704 + 4677 ], "__typename": [ 80 @@ -107013,13 +106638,13 @@ export default { }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4719 + 4692 ], "distinct": [ 5 ], "filter": [ - 4708 + 4681 ], "predicate": [ 41 @@ -107033,7 +106658,7 @@ export default { 40, { "columns": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "distinct": [ @@ -107042,10 +106667,10 @@ export default { } ], "max": [ - 4711 + 4684 ], "min": [ - 4713 + 4686 ], "__typename": [ 80 @@ -107053,13 +106678,13 @@ export default { }, "tournament_categories_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 4712 + 4685 ], "min": [ - 4714 + 4687 ], "__typename": [ 80 @@ -107067,10 +106692,10 @@ export default { }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4710 + 4683 ], "on_conflict": [ - 4716 + 4689 ], "__typename": [ 80 @@ -107078,13 +106703,13 @@ export default { }, "tournament_categories_bool_exp": { "_and": [ - 4708 + 4681 ], "_not": [ - 4708 + 4681 ], "_or": [ - 4708 + 4681 ], "category": [ 1315 @@ -107093,10 +106718,10 @@ export default { 1312 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -107111,10 +106736,10 @@ export default { 1320 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107122,7 +106747,7 @@ export default { }, "tournament_categories_max_fields": { "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107130,7 +106755,7 @@ export default { }, "tournament_categories_max_order_by": { "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107138,7 +106763,7 @@ export default { }, "tournament_categories_min_fields": { "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107146,7 +106771,7 @@ export default { }, "tournament_categories_min_order_by": { "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107157,7 +106782,7 @@ export default { 40 ], "returning": [ - 4701 + 4674 ], "__typename": [ 80 @@ -107165,13 +106790,13 @@ export default { }, "tournament_categories_on_conflict": { "constraint": [ - 4709 + 4682 ], "update_columns": [ - 4723 + 4696 ], "where": [ - 4708 + 4681 ], "__typename": [ 80 @@ -107179,16 +106804,16 @@ export default { }, "tournament_categories_order_by": { "category": [ - 3035 + 3008 ], "e_tournament_category": [ 1322 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107199,7 +106824,7 @@ export default { 1314 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107211,7 +106836,7 @@ export default { 1314 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107219,7 +106844,7 @@ export default { }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4722 + 4695 ], "ordering": [ 315 @@ -107233,7 +106858,7 @@ export default { 1314 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107242,10 +106867,10 @@ export default { "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4720 + 4693 ], "where": [ - 4708 + 4681 ], "__typename": [ 80 @@ -107253,19 +106878,19 @@ export default { }, "tournament_organizer_teams": { "created_at": [ - 4611 + 4584 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107273,10 +106898,10 @@ export default { }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4729 + 4702 ], "nodes": [ - 4725 + 4698 ], "__typename": [ 80 @@ -107284,7 +106909,7 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4728 + 4701 ], "__typename": [ 80 @@ -107292,13 +106917,13 @@ export default { }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4743 + 4716 ], "distinct": [ 5 ], "filter": [ - 4732 + 4705 ], "predicate": [ 41 @@ -107312,7 +106937,7 @@ export default { 40, { "columns": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -107321,10 +106946,10 @@ export default { } ], "max": [ - 4735 + 4708 ], "min": [ - 4737 + 4710 ], "__typename": [ 80 @@ -107332,13 +106957,13 @@ export default { }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 4736 + 4709 ], "min": [ - 4738 + 4711 ], "__typename": [ 80 @@ -107346,10 +106971,10 @@ export default { }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4734 + 4707 ], "on_conflict": [ - 4740 + 4713 ], "__typename": [ 80 @@ -107357,28 +106982,28 @@ export default { }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4732 + 4705 ], "_not": [ - 4732 + 4705 ], "_or": [ - 4732 + 4705 ], "created_at": [ - 4612 + 4585 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -107387,19 +107012,19 @@ export default { "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4611 + 4584 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107407,13 +107032,13 @@ export default { }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107421,13 +107046,13 @@ export default { }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107435,13 +107060,13 @@ export default { }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107449,13 +107074,13 @@ export default { }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107466,7 +107091,7 @@ export default { 40 ], "returning": [ - 4725 + 4698 ], "__typename": [ 80 @@ -107474,13 +107099,13 @@ export default { }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4733 + 4706 ], "update_columns": [ - 4747 + 4720 ], "where": [ - 4732 + 4705 ], "__typename": [ 80 @@ -107488,19 +107113,19 @@ export default { }, "tournament_organizer_teams_order_by": { "created_at": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107508,10 +107133,10 @@ export default { }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107520,13 +107145,13 @@ export default { "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107534,7 +107159,7 @@ export default { }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4746 + 4719 ], "ordering": [ 315 @@ -107545,13 +107170,13 @@ export default { }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107560,10 +107185,10 @@ export default { "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4744 + 4717 ], "where": [ - 4732 + 4705 ], "__typename": [ 80 @@ -107571,22 +107196,22 @@ export default { }, "tournament_organizers": { "organization_team": [ - 4562 + 4535 ], "organization_team_id": [ - 5111 + 5084 ], "organizer": [ - 3993 + 3966 ], "steam_id": [ 259 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107594,10 +107219,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4753 + 4726 ], "nodes": [ - 4749 + 4722 ], "__typename": [ 80 @@ -107605,7 +107230,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4752 + 4725 ], "__typename": [ 80 @@ -107613,13 +107238,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4770 + 4743 ], "distinct": [ 5 ], "filter": [ - 4758 + 4731 ], "predicate": [ 41 @@ -107630,13 +107255,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4756 + 4729 ], "count": [ 40, { "columns": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -107645,31 +107270,31 @@ export default { } ], "max": [ - 4762 + 4735 ], "min": [ - 4764 + 4737 ], "stddev": [ - 4772 + 4745 ], "stddev_pop": [ - 4774 + 4747 ], "stddev_samp": [ - 4776 + 4749 ], "sum": [ - 4780 + 4753 ], "var_pop": [ - 4784 + 4757 ], "var_samp": [ - 4786 + 4759 ], "variance": [ - 4788 + 4761 ], "__typename": [ 80 @@ -107677,37 +107302,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4757 + 4730 ], "count": [ - 3035 + 3008 ], "max": [ - 4763 + 4736 ], "min": [ - 4765 + 4738 ], "stddev": [ - 4773 + 4746 ], "stddev_pop": [ - 4775 + 4748 ], "stddev_samp": [ - 4777 + 4750 ], "sum": [ - 4781 + 4754 ], "var_pop": [ - 4785 + 4758 ], "var_samp": [ - 4787 + 4760 ], "variance": [ - 4789 + 4762 ], "__typename": [ 80 @@ -107715,10 +107340,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4761 + 4734 ], "on_conflict": [ - 4767 + 4740 ], "__typename": [ 80 @@ -107734,7 +107359,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107742,31 +107367,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4758 + 4731 ], "_not": [ - 4758 + 4731 ], "_or": [ - 4758 + 4731 ], "organization_team": [ - 4573 + 4546 ], "organization_team_id": [ - 5113 + 5086 ], "organizer": [ - 3997 + 3970 ], "steam_id": [ 261 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -107783,22 +107408,22 @@ export default { }, "tournament_organizers_insert_input": { "organization_team": [ - 4582 + 4555 ], "organization_team_id": [ - 5111 + 5084 ], "organizer": [ - 4004 + 3977 ], "steam_id": [ 259 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107806,13 +107431,13 @@ export default { }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5111 + 5084 ], "steam_id": [ 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107820,13 +107445,13 @@ export default { }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107834,13 +107459,13 @@ export default { }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5111 + 5084 ], "steam_id": [ 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107848,13 +107473,13 @@ export default { }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107865,7 +107490,7 @@ export default { 40 ], "returning": [ - 4749 + 4722 ], "__typename": [ 80 @@ -107873,13 +107498,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4759 + 4732 ], "update_columns": [ - 4782 + 4755 ], "where": [ - 4758 + 4731 ], "__typename": [ 80 @@ -107887,22 +107512,22 @@ export default { }, "tournament_organizers_order_by": { "organization_team": [ - 4584 + 4557 ], "organization_team_id": [ - 3035 + 3008 ], "organizer": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107913,7 +107538,7 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107922,13 +107547,13 @@ export default { "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5111 + 5084 ], "steam_id": [ 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -107944,7 +107569,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107960,7 +107585,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107976,7 +107601,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -107984,7 +107609,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4779 + 4752 ], "ordering": [ 315 @@ -107995,13 +107620,13 @@ export default { }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5111 + 5084 ], "steam_id": [ 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108017,7 +107642,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108026,13 +107651,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4760 + 4733 ], "_set": [ - 4771 + 4744 ], "where": [ - 4758 + 4731 ], "__typename": [ 80 @@ -108048,7 +107673,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108064,7 +107689,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108080,7 +107705,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108088,10 +107713,10 @@ export default { }, "tournament_prizes": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108103,10 +107728,10 @@ export default { 80 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108114,10 +107739,10 @@ export default { }, "tournament_prizes_aggregate": { "aggregate": [ - 4794 + 4767 ], "nodes": [ - 4790 + 4763 ], "__typename": [ 80 @@ -108125,7 +107750,7 @@ export default { }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4793 + 4766 ], "__typename": [ 80 @@ -108133,13 +107758,13 @@ export default { }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4811 + 4784 ], "distinct": [ 5 ], "filter": [ - 4799 + 4772 ], "predicate": [ 41 @@ -108150,13 +107775,13 @@ export default { }, "tournament_prizes_aggregate_fields": { "avg": [ - 4797 + 4770 ], "count": [ 40, { "columns": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -108165,31 +107790,31 @@ export default { } ], "max": [ - 4803 + 4776 ], "min": [ - 4805 + 4778 ], "stddev": [ - 4813 + 4786 ], "stddev_pop": [ - 4815 + 4788 ], "stddev_samp": [ - 4817 + 4790 ], "sum": [ - 4821 + 4794 ], "var_pop": [ - 4825 + 4798 ], "var_samp": [ - 4827 + 4800 ], "variance": [ - 4829 + 4802 ], "__typename": [ 80 @@ -108197,37 +107822,37 @@ export default { }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4798 + 4771 ], "count": [ - 3035 + 3008 ], "max": [ - 4804 + 4777 ], "min": [ - 4806 + 4779 ], "stddev": [ - 4814 + 4787 ], "stddev_pop": [ - 4816 + 4789 ], "stddev_samp": [ - 4818 + 4791 ], "sum": [ - 4822 + 4795 ], "var_pop": [ - 4826 + 4799 ], "var_samp": [ - 4828 + 4801 ], "variance": [ - 4830 + 4803 ], "__typename": [ 80 @@ -108235,10 +107860,10 @@ export default { }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4802 + 4775 ], "on_conflict": [ - 4808 + 4781 ], "__typename": [ 80 @@ -108254,7 +107879,7 @@ export default { }, "tournament_prizes_avg_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108262,19 +107887,19 @@ export default { }, "tournament_prizes_bool_exp": { "_and": [ - 4799 + 4772 ], "_not": [ - 4799 + 4772 ], "_or": [ - 4799 + 4772 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "order": [ 41 @@ -108286,10 +107911,10 @@ export default { 82 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -108306,10 +107931,10 @@ export default { }, "tournament_prizes_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108321,10 +107946,10 @@ export default { 80 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108332,10 +107957,10 @@ export default { }, "tournament_prizes_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108347,7 +107972,7 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108355,22 +107980,22 @@ export default { }, "tournament_prizes_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "place": [ - 3035 + 3008 ], "prize": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108378,10 +108003,10 @@ export default { }, "tournament_prizes_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108393,7 +108018,7 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108401,22 +108026,22 @@ export default { }, "tournament_prizes_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "place": [ - 3035 + 3008 ], "prize": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108427,7 +108052,7 @@ export default { 40 ], "returning": [ - 4790 + 4763 ], "__typename": [ 80 @@ -108435,13 +108060,13 @@ export default { }, "tournament_prizes_on_conflict": { "constraint": [ - 4800 + 4773 ], "update_columns": [ - 4823 + 4796 ], "where": [ - 4799 + 4772 ], "__typename": [ 80 @@ -108449,25 +108074,25 @@ export default { }, "tournament_prizes_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "place": [ - 3035 + 3008 ], "prize": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108475,7 +108100,7 @@ export default { }, "tournament_prizes_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108484,10 +108109,10 @@ export default { "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108499,7 +108124,7 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108515,7 +108140,7 @@ export default { }, "tournament_prizes_stddev_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108531,7 +108156,7 @@ export default { }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108547,7 +108172,7 @@ export default { }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108555,7 +108180,7 @@ export default { }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4820 + 4793 ], "ordering": [ 315 @@ -108566,10 +108191,10 @@ export default { }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "order": [ 40 @@ -108581,7 +108206,7 @@ export default { 80 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108597,7 +108222,7 @@ export default { }, "tournament_prizes_sum_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108606,13 +108231,13 @@ export default { "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4801 + 4774 ], "_set": [ - 4812 + 4785 ], "where": [ - 4799 + 4772 ], "__typename": [ 80 @@ -108628,7 +108253,7 @@ export default { }, "tournament_prizes_var_pop_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108644,7 +108269,7 @@ export default { }, "tournament_prizes_var_samp_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108660,7 +108285,7 @@ export default { }, "tournament_prizes_variance_order_by": { "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108668,28 +108293,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "stage": [ - 4872 + 4845 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108697,10 +108322,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4835 + 4808 ], "nodes": [ - 4831 + 4804 ], "__typename": [ 80 @@ -108708,7 +108333,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4834 + 4807 ], "__typename": [ 80 @@ -108716,13 +108341,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4852 + 4825 ], "distinct": [ 5 ], "filter": [ - 4840 + 4813 ], "predicate": [ 41 @@ -108733,13 +108358,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4838 + 4811 ], "count": [ 40, { "columns": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -108748,31 +108373,31 @@ export default { } ], "max": [ - 4844 + 4817 ], "min": [ - 4846 + 4819 ], "stddev": [ - 4854 + 4827 ], "stddev_pop": [ - 4856 + 4829 ], "stddev_samp": [ - 4858 + 4831 ], "sum": [ - 4862 + 4835 ], "var_pop": [ - 4866 + 4839 ], "var_samp": [ - 4868 + 4841 ], "variance": [ - 4870 + 4843 ], "__typename": [ 80 @@ -108780,37 +108405,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4839 + 4812 ], "count": [ - 3035 + 3008 ], "max": [ - 4845 + 4818 ], "min": [ - 4847 + 4820 ], "stddev": [ - 4855 + 4828 ], "stddev_pop": [ - 4857 + 4830 ], "stddev_samp": [ - 4859 + 4832 ], "sum": [ - 4863 + 4836 ], "var_pop": [ - 4867 + 4840 ], "var_samp": [ - 4869 + 4842 ], "variance": [ - 4871 + 4844 ], "__typename": [ 80 @@ -108818,10 +108443,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4843 + 4816 ], "on_conflict": [ - 4849 + 4822 ], "__typename": [ 80 @@ -108837,7 +108462,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108845,37 +108470,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4840 + 4813 ], "_not": [ - 4840 + 4813 ], "_or": [ - 4840 + 4813 ], "closes_at": [ - 4612 + 4585 ], "created_at": [ - 4612 + 4585 ], "default_match_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "opens_at": [ - 4612 + 4585 ], "round": [ 41 ], "stage": [ - 4884 + 4857 ], "tournament_stage_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -108892,28 +108517,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "stage": [ - 4896 + 4869 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108921,25 +108546,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108947,25 +108572,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -108973,25 +108598,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -108999,25 +108624,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109028,7 +108653,7 @@ export default { 40 ], "returning": [ - 4831 + 4804 ], "__typename": [ 80 @@ -109036,13 +108661,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4841 + 4814 ], "update_columns": [ - 4864 + 4837 ], "where": [ - 4840 + 4813 ], "__typename": [ 80 @@ -109050,28 +108675,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "default_match_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "opens_at": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "stage": [ - 4898 + 4871 ], "tournament_stage_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109079,7 +108704,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -109088,25 +108713,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -109122,7 +108747,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109138,7 +108763,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109154,7 +108779,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109162,7 +108787,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4861 + 4834 ], "ordering": [ 315 @@ -109173,25 +108798,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4611 + 4584 ], "created_at": [ - 4611 + 4584 ], "default_match_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "opens_at": [ - 4611 + 4584 ], "round": [ 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -109207,7 +108832,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109216,13 +108841,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4842 + 4815 ], "_set": [ - 4853 + 4826 ], "where": [ - 4840 + 4813 ], "__typename": [ 80 @@ -109238,7 +108863,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109254,7 +108879,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109270,7 +108895,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109278,10 +108903,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4655, + 4628, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -109291,19 +108916,19 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "brackets_aggregate": [ - 4656, + 4629, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -109313,11 +108938,11 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], @@ -109337,10 +108962,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -109352,16 +108977,16 @@ export default { 40 ], "options": [ - 2699 + 2672 ], "order": [ 40 ], "results": [ - 5853, + 5826, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -109371,19 +108996,19 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], "results_aggregate": [ - 5854, + 5827, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -109393,11 +109018,11 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], @@ -109416,19 +109041,19 @@ export default { 5 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "type": [ 1335 ], "windows": [ - 4831, + 4804, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -109438,19 +109063,19 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], "windows_aggregate": [ - 4832, + 4805, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -109460,11 +109085,11 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], @@ -109474,10 +109099,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4878 + 4851 ], "nodes": [ - 4872 + 4845 ], "__typename": [ 80 @@ -109485,13 +109110,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4875 + 4848 ], "bool_or": [ - 4876 + 4849 ], "count": [ - 4877 + 4850 ], "__typename": [ 80 @@ -109499,13 +109124,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4902 + 4875 ], "distinct": [ 5 ], "filter": [ - 4884 + 4857 ], "predicate": [ 6 @@ -109516,13 +109141,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4903 + 4876 ], "distinct": [ 5 ], "filter": [ - 4884 + 4857 ], "predicate": [ 6 @@ -109533,13 +109158,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4901 + 4874 ], "distinct": [ 5 ], "filter": [ - 4884 + 4857 ], "predicate": [ 41 @@ -109550,13 +109175,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4882 + 4855 ], "count": [ 40, { "columns": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "distinct": [ @@ -109565,31 +109190,31 @@ export default { } ], "max": [ - 4891 + 4864 ], "min": [ - 4893 + 4866 ], "stddev": [ - 4905 + 4878 ], "stddev_pop": [ - 4907 + 4880 ], "stddev_samp": [ - 4909 + 4882 ], "sum": [ - 4913 + 4886 ], "var_pop": [ - 4917 + 4890 ], "var_samp": [ - 4919 + 4892 ], "variance": [ - 4921 + 4894 ], "__typename": [ 80 @@ -109597,37 +109222,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4883 + 4856 ], "count": [ - 3035 + 3008 ], "max": [ - 4892 + 4865 ], "min": [ - 4894 + 4867 ], "stddev": [ - 4906 + 4879 ], "stddev_pop": [ - 4908 + 4881 ], "stddev_samp": [ - 4910 + 4883 ], "sum": [ - 4914 + 4887 ], "var_pop": [ - 4918 + 4891 ], "var_samp": [ - 4920 + 4893 ], "variance": [ - 4922 + 4895 ], "__typename": [ 80 @@ -109643,10 +109268,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4890 + 4863 ], "on_conflict": [ - 4897 + 4870 ], "__typename": [ 80 @@ -109683,28 +109308,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -109712,19 +109337,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4884 + 4857 ], "_not": [ - 4884 + 4857 ], "_or": [ - 4884 + 4857 ], "brackets": [ - 4666 + 4639 ], "brackets_aggregate": [ - 4657 + 4630 ], "decider_best_of": [ 41 @@ -109742,10 +109367,10 @@ export default { 41 ], "id": [ - 5113 + 5086 ], "match_options_id": [ - 5113 + 5086 ], "max_rounds": [ 41 @@ -109757,16 +109382,16 @@ export default { 41 ], "options": [ - 2703 + 2676 ], "order": [ 41 ], "results": [ - 5872 + 5845 ], "results_aggregate": [ - 5855 + 5828 ], "settings": [ 1846 @@ -109778,19 +109403,19 @@ export default { 6 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "type": [ 1336 ], "windows": [ - 4840 + 4813 ], "windows_aggregate": [ - 4833 + 4806 ], "__typename": [ 80 @@ -109852,7 +109477,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4663 + 4636 ], "decider_best_of": [ 40 @@ -109870,10 +109495,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -109885,13 +109510,13 @@ export default { 40 ], "options": [ - 2710 + 2683 ], "order": [ 40 ], "results": [ - 5869 + 5842 ], "settings": [ 1844 @@ -109903,16 +109528,16 @@ export default { 5 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "type": [ 1335 ], "windows": [ - 4837 + 4810 ], "__typename": [ 80 @@ -109932,10 +109557,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -109950,7 +109575,7 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -109958,37 +109583,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110008,10 +109633,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -110026,7 +109651,7 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -110034,37 +109659,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110075,7 +109700,7 @@ export default { 40 ], "returning": [ - 4872 + 4845 ], "__typename": [ 80 @@ -110083,10 +109708,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4890 + 4863 ], "on_conflict": [ - 4897 + 4870 ], "__typename": [ 80 @@ -110094,13 +109719,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4885 + 4858 ], "update_columns": [ - 4915 + 4888 ], "where": [ - 4884 + 4857 ], "__typename": [ 80 @@ -110108,67 +109733,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4662 + 4635 ], "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "e_tournament_stage_type": [ 1343 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "options": [ - 2712 + 2685 ], "order": [ - 3035 + 3008 ], "results_aggregate": [ - 5868 + 5841 ], "settings": [ - 3035 + 3008 ], "swiss_no_elimination": [ - 3035 + 3008 ], "third_place_match": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "windows_aggregate": [ - 4836 + 4809 ], "__typename": [ 80 @@ -110176,7 +109801,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -110207,10 +109832,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -110234,7 +109859,7 @@ export default { 5 ], "tournament_id": [ - 5111 + 5084 ], "type": [ 1335 @@ -110274,28 +109899,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110332,28 +109957,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110390,28 +110015,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110419,7 +110044,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4912 + 4885 ], "ordering": [ 315 @@ -110442,10 +110067,10 @@ export default { 40 ], "id": [ - 5111 + 5084 ], "match_options_id": [ - 5111 + 5084 ], "max_rounds": [ 40 @@ -110469,7 +110094,7 @@ export default { 5 ], "tournament_id": [ - 5111 + 5084 ], "type": [ 1335 @@ -110509,28 +110134,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110539,28 +110164,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4880 + 4853 ], "_delete_at_path": [ - 4886 + 4859 ], "_delete_elem": [ - 4887 + 4860 ], "_delete_key": [ - 4888 + 4861 ], "_inc": [ - 4889 + 4862 ], "_prepend": [ - 4900 + 4873 ], "_set": [ - 4904 + 4877 ], "where": [ - 4884 + 4857 ], "__typename": [ 80 @@ -110597,28 +110222,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110655,28 +110280,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110713,28 +110338,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3035 + 3008 ], "default_best_of": [ - 3035 + 3008 ], "final_map_advantage": [ - 3035 + 3008 ], "groups": [ - 3035 + 3008 ], "max_rounds": [ - 3035 + 3008 ], "max_teams": [ - 3035 + 3008 ], "min_teams": [ - 3035 + 3008 ], "order": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110742,28 +110367,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by": [ - 3993 + 3966 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 ], "team": [ - 5005 + 4978 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -110771,10 +110396,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4927 + 4900 ], "nodes": [ - 4923 + 4896 ], "__typename": [ 80 @@ -110782,7 +110407,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4926 + 4899 ], "__typename": [ 80 @@ -110790,13 +110415,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4944 + 4917 ], "distinct": [ 5 ], "filter": [ - 4932 + 4905 ], "predicate": [ 41 @@ -110807,13 +110432,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4930 + 4903 ], "count": [ 40, { "columns": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -110822,31 +110447,31 @@ export default { } ], "max": [ - 4936 + 4909 ], "min": [ - 4938 + 4911 ], "stddev": [ - 4946 + 4919 ], "stddev_pop": [ - 4948 + 4921 ], "stddev_samp": [ - 4950 + 4923 ], "sum": [ - 4954 + 4927 ], "var_pop": [ - 4958 + 4931 ], "var_samp": [ - 4960 + 4933 ], "variance": [ - 4962 + 4935 ], "__typename": [ 80 @@ -110854,37 +110479,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4931 + 4904 ], "count": [ - 3035 + 3008 ], "max": [ - 4937 + 4910 ], "min": [ - 4939 + 4912 ], "stddev": [ - 4947 + 4920 ], "stddev_pop": [ - 4949 + 4922 ], "stddev_samp": [ - 4951 + 4924 ], "sum": [ - 4955 + 4928 ], "var_pop": [ - 4959 + 4932 ], "var_samp": [ - 4961 + 4934 ], "variance": [ - 4963 + 4936 ], "__typename": [ 80 @@ -110892,10 +110517,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4935 + 4908 ], "on_conflict": [ - 4941 + 4914 ], "__typename": [ 80 @@ -110914,10 +110539,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -110925,37 +110550,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4932 + 4905 ], "_not": [ - 4932 + 4905 ], "_or": [ - 4932 + 4905 ], "created_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "invited_by": [ - 3997 + 3970 ], "invited_by_player_steam_id": [ 261 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 ], "team": [ - 5014 + 4987 ], "tournament_team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -110975,28 +110600,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by": [ - 4004 + 3977 ], "invited_by_player_steam_id": [ 259 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 ], "team": [ - 5023 + 4996 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111004,10 +110629,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -111016,7 +110641,7 @@ export default { 259 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111024,19 +110649,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111044,10 +110669,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -111056,7 +110681,7 @@ export default { 259 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111064,19 +110689,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111087,7 +110712,7 @@ export default { 40 ], "returning": [ - 4923 + 4896 ], "__typename": [ 80 @@ -111095,13 +110720,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4933 + 4906 ], "update_columns": [ - 4956 + 4929 ], "where": [ - 4932 + 4905 ], "__typename": [ 80 @@ -111109,28 +110734,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invited_by": [ - 4006 + 3979 ], "invited_by_player_steam_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "team": [ - 5025 + 4998 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111138,7 +110763,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111147,10 +110772,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -111159,7 +110784,7 @@ export default { 259 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111178,10 +110803,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111200,10 +110825,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111222,10 +110847,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111233,7 +110858,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4953 + 4926 ], "ordering": [ 315 @@ -111244,10 +110869,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invited_by_player_steam_id": [ 259 @@ -111256,7 +110881,7 @@ export default { 259 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111275,10 +110900,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111287,13 +110912,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4934 + 4907 ], "_set": [ - 4945 + 4918 ], "where": [ - 4932 + 4905 ], "__typename": [ 80 @@ -111312,10 +110937,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111334,10 +110959,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111356,10 +110981,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111370,7 +110995,7 @@ export default { 1248 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -111379,16 +111004,16 @@ export default { 1253 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team": [ - 5005 + 4978 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111396,10 +111021,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4968 + 4941 ], "nodes": [ - 4964 + 4937 ], "__typename": [ 80 @@ -111407,7 +111032,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4967 + 4940 ], "__typename": [ 80 @@ -111415,13 +111040,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4985 + 4958 ], "distinct": [ 5 ], "filter": [ - 4973 + 4946 ], "predicate": [ 41 @@ -111432,13 +111057,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4971 + 4944 ], "count": [ 40, { "columns": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -111447,31 +111072,31 @@ export default { } ], "max": [ - 4977 + 4950 ], "min": [ - 4979 + 4952 ], "stddev": [ - 4987 + 4960 ], "stddev_pop": [ - 4989 + 4962 ], "stddev_samp": [ - 4991 + 4964 ], "sum": [ - 4995 + 4968 ], "var_pop": [ - 4999 + 4972 ], "var_samp": [ - 5001 + 4974 ], "variance": [ - 5003 + 4976 ], "__typename": [ 80 @@ -111479,37 +111104,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4972 + 4945 ], "count": [ - 3035 + 3008 ], "max": [ - 4978 + 4951 ], "min": [ - 4980 + 4953 ], "stddev": [ - 4988 + 4961 ], "stddev_pop": [ - 4990 + 4963 ], "stddev_samp": [ - 4992 + 4965 ], "sum": [ - 4996 + 4969 ], "var_pop": [ - 5000 + 4973 ], "var_samp": [ - 5002 + 4975 ], "variance": [ - 5004 + 4977 ], "__typename": [ 80 @@ -111517,10 +111142,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4976 + 4949 ], "on_conflict": [ - 4982 + 4955 ], "__typename": [ 80 @@ -111536,7 +111161,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111544,19 +111169,19 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4973 + 4946 ], "_not": [ - 4973 + 4946 ], "_or": [ - 4973 + 4946 ], "e_team_role": [ 1251 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -111565,16 +111190,16 @@ export default { 1254 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "tournament_team": [ - 5014 + 4987 ], "tournament_team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -111594,7 +111219,7 @@ export default { 1259 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -111603,16 +111228,16 @@ export default { 1253 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team": [ - 5023 + 4996 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111623,10 +111248,10 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111634,13 +111259,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111651,10 +111276,10 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111662,13 +111287,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111679,7 +111304,7 @@ export default { 40 ], "returning": [ - 4964 + 4937 ], "__typename": [ 80 @@ -111687,13 +111312,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4974 + 4947 ], "update_columns": [ - 4997 + 4970 ], "where": [ - 4973 + 4946 ], "__typename": [ 80 @@ -111704,25 +111329,25 @@ export default { 1261 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "role": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team": [ - 5025 + 4998 ], "tournament_team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111733,7 +111358,7 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111748,10 +111373,10 @@ export default { 1253 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111767,7 +111392,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111783,7 +111408,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111799,7 +111424,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111807,7 +111432,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4994 + 4967 ], "ordering": [ 315 @@ -111824,10 +111449,10 @@ export default { 1253 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -111843,7 +111468,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111852,13 +111477,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4975 + 4948 ], "_set": [ - 4986 + 4959 ], "where": [ - 4973 + 4946 ], "__typename": [ 80 @@ -111874,7 +111499,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111890,7 +111515,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111906,7 +111531,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -111917,28 +111542,28 @@ export default { 5 ], "captain": [ - 3993 + 3966 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "creator": [ - 3993 + 3966 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invites": [ - 4923, + 4896, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111948,19 +111573,19 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], "invites_aggregate": [ - 4924, + 4897, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -111970,11 +111595,11 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], @@ -111985,13 +111610,13 @@ export default { 259 ], "results": [ - 5853 + 5826 ], "roster": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112001,19 +111626,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "roster_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112023,11 +111648,11 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], @@ -112038,16 +111663,16 @@ export default { 80 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112055,10 +111680,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 5009 + 4982 ], "nodes": [ - 5005 + 4978 ], "__typename": [ 80 @@ -112066,7 +111691,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5008 + 4981 ], "__typename": [ 80 @@ -112074,13 +111699,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5027 + 5000 ], "distinct": [ 5 ], "filter": [ - 5014 + 4987 ], "predicate": [ 41 @@ -112091,13 +111716,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 5012 + 4985 ], "count": [ 40, { "columns": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "distinct": [ @@ -112106,31 +111731,31 @@ export default { } ], "max": [ - 5018 + 4991 ], "min": [ - 5020 + 4993 ], "stddev": [ - 5029 + 5002 ], "stddev_pop": [ - 5031 + 5004 ], "stddev_samp": [ - 5033 + 5006 ], "sum": [ - 5037 + 5010 ], "var_pop": [ - 5041 + 5014 ], "var_samp": [ - 5043 + 5016 ], "variance": [ - 5045 + 5018 ], "__typename": [ 80 @@ -112138,37 +111763,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 5013 + 4986 ], "count": [ - 3035 + 3008 ], "max": [ - 5019 + 4992 ], "min": [ - 5021 + 4994 ], "stddev": [ - 5030 + 5003 ], "stddev_pop": [ - 5032 + 5005 ], "stddev_samp": [ - 5034 + 5007 ], "sum": [ - 5038 + 5011 ], "var_pop": [ - 5042 + 5015 ], "var_samp": [ - 5044 + 5017 ], "variance": [ - 5046 + 5019 ], "__typename": [ 80 @@ -112176,10 +111801,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5017 + 4990 ], "on_conflict": [ - 5024 + 4997 ], "__typename": [ 80 @@ -112201,13 +111826,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112215,40 +111840,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 5014 + 4987 ], "_not": [ - 5014 + 4987 ], "_or": [ - 5014 + 4987 ], "can_manage": [ 6 ], "captain": [ - 3997 + 3970 ], "captain_steam_id": [ 261 ], "created_at": [ - 4612 + 4585 ], "creator": [ - 3997 + 3970 ], "eligible_at": [ - 4612 + 4585 ], "id": [ - 5113 + 5086 ], "invites": [ - 4932 + 4905 ], "invites_aggregate": [ - 4925 + 4898 ], "name": [ 82 @@ -112257,13 +111882,13 @@ export default { 261 ], "results": [ - 5872 + 5845 ], "roster": [ - 4973 + 4946 ], "roster_aggregate": [ - 4966 + 4939 ], "seed": [ 41 @@ -112272,16 +111897,16 @@ export default { 82 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -112304,25 +111929,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 4004 + 3977 ], "captain_steam_id": [ 259 ], "created_at": [ - 4611 + 4584 ], "creator": [ - 4004 + 3977 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "invites": [ - 4929 + 4902 ], "name": [ 80 @@ -112331,10 +111956,10 @@ export default { 259 ], "results": [ - 5881 + 5854 ], "roster": [ - 4970 + 4943 ], "seed": [ 40 @@ -112343,16 +111968,16 @@ export default { 80 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112363,13 +111988,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -112384,10 +112009,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112395,34 +112020,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "eligible_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "short_name": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112433,13 +112058,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -112454,10 +112079,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112465,34 +112090,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "eligible_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "short_name": [ - 3035 + 3008 ], "team_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112503,7 +112128,7 @@ export default { 40 ], "returning": [ - 5005 + 4978 ], "__typename": [ 80 @@ -112511,10 +112136,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5017 + 4990 ], "on_conflict": [ - 5024 + 4997 ], "__typename": [ 80 @@ -112522,13 +112147,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 5015 + 4988 ], "update_columns": [ - 5039 + 5012 ], "where": [ - 5014 + 4987 ], "__typename": [ 80 @@ -112536,58 +112161,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 3035 + 3008 ], "captain": [ - 4006 + 3979 ], "captain_steam_id": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "creator": [ - 4006 + 3979 ], "eligible_at": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "invites_aggregate": [ - 4928 + 4901 ], "name": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "results": [ - 5883 + 5856 ], "roster_aggregate": [ - 4969 + 4942 ], "seed": [ - 3035 + 3008 ], "short_name": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112595,7 +112220,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112607,13 +112232,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -112628,10 +112253,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112653,13 +112278,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112681,13 +112306,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112709,13 +112334,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112723,7 +112348,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5036 + 5009 ], "ordering": [ 315 @@ -112737,13 +112362,13 @@ export default { 259 ], "created_at": [ - 4611 + 4584 ], "eligible_at": [ - 4611 + 4584 ], "id": [ - 5111 + 5084 ], "name": [ 80 @@ -112758,10 +112383,10 @@ export default { 80 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -112783,13 +112408,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112798,13 +112423,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5016 + 4989 ], "_set": [ - 5028 + 5001 ], "where": [ - 5014 + 4987 ], "__typename": [ 80 @@ -112826,13 +112451,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112854,13 +112479,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112882,13 +112507,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3035 + 3008 ], "owner_steam_id": [ - 3035 + 3008 ], "seed": [ - 3035 + 3008 ], "__typename": [ 80 @@ -112896,16 +112521,16 @@ export default { }, "tournaments": { "admin": [ - 3993 + 3966 ], "auto_start": [ 5 ], "award_configs": [ - 4613, + 4586, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -112915,19 +112540,19 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "award_configs_aggregate": [ - 4614, + 4587, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -112937,11 +112562,11 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], @@ -113020,10 +112645,10 @@ export default { 5 ], "categories": [ - 4701, + 4674, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -113033,19 +112658,19 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "categories_aggregate": [ - 4702, + 4675, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -113055,16 +112680,16 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -113130,7 +112755,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_league": [ 5 @@ -113157,7 +112782,7 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -113169,16 +112794,16 @@ export default { 80 ], "options": [ - 2699 + 2672 ], "organizer_steam_id": [ 259 ], "organizer_teams": [ - 4725, + 4698, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -113188,19 +112813,19 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "organizer_teams_aggregate": [ - 4726, + 4699, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -113210,19 +112835,19 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "organizers": [ - 4749, + 4722, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -113232,19 +112857,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "organizers_aggregate": [ - 4750, + 4723, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -113254,19 +112879,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "player_stats": [ - 5964, + 5937, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -113276,19 +112901,19 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], "player_stats_aggregate": [ - 5965, + 5938, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -113298,19 +112923,19 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], "prizes": [ - 4790, + 4763, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -113320,19 +112945,19 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "prizes_aggregate": [ - 4791, + 4764, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -113342,19 +112967,19 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "results": [ - 5913, + 5886, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -113364,19 +112989,19 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "results_aggregate": [ - 5914, + 5887, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -113386,19 +113011,19 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "rosters": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -113408,19 +113033,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "rosters_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -113430,11 +113055,11 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], @@ -113442,10 +113067,10 @@ export default { 80 ], "stages": [ - 4872, + 4845, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -113455,19 +113080,19 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "stages_aggregate": [ - 4873, + 4846, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -113477,25 +113102,25 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "start": [ - 4611 + 4584 ], "status": [ 1356 ], "teams": [ - 5005, + 4978, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -113505,19 +113130,19 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "teams_aggregate": [ - 5006, + 4979, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -113527,11 +113152,11 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], @@ -113541,10 +113166,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 5063 + 5036 ], "nodes": [ - 5047 + 5020 ], "__typename": [ 80 @@ -113552,37 +113177,37 @@ export default { }, "tournaments_aggregate_bool_exp": { "avg": [ - 5050 + 5023 ], "bool_and": [ - 5051 + 5024 ], "bool_or": [ - 5052 + 5025 ], "corr": [ - 5053 + 5026 ], "count": [ - 5055 + 5028 ], "covar_samp": [ - 5056 + 5029 ], "max": [ - 5058 + 5031 ], "min": [ - 5059 + 5032 ], "stddev_samp": [ - 5060 + 5033 ], "sum": [ - 5061 + 5034 ], "var_samp": [ - 5062 + 5035 ], "__typename": [ 80 @@ -113590,13 +113215,13 @@ export default { }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5082 + 5055 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113607,13 +113232,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5083 + 5056 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 6 @@ -113624,13 +113249,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5084 + 5057 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 6 @@ -113641,13 +113266,13 @@ export default { }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5054 + 5027 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113658,10 +113283,10 @@ export default { }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5085 + 5058 ], "Y": [ - 5085 + 5058 ], "__typename": [ 80 @@ -113669,13 +113294,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5081 + 5054 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 41 @@ -113686,13 +113311,13 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5057 + 5030 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113703,10 +113328,10 @@ export default { }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5086 + 5059 ], "Y": [ - 5086 + 5059 ], "__typename": [ 80 @@ -113714,13 +113339,13 @@ export default { }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5087 + 5060 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113731,13 +113356,13 @@ export default { }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5088 + 5061 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113748,13 +113373,13 @@ export default { }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5089 + 5062 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113765,13 +113390,13 @@ export default { }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5090 + 5063 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113782,13 +113407,13 @@ export default { }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5091 + 5064 ], "distinct": [ 5 ], "filter": [ - 5068 + 5041 ], "predicate": [ 1692 @@ -113799,13 +113424,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 5066 + 5039 ], "count": [ 40, { "columns": [ - 5081, + 5054, "[tournaments_select_column!]" ], "distinct": [ @@ -113814,31 +113439,31 @@ export default { } ], "max": [ - 5072 + 5045 ], "min": [ - 5074 + 5047 ], "stddev": [ - 5093 + 5066 ], "stddev_pop": [ - 5095 + 5068 ], "stddev_samp": [ - 5097 + 5070 ], "sum": [ - 5101 + 5074 ], "var_pop": [ - 5105 + 5078 ], "var_samp": [ - 5107 + 5080 ], "variance": [ - 5109 + 5082 ], "__typename": [ 80 @@ -113846,37 +113471,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 5067 + 5040 ], "count": [ - 3035 + 3008 ], "max": [ - 5073 + 5046 ], "min": [ - 5075 + 5048 ], "stddev": [ - 5094 + 5067 ], "stddev_pop": [ - 5096 + 5069 ], "stddev_samp": [ - 5098 + 5071 ], "sum": [ - 5102 + 5075 ], "var_pop": [ - 5106 + 5079 ], "var_samp": [ - 5108 + 5081 ], "variance": [ - 5110 + 5083 ], "__typename": [ 80 @@ -113884,10 +113509,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 5071 + 5044 ], "on_conflict": [ - 5078 + 5051 ], "__typename": [ 80 @@ -113915,13 +113540,13 @@ export default { }, "tournaments_avg_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -113929,25 +113554,25 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 5068 + 5041 ], "_not": [ - 5068 + 5041 ], "_or": [ - 5068 + 5041 ], "admin": [ - 3997 + 3970 ], "auto_start": [ 6 ], "award_configs": [ - 4622 + 4595 ], "award_configs_aggregate": [ - 4615 + 4588 ], "awards": [ 199 @@ -113986,13 +113611,13 @@ export default { 6 ], "categories": [ - 4708 + 4681 ], "categories_aggregate": [ - 4703 + 4676 ], "created_at": [ - 4612 + 4585 ], "description": [ 82 @@ -114058,7 +113683,7 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "is_league": [ 6 @@ -114085,7 +113710,7 @@ export default { 1692 ], "match_options_id": [ - 5113 + 5086 ], "max_players_per_lineup": [ 41 @@ -114097,67 +113722,67 @@ export default { 82 ], "options": [ - 2703 + 2676 ], "organizer_steam_id": [ 261 ], "organizer_teams": [ - 4732 + 4705 ], "organizer_teams_aggregate": [ - 4727 + 4700 ], "organizers": [ - 4758 + 4731 ], "organizers_aggregate": [ - 4751 + 4724 ], "player_stats": [ - 5983 + 5956 ], "player_stats_aggregate": [ - 5966 + 5939 ], "prizes": [ - 4799 + 4772 ], "prizes_aggregate": [ - 4792 + 4765 ], "results": [ - 5932 + 5905 ], "results_aggregate": [ - 5915 + 5888 ], "rosters": [ - 4973 + 4946 ], "rosters_aggregate": [ - 4966 + 4939 ], "scheduling_mode": [ 82 ], "stages": [ - 4884 + 4857 ], "stages_aggregate": [ - 4874 + 4847 ], "start": [ - 4612 + 4585 ], "status": [ 1357 ], "teams": [ - 5014 + 4987 ], "teams_aggregate": [ - 5007 + 4980 ], "__typename": [ 80 @@ -114180,13 +113805,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 4004 + 3977 ], "auto_start": [ 5 ], "award_configs": [ - 4619 + 4592 ], "awards": [ 196 @@ -114198,10 +113823,10 @@ export default { 80 ], "categories": [ - 4707 + 4680 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -114264,7 +113889,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_league": [ 5 @@ -114285,49 +113910,49 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "name": [ 80 ], "options": [ - 2710 + 2683 ], "organizer_steam_id": [ 259 ], "organizer_teams": [ - 4731 + 4704 ], "organizers": [ - 4755 + 4728 ], "player_stats": [ - 5980 + 5953 ], "prizes": [ - 4796 + 4769 ], "results": [ - 5929 + 5902 ], "rosters": [ - 4970 + 4943 ], "scheduling_mode": [ 80 ], "stages": [ - 4881 + 4854 ], "start": [ - 4611 + 4584 ], "status": [ 1356 ], "teams": [ - 5011 + 4984 ], "__typename": [ 80 @@ -114338,7 +113963,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -114356,7 +113981,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "latitude": [ 1691 @@ -114371,7 +113996,7 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -114389,7 +114014,7 @@ export default { 80 ], "start": [ - 4611 + 4584 ], "__typename": [ 80 @@ -114397,55 +114022,55 @@ export default { }, "tournaments_max_order_by": { "banner": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "discord_guild_id": [ - 3035 + 3008 ], "discord_role_id": [ - 3035 + 3008 ], "discord_webhook": [ - 3035 + 3008 ], "homepage": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "latitude": [ - 3035 + 3008 ], "location": [ - 3035 + 3008 ], "logo": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "scheduling_mode": [ - 3035 + 3008 ], "start": [ - 3035 + 3008 ], "__typename": [ 80 @@ -114456,7 +114081,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -114474,7 +114099,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "latitude": [ 1691 @@ -114489,7 +114114,7 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "max_players_per_lineup": [ 40 @@ -114507,7 +114132,7 @@ export default { 80 ], "start": [ - 4611 + 4584 ], "__typename": [ 80 @@ -114515,55 +114140,55 @@ export default { }, "tournaments_min_order_by": { "banner": [ - 3035 + 3008 ], "created_at": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "discord_guild_id": [ - 3035 + 3008 ], "discord_role_id": [ - 3035 + 3008 ], "discord_webhook": [ - 3035 + 3008 ], "homepage": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "latitude": [ - 3035 + 3008 ], "location": [ - 3035 + 3008 ], "logo": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "scheduling_mode": [ - 3035 + 3008 ], "start": [ - 3035 + 3008 ], "__typename": [ 80 @@ -114574,7 +114199,7 @@ export default { 40 ], "returning": [ - 5047 + 5020 ], "__typename": [ 80 @@ -114582,10 +114207,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 5071 + 5044 ], "on_conflict": [ - 5078 + 5051 ], "__typename": [ 80 @@ -114593,13 +114218,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 5069 + 5042 ], "update_columns": [ - 5103 + 5076 ], "where": [ - 5068 + 5041 ], "__typename": [ 80 @@ -114607,193 +114232,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 4006 + 3979 ], "auto_start": [ - 3035 + 3008 ], "award_configs_aggregate": [ - 4618 + 4591 ], "awards_aggregate": [ 195 ], "awards_enabled": [ - 3035 + 3008 ], "banner": [ - 3035 + 3008 ], "can_cancel": [ - 3035 + 3008 ], "can_close_registration": [ - 3035 + 3008 ], "can_join": [ - 3035 + 3008 ], "can_open_registration": [ - 3035 + 3008 ], "can_pause": [ - 3035 + 3008 ], "can_resume": [ - 3035 + 3008 ], "can_setup": [ - 3035 + 3008 ], "can_start": [ - 3035 + 3008 ], "categories_aggregate": [ - 4706 + 4679 ], "created_at": [ - 3035 + 3008 ], "description": [ - 3035 + 3008 ], "discord_guild_id": [ - 3035 + 3008 ], "discord_notifications_enabled": [ - 3035 + 3008 ], "discord_notify_Canceled": [ - 3035 + 3008 ], "discord_notify_Finished": [ - 3035 + 3008 ], "discord_notify_Forfeit": [ - 3035 + 3008 ], "discord_notify_Live": [ - 3035 + 3008 ], "discord_notify_MapPaused": [ - 3035 + 3008 ], "discord_notify_PickingPlayers": [ - 3035 + 3008 ], "discord_notify_Scheduled": [ - 3035 + 3008 ], "discord_notify_Surrendered": [ - 3035 + 3008 ], "discord_notify_Tie": [ - 3035 + 3008 ], "discord_notify_Veto": [ - 3035 + 3008 ], "discord_notify_WaitingForCheckIn": [ - 3035 + 3008 ], "discord_notify_WaitingForServer": [ - 3035 + 3008 ], "discord_role_id": [ - 3035 + 3008 ], "discord_voice_enabled": [ - 3035 + 3008 ], "discord_webhook": [ - 3035 + 3008 ], "e_tournament_status": [ 1364 ], "has_min_teams": [ - 3035 + 3008 ], "homepage": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "is_league": [ - 3035 + 3008 ], "is_organizer": [ - 3035 + 3008 ], "joined_tournament": [ - 3035 + 3008 ], "latitude": [ - 3035 + 3008 ], "league_season_division": [ 2039 ], "location": [ - 3035 + 3008 ], "logo": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "match_options_id": [ - 3035 + 3008 ], "max_players_per_lineup": [ - 3035 + 3008 ], "min_players_per_lineup": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "options": [ - 2712 + 2685 ], "organizer_steam_id": [ - 3035 + 3008 ], "organizer_teams_aggregate": [ - 4730 + 4703 ], "organizers_aggregate": [ - 4754 + 4727 ], "player_stats_aggregate": [ - 5979 + 5952 ], "prizes_aggregate": [ - 4795 + 4768 ], "results_aggregate": [ - 5928 + 5901 ], "rosters_aggregate": [ - 4969 + 4942 ], "scheduling_mode": [ - 3035 + 3008 ], "stages_aggregate": [ - 4879 + 4852 ], "start": [ - 3035 + 3008 ], "status": [ - 3035 + 3008 ], "teams_aggregate": [ - 5010 + 4983 ], "__typename": [ 80 @@ -114801,7 +114426,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -114829,7 +114454,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -114889,7 +114514,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_league": [ 5 @@ -114907,7 +114532,7 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "name": [ 80 @@ -114919,7 +114544,7 @@ export default { 80 ], "start": [ - 4611 + 4584 ], "status": [ 1356 @@ -114950,13 +114575,13 @@ export default { }, "tournaments_stddev_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -114984,13 +114609,13 @@ export default { }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115018,13 +114643,13 @@ export default { }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115032,7 +114657,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 5100 + 5073 ], "ordering": [ 315 @@ -115052,7 +114677,7 @@ export default { 80 ], "created_at": [ - 4611 + 4584 ], "description": [ 80 @@ -115112,7 +114737,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "is_league": [ 5 @@ -115130,7 +114755,7 @@ export default { 1691 ], "match_options_id": [ - 5111 + 5084 ], "name": [ 80 @@ -115142,7 +114767,7 @@ export default { 80 ], "start": [ - 4611 + 4584 ], "status": [ 1356 @@ -115173,13 +114798,13 @@ export default { }, "tournaments_sum_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115188,13 +114813,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5070 + 5043 ], "_set": [ - 5092 + 5065 ], "where": [ - 5068 + 5041 ], "__typename": [ 80 @@ -115222,13 +114847,13 @@ export default { }, "tournaments_var_pop_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115256,13 +114881,13 @@ export default { }, "tournaments_var_samp_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115290,13 +114915,13 @@ export default { }, "tournaments_variance_order_by": { "latitude": [ - 3035 + 3008 ], "longitude": [ - 3035 + 3008 ], "organizer_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115305,37 +114930,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5111 + 5084 ], "_contains": [ - 5111 + 5084 ], "_eq": [ - 5111 + 5084 ], "_gt": [ - 5111 + 5084 ], "_gte": [ - 5111 + 5084 ], "_in": [ - 5111 + 5084 ], "_is_null": [ 5 ], "_lt": [ - 5111 + 5084 ], "_lte": [ - 5111 + 5084 ], "_neq": [ - 5111 + 5084 ], "_nin": [ - 5111 + 5084 ], "__typename": [ 80 @@ -115343,31 +114968,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 5111 + 5084 ], "_gt": [ - 5111 + 5084 ], "_gte": [ - 5111 + 5084 ], "_in": [ - 5111 + 5084 ], "_is_null": [ 5 ], "_lt": [ - 5111 + 5084 ], "_lte": [ - 5111 + 5084 ], "_neq": [ - 5111 + 5084 ], "_nin": [ - 5111 + 5084 ], "__typename": [ 80 @@ -115384,7 +115009,7 @@ export default { 1663 ], "event_id": [ - 5111 + 5084 ], "headshot_percentage": [ 1691 @@ -115402,7 +115027,7 @@ export default { 40 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -115413,10 +115038,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 5128 + 5101 ], "nodes": [ - 5114 + 5087 ], "__typename": [ 80 @@ -115424,31 +115049,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5117 + 5090 ], "corr": [ - 5118 + 5091 ], "count": [ - 5120 + 5093 ], "covar_samp": [ - 5121 + 5094 ], "max": [ - 5123 + 5096 ], "min": [ - 5124 + 5097 ], "stddev_samp": [ - 5125 + 5098 ], "sum": [ - 5126 + 5099 ], "var_samp": [ - 5127 + 5100 ], "__typename": [ 80 @@ -115456,13 +115081,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5141 + 5114 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115473,13 +115098,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5119 + 5092 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115490,10 +115115,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5142 + 5115 ], "Y": [ - 5142 + 5115 ], "__typename": [ 80 @@ -115501,13 +115126,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5140 + 5113 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 41 @@ -115518,13 +115143,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5122 + 5095 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115535,10 +115160,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5143 + 5116 ], "Y": [ - 5143 + 5116 ], "__typename": [ 80 @@ -115546,13 +115171,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5144 + 5117 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115563,13 +115188,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5145 + 5118 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115580,13 +115205,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5146 + 5119 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115597,13 +115222,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5147 + 5120 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115614,13 +115239,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5148 + 5121 ], "distinct": [ 5 ], "filter": [ - 5133 + 5106 ], "predicate": [ 1692 @@ -115631,13 +115256,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5131 + 5104 ], "count": [ 40, { "columns": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -115646,31 +115271,31 @@ export default { } ], "max": [ - 5135 + 5108 ], "min": [ - 5137 + 5110 ], "stddev": [ - 5149 + 5122 ], "stddev_pop": [ - 5151 + 5124 ], "stddev_samp": [ - 5153 + 5126 ], "sum": [ - 5157 + 5130 ], "var_pop": [ - 5159 + 5132 ], "var_samp": [ - 5161 + 5134 ], "variance": [ - 5163 + 5136 ], "__typename": [ 80 @@ -115678,37 +115303,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5132 + 5105 ], "count": [ - 3035 + 3008 ], "max": [ - 5136 + 5109 ], "min": [ - 5138 + 5111 ], "stddev": [ - 5150 + 5123 ], "stddev_pop": [ - 5152 + 5125 ], "stddev_samp": [ - 5154 + 5127 ], "sum": [ - 5158 + 5131 ], "var_pop": [ - 5160 + 5133 ], "var_samp": [ - 5162 + 5135 ], "variance": [ - 5164 + 5137 ], "__typename": [ 80 @@ -115716,7 +115341,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5134 + 5107 ], "__typename": [ 80 @@ -115753,28 +115378,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115782,13 +115407,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 5133 + 5106 ], "_not": [ - 5133 + 5106 ], "_or": [ - 5133 + 5106 ], "assists": [ 41 @@ -115800,7 +115425,7 @@ export default { 1667 ], "event_id": [ - 5113 + 5086 ], "headshot_percentage": [ 1692 @@ -115818,7 +115443,7 @@ export default { 41 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -115838,7 +115463,7 @@ export default { 1674 ], "event_id": [ - 5111 + 5084 ], "headshot_percentage": [ 1691 @@ -115856,7 +115481,7 @@ export default { 40 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -115873,7 +115498,7 @@ export default { 40 ], "event_id": [ - 5111 + 5084 ], "headshot_percentage": [ 1691 @@ -115899,31 +115524,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115937,7 +115562,7 @@ export default { 40 ], "event_id": [ - 5111 + 5084 ], "headshot_percentage": [ 1691 @@ -115963,31 +115588,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "event_id": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -115995,37 +115620,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "event": [ 1676 ], "event_id": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116071,28 +115696,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116129,28 +115754,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116187,28 +115812,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116216,7 +115841,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5156 + 5129 ], "ordering": [ 315 @@ -116233,7 +115858,7 @@ export default { 40 ], "event_id": [ - 5111 + 5084 ], "headshot_percentage": [ 1691 @@ -116288,28 +115913,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116346,28 +115971,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116404,28 +116029,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116462,28 +116087,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116538,10 +116163,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5167 + 5140 ], "nodes": [ - 5165 + 5138 ], "__typename": [ 80 @@ -116549,13 +116174,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5168 + 5141 ], "count": [ 40, { "columns": [ - 5173, + 5146, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -116564,31 +116189,31 @@ export default { } ], "max": [ - 5170 + 5143 ], "min": [ - 5171 + 5144 ], "stddev": [ - 5174 + 5147 ], "stddev_pop": [ - 5175 + 5148 ], "stddev_samp": [ - 5176 + 5149 ], "sum": [ - 5179 + 5152 ], "var_pop": [ - 5180 + 5153 ], "var_samp": [ - 5181 + 5154 ], "variance": [ - 5182 + 5155 ], "__typename": [ 80 @@ -116631,13 +116256,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5169 + 5142 ], "_not": [ - 5169 + 5142 ], "_or": [ - 5169 + 5142 ], "demo_free_gpu_nodes": [ 41 @@ -116757,46 +116382,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3035 + 3008 ], "demo_in_progress": [ - 3035 + 3008 ], "demo_total_gpu_nodes": [ - 3035 + 3008 ], "free_gpu_nodes": [ - 3035 + 3008 ], "free_gpu_nodes_for_batch": [ - 3035 + 3008 ], "highlights_in_progress": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "live_in_progress": [ - 3035 + 3008 ], "registered_gpu_nodes": [ - 3035 + 3008 ], "rendering_total_gpu_nodes": [ - 3035 + 3008 ], "renders_paused_for_active_match": [ - 3035 + 3008 ], "streaming_free_gpu_nodes": [ - 3035 + 3008 ], "streaming_total_gpu_nodes": [ - 3035 + 3008 ], "total_gpu_nodes": [ - 3035 + 3008 ], "__typename": [ 80 @@ -116910,7 +116535,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5178 + 5151 ], "ordering": [ 315 @@ -117114,22 +116739,22 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2204 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "losses": [ 40 @@ -117165,7 +116790,7 @@ export default { 2162 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -117176,10 +116801,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 5187 + 5160 ], "nodes": [ - 5183 + 5156 ], "__typename": [ 80 @@ -117187,7 +116812,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5186 + 5159 ], "__typename": [ 80 @@ -117195,13 +116820,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5199 + 5172 ], "distinct": [ 5 ], "filter": [ - 5192 + 5165 ], "predicate": [ 41 @@ -117212,13 +116837,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5190 + 5163 ], "count": [ 40, { "columns": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -117227,31 +116852,31 @@ export default { } ], "max": [ - 5194 + 5167 ], "min": [ - 5196 + 5169 ], "stddev": [ - 5200 + 5173 ], "stddev_pop": [ - 5202 + 5175 ], "stddev_samp": [ - 5204 + 5177 ], "sum": [ - 5208 + 5181 ], "var_pop": [ - 5210 + 5183 ], "var_samp": [ - 5212 + 5185 ], "variance": [ - 5214 + 5187 ], "__typename": [ 80 @@ -117259,37 +116884,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5191 + 5164 ], "count": [ - 3035 + 3008 ], "max": [ - 5195 + 5168 ], "min": [ - 5197 + 5170 ], "stddev": [ - 5201 + 5174 ], "stddev_pop": [ - 5203 + 5176 ], "stddev_samp": [ - 5205 + 5178 ], "sum": [ - 5209 + 5182 ], "var_pop": [ - 5211 + 5184 ], "var_samp": [ - 5213 + 5186 ], "variance": [ - 5215 + 5188 ], "__typename": [ 80 @@ -117297,7 +116922,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5193 + 5166 ], "__typename": [ 80 @@ -117346,40 +116971,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -117387,13 +117012,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 5192 + 5165 ], "_not": [ - 5192 + 5165 ], "_or": [ - 5192 + 5165 ], "head_to_head_match_wins": [ 41 @@ -117402,22 +117027,22 @@ export default { 41 ], "league_division_id": [ - 5113 + 5086 ], "league_season_division_id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "league_team": [ 2207 ], "league_team_id": [ - 5113 + 5086 ], "league_team_season_id": [ - 5113 + 5086 ], "losses": [ 41 @@ -117453,7 +117078,7 @@ export default { 2171 ], "tournament_team_id": [ - 5113 + 5086 ], "wins": [ 41 @@ -117470,22 +117095,22 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2213 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "losses": [ 40 @@ -117521,7 +117146,7 @@ export default { 2180 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -117538,19 +117163,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "losses": [ 40 @@ -117580,7 +117205,7 @@ export default { 40 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -117591,58 +117216,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -117656,19 +117281,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "losses": [ 40 @@ -117698,7 +117323,7 @@ export default { 40 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -117709,58 +117334,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -117768,55 +117393,55 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team": [ 2215 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "season_division": [ 2039 @@ -117825,10 +117450,10 @@ export default { 2182 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -117878,40 +117503,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -117960,40 +117585,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118042,40 +117667,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118083,7 +117708,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5207 + 5180 ], "ordering": [ 315 @@ -118100,19 +117725,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "losses": [ 40 @@ -118142,7 +117767,7 @@ export default { 40 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -118194,40 +117819,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118276,40 +117901,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118358,40 +117983,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118440,40 +118065,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "round_diff": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118499,28 +118124,28 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2204 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "matches_played": [ 40 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -118531,10 +118156,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5230 + 5203 ], "nodes": [ - 5216 + 5189 ], "__typename": [ 80 @@ -118542,31 +118167,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5219 + 5192 ], "corr": [ - 5220 + 5193 ], "count": [ - 5222 + 5195 ], "covar_samp": [ - 5223 + 5196 ], "max": [ - 5225 + 5198 ], "min": [ - 5226 + 5199 ], "stddev_samp": [ - 5227 + 5200 ], "sum": [ - 5228 + 5201 ], "var_samp": [ - 5229 + 5202 ], "__typename": [ 80 @@ -118574,13 +118199,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5243 + 5216 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118591,13 +118216,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5221 + 5194 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118608,10 +118233,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5244 + 5217 ], "Y": [ - 5244 + 5217 ], "__typename": [ 80 @@ -118619,13 +118244,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5242 + 5215 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 41 @@ -118636,13 +118261,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5224 + 5197 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118653,10 +118278,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5245 + 5218 ], "Y": [ - 5245 + 5218 ], "__typename": [ 80 @@ -118664,13 +118289,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5246 + 5219 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118681,13 +118306,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5247 + 5220 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118698,13 +118323,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5248 + 5221 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118715,13 +118340,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5249 + 5222 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118732,13 +118357,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5250 + 5223 ], "distinct": [ 5 ], "filter": [ - 5235 + 5208 ], "predicate": [ 1692 @@ -118749,13 +118374,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5233 + 5206 ], "count": [ 40, { "columns": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -118764,31 +118389,31 @@ export default { } ], "max": [ - 5237 + 5210 ], "min": [ - 5239 + 5212 ], "stddev": [ - 5251 + 5224 ], "stddev_pop": [ - 5253 + 5226 ], "stddev_samp": [ - 5255 + 5228 ], "sum": [ - 5259 + 5232 ], "var_pop": [ - 5261 + 5234 ], "var_samp": [ - 5263 + 5236 ], "variance": [ - 5265 + 5238 ], "__typename": [ 80 @@ -118796,37 +118421,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5234 + 5207 ], "count": [ - 3035 + 3008 ], "max": [ - 5238 + 5211 ], "min": [ - 5240 + 5213 ], "stddev": [ - 5252 + 5225 ], "stddev_pop": [ - 5254 + 5227 ], "stddev_samp": [ - 5256 + 5229 ], "sum": [ - 5260 + 5233 ], "var_pop": [ - 5262 + 5235 ], "var_samp": [ - 5264 + 5237 ], "variance": [ - 5266 + 5239 ], "__typename": [ 80 @@ -118834,7 +118459,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5236 + 5209 ], "__typename": [ 80 @@ -118871,28 +118496,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -118900,13 +118525,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5235 + 5208 ], "_not": [ - 5235 + 5208 ], "_or": [ - 5235 + 5208 ], "assists": [ 41 @@ -118927,28 +118552,28 @@ export default { 41 ], "league_division_id": [ - 5113 + 5086 ], "league_season_division_id": [ - 5113 + 5086 ], "league_season_id": [ - 5113 + 5086 ], "league_team": [ 2207 ], "league_team_id": [ - 5113 + 5086 ], "league_team_season_id": [ - 5113 + 5086 ], "matches_played": [ 41 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -118977,28 +118602,28 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team": [ 2213 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "matches_played": [ 40 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 @@ -119027,19 +118652,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "matches_played": [ 40 @@ -119053,43 +118678,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119115,19 +118740,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "matches_played": [ 40 @@ -119141,43 +118766,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119185,49 +118810,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "league_division_id": [ - 3035 + 3008 ], "league_season_division_id": [ - 3035 + 3008 ], "league_season_id": [ - 3035 + 3008 ], "league_team": [ 2215 ], "league_team_id": [ - 3035 + 3008 ], "league_team_season_id": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119273,28 +118898,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119331,28 +118956,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119389,28 +119014,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119418,7 +119043,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5258 + 5231 ], "ordering": [ 315 @@ -119447,19 +119072,19 @@ export default { 40 ], "league_division_id": [ - 5111 + 5084 ], "league_season_division_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "league_team_id": [ - 5111 + 5084 ], "league_team_season_id": [ - 5111 + 5084 ], "matches_played": [ 40 @@ -119502,28 +119127,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119560,28 +119185,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119618,28 +119243,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119676,28 +119301,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119711,19 +119336,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -119734,10 +119359,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 5269 + 5242 ], "nodes": [ - 5267 + 5240 ], "__typename": [ 80 @@ -119745,13 +119370,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 5270 + 5243 ], "count": [ 40, { "columns": [ - 5279, + 5252, "[v_match_captains_select_column!]" ], "distinct": [ @@ -119760,31 +119385,31 @@ export default { } ], "max": [ - 5274 + 5247 ], "min": [ - 5275 + 5248 ], "stddev": [ - 5281 + 5254 ], "stddev_pop": [ - 5282 + 5255 ], "stddev_samp": [ - 5283 + 5256 ], "sum": [ - 5286 + 5259 ], "var_pop": [ - 5288 + 5261 ], "var_samp": [ - 5289 + 5262 ], "variance": [ - 5290 + 5263 ], "__typename": [ 80 @@ -119800,13 +119425,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 5271 + 5244 ], "_not": [ - 5271 + 5244 ], "_or": [ - 5271 + 5244 ], "captain": [ 6 @@ -119815,19 +119440,19 @@ export default { 82 ], "id": [ - 5113 + 5086 ], "lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "placeholder_name": [ 82 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -119852,19 +119477,19 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 ], "player": [ - 4004 + 3977 ], "steam_id": [ 259 @@ -119878,10 +119503,10 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -119898,10 +119523,10 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -119918,7 +119543,7 @@ export default { 40 ], "returning": [ - 5267 + 5240 ], "__typename": [ 80 @@ -119926,7 +119551,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5273 + 5246 ], "__typename": [ 80 @@ -119934,28 +119559,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 3035 + 3008 ], "discord_id": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "placeholder_name": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -119970,10 +119595,10 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -120011,7 +119636,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5285 + 5258 ], "ordering": [ 315 @@ -120028,10 +119653,10 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "placeholder_name": [ 80 @@ -120053,13 +119678,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 5272 + 5245 ], "_set": [ - 5280 + 5253 ], "where": [ - 5271 + 5244 ], "__typename": [ 80 @@ -120094,7 +119719,7 @@ export default { 40 ], "clutcher": [ - 3993 + 3966 ], "clutcher_steam_id": [ 259 @@ -120103,22 +119728,22 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "outcome": [ 80 @@ -120135,10 +119760,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 5295 + 5268 ], "nodes": [ - 5291 + 5264 ], "__typename": [ 80 @@ -120146,7 +119771,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5294 + 5267 ], "__typename": [ 80 @@ -120154,13 +119779,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5307 + 5280 ], "distinct": [ 5 ], "filter": [ - 5300 + 5273 ], "predicate": [ 41 @@ -120171,13 +119796,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 5298 + 5271 ], "count": [ 40, { "columns": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -120186,31 +119811,31 @@ export default { } ], "max": [ - 5302 + 5275 ], "min": [ - 5304 + 5277 ], "stddev": [ - 5308 + 5281 ], "stddev_pop": [ - 5310 + 5283 ], "stddev_samp": [ - 5312 + 5285 ], "sum": [ - 5316 + 5289 ], "var_pop": [ - 5318 + 5291 ], "var_samp": [ - 5320 + 5293 ], "variance": [ - 5322 + 5295 ], "__typename": [ 80 @@ -120218,37 +119843,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5299 + 5272 ], "count": [ - 3035 + 3008 ], "max": [ - 5303 + 5276 ], "min": [ - 5305 + 5278 ], "stddev": [ - 5309 + 5282 ], "stddev_pop": [ - 5311 + 5284 ], "stddev_samp": [ - 5313 + 5286 ], "sum": [ - 5317 + 5290 ], "var_pop": [ - 5319 + 5292 ], "var_samp": [ - 5321 + 5294 ], "variance": [ - 5323 + 5296 ], "__typename": [ 80 @@ -120256,7 +119881,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5301 + 5274 ], "__typename": [ 80 @@ -120281,16 +119906,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120298,19 +119923,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 5300 + 5273 ], "_not": [ - 5300 + 5273 ], "_or": [ - 5300 + 5273 ], "against_count": [ 41 ], "clutcher": [ - 3997 + 3970 ], "clutcher_steam_id": [ 261 @@ -120319,22 +119944,22 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "outcome": [ 82 @@ -120354,7 +119979,7 @@ export default { 40 ], "clutcher": [ - 4004 + 3977 ], "clutcher_steam_id": [ 259 @@ -120363,22 +119988,22 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "outcome": [ 80 @@ -120404,13 +120029,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "outcome": [ 80 @@ -120427,31 +120052,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "outcome": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120468,13 +120093,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "outcome": [ 80 @@ -120491,31 +120116,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "outcome": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120523,43 +120148,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher": [ - 4006 + 3979 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "outcome": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120585,16 +120210,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120619,16 +120244,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120653,16 +120278,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120670,7 +120295,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5315 + 5288 ], "ordering": [ 315 @@ -120690,13 +120315,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "outcome": [ 80 @@ -120730,16 +120355,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120764,16 +120389,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120798,16 +120423,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120832,16 +120457,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 3035 + 3008 ], "clutcher_steam_id": [ - 3035 + 3008 ], "kills_in_clutch": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -120858,16 +120483,16 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "victim_side": [ 80 @@ -120884,10 +120509,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5326 + 5299 ], "nodes": [ - 5324 + 5297 ], "__typename": [ 80 @@ -120895,13 +120520,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5327 + 5300 ], "count": [ 40, { "columns": [ - 5332, + 5305, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -120910,31 +120535,31 @@ export default { } ], "max": [ - 5329 + 5302 ], "min": [ - 5330 + 5303 ], "stddev": [ - 5333 + 5306 ], "stddev_pop": [ - 5334 + 5307 ], "stddev_samp": [ - 5335 + 5308 ], "sum": [ - 5338 + 5311 ], "var_pop": [ - 5339 + 5312 ], "var_samp": [ - 5340 + 5313 ], "variance": [ - 5341 + 5314 ], "__typename": [ 80 @@ -120956,13 +120581,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5328 + 5301 ], "_not": [ - 5328 + 5301 ], "_or": [ - 5328 + 5301 ], "killer_side": [ 82 @@ -120974,16 +120599,16 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "victim_side": [ 82 @@ -121009,10 +120634,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "victim_side": [ 80 @@ -121038,10 +120663,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "victim_side": [ 80 @@ -121058,34 +120683,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3035 + 3008 ], "killer_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "victim_side": [ - 3035 + 3008 ], "victim_steam_id": [ - 3035 + 3008 ], "weapon": [ - 3035 + 3008 ], "__typename": [ 80 @@ -121136,7 +120761,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5337 + 5310 ], "ordering": [ 315 @@ -121156,10 +120781,10 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "victim_side": [ 80 @@ -121232,22 +120857,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -121267,10 +120892,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5344 + 5317 ], "nodes": [ - 5342 + 5315 ], "__typename": [ 80 @@ -121278,13 +120903,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5345 + 5318 ], "count": [ 40, { "columns": [ - 5350, + 5323, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -121293,31 +120918,31 @@ export default { } ], "max": [ - 5347 + 5320 ], "min": [ - 5348 + 5321 ], "stddev": [ - 5351 + 5324 ], "stddev_pop": [ - 5352 + 5325 ], "stddev_samp": [ - 5353 + 5326 ], "sum": [ - 5356 + 5329 ], "var_pop": [ - 5357 + 5330 ], "var_samp": [ - 5358 + 5331 ], "variance": [ - 5359 + 5332 ], "__typename": [ 80 @@ -121336,31 +120961,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5346 + 5319 ], "_not": [ - 5346 + 5319 ], "_or": [ - 5346 + 5319 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "matchup": [ 82 @@ -121380,13 +121005,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -121406,13 +121031,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -121432,34 +121057,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "matchup": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -121501,7 +121126,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5355 + 5328 ], "ordering": [ 315 @@ -121512,13 +121137,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -121594,22 +121219,22 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "opening_attempts": [ 40 @@ -121650,10 +121275,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5362 + 5335 ], "nodes": [ - 5360 + 5333 ], "__typename": [ 80 @@ -121661,13 +121286,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5363 + 5336 ], "count": [ 40, { "columns": [ - 5368, + 5341, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -121676,31 +121301,31 @@ export default { } ], "max": [ - 5365 + 5338 ], "min": [ - 5366 + 5339 ], "stddev": [ - 5369 + 5342 ], "stddev_pop": [ - 5370 + 5343 ], "stddev_samp": [ - 5371 + 5344 ], "sum": [ - 5374 + 5347 ], "var_pop": [ - 5375 + 5348 ], "var_samp": [ - 5376 + 5349 ], "variance": [ - 5377 + 5350 ], "__typename": [ 80 @@ -121755,13 +121380,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5364 + 5337 ], "_not": [ - 5364 + 5337 ], "_or": [ - 5364 + 5337 ], "man_adv_rounds": [ 41 @@ -121776,22 +121401,22 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "opening_attempts": [ 41 @@ -121844,13 +121469,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "opening_attempts": [ 40 @@ -121903,13 +121528,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "opening_attempts": [ 40 @@ -121950,67 +121575,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3035 + 3008 ], "man_adv_wins": [ - 3035 + 3008 ], "man_dis_rounds": [ - 3035 + 3008 ], "man_dis_wins": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "opening_attempts": [ - 3035 + 3008 ], "opening_wins": [ - 3035 + 3008 ], "pistol_rounds": [ - 3035 + 3008 ], "pistol_wins": [ - 3035 + 3008 ], "round_wins": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "won_buy_eco": [ - 3035 + 3008 ], "won_buy_force": [ - 3035 + 3008 ], "won_buy_full": [ - 3035 + 3008 ], "won_buy_pistol": [ - 3035 + 3008 ], "__typename": [ 80 @@ -122160,7 +121785,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5373 + 5346 ], "ordering": [ 315 @@ -122183,13 +121808,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "opening_attempts": [ 40 @@ -122421,7 +122046,7 @@ export default { 5 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122432,10 +122057,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5380 + 5353 ], "nodes": [ - 5378 + 5351 ], "__typename": [ 80 @@ -122443,13 +122068,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5381 + 5354 ], "count": [ 40, { "columns": [ - 5389, + 5362, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -122458,31 +122083,31 @@ export default { } ], "max": [ - 5385 + 5358 ], "min": [ - 5386 + 5359 ], "stddev": [ - 5391 + 5364 ], "stddev_pop": [ - 5392 + 5365 ], "stddev_samp": [ - 5393 + 5366 ], "sum": [ - 5396 + 5369 ], "var_pop": [ - 5398 + 5371 ], "var_samp": [ - 5399 + 5372 ], "variance": [ - 5400 + 5373 ], "__typename": [ 80 @@ -122498,19 +122123,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5382 + 5355 ], "_not": [ - 5382 + 5355 ], "_or": [ - 5382 + 5355 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5113 + 5086 ], "round": [ 41 @@ -122532,7 +122157,7 @@ export default { 5 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122543,7 +122168,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122554,7 +122179,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122568,7 +122193,7 @@ export default { 40 ], "returning": [ - 5378 + 5351 ], "__typename": [ 80 @@ -122576,13 +122201,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -122594,7 +122219,7 @@ export default { 5 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122629,7 +122254,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5395 + 5368 ], "ordering": [ 315 @@ -122643,7 +122268,7 @@ export default { 5 ], "match_map_id": [ - 5111 + 5084 ], "round": [ 40 @@ -122662,13 +122287,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5383 + 5356 ], "_set": [ - 5390 + 5363 ], "where": [ - 5382 + 5355 ], "__typename": [ 80 @@ -122706,28 +122331,28 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 ], "player": [ - 3993 + 3966 ], "rounds": [ 40 @@ -122744,10 +122369,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5403 + 5376 ], "nodes": [ - 5401 + 5374 ], "__typename": [ 80 @@ -122755,13 +122380,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5404 + 5377 ], "count": [ 40, { "columns": [ - 5409, + 5382, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -122770,31 +122395,31 @@ export default { } ], "max": [ - 5406 + 5379 ], "min": [ - 5407 + 5380 ], "stddev": [ - 5410 + 5383 ], "stddev_pop": [ - 5411 + 5384 ], "stddev_samp": [ - 5412 + 5385 ], "sum": [ - 5415 + 5388 ], "var_pop": [ - 5416 + 5389 ], "var_samp": [ - 5417 + 5390 ], "variance": [ - 5418 + 5391 ], "__typename": [ 80 @@ -122819,13 +122444,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5405 + 5378 ], "_not": [ - 5405 + 5378 ], "_or": [ - 5405 + 5378 ], "deaths": [ 41 @@ -122834,28 +122459,28 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "matchup": [ 82 ], "player": [ - 3997 + 3970 ], "rounds": [ 41 @@ -122878,13 +122503,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -122910,13 +122535,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -122936,43 +122561,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "matchup": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "rounds": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123032,7 +122657,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5414 + 5387 ], "ordering": [ 315 @@ -123049,13 +122674,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "matchup": [ 80 @@ -123149,25 +122774,25 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2495 + 2468 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "side": [ 80 @@ -123187,10 +122812,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5423 + 5396 ], "nodes": [ - 5419 + 5392 ], "__typename": [ 80 @@ -123198,7 +122823,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5422 + 5395 ], "__typename": [ 80 @@ -123206,13 +122831,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5435 + 5408 ], "distinct": [ 5 ], "filter": [ - 5428 + 5401 ], "predicate": [ 41 @@ -123223,13 +122848,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5426 + 5399 ], "count": [ 40, { "columns": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -123238,31 +122863,31 @@ export default { } ], "max": [ - 5430 + 5403 ], "min": [ - 5432 + 5405 ], "stddev": [ - 5436 + 5409 ], "stddev_pop": [ - 5438 + 5411 ], "stddev_samp": [ - 5440 + 5413 ], "sum": [ - 5444 + 5417 ], "var_pop": [ - 5446 + 5419 ], "var_samp": [ - 5448 + 5421 ], "variance": [ - 5450 + 5423 ], "__typename": [ 80 @@ -123270,37 +122895,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5427 + 5400 ], "count": [ - 3035 + 3008 ], "max": [ - 5431 + 5404 ], "min": [ - 5433 + 5406 ], "stddev": [ - 5437 + 5410 ], "stddev_pop": [ - 5439 + 5412 ], "stddev_samp": [ - 5441 + 5414 ], "sum": [ - 5445 + 5418 ], "var_pop": [ - 5447 + 5420 ], "var_samp": [ - 5449 + 5422 ], "variance": [ - 5451 + 5424 ], "__typename": [ 80 @@ -123308,7 +122933,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5429 + 5402 ], "__typename": [ 80 @@ -123336,19 +122961,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123356,13 +122981,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5428 + 5401 ], "_not": [ - 5428 + 5401 ], "_or": [ - 5428 + 5401 ], "attempts": [ 41 @@ -123371,25 +122996,25 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_lineup": [ - 2504 + 2477 ], "match_lineup_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "side": [ 82 @@ -123415,25 +123040,25 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_lineup": [ - 2513 + 2486 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "side": [ 80 @@ -123459,13 +123084,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "side": [ 80 @@ -123485,31 +123110,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123523,13 +123148,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "side": [ 80 @@ -123549,31 +123174,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "side": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123581,43 +123206,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_lineup": [ - 2515 + 2488 ], "match_lineup_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "side": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123646,19 +123271,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123686,19 +123311,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123726,19 +123351,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123746,7 +123371,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5443 + 5416 ], "ordering": [ 315 @@ -123763,13 +123388,13 @@ export default { 40 ], "match_id": [ - 5111 + 5084 ], "match_lineup_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "side": [ 80 @@ -123809,19 +123434,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123849,19 +123474,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123889,19 +123514,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123929,19 +123554,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "traded_deaths": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -123955,10 +123580,10 @@ export default { 259 ], "nemsis": [ - 3993 + 3966 ], "player": [ - 3993 + 3966 ], "victim_id": [ 259 @@ -123969,10 +123594,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5454 + 5427 ], "nodes": [ - 5452 + 5425 ], "__typename": [ 80 @@ -123980,13 +123605,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5455 + 5428 ], "count": [ 40, { "columns": [ - 5460, + 5433, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -123995,31 +123620,31 @@ export default { } ], "max": [ - 5457 + 5430 ], "min": [ - 5458 + 5431 ], "stddev": [ - 5461 + 5434 ], "stddev_pop": [ - 5462 + 5435 ], "stddev_samp": [ - 5463 + 5436 ], "sum": [ - 5466 + 5439 ], "var_pop": [ - 5467 + 5440 ], "var_samp": [ - 5468 + 5441 ], "variance": [ - 5469 + 5442 ], "__typename": [ 80 @@ -124041,13 +123666,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5456 + 5429 ], "_not": [ - 5456 + 5429 ], "_or": [ - 5456 + 5429 ], "attacker_id": [ 261 @@ -124056,10 +123681,10 @@ export default { 261 ], "nemsis": [ - 3997 + 3970 ], "player": [ - 3997 + 3970 ], "victim_id": [ 261 @@ -124098,19 +123723,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3035 + 3008 ], "kill_count": [ - 3035 + 3008 ], "nemsis": [ - 4006 + 3979 ], "player": [ - 4006 + 3979 ], "victim_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -124161,7 +123786,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5465 + 5438 ], "ordering": [ 315 @@ -124245,7 +123870,7 @@ export default { 259 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 @@ -124262,10 +123887,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5472 + 5445 ], "nodes": [ - 5470 + 5443 ], "__typename": [ 80 @@ -124273,13 +123898,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5473 + 5446 ], "count": [ 40, { "columns": [ - 5478, + 5451, "[v_player_damage_select_column!]" ], "distinct": [ @@ -124288,31 +123913,31 @@ export default { } ], "max": [ - 5475 + 5448 ], "min": [ - 5476 + 5449 ], "stddev": [ - 5479 + 5452 ], "stddev_pop": [ - 5480 + 5453 ], "stddev_samp": [ - 5481 + 5454 ], "sum": [ - 5484 + 5457 ], "var_pop": [ - 5485 + 5458 ], "var_samp": [ - 5486 + 5459 ], "variance": [ - 5487 + 5460 ], "__typename": [ 80 @@ -124337,19 +123962,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5474 + 5447 ], "_not": [ - 5474 + 5447 ], "_or": [ - 5474 + 5447 ], "avg_damage_per_round": [ 261 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 @@ -124400,19 +124025,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "total_damage": [ - 3035 + 3008 ], "total_rounds": [ - 3035 + 3008 ], "__typename": [ 80 @@ -124472,7 +124097,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5483 + 5456 ], "ordering": [ 315 @@ -124610,13 +124235,13 @@ export default { 40 ], "match": [ - 2823 + 2796 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -124640,7 +124265,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -124660,10 +124285,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5502 + 5475 ], "nodes": [ - 5488 + 5461 ], "__typename": [ 80 @@ -124671,31 +124296,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5491 + 5464 ], "corr": [ - 5492 + 5465 ], "count": [ - 5494 + 5467 ], "covar_samp": [ - 5495 + 5468 ], "max": [ - 5497 + 5470 ], "min": [ - 5498 + 5471 ], "stddev_samp": [ - 5499 + 5472 ], "sum": [ - 5500 + 5473 ], "var_samp": [ - 5501 + 5474 ], "__typename": [ 80 @@ -124703,13 +124328,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5515 + 5488 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124720,13 +124345,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5493 + 5466 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124737,10 +124362,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5516 + 5489 ], "Y": [ - 5516 + 5489 ], "__typename": [ 80 @@ -124748,13 +124373,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5514 + 5487 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 41 @@ -124765,13 +124390,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5496 + 5469 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124782,10 +124407,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5517 + 5490 ], "Y": [ - 5517 + 5490 ], "__typename": [ 80 @@ -124793,13 +124418,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5518 + 5491 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124810,13 +124435,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5519 + 5492 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124827,13 +124452,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5520 + 5493 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124844,13 +124469,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5521 + 5494 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124861,13 +124486,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5522 + 5495 ], "distinct": [ 5 ], "filter": [ - 5507 + 5480 ], "predicate": [ 1692 @@ -124878,13 +124503,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5505 + 5478 ], "count": [ 40, { "columns": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "distinct": [ @@ -124893,31 +124518,31 @@ export default { } ], "max": [ - 5509 + 5482 ], "min": [ - 5511 + 5484 ], "stddev": [ - 5523 + 5496 ], "stddev_pop": [ - 5525 + 5498 ], "stddev_samp": [ - 5527 + 5500 ], "sum": [ - 5531 + 5504 ], "var_pop": [ - 5533 + 5506 ], "var_samp": [ - 5535 + 5508 ], "variance": [ - 5537 + 5510 ], "__typename": [ 80 @@ -124925,37 +124550,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5506 + 5479 ], "count": [ - 3035 + 3008 ], "max": [ - 5510 + 5483 ], "min": [ - 5512 + 5485 ], "stddev": [ - 5524 + 5497 ], "stddev_pop": [ - 5526 + 5499 ], "stddev_samp": [ - 5528 + 5501 ], "sum": [ - 5532 + 5505 ], "var_pop": [ - 5534 + 5507 ], "var_samp": [ - 5536 + 5509 ], "variance": [ - 5538 + 5511 ], "__typename": [ 80 @@ -124963,7 +124588,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5508 + 5481 ], "__typename": [ 80 @@ -125042,70 +124667,70 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -125113,13 +124738,13 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5507 + 5480 ], "_not": [ - 5507 + 5480 ], "_or": [ - 5507 + 5480 ], "actual_score": [ 1692 @@ -125164,13 +124789,13 @@ export default { 41 ], "match": [ - 2832 + 2805 ], "match_created_at": [ - 4612 + 4585 ], "match_id": [ - 5113 + 5086 ], "match_result": [ 82 @@ -125194,7 +124819,7 @@ export default { 1692 ], "season_id": [ - 5113 + 5086 ], "series_multiplier": [ 41 @@ -125256,13 +124881,13 @@ export default { 40 ], "match": [ - 2841 + 2814 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -125286,7 +124911,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -125348,10 +124973,10 @@ export default { 40 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -125375,7 +125000,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -125395,88 +125020,88 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "match_created_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_result": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_name": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -125526,10 +125151,10 @@ export default { 40 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -125553,7 +125178,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -125573,88 +125198,88 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "match_created_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_result": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_name": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -125662,91 +125287,91 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_created_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_result": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_name": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "season_id": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -125834,70 +125459,70 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -125976,70 +125601,70 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126118,70 +125743,70 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126189,7 +125814,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5530 + 5503 ], "ordering": [ 315 @@ -126242,10 +125867,10 @@ export default { 40 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -126269,7 +125894,7 @@ export default { 1691 ], "season_id": [ - 5111 + 5084 ], "series_multiplier": [ 40 @@ -126360,70 +125985,70 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126502,70 +126127,70 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126644,70 +126269,70 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126786,70 +126411,70 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 3035 + 3008 ], "assists": [ - 3035 + 3008 ], "current_elo": [ - 3035 + 3008 ], "damage": [ - 3035 + 3008 ], "damage_percent": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "elo_change": [ - 3035 + 3008 ], "expected_score": [ - 3035 + 3008 ], "impact": [ - 3035 + 3008 ], "k_factor": [ - 3035 + 3008 ], "kda": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map_losses": [ - 3035 + 3008 ], "map_wins": [ - 3035 + 3008 ], "opponent_team_elo_avg": [ - 3035 + 3008 ], "performance_multiplier": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "player_team_elo_avg": [ - 3035 + 3008 ], "rating_for_expected": [ - 3035 + 3008 ], "series_multiplier": [ - 3035 + 3008 ], "team_avg_kda": [ - 3035 + 3008 ], "updated_elo": [ - 3035 + 3008 ], "__typename": [ 80 @@ -126860,16 +126485,16 @@ export default { 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -126880,10 +126505,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5541 + 5514 ], "nodes": [ - 5539 + 5512 ], "__typename": [ 80 @@ -126891,13 +126516,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5542 + 5515 ], "count": [ 40, { "columns": [ - 5547, + 5520, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -126906,31 +126531,31 @@ export default { } ], "max": [ - 5544 + 5517 ], "min": [ - 5545 + 5518 ], "stddev": [ - 5548 + 5521 ], "stddev_pop": [ - 5549 + 5522 ], "stddev_samp": [ - 5550 + 5523 ], "sum": [ - 5553 + 5526 ], "var_pop": [ - 5554 + 5527 ], "var_samp": [ - 5555 + 5528 ], "variance": [ - 5556 + 5529 ], "__typename": [ 80 @@ -126946,28 +126571,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5543 + 5516 ], "_not": [ - 5543 + 5516 ], "_or": [ - 5543 + 5516 ], "map": [ 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "started_at": [ - 4612 + 4585 ], "steam_id": [ 261 @@ -126978,13 +126603,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -126995,13 +126620,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127015,19 +126640,19 @@ export default { 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -127060,7 +126685,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5552 + 5525 ], "ordering": [ 315 @@ -127071,13 +126696,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127123,16 +126748,16 @@ export default { 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127143,10 +126768,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5559 + 5532 ], "nodes": [ - 5557 + 5530 ], "__typename": [ 80 @@ -127154,13 +126779,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5560 + 5533 ], "count": [ 40, { "columns": [ - 5565, + 5538, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -127169,31 +126794,31 @@ export default { } ], "max": [ - 5562 + 5535 ], "min": [ - 5563 + 5536 ], "stddev": [ - 5566 + 5539 ], "stddev_pop": [ - 5567 + 5540 ], "stddev_samp": [ - 5568 + 5541 ], "sum": [ - 5571 + 5544 ], "var_pop": [ - 5572 + 5545 ], "var_samp": [ - 5573 + 5546 ], "variance": [ - 5574 + 5547 ], "__typename": [ 80 @@ -127209,28 +126834,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5561 + 5534 ], "_not": [ - 5561 + 5534 ], "_or": [ - 5561 + 5534 ], "map": [ 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "started_at": [ - 4612 + 4585 ], "steam_id": [ 261 @@ -127241,13 +126866,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127258,13 +126883,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127278,19 +126903,19 @@ export default { 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "started_at": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -127323,7 +126948,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5570 + 5543 ], "ordering": [ 315 @@ -127334,13 +126959,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "started_at": [ - 4611 + 4584 ], "steam_id": [ 259 @@ -127383,13 +127008,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3993 + 3966 ], "attacked_steam_id": [ 259 ], "attacker": [ - 3993 + 3966 ], "attacker_steam_id": [ 259 @@ -127410,10 +127035,10 @@ export default { 259 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -127421,10 +127046,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5577 + 5550 ], "nodes": [ - 5575 + 5548 ], "__typename": [ 80 @@ -127432,13 +127057,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5578 + 5551 ], "count": [ 40, { "columns": [ - 5583, + 5556, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -127447,31 +127072,31 @@ export default { } ], "max": [ - 5580 + 5553 ], "min": [ - 5581 + 5554 ], "stddev": [ - 5584 + 5557 ], "stddev_pop": [ - 5585 + 5558 ], "stddev_samp": [ - 5586 + 5559 ], "sum": [ - 5589 + 5562 ], "var_pop": [ - 5590 + 5563 ], "var_samp": [ - 5591 + 5564 ], "variance": [ - 5592 + 5565 ], "__typename": [ 80 @@ -127505,22 +127130,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5579 + 5552 ], "_not": [ - 5579 + 5552 ], "_or": [ - 5579 + 5552 ], "attacked": [ - 3997 + 3970 ], "attacked_steam_id": [ 261 ], "attacker": [ - 3997 + 3970 ], "attacker_steam_id": [ 261 @@ -127541,10 +127166,10 @@ export default { 261 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -127573,7 +127198,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -127602,7 +127227,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -127610,37 +127235,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 4006 + 3979 ], "attacked_steam_id": [ - 3035 + 3008 ], "attacker": [ - 4006 + 3979 ], "attacker_steam_id": [ - 3035 + 3008 ], "damage_dealt": [ - 3035 + 3008 ], "flash_count": [ - 3035 + 3008 ], "headshot_kills": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -127727,7 +127352,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5588 + 5561 ], "ordering": [ 315 @@ -127759,7 +127384,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -127871,37 +127496,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "rounds_played": [ 40 @@ -127915,10 +127540,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5597 + 5570 ], "nodes": [ - 5593 + 5566 ], "__typename": [ 80 @@ -127926,7 +127551,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5596 + 5569 ], "__typename": [ 80 @@ -127934,13 +127559,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5611 + 5584 ], "distinct": [ 5 ], "filter": [ - 5602 + 5575 ], "predicate": [ 41 @@ -127951,13 +127576,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5600 + 5573 ], "count": [ 40, { "columns": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -127966,31 +127591,31 @@ export default { } ], "max": [ - 5605 + 5578 ], "min": [ - 5607 + 5580 ], "stddev": [ - 5613 + 5586 ], "stddev_pop": [ - 5615 + 5588 ], "stddev_samp": [ - 5617 + 5590 ], "sum": [ - 5621 + 5594 ], "var_pop": [ - 5624 + 5597 ], "var_samp": [ - 5626 + 5599 ], "variance": [ - 5628 + 5601 ], "__typename": [ 80 @@ -127998,37 +127623,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5601 + 5574 ], "count": [ - 3035 + 3008 ], "max": [ - 5606 + 5579 ], "min": [ - 5608 + 5581 ], "stddev": [ - 5614 + 5587 ], "stddev_pop": [ - 5616 + 5589 ], "stddev_samp": [ - 5618 + 5591 ], "sum": [ - 5622 + 5595 ], "var_pop": [ - 5625 + 5598 ], "var_samp": [ - 5627 + 5600 ], "variance": [ - 5629 + 5602 ], "__typename": [ 80 @@ -128036,7 +127661,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5604 + 5577 ], "__typename": [ 80 @@ -128073,28 +127698,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128102,46 +127727,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5602 + 5575 ], "_not": [ - 5602 + 5575 ], "_or": [ - 5602 + 5575 ], "adr": [ - 3034 + 3007 ], "apr": [ - 3034 + 3007 ], "dpr": [ - 3034 + 3007 ], "hltv_rating": [ - 3034 + 3007 ], "kast_pct": [ - 3034 + 3007 ], "kpr": [ - 3034 + 3007 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "rounds_played": [ 41 @@ -128155,22 +127780,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "rounds_played": [ 40 @@ -128184,37 +127809,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match": [ - 2841 + 2814 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2675 + 2648 ], "match_map_id": [ - 5111 + 5084 ], "player": [ - 4004 + 3977 ], "rounds_played": [ 40 @@ -128228,28 +127853,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -128263,34 +127888,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128298,28 +127923,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -128333,34 +127958,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_map_id": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128371,7 +127996,7 @@ export default { 40 ], "returning": [ - 5593 + 5566 ], "__typename": [ 80 @@ -128379,43 +128004,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128424,28 +128049,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -128488,28 +128113,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128546,28 +128171,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128604,28 +128229,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128633,7 +128258,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5620 + 5593 ], "ordering": [ 315 @@ -128644,28 +128269,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -128679,22 +128304,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3033 + 3006 ], "apr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "rounds_played": [ 40 @@ -128708,28 +128333,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128737,13 +128362,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5603 + 5576 ], "_set": [ - 5612 + 5585 ], "where": [ - 5602 + 5575 ], "__typename": [ 80 @@ -128780,28 +128405,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128838,28 +128463,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128896,28 +128521,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3035 + 3008 ], "apr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -128925,52 +128550,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 3033 + 3006 ], "awp_kills": [ 40 ], "awp_share": [ - 3033 + 3006 ], "deaths": [ 40 ], "dpr": [ - 3033 + 3006 ], "entry_rate": [ - 3033 + 3006 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kills": [ 40 ], "kpr": [ - 3033 + 3006 ], "lineup_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "match_map": [ - 2657 + 2630 ], "match_map_id": [ - 5111 + 5084 ], "open_deaths": [ 40 @@ -128982,7 +128607,7 @@ export default { 40 ], "player": [ - 3993 + 3966 ], "role": [ 80 @@ -128994,7 +128619,7 @@ export default { 259 ], "support_idx": [ - 3033 + 3006 ], "total_kills": [ 40 @@ -129014,10 +128639,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5632 + 5605 ], "nodes": [ - 5630 + 5603 ], "__typename": [ 80 @@ -129025,13 +128650,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5633 + 5606 ], "count": [ 40, { "columns": [ - 5638, + 5611, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -129040,31 +128665,31 @@ export default { } ], "max": [ - 5635 + 5608 ], "min": [ - 5636 + 5609 ], "stddev": [ - 5639 + 5612 ], "stddev_pop": [ - 5640 + 5613 ], "stddev_samp": [ - 5641 + 5614 ], "sum": [ - 5644 + 5617 ], "var_pop": [ - 5645 + 5618 ], "var_samp": [ - 5646 + 5619 ], "variance": [ - 5647 + 5620 ], "__typename": [ 80 @@ -129140,61 +128765,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5634 + 5607 ], "_not": [ - 5634 + 5607 ], "_or": [ - 5634 + 5607 ], "adr": [ - 3034 + 3007 ], "awp_kills": [ 41 ], "awp_share": [ - 3034 + 3007 ], "deaths": [ 41 ], "dpr": [ - 3034 + 3007 ], "entry_rate": [ - 3034 + 3007 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3034 + 3007 ], "kast_pct": [ - 3034 + 3007 ], "kills": [ 41 ], "kpr": [ - 3034 + 3007 ], "lineup_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "match_map": [ - 2666 + 2639 ], "match_map_id": [ - 5113 + 5086 ], "open_deaths": [ 41 @@ -129206,7 +128831,7 @@ export default { 41 ], "player": [ - 3997 + 3970 ], "role": [ 82 @@ -129218,7 +128843,7 @@ export default { 261 ], "support_idx": [ - 3034 + 3007 ], "total_kills": [ 41 @@ -129238,46 +128863,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 3033 + 3006 ], "awp_kills": [ 40 ], "awp_share": [ - 3033 + 3006 ], "deaths": [ 40 ], "dpr": [ - 3033 + 3006 ], "entry_rate": [ - 3033 + 3006 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kills": [ 40 ], "kpr": [ - 3033 + 3006 ], "lineup_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "open_deaths": [ 40 @@ -129298,7 +128923,7 @@ export default { 259 ], "support_idx": [ - 3033 + 3006 ], "total_kills": [ 40 @@ -129318,46 +128943,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 3033 + 3006 ], "awp_kills": [ 40 ], "awp_share": [ - 3033 + 3006 ], "deaths": [ 40 ], "dpr": [ - 3033 + 3006 ], "entry_rate": [ - 3033 + 3006 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kills": [ 40 ], "kpr": [ - 3033 + 3006 ], "lineup_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "open_deaths": [ 40 @@ -129378,7 +129003,7 @@ export default { 259 ], "support_idx": [ - 3033 + 3006 ], "total_kills": [ 40 @@ -129398,88 +129023,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 3035 + 3008 ], "awp_kills": [ - 3035 + 3008 ], "awp_share": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "entry_rate": [ - 3035 + 3008 ], "flash_assists": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "lineup_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "match_map": [ - 2677 + 2650 ], "match_map_id": [ - 3035 + 3008 ], "open_deaths": [ - 3035 + 3008 ], "open_kills": [ - 3035 + 3008 ], "opening_attempts": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "role": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "support_idx": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "trade_kill_successes": [ - 3035 + 3008 ], "traded_death_successes": [ - 3035 + 3008 ], "util_damage": [ - 3035 + 3008 ], "__typename": [ 80 @@ -129692,7 +129317,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5643 + 5616 ], "ordering": [ 315 @@ -129703,46 +129328,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3033 + 3006 ], "awp_kills": [ 40 ], "awp_share": [ - 3033 + 3006 ], "deaths": [ 40 ], "dpr": [ - 3033 + 3006 ], "entry_rate": [ - 3033 + 3006 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kills": [ 40 ], "kpr": [ - 3033 + 3006 ], "lineup_id": [ - 5111 + 5084 ], "match_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111 + 5084 ], "open_deaths": [ 40 @@ -129763,7 +129388,7 @@ export default { 259 ], "support_idx": [ - 3033 + 3006 ], "total_kills": [ 40 @@ -129783,37 +129408,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3033 + 3006 ], "awp_kills": [ 40 ], "awp_share": [ - 3033 + 3006 ], "deaths": [ 40 ], "dpr": [ - 3033 + 3006 ], "entry_rate": [ - 3033 + 3006 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kills": [ 40 ], "kpr": [ - 3033 + 3006 ], "open_deaths": [ 40 @@ -129831,7 +129456,7 @@ export default { 259 ], "support_idx": [ - 3033 + 3006 ], "total_kills": [ 40 @@ -130067,16 +129692,16 @@ export default { 2306 ], "map_id": [ - 5111 + 5084 ], "match": [ - 2823 + 2796 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -130096,10 +129721,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5650 + 5623 ], "nodes": [ - 5648 + 5621 ], "__typename": [ 80 @@ -130107,13 +129732,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5651 + 5624 ], "count": [ 40, { "columns": [ - 5656, + 5629, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -130122,31 +129747,31 @@ export default { } ], "max": [ - 5653 + 5626 ], "min": [ - 5654 + 5627 ], "stddev": [ - 5657 + 5630 ], "stddev_pop": [ - 5658 + 5631 ], "stddev_samp": [ - 5659 + 5632 ], "sum": [ - 5662 + 5635 ], "var_pop": [ - 5663 + 5636 ], "var_samp": [ - 5664 + 5637 ], "variance": [ - 5665 + 5638 ], "__typename": [ 80 @@ -130171,13 +129796,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5652 + 5625 ], "_not": [ - 5652 + 5625 ], "_or": [ - 5652 + 5625 ], "assists": [ 41 @@ -130192,16 +129817,16 @@ export default { 2315 ], "map_id": [ - 5113 + 5086 ], "match": [ - 2832 + 2805 ], "match_created_at": [ - 4612 + 4585 ], "match_id": [ - 5113 + 5086 ], "match_result": [ 82 @@ -130230,13 +129855,13 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -130265,13 +129890,13 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -130291,40 +129916,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "map": [ 2325 ], "map_id": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_created_at": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "match_result": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "__typename": [ 80 @@ -130384,7 +130009,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5661 + 5634 ], "ordering": [ 315 @@ -130404,13 +130029,13 @@ export default { 40 ], "map_id": [ - 5111 + 5084 ], "match_created_at": [ - 4611 + 4584 ], "match_id": [ - 5111 + 5084 ], "match_result": [ 80 @@ -130498,28 +130123,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match": [ - 2823 + 2796 ], "match_id": [ - 5111 + 5084 ], "player": [ - 3993 + 3966 ], "rounds_played": [ 40 @@ -130533,10 +130158,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5668 + 5641 ], "nodes": [ - 5666 + 5639 ], "__typename": [ 80 @@ -130544,13 +130169,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5669 + 5642 ], "count": [ 40, { "columns": [ - 5674, + 5647, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -130559,31 +130184,31 @@ export default { } ], "max": [ - 5671 + 5644 ], "min": [ - 5672 + 5645 ], "stddev": [ - 5675 + 5648 ], "stddev_pop": [ - 5676 + 5649 ], "stddev_samp": [ - 5677 + 5650 ], "sum": [ - 5680 + 5653 ], "var_pop": [ - 5681 + 5654 ], "var_samp": [ - 5682 + 5655 ], "variance": [ - 5683 + 5656 ], "__typename": [ 80 @@ -130617,37 +130242,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5670 + 5643 ], "_not": [ - 5670 + 5643 ], "_or": [ - 5670 + 5643 ], "adr": [ - 3034 + 3007 ], "dpr": [ - 3034 + 3007 ], "hltv_rating": [ - 3034 + 3007 ], "kast_pct": [ - 3034 + 3007 ], "kpr": [ - 3034 + 3007 ], "match": [ - 2832 + 2805 ], "match_id": [ - 5113 + 5086 ], "player": [ - 3997 + 3970 ], "rounds_played": [ 41 @@ -130661,22 +130286,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -130690,22 +130315,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -130719,34 +130344,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 3035 + 3008 ], "dpr": [ - 3035 + 3008 ], "hltv_rating": [ - 3035 + 3008 ], "kast_pct": [ - 3035 + 3008 ], "kpr": [ - 3035 + 3008 ], "match": [ - 2843 + 2816 ], "match_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "rounds_played": [ - 3035 + 3008 ], "steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -130833,7 +130458,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5679 + 5652 ], "ordering": [ 315 @@ -130844,22 +130469,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "match_id": [ - 5111 + 5084 ], "rounds_played": [ 40 @@ -130873,19 +130498,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 3033 + 3006 ], "dpr": [ - 3033 + 3006 ], "hltv_rating": [ - 3033 + 3006 ], "kast_pct": [ - 3033 + 3006 ], "kpr": [ - 3033 + 3006 ], "rounds_played": [ 40 @@ -130983,7 +130608,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "round": [ 40 @@ -130994,10 +130619,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5688 + 5661 ], "nodes": [ - 5684 + 5657 ], "__typename": [ 80 @@ -131005,7 +130630,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5687 + 5660 ], "__typename": [ 80 @@ -131013,13 +130638,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5700 + 5673 ], "distinct": [ 5 ], "filter": [ - 5693 + 5666 ], "predicate": [ 41 @@ -131030,13 +130655,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5691 + 5664 ], "count": [ 40, { "columns": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -131045,31 +130670,31 @@ export default { } ], "max": [ - 5695 + 5668 ], "min": [ - 5697 + 5670 ], "stddev": [ - 5701 + 5674 ], "stddev_pop": [ - 5703 + 5676 ], "stddev_samp": [ - 5705 + 5678 ], "sum": [ - 5709 + 5682 ], "var_pop": [ - 5711 + 5684 ], "var_samp": [ - 5713 + 5686 ], "variance": [ - 5715 + 5688 ], "__typename": [ 80 @@ -131077,37 +130702,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5692 + 5665 ], "count": [ - 3035 + 3008 ], "max": [ - 5696 + 5669 ], "min": [ - 5698 + 5671 ], "stddev": [ - 5702 + 5675 ], "stddev_pop": [ - 5704 + 5677 ], "stddev_samp": [ - 5706 + 5679 ], "sum": [ - 5710 + 5683 ], "var_pop": [ - 5712 + 5685 ], "var_samp": [ - 5714 + 5687 ], "variance": [ - 5716 + 5689 ], "__typename": [ 80 @@ -131115,7 +130740,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5694 + 5667 ], "__typename": [ 80 @@ -131137,13 +130762,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131151,13 +130776,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5693 + 5666 ], "_not": [ - 5693 + 5666 ], "_or": [ - 5693 + 5666 ], "attacker_steam_id": [ 261 @@ -131166,7 +130791,7 @@ export default { 261 ], "match_id": [ - 5113 + 5086 ], "round": [ 41 @@ -131183,7 +130808,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "round": [ 40 @@ -131200,7 +130825,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "round": [ 40 @@ -131211,16 +130836,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131234,7 +130859,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "round": [ 40 @@ -131245,16 +130870,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131262,16 +130887,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "match_id": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131294,13 +130919,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131322,13 +130947,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131350,13 +130975,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131364,7 +130989,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5708 + 5681 ], "ordering": [ 315 @@ -131381,7 +131006,7 @@ export default { 259 ], "match_id": [ - 5111 + 5084 ], "round": [ 40 @@ -131406,13 +131031,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131434,13 +131059,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131462,13 +131087,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131490,13 +131115,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "round": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131504,22 +131129,22 @@ export default { }, "v_player_queue_partners": { "first_played_at": [ - 4611 + 4584 ], "last_played_at": [ - 4611 + 4584 ], "matches_together": [ 40 ], "partner": [ - 3993 + 3966 ], "partner_steam_id": [ 259 ], "player": [ - 3993 + 3966 ], "steam_id": [ 259 @@ -131533,10 +131158,10 @@ export default { }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5719 + 5692 ], "nodes": [ - 5717 + 5690 ], "__typename": [ 80 @@ -131544,13 +131169,13 @@ export default { }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5720 + 5693 ], "count": [ 40, { "columns": [ - 5725, + 5698, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -131559,31 +131184,31 @@ export default { } ], "max": [ - 5722 + 5695 ], "min": [ - 5723 + 5696 ], "stddev": [ - 5726 + 5699 ], "stddev_pop": [ - 5727 + 5700 ], "stddev_samp": [ - 5728 + 5701 ], "sum": [ - 5731 + 5704 ], "var_pop": [ - 5732 + 5705 ], "var_samp": [ - 5733 + 5706 ], "variance": [ - 5734 + 5707 ], "__typename": [ 80 @@ -131608,31 +131233,31 @@ export default { }, "v_player_queue_partners_bool_exp": { "_and": [ - 5721 + 5694 ], "_not": [ - 5721 + 5694 ], "_or": [ - 5721 + 5694 ], "first_played_at": [ - 4612 + 4585 ], "last_played_at": [ - 4612 + 4585 ], "matches_together": [ 41 ], "partner": [ - 3997 + 3970 ], "partner_steam_id": [ 261 ], "player": [ - 3997 + 3970 ], "steam_id": [ 261 @@ -131646,10 +131271,10 @@ export default { }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4611 + 4584 ], "last_played_at": [ - 4611 + 4584 ], "matches_together": [ 40 @@ -131669,10 +131294,10 @@ export default { }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4611 + 4584 ], "last_played_at": [ - 4611 + 4584 ], "matches_together": [ 40 @@ -131692,28 +131317,28 @@ export default { }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3035 + 3008 ], "last_played_at": [ - 3035 + 3008 ], "matches_together": [ - 3035 + 3008 ], "partner": [ - 4006 + 3979 ], "partner_steam_id": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "steam_id": [ - 3035 + 3008 ], "wins_together": [ - 3035 + 3008 ], "__typename": [ 80 @@ -131773,7 +131398,7 @@ export default { }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5730 + 5703 ], "ordering": [ 315 @@ -131784,10 +131409,10 @@ export default { }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4611 + 4584 ], "last_played_at": [ - 4611 + 4584 ], "matches_together": [ 40 @@ -131898,10 +131523,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5737 + 5710 ], "nodes": [ - 5735 + 5708 ], "__typename": [ 80 @@ -131909,13 +131534,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5738 + 5711 ], "count": [ 40, { "columns": [ - 5743, + 5716, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -131924,31 +131549,31 @@ export default { } ], "max": [ - 5740 + 5713 ], "min": [ - 5741 + 5714 ], "stddev": [ - 5744 + 5717 ], "stddev_pop": [ - 5745 + 5718 ], "stddev_samp": [ - 5746 + 5719 ], "sum": [ - 5749 + 5722 ], "var_pop": [ - 5750 + 5723 ], "var_samp": [ - 5751 + 5724 ], "variance": [ - 5752 + 5725 ], "__typename": [ 80 @@ -131970,13 +131595,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5739 + 5712 ], "_not": [ - 5739 + 5712 ], "_or": [ - 5739 + 5712 ], "damage": [ 261 @@ -132048,22 +131673,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 3035 + 3008 ], "hits": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -132114,7 +131739,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5748 + 5721 ], "ordering": [ 315 @@ -132227,10 +131852,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5755 + 5728 ], "nodes": [ - 5753 + 5726 ], "__typename": [ 80 @@ -132238,13 +131863,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5756 + 5729 ], "count": [ 40, { "columns": [ - 5761, + 5734, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -132253,31 +131878,31 @@ export default { } ], "max": [ - 5758 + 5731 ], "min": [ - 5759 + 5732 ], "stddev": [ - 5762 + 5735 ], "stddev_pop": [ - 5763 + 5736 ], "stddev_samp": [ - 5764 + 5737 ], "sum": [ - 5767 + 5740 ], "var_pop": [ - 5768 + 5741 ], "var_samp": [ - 5769 + 5742 ], "variance": [ - 5770 + 5743 ], "__typename": [ 80 @@ -132299,13 +131924,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5757 + 5730 ], "_not": [ - 5757 + 5730 ], "_or": [ - 5757 + 5730 ], "kill_count": [ 261 @@ -132377,22 +132002,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "rounds": [ - 3035 + 3008 ], "source": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "with": [ - 3035 + 3008 ], "__typename": [ 80 @@ -132443,7 +132068,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5766 + 5739 ], "ordering": [ 315 @@ -132536,7 +132161,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -132545,7 +132170,7 @@ export default { 2287 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -132568,10 +132193,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5777 + 5750 ], "nodes": [ - 5771 + 5744 ], "__typename": [ 80 @@ -132579,13 +132204,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5774 + 5747 ], "bool_or": [ - 5775 + 5748 ], "count": [ - 5776 + 5749 ], "__typename": [ 80 @@ -132593,13 +132218,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5789 + 5762 ], "distinct": [ 5 ], "filter": [ - 5780 + 5753 ], "predicate": [ 6 @@ -132610,13 +132235,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5790 + 5763 ], "distinct": [ 5 ], "filter": [ - 5780 + 5753 ], "predicate": [ 6 @@ -132627,13 +132252,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5788 + 5761 ], "distinct": [ 5 ], "filter": [ - 5780 + 5753 ], "predicate": [ 41 @@ -132647,7 +132272,7 @@ export default { 40, { "columns": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -132656,10 +132281,10 @@ export default { } ], "max": [ - 5782 + 5755 ], "min": [ - 5784 + 5757 ], "__typename": [ 80 @@ -132667,13 +132292,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 3035 + 3008 ], "max": [ - 5783 + 5756 ], "min": [ - 5785 + 5758 ], "__typename": [ 80 @@ -132681,7 +132306,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5781 + 5754 ], "__typename": [ 80 @@ -132689,19 +132314,19 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5780 + 5753 ], "_not": [ - 5780 + 5753 ], "_or": [ - 5780 + 5753 ], "active_pool": [ 6 ], "id": [ - 5113 + 5086 ], "label": [ 82 @@ -132710,7 +132335,7 @@ export default { 2290 ], "map_pool_id": [ - 5113 + 5086 ], "name": [ 82 @@ -132736,7 +132361,7 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 @@ -132745,7 +132370,7 @@ export default { 2296 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -132768,13 +132393,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 5111 + 5084 ], "label": [ 80 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -132797,28 +132422,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "map_pool_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -132826,13 +132451,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 5111 + 5084 ], "label": [ 80 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -132855,28 +132480,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "map_pool_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -132887,7 +132512,7 @@ export default { 40 ], "returning": [ - 5771 + 5744 ], "__typename": [ 80 @@ -132895,34 +132520,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "label": [ - 3035 + 3008 ], "map_pool": [ 2298 ], "map_pool_id": [ - 3035 + 3008 ], "name": [ - 3035 + 3008 ], "patch": [ - 3035 + 3008 ], "poster": [ - 3035 + 3008 ], "type": [ - 3035 + 3008 ], "workshop_map_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -132936,13 +132561,13 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -132965,7 +132590,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5793 + 5766 ], "ordering": [ 315 @@ -132979,13 +132604,13 @@ export default { 5 ], "id": [ - 5111 + 5084 ], "label": [ 80 ], "map_pool_id": [ - 5111 + 5084 ], "name": [ 80 @@ -133008,10 +132633,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5791 + 5764 ], "where": [ - 5780 + 5753 ], "__typename": [ 80 @@ -133036,10 +132661,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5797 + 5770 ], "nodes": [ - 5795 + 5768 ], "__typename": [ 80 @@ -133047,13 +132672,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5798 + 5771 ], "count": [ 40, { "columns": [ - 5803, + 5776, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -133062,31 +132687,31 @@ export default { } ], "max": [ - 5800 + 5773 ], "min": [ - 5801 + 5774 ], "stddev": [ - 5804 + 5777 ], "stddev_pop": [ - 5805 + 5778 ], "stddev_samp": [ - 5806 + 5779 ], "sum": [ - 5809 + 5782 ], "var_pop": [ - 5810 + 5783 ], "var_samp": [ - 5811 + 5784 ], "variance": [ - 5812 + 5785 ], "__typename": [ 80 @@ -133111,13 +132736,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5799 + 5772 ], "_not": [ - 5799 + 5772 ], "_or": [ - 5799 + 5772 ], "busy_accounts": [ 41 @@ -133171,16 +132796,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3035 + 3008 ], "free_accounts": [ - 3035 + 3008 ], "id": [ - 3035 + 3008 ], "total_accounts": [ - 3035 + 3008 ], "__typename": [ 80 @@ -133240,7 +132865,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5808 + 5781 ], "ordering": [ 315 @@ -133363,10 +132988,10 @@ export default { 259 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133374,10 +132999,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5815 + 5788 ], "nodes": [ - 5813 + 5786 ], "__typename": [ 80 @@ -133385,13 +133010,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5816 + 5789 ], "count": [ 40, { "columns": [ - 5823, + 5796, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -133400,31 +133025,31 @@ export default { } ], "max": [ - 5819 + 5792 ], "min": [ - 5820 + 5793 ], "stddev": [ - 5824 + 5797 ], "stddev_pop": [ - 5825 + 5798 ], "stddev_samp": [ - 5826 + 5799 ], "sum": [ - 5829 + 5802 ], "var_pop": [ - 5830 + 5803 ], "var_samp": [ - 5831 + 5804 ], "variance": [ - 5832 + 5805 ], "__typename": [ 80 @@ -133464,13 +133089,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5817 + 5790 ], "_not": [ - 5817 + 5790 ], "_or": [ - 5817 + 5790 ], "avg_duel_elo": [ 41 @@ -133500,10 +133125,10 @@ export default { 261 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -133538,10 +133163,10 @@ export default { 259 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133576,7 +133201,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133611,7 +133236,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133619,7 +133244,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5818 + 5791 ], "__typename": [ 80 @@ -133627,37 +133252,37 @@ export default { }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3035 + 3008 ], "avg_elo": [ - 3035 + 3008 ], "avg_faceit_elo": [ - 3035 + 3008 ], "avg_faceit_level": [ - 3035 + 3008 ], "avg_premier": [ - 3035 + 3008 ], "avg_wingman_elo": [ - 3035 + 3008 ], "max_elo": [ - 3035 + 3008 ], "min_elo": [ - 3035 + 3008 ], "roster_size": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -133762,7 +133387,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5828 + 5801 ], "ordering": [ 315 @@ -133800,7 +133425,7 @@ export default { 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133942,16 +133567,16 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 ], "team": [ - 4562 + 4535 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -133959,10 +133584,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5835 + 5808 ], "nodes": [ - 5833 + 5806 ], "__typename": [ 80 @@ -133970,13 +133595,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5836 + 5809 ], "count": [ 40, { "columns": [ - 5843, + 5816, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -133985,31 +133610,31 @@ export default { } ], "max": [ - 5839 + 5812 ], "min": [ - 5840 + 5813 ], "stddev": [ - 5844 + 5817 ], "stddev_pop": [ - 5845 + 5818 ], "stddev_samp": [ - 5846 + 5819 ], "sum": [ - 5849 + 5822 ], "var_pop": [ - 5850 + 5823 ], "var_samp": [ - 5851 + 5824 ], "variance": [ - 5852 + 5825 ], "__typename": [ 80 @@ -134034,13 +133659,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5837 + 5810 ], "_not": [ - 5837 + 5810 ], "_or": [ - 5837 + 5810 ], "late_cancels": [ 261 @@ -134049,16 +133674,16 @@ export default { 261 ], "reliability_pct": [ - 3034 + 3007 ], "scrims_completed": [ 261 ], "team": [ - 4573 + 4546 ], "team_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -134072,16 +133697,16 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 ], "team": [ - 4582 + 4555 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -134095,13 +133720,13 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -134115,13 +133740,13 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -134129,7 +133754,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5838 + 5811 ], "__typename": [ 80 @@ -134137,22 +133762,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 3035 + 3008 ], "no_shows": [ - 3035 + 3008 ], "reliability_pct": [ - 3035 + 3008 ], "scrims_completed": [ - 3035 + 3008 ], "team": [ - 4584 + 4557 ], "team_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -134212,7 +133837,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5848 + 5821 ], "ordering": [ 315 @@ -134229,13 +133854,13 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 ], "team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -134249,7 +133874,7 @@ export default { 259 ], "reliability_pct": [ - 3033 + 3006 ], "scrims_completed": [ 259 @@ -134347,10 +133972,10 @@ export default { 40 ], "stage": [ - 4872 + 4845 ], "team": [ - 5005 + 4978 ], "team_kdr": [ 1691 @@ -134362,10 +133987,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -134376,10 +134001,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5867 + 5840 ], "nodes": [ - 5853 + 5826 ], "__typename": [ 80 @@ -134387,31 +134012,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5856 + 5829 ], "corr": [ - 5857 + 5830 ], "count": [ - 5859 + 5832 ], "covar_samp": [ - 5860 + 5833 ], "max": [ - 5862 + 5835 ], "min": [ - 5863 + 5836 ], "stddev_samp": [ - 5864 + 5837 ], "sum": [ - 5865 + 5838 ], "var_samp": [ - 5866 + 5839 ], "__typename": [ 80 @@ -134419,13 +134044,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5886 + 5859 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134436,13 +134061,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5858 + 5831 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134453,10 +134078,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5887 + 5860 ], "Y": [ - 5887 + 5860 ], "__typename": [ 80 @@ -134464,13 +134089,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5885 + 5858 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 41 @@ -134481,13 +134106,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5861 + 5834 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134498,10 +134123,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5888 + 5861 ], "Y": [ - 5888 + 5861 ], "__typename": [ 80 @@ -134509,13 +134134,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5889 + 5862 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134526,13 +134151,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5890 + 5863 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134543,13 +134168,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5891 + 5864 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134560,13 +134185,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5892 + 5865 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134577,13 +134202,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5893 + 5866 ], "distinct": [ 5 ], "filter": [ - 5872 + 5845 ], "predicate": [ 1692 @@ -134594,13 +134219,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5870 + 5843 ], "count": [ 40, { "columns": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -134609,31 +134234,31 @@ export default { } ], "max": [ - 5876 + 5849 ], "min": [ - 5878 + 5851 ], "stddev": [ - 5895 + 5868 ], "stddev_pop": [ - 5897 + 5870 ], "stddev_samp": [ - 5899 + 5872 ], "sum": [ - 5903 + 5876 ], "var_pop": [ - 5907 + 5880 ], "var_samp": [ - 5909 + 5882 ], "variance": [ - 5911 + 5884 ], "__typename": [ 80 @@ -134641,37 +134266,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5871 + 5844 ], "count": [ - 3035 + 3008 ], "max": [ - 5877 + 5850 ], "min": [ - 5879 + 5852 ], "stddev": [ - 5896 + 5869 ], "stddev_pop": [ - 5898 + 5871 ], "stddev_samp": [ - 5900 + 5873 ], "sum": [ - 5904 + 5877 ], "var_pop": [ - 5908 + 5881 ], "var_samp": [ - 5910 + 5883 ], "variance": [ - 5912 + 5885 ], "__typename": [ 80 @@ -134679,10 +134304,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5875 + 5848 ], "on_conflict": [ - 5882 + 5855 ], "__typename": [ 80 @@ -134743,52 +134368,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -134796,13 +134421,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5872 + 5845 ], "_not": [ - 5872 + 5845 ], "_or": [ - 5872 + 5845 ], "group_number": [ 41 @@ -134841,10 +134466,10 @@ export default { 41 ], "stage": [ - 4884 + 4857 ], "team": [ - 5014 + 4987 ], "team_kdr": [ 1692 @@ -134856,10 +134481,10 @@ export default { 41 ], "tournament_stage_id": [ - 5113 + 5086 ], "tournament_team_id": [ - 5113 + 5086 ], "wins": [ 41 @@ -134960,10 +134585,10 @@ export default { 40 ], "stage": [ - 4896 + 4869 ], "team": [ - 5023 + 4996 ], "team_kdr": [ 1691 @@ -134975,10 +134600,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -135034,10 +134659,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -135048,58 +134673,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135152,10 +134777,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -135166,58 +134791,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135228,7 +134853,7 @@ export default { 40 ], "returning": [ - 5853 + 5826 ], "__typename": [ 80 @@ -135236,10 +134861,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5875 + 5848 ], "on_conflict": [ - 5882 + 5855 ], "__typename": [ 80 @@ -135247,13 +134872,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5873 + 5846 ], "update_columns": [ - 5905 + 5878 ], "where": [ - 5872 + 5845 ], "__typename": [ 80 @@ -135261,64 +134886,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "stage": [ - 4898 + 4871 ], "team": [ - 5025 + 4998 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament_stage_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135326,10 +134951,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -135391,10 +135016,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -135458,52 +135083,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135564,52 +135189,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135670,52 +135295,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135723,7 +135348,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5902 + 5875 ], "ordering": [ 315 @@ -135779,10 +135404,10 @@ export default { 40 ], "tournament_stage_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -135846,52 +135471,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -135900,13 +135525,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5874 + 5847 ], "_set": [ - 5894 + 5867 ], "where": [ - 5872 + 5845 ], "__typename": [ 80 @@ -135967,52 +135592,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -136073,52 +135698,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -136179,52 +135804,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3035 + 3008 ], "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "placement": [ - 3035 + 3008 ], "rank": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -136259,7 +135884,7 @@ export default { 40 ], "team": [ - 5005 + 4978 ], "team_kdr": [ 1691 @@ -136271,13 +135896,13 @@ export default { 40 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -136288,10 +135913,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5927 + 5900 ], "nodes": [ - 5913 + 5886 ], "__typename": [ 80 @@ -136299,31 +135924,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5916 + 5889 ], "corr": [ - 5917 + 5890 ], "count": [ - 5919 + 5892 ], "covar_samp": [ - 5920 + 5893 ], "max": [ - 5922 + 5895 ], "min": [ - 5923 + 5896 ], "stddev_samp": [ - 5924 + 5897 ], "sum": [ - 5925 + 5898 ], "var_samp": [ - 5926 + 5899 ], "__typename": [ 80 @@ -136331,13 +135956,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5940 + 5913 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136348,13 +135973,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5918 + 5891 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136365,10 +135990,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5941 + 5914 ], "Y": [ - 5941 + 5914 ], "__typename": [ 80 @@ -136376,13 +136001,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5939 + 5912 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 41 @@ -136393,13 +136018,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5921 + 5894 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136410,10 +136035,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5942 + 5915 ], "Y": [ - 5942 + 5915 ], "__typename": [ 80 @@ -136421,13 +136046,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5943 + 5916 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136438,13 +136063,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5944 + 5917 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136455,13 +136080,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5945 + 5918 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136472,13 +136097,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5946 + 5919 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136489,13 +136114,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5947 + 5920 ], "distinct": [ 5 ], "filter": [ - 5932 + 5905 ], "predicate": [ 1692 @@ -136506,13 +136131,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5930 + 5903 ], "count": [ 40, { "columns": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -136521,31 +136146,31 @@ export default { } ], "max": [ - 5934 + 5907 ], "min": [ - 5936 + 5909 ], "stddev": [ - 5948 + 5921 ], "stddev_pop": [ - 5950 + 5923 ], "stddev_samp": [ - 5952 + 5925 ], "sum": [ - 5956 + 5929 ], "var_pop": [ - 5958 + 5931 ], "var_samp": [ - 5960 + 5933 ], "variance": [ - 5962 + 5935 ], "__typename": [ 80 @@ -136553,37 +136178,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5931 + 5904 ], "count": [ - 3035 + 3008 ], "max": [ - 5935 + 5908 ], "min": [ - 5937 + 5910 ], "stddev": [ - 5949 + 5922 ], "stddev_pop": [ - 5951 + 5924 ], "stddev_samp": [ - 5953 + 5926 ], "sum": [ - 5957 + 5930 ], "var_pop": [ - 5959 + 5932 ], "var_samp": [ - 5961 + 5934 ], "variance": [ - 5963 + 5936 ], "__typename": [ 80 @@ -136591,7 +136216,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5933 + 5906 ], "__typename": [ 80 @@ -136643,43 +136268,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -136687,13 +136312,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5932 + 5905 ], "_not": [ - 5932 + 5905 ], "_or": [ - 5932 + 5905 ], "head_to_head_match_wins": [ 41 @@ -136723,7 +136348,7 @@ export default { 41 ], "team": [ - 5014 + 4987 ], "team_kdr": [ 1692 @@ -136735,13 +136360,13 @@ export default { 41 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "tournament_team_id": [ - 5113 + 5086 ], "wins": [ 41 @@ -136779,7 +136404,7 @@ export default { 40 ], "team": [ - 5023 + 4996 ], "team_kdr": [ 1691 @@ -136791,13 +136416,13 @@ export default { 40 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -136844,10 +136469,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -136858,49 +136483,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -136944,10 +136569,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -136958,49 +136583,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137008,55 +136633,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team": [ - 5025 + 4998 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "tournament_team_id": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137117,43 +136742,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137205,43 +136830,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137293,43 +136918,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137337,7 +136962,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5955 + 5928 ], "ordering": [ 315 @@ -137384,10 +137009,10 @@ export default { 40 ], "tournament_id": [ - 5111 + 5084 ], "tournament_team_id": [ - 5111 + 5084 ], "wins": [ 40 @@ -137442,43 +137067,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137530,43 +137155,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137618,43 +137243,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137706,43 +137331,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3035 + 3008 ], "head_to_head_rounds_won": [ - 3035 + 3008 ], "losses": [ - 3035 + 3008 ], "maps_lost": [ - 3035 + 3008 ], "maps_won": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "matches_remaining": [ - 3035 + 3008 ], "rounds_lost": [ - 3035 + 3008 ], "rounds_won": [ - 3035 + 3008 ], "team_kdr": [ - 3035 + 3008 ], "total_deaths": [ - 3035 + 3008 ], "total_kills": [ - 3035 + 3008 ], "wins": [ - 3035 + 3008 ], "__typename": [ 80 @@ -137771,16 +137396,16 @@ export default { 40 ], "player": [ - 3993 + 3966 ], "player_steam_id": [ 259 ], "tournament": [ - 5047 + 5020 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -137788,10 +137413,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5978 + 5951 ], "nodes": [ - 5964 + 5937 ], "__typename": [ 80 @@ -137799,31 +137424,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5967 + 5940 ], "corr": [ - 5968 + 5941 ], "count": [ - 5970 + 5943 ], "covar_samp": [ - 5971 + 5944 ], "max": [ - 5973 + 5946 ], "min": [ - 5974 + 5947 ], "stddev_samp": [ - 5975 + 5948 ], "sum": [ - 5976 + 5949 ], "var_samp": [ - 5977 + 5950 ], "__typename": [ 80 @@ -137831,13 +137456,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5991 + 5964 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137848,13 +137473,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5969 + 5942 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137865,10 +137490,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5992 + 5965 ], "Y": [ - 5992 + 5965 ], "__typename": [ 80 @@ -137876,13 +137501,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5990 + 5963 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 41 @@ -137893,13 +137518,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5972 + 5945 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137910,10 +137535,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5993 + 5966 ], "Y": [ - 5993 + 5966 ], "__typename": [ 80 @@ -137921,13 +137546,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5994 + 5967 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137938,13 +137563,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5995 + 5968 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137955,13 +137580,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5996 + 5969 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137972,13 +137597,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5997 + 5970 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -137989,13 +137614,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5998 + 5971 ], "distinct": [ 5 ], "filter": [ - 5983 + 5956 ], "predicate": [ 1692 @@ -138006,13 +137631,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5981 + 5954 ], "count": [ 40, { "columns": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -138021,31 +137646,31 @@ export default { } ], "max": [ - 5985 + 5958 ], "min": [ - 5987 + 5960 ], "stddev": [ - 5999 + 5972 ], "stddev_pop": [ - 6001 + 5974 ], "stddev_samp": [ - 6003 + 5976 ], "sum": [ - 6007 + 5980 ], "var_pop": [ - 6009 + 5982 ], "var_samp": [ - 6011 + 5984 ], "variance": [ - 6013 + 5986 ], "__typename": [ 80 @@ -138053,37 +137678,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5982 + 5955 ], "count": [ - 3035 + 3008 ], "max": [ - 5986 + 5959 ], "min": [ - 5988 + 5961 ], "stddev": [ - 6000 + 5973 ], "stddev_pop": [ - 6002 + 5975 ], "stddev_samp": [ - 6004 + 5977 ], "sum": [ - 6008 + 5981 ], "var_pop": [ - 6010 + 5983 ], "var_samp": [ - 6012 + 5985 ], "variance": [ - 6014 + 5987 ], "__typename": [ 80 @@ -138091,7 +137716,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5984 + 5957 ], "__typename": [ 80 @@ -138128,28 +137753,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138157,13 +137782,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5983 + 5956 ], "_not": [ - 5983 + 5956 ], "_or": [ - 5983 + 5956 ], "assists": [ 41 @@ -138187,16 +137812,16 @@ export default { 41 ], "player": [ - 3997 + 3970 ], "player_steam_id": [ 261 ], "tournament": [ - 5068 + 5041 ], "tournament_id": [ - 5113 + 5086 ], "__typename": [ 80 @@ -138225,16 +137850,16 @@ export default { 40 ], "player": [ - 4004 + 3977 ], "player_steam_id": [ 259 ], "tournament": [ - 5077 + 5050 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -138266,7 +137891,7 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -138274,31 +137899,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138330,7 +137955,7 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -138338,31 +137963,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138370,37 +137995,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player": [ - 4006 + 3979 ], "player_steam_id": [ - 3035 + 3008 ], "tournament": [ - 5079 + 5052 ], "tournament_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138446,28 +138071,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138504,28 +138129,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138562,28 +138187,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138591,7 +138216,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 6006 + 5979 ], "ordering": [ 315 @@ -138626,7 +138251,7 @@ export default { 259 ], "tournament_id": [ - 5111 + 5084 ], "__typename": [ 80 @@ -138663,28 +138288,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138721,28 +138346,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138779,28 +138404,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138837,28 +138462,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3035 + 3008 ], "deaths": [ - 3035 + 3008 ], "headshot_percentage": [ - 3035 + 3008 ], "headshots": [ - 3035 + 3008 ], "kdr": [ - 3035 + 3008 ], "kills": [ - 3035 + 3008 ], "matches_played": [ - 3035 + 3008 ], "player_steam_id": [ - 3035 + 3008 ], "__typename": [ 80 @@ -138913,11 +138538,11 @@ export default { 102, { "map_id": [ - 5111, + 5084, "uuid!" ], "map_pool_id": [ - 5111, + 5084, "uuid!" ] } @@ -138970,7 +138595,7 @@ export default { 121, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139023,7 +138648,7 @@ export default { 162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139076,7 +138701,7 @@ export default { 190, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139129,7 +138754,7 @@ export default { 231, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139182,7 +138807,7 @@ export default { 264, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139235,7 +138860,7 @@ export default { 316, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139291,7 +138916,7 @@ export default { 348, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139344,7 +138969,7 @@ export default { 375, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -139397,7 +139022,7 @@ export default { 420, { "draft_game_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -139454,7 +139079,7 @@ export default { 465, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -141892,11 +141517,11 @@ export default { 1432, { "event_id": [ - 5111, + 5084, "uuid!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -141949,7 +141574,7 @@ export default { 1450, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -142002,7 +141627,7 @@ export default { 1472, { "media_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -142059,7 +141684,7 @@ export default { 1533, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -142116,7 +141741,7 @@ export default { 1574, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -142173,11 +141798,11 @@ export default { 1615, { "event_id": [ - 5111, + 5084, "uuid!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } @@ -142230,11 +141855,11 @@ export default { 1639, { "event_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } @@ -142287,7 +141912,7 @@ export default { 1663, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -142503,7 +142128,7 @@ export default { 1804, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -142539,7 +142164,7 @@ export default { 36, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "target_steam_id": [ @@ -142780,14 +142405,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 3476, + 3449, { "args": [ 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -142797,23 +142422,23 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3477, + 3450, { "args": [ 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -142823,11 +142448,11 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], @@ -142923,7 +142548,7 @@ export default { 1871, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -142976,7 +142601,7 @@ export default { 1899, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143029,7 +142654,7 @@ export default { 1940, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143082,7 +142707,7 @@ export default { 1981, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143135,7 +142760,7 @@ export default { 2022, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143188,7 +142813,7 @@ export default { 2047, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143241,7 +142866,7 @@ export default { 2080, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143294,7 +142919,7 @@ export default { 2121, { "league_team_season_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -143351,7 +142976,7 @@ export default { 2162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143404,7 +143029,7 @@ export default { 2204, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143472,7 +143097,7 @@ export default { 2223, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143525,7 +143150,7 @@ export default { 2242, { "lobby_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -143582,7 +143207,7 @@ export default { 2287, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -143635,69 +143260,16 @@ export default { 2306, { "id": [ - 5111, - "uuid!" - ] - } - ], - "match_camera_tokens": [ - 2335, - { - "distinct_on": [ - 2349, - "[match_camera_tokens_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2347, - "[match_camera_tokens_order_by!]" - ], - "where": [ - 2339 - ] - } - ], - "match_camera_tokens_aggregate": [ - 2336, - { - "distinct_on": [ - 2349, - "[match_camera_tokens_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2347, - "[match_camera_tokens_order_by!]" - ], - "where": [ - 2339 - ] - } - ], - "match_camera_tokens_by_pk": [ - 2335, - { - "id": [ - 5111, + 5084, "uuid!" ] } ], "match_clips": [ - 2362, + 2335, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -143707,19 +143279,19 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_aggregate": [ - 2363, + 2336, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -143729,28 +143301,28 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_by_pk": [ - 2362, + 2335, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_demo_sessions": [ - 2404, + 2377, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -143760,19 +143332,19 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], "match_demo_sessions_aggregate": [ - 2405, + 2378, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -143782,28 +143354,28 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], "match_demo_sessions_by_pk": [ - 2404, + 2377, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_lineup_players": [ - 2450, + 2423, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -143813,19 +143385,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match_lineup_players_aggregate": [ - 2451, + 2424, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -143835,28 +143407,28 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match_lineup_players_by_pk": [ - 2450, + 2423, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_lineups": [ - 2495, + 2468, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -143866,19 +143438,19 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "match_lineups_aggregate": [ - 2496, + 2469, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -143888,28 +143460,28 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "match_lineups_by_pk": [ - 2495, + 2468, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_demos": [ - 2537, + 2510, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -143919,19 +143491,19 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "match_map_demos_aggregate": [ - 2538, + 2511, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -143941,28 +143513,28 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "match_map_demos_by_pk": [ - 2537, + 2510, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_rounds": [ - 2588, + 2561, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -143972,19 +143544,19 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "match_map_rounds_aggregate": [ - 2589, + 2562, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -143994,28 +143566,28 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "match_map_rounds_by_pk": [ - 2588, + 2561, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -144025,19 +143597,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_map_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -144047,28 +143619,28 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_map_veto_picks_by_pk": [ - 2629, + 2602, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_maps": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -144078,19 +143650,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -144100,28 +143672,28 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_by_pk": [ - 2657, + 2630, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_options": [ - 2699, + 2672, { "distinct_on": [ - 2714, + 2687, "[match_options_select_column!]" ], "limit": [ @@ -144131,19 +143703,19 @@ export default { 40 ], "order_by": [ - 2712, + 2685, "[match_options_order_by!]" ], "where": [ - 2703 + 2676 ] } ], "match_options_aggregate": [ - 2700, + 2673, { "distinct_on": [ - 2714, + 2687, "[match_options_select_column!]" ], "limit": [ @@ -144153,28 +143725,28 @@ export default { 40 ], "order_by": [ - 2712, + 2685, "[match_options_order_by!]" ], "where": [ - 2703 + 2676 ] } ], "match_options_by_pk": [ - 2699, + 2672, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_region_veto_picks": [ - 2727, + 2700, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -144184,19 +143756,19 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], "match_region_veto_picks_aggregate": [ - 2728, + 2701, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -144206,28 +143778,28 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], "match_region_veto_picks_by_pk": [ - 2727, + 2700, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_streams": [ - 2755, + 2728, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -144237,19 +143809,19 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "match_streams_aggregate": [ - 2756, + 2729, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -144259,28 +143831,28 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "match_streams_by_pk": [ - 2755, + 2728, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_type_cfgs": [ - 2805, + 2778, { "distinct_on": [ - 2817, + 2790, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -144290,19 +143862,19 @@ export default { 40 ], "order_by": [ - 2815, + 2788, "[match_type_cfgs_order_by!]" ], "where": [ - 2808 + 2781 ] } ], "match_type_cfgs_aggregate": [ - 2806, + 2779, { "distinct_on": [ - 2817, + 2790, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -144312,16 +143884,16 @@ export default { 40 ], "order_by": [ - 2815, + 2788, "[match_type_cfgs_order_by!]" ], "where": [ - 2808 + 2781 ] } ], "match_type_cfgs_by_pk": [ - 2805, + 2778, { "type": [ 742, @@ -144330,10 +143902,10 @@ export default { } ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -144343,19 +143915,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_aggregate": [ - 2824, + 2797, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -144365,19 +143937,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_by_pk": [ - 2823, + 2796, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -144386,10 +143958,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2865, + 2838, { "distinct_on": [ - 2877, + 2850, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -144399,19 +143971,19 @@ export default { 40 ], "order_by": [ - 2875, + 2848, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2868 + 2841 ] } ], "migration_hashes_hashes_aggregate": [ - 2866, + 2839, { "distinct_on": [ - 2877, + 2850, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -144421,16 +143993,16 @@ export default { 40 ], "order_by": [ - 2875, + 2848, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2868 + 2841 ] } ], "migration_hashes_hashes_by_pk": [ - 2865, + 2838, { "name": [ 80, @@ -144439,10 +144011,10 @@ export default { } ], "my_friends": [ - 2883, + 2856, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -144452,19 +144024,19 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], "my_friends_aggregate": [ - 2884, + 2857, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -144474,11 +144046,11 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], @@ -144486,7 +144058,7 @@ export default { 50, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -144495,10 +144067,10 @@ export default { 50 ], "news_articles": [ - 2929, + 2902, { "distinct_on": [ - 2943, + 2916, "[news_articles_select_column!]" ], "limit": [ @@ -144508,19 +144080,19 @@ export default { 40 ], "order_by": [ - 2941, + 2914, "[news_articles_order_by!]" ], "where": [ - 2933 + 2906 ] } ], "news_articles_aggregate": [ - 2930, + 2903, { "distinct_on": [ - 2943, + 2916, "[news_articles_select_column!]" ], "limit": [ @@ -144530,28 +144102,28 @@ export default { 40 ], "order_by": [ - 2941, + 2914, "[news_articles_order_by!]" ], "where": [ - 2933 + 2906 ] } ], "news_articles_by_pk": [ - 2929, + 2902, { "id": [ - 5111, + 5084, "uuid!" ] } ], "notification_preferences": [ - 2956, + 2929, { "distinct_on": [ - 2970, + 2943, "[notification_preferences_select_column!]" ], "limit": [ @@ -144561,19 +144133,19 @@ export default { 40 ], "order_by": [ - 2968, + 2941, "[notification_preferences_order_by!]" ], "where": [ - 2960 + 2933 ] } ], "notification_preferences_aggregate": [ - 2957, + 2930, { "distinct_on": [ - 2970, + 2943, "[notification_preferences_select_column!]" ], "limit": [ @@ -144583,16 +144155,16 @@ export default { 40 ], "order_by": [ - 2968, + 2941, "[notification_preferences_order_by!]" ], "where": [ - 2960 + 2933 ] } ], "notification_preferences_by_pk": [ - 2956, + 2929, { "channel": [ 80, @@ -144609,10 +144181,10 @@ export default { } ], "notifications": [ - 2983, + 2956, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -144622,19 +144194,19 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "notifications_aggregate": [ - 2984, + 2957, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -144644,28 +144216,28 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "notifications_by_pk": [ - 2983, + 2956, { "id": [ - 5111, + 5084, "uuid!" ] } ], "pending_match_import_players": [ - 3036, + 3009, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -144675,19 +144247,19 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "pending_match_import_players_aggregate": [ - 3037, + 3010, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -144697,32 +144269,32 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "pending_match_import_players_by_pk": [ - 3036, + 3009, { "steam_id": [ 259, "bigint!" ], "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "pending_match_imports": [ - 3077, + 3050, { "distinct_on": [ - 3092, + 3065, "[pending_match_imports_select_column!]" ], "limit": [ @@ -144732,19 +144304,19 @@ export default { 40 ], "order_by": [ - 3090, + 3063, "[pending_match_imports_order_by!]" ], "where": [ - 3081 + 3054 ] } ], "pending_match_imports_aggregate": [ - 3078, + 3051, { "distinct_on": [ - 3092, + 3065, "[pending_match_imports_select_column!]" ], "limit": [ @@ -144754,28 +144326,28 @@ export default { 40 ], "order_by": [ - 3090, + 3063, "[pending_match_imports_order_by!]" ], "where": [ - 3081 + 3054 ] } ], "pending_match_imports_by_pk": [ - 3077, + 3050, { "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "player_aim_stats_demo": [ - 3105, + 3078, { "distinct_on": [ - 3119, + 3092, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -144785,19 +144357,19 @@ export default { 40 ], "order_by": [ - 3117, + 3090, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3109 + 3082 ] } ], "player_aim_stats_demo_aggregate": [ - 3106, + 3079, { "distinct_on": [ - 3119, + 3092, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -144807,32 +144379,32 @@ export default { 40 ], "order_by": [ - 3117, + 3090, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3109 + 3082 ] } ], "player_aim_stats_demo_by_pk": [ - 3105, + 3078, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3132, + 3105, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -144842,19 +144414,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "player_aim_weapon_stats_aggregate": [ - 3133, + 3106, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -144864,19 +144436,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "player_aim_weapon_stats_by_pk": [ - 3132, + 3105, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -144890,10 +144462,10 @@ export default { } ], "player_assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -144903,19 +144475,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -144925,16 +144497,16 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_by_pk": [ - 3173, + 3146, { "attacked_steam_id": [ 259, @@ -144945,20 +144517,20 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_career_stats_v": [ - 3218, + 3191, { "distinct_on": [ - 3226, + 3199, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -144968,19 +144540,19 @@ export default { 40 ], "order_by": [ - 3225, + 3198, "[player_career_stats_v_order_by!]" ], "where": [ - 3222 + 3195 ] } ], "player_career_stats_v_aggregate": [ - 3219, + 3192, { "distinct_on": [ - 3226, + 3199, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -144990,19 +144562,19 @@ export default { 40 ], "order_by": [ - 3225, + 3198, "[player_career_stats_v_order_by!]" ], "where": [ - 3222 + 3195 ] } ], "player_damages": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -145012,19 +144584,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -145034,36 +144606,36 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_by_pk": [ - 3236, + 3209, { "id": [ - 5111, + 5084, "uuid!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_elo": [ - 3277, + 3250, { "distinct_on": [ - 3291, + 3264, "[player_elo_select_column!]" ], "limit": [ @@ -145073,19 +144645,19 @@ export default { 40 ], "order_by": [ - 3289, + 3262, "[player_elo_order_by!]" ], "where": [ - 3281 + 3254 ] } ], "player_elo_aggregate": [ - 3278, + 3251, { "distinct_on": [ - 3291, + 3264, "[player_elo_select_column!]" ], "limit": [ @@ -145095,19 +144667,19 @@ export default { 40 ], "order_by": [ - 3289, + 3262, "[player_elo_order_by!]" ], "where": [ - 3281 + 3254 ] } ], "player_elo_by_pk": [ - 3277, + 3250, { "match_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -145121,10 +144693,10 @@ export default { } ], "player_faceit_rank_history": [ - 3304, + 3277, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -145134,19 +144706,19 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], "player_faceit_rank_history_aggregate": [ - 3305, + 3278, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -145156,28 +144728,28 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], "player_faceit_rank_history_by_pk": [ - 3304, + 3277, { "id": [ - 5111, + 5084, "uuid!" ] } ], "player_flashes": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -145187,19 +144759,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_flashes_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -145209,16 +144781,16 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_flashes_by_pk": [ - 3345, + 3318, { "attacked_steam_id": [ 259, @@ -145229,20 +144801,20 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -145252,19 +144824,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -145274,16 +144846,16 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_by_pk": [ - 3390, + 3363, { "attacked_steam_id": [ 259, @@ -145294,20 +144866,20 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3402, + 3375, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -145317,19 +144889,19 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], "player_kills_by_weapon_aggregate": [ - 3403, + 3376, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -145339,16 +144911,16 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], "player_kills_by_weapon_by_pk": [ - 3402, + 3375, { "player_steam_id": [ 259, @@ -145361,10 +144933,10 @@ export default { } ], "player_leaderboard_rank": [ - 3476, + 3449, { "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -145374,19 +144946,19 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "player_leaderboard_rank_aggregate": [ - 3477, + 3450, { "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -145396,19 +144968,19 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "player_match_map_stats": [ - 3499, + 3472, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -145418,19 +144990,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "player_match_map_stats_aggregate": [ - 3500, + 3473, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -145440,19 +145012,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "player_match_map_stats_by_pk": [ - 3499, + 3472, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -145462,10 +145034,10 @@ export default { } ], "player_match_performance_v": [ - 3540, + 3513, { "distinct_on": [ - 3548, + 3521, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -145475,19 +145047,19 @@ export default { 40 ], "order_by": [ - 3547, + 3520, "[player_match_performance_v_order_by!]" ], "where": [ - 3544 + 3517 ] } ], "player_match_performance_v_aggregate": [ - 3541, + 3514, { "distinct_on": [ - 3548, + 3521, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -145497,19 +145069,19 @@ export default { 40 ], "order_by": [ - 3547, + 3520, "[player_match_performance_v_order_by!]" ], "where": [ - 3544 + 3517 ] } ], "player_match_stats_v": [ - 3558, + 3531, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -145519,19 +145091,19 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "player_match_stats_v_aggregate": [ - 3559, + 3532, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -145541,19 +145113,19 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "player_objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -145563,19 +145135,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -145585,19 +145157,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_by_pk": [ - 3591, + 3564, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -145605,16 +145177,16 @@ export default { "bigint!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_performance_v": [ - 3632, + 3605, { "distinct_on": [ - 3640, + 3613, "[player_performance_v_select_column!]" ], "limit": [ @@ -145624,19 +145196,19 @@ export default { 40 ], "order_by": [ - 3639, + 3612, "[player_performance_v_order_by!]" ], "where": [ - 3636 + 3609 ] } ], "player_performance_v_aggregate": [ - 3633, + 3606, { "distinct_on": [ - 3640, + 3613, "[player_performance_v_select_column!]" ], "limit": [ @@ -145646,19 +145218,19 @@ export default { 40 ], "order_by": [ - 3639, + 3612, "[player_performance_v_order_by!]" ], "where": [ - 3636 + 3609 ] } ], "player_premier_rank_history": [ - 3650, + 3623, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -145668,19 +145240,19 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "player_premier_rank_history_aggregate": [ - 3651, + 3624, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -145690,28 +145262,28 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "player_premier_rank_history_by_pk": [ - 3650, + 3623, { "id": [ - 5111, + 5084, "uuid!" ] } ], "player_sanctions": [ - 3691, + 3664, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -145721,19 +145293,19 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "player_sanctions_aggregate": [ - 3692, + 3665, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -145743,32 +145315,32 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "player_sanctions_by_pk": [ - 3691, + 3664, { "created_at": [ - 4611, + 4584, "timestamptz!" ], "id": [ - 5111, + 5084, "uuid!" ] } ], "player_season_stats": [ - 3732, + 3705, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -145778,19 +145350,19 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "player_season_stats_aggregate": [ - 3733, + 3706, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -145800,32 +145372,32 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "player_season_stats_by_pk": [ - 3732, + 3705, { "player_steam_id": [ 259, "bigint!" ], "season_id": [ - 5111, + 5084, "uuid!" ] } ], "player_stats": [ - 3791, + 3764, { "distinct_on": [ - 3806, + 3779, "[player_stats_select_column!]" ], "limit": [ @@ -145835,19 +145407,19 @@ export default { 40 ], "order_by": [ - 3804, + 3777, "[player_stats_order_by!]" ], "where": [ - 3795 + 3768 ] } ], "player_stats_aggregate": [ - 3792, + 3765, { "distinct_on": [ - 3806, + 3779, "[player_stats_select_column!]" ], "limit": [ @@ -145857,16 +145429,16 @@ export default { 40 ], "order_by": [ - 3804, + 3777, "[player_stats_order_by!]" ], "where": [ - 3795 + 3768 ] } ], "player_stats_by_pk": [ - 3791, + 3764, { "player_steam_id": [ 259, @@ -145875,10 +145447,10 @@ export default { } ], "player_steam_bot_friend": [ - 3819, + 3792, { "distinct_on": [ - 3838, + 3811, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -145888,19 +145460,19 @@ export default { 40 ], "order_by": [ - 3835, + 3808, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3824 + 3797 ] } ], "player_steam_bot_friend_aggregate": [ - 3820, + 3793, { "distinct_on": [ - 3838, + 3811, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -145910,16 +145482,16 @@ export default { 40 ], "order_by": [ - 3835, + 3808, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3824 + 3797 ] } ], "player_steam_bot_friend_by_pk": [ - 3819, + 3792, { "steam_id": [ 259, @@ -145928,10 +145500,10 @@ export default { } ], "player_steam_match_auth": [ - 3851, + 3824, { "distinct_on": [ - 3865, + 3838, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -145941,19 +145513,19 @@ export default { 40 ], "order_by": [ - 3863, + 3836, "[player_steam_match_auth_order_by!]" ], "where": [ - 3855 + 3828 ] } ], "player_steam_match_auth_aggregate": [ - 3852, + 3825, { "distinct_on": [ - 3865, + 3838, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -145963,16 +145535,16 @@ export default { 40 ], "order_by": [ - 3863, + 3836, "[player_steam_match_auth_order_by!]" ], "where": [ - 3855 + 3828 ] } ], "player_steam_match_auth_by_pk": [ - 3851, + 3824, { "steam_id": [ 259, @@ -145981,10 +145553,10 @@ export default { } ], "player_unused_utility": [ - 3878, + 3851, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -145994,19 +145566,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utility_aggregate": [ - 3879, + 3852, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -146016,19 +145588,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utility_by_pk": [ - 3878, + 3851, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -146038,10 +145610,10 @@ export default { } ], "player_utility": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -146051,19 +145623,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utility_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -146073,36 +145645,36 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utility_by_pk": [ - 3919, + 3892, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3960, + 3933, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -146112,19 +145684,19 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], "player_weapon_stats_v_aggregate": [ - 3961, + 3934, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -146134,19 +145706,19 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], "players": [ - 3993, + 3966, { "distinct_on": [ - 4008, + 3981, "[players_select_column!]" ], "limit": [ @@ -146156,19 +145728,19 @@ export default { 40 ], "order_by": [ - 4006, + 3979, "[players_order_by!]" ], "where": [ - 3997 + 3970 ] } ], "players_aggregate": [ - 3994, + 3967, { "distinct_on": [ - 4008, + 3981, "[players_select_column!]" ], "limit": [ @@ -146178,16 +145750,16 @@ export default { 40 ], "order_by": [ - 4006, + 3979, "[players_order_by!]" ], "where": [ - 3997 + 3970 ] } ], "players_by_pk": [ - 3993, + 3966, { "steam_id": [ 259, @@ -146196,10 +145768,10 @@ export default { } ], "plugin_versions": [ - 4021, + 3994, { "distinct_on": [ - 4035, + 4008, "[plugin_versions_select_column!]" ], "limit": [ @@ -146209,19 +145781,19 @@ export default { 40 ], "order_by": [ - 4033, + 4006, "[plugin_versions_order_by!]" ], "where": [ - 4025 + 3998 ] } ], "plugin_versions_aggregate": [ - 4022, + 3995, { "distinct_on": [ - 4035, + 4008, "[plugin_versions_select_column!]" ], "limit": [ @@ -146231,16 +145803,16 @@ export default { 40 ], "order_by": [ - 4033, + 4006, "[plugin_versions_order_by!]" ], "where": [ - 4025 + 3998 ] } ], "plugin_versions_by_pk": [ - 4021, + 3994, { "runtime": [ 1112, @@ -146253,10 +145825,10 @@ export default { } ], "push_subscriptions": [ - 4048, + 4021, { "distinct_on": [ - 4062, + 4035, "[push_subscriptions_select_column!]" ], "limit": [ @@ -146266,19 +145838,19 @@ export default { 40 ], "order_by": [ - 4060, + 4033, "[push_subscriptions_order_by!]" ], "where": [ - 4052 + 4025 ] } ], "push_subscriptions_aggregate": [ - 4049, + 4022, { "distinct_on": [ - 4062, + 4035, "[push_subscriptions_select_column!]" ], "limit": [ @@ -146288,19 +145860,19 @@ export default { 40 ], "order_by": [ - 4060, + 4033, "[push_subscriptions_order_by!]" ], "where": [ - 4052 + 4025 ] } ], "push_subscriptions_by_pk": [ - 4048, + 4021, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -146322,10 +145894,10 @@ export default { } ], "seasons": [ - 4079, + 4052, { "distinct_on": [ - 4094, + 4067, "[seasons_select_column!]" ], "limit": [ @@ -146335,19 +145907,19 @@ export default { 40 ], "order_by": [ - 4092, + 4065, "[seasons_order_by!]" ], "where": [ - 4083 + 4056 ] } ], "seasons_aggregate": [ - 4080, + 4053, { "distinct_on": [ - 4094, + 4067, "[seasons_select_column!]" ], "limit": [ @@ -146357,28 +145929,28 @@ export default { 40 ], "order_by": [ - 4092, + 4065, "[seasons_order_by!]" ], "where": [ - 4083 + 4056 ] } ], "seasons_by_pk": [ - 4079, + 4052, { "id": [ - 5111, + 5084, "uuid!" ] } ], "server_regions": [ - 4107, + 4080, { "distinct_on": [ - 4121, + 4094, "[server_regions_select_column!]" ], "limit": [ @@ -146388,19 +145960,19 @@ export default { 40 ], "order_by": [ - 4119, + 4092, "[server_regions_order_by!]" ], "where": [ - 4111 + 4084 ] } ], "server_regions_aggregate": [ - 4108, + 4081, { "distinct_on": [ - 4121, + 4094, "[server_regions_select_column!]" ], "limit": [ @@ -146410,16 +145982,16 @@ export default { 40 ], "order_by": [ - 4119, + 4092, "[server_regions_order_by!]" ], "where": [ - 4111 + 4084 ] } ], "server_regions_by_pk": [ - 4107, + 4080, { "value": [ 80, @@ -146428,10 +146000,10 @@ export default { } ], "servers": [ - 4134, + 4107, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -146441,19 +146013,19 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_aggregate": [ - 4135, + 4108, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -146463,28 +146035,28 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_by_pk": [ - 4134, + 4107, { "id": [ - 5111, + 5084, "uuid!" ] } ], "settings": [ - 4180, + 4153, { "distinct_on": [ - 4192, + 4165, "[settings_select_column!]" ], "limit": [ @@ -146494,19 +146066,19 @@ export default { 40 ], "order_by": [ - 4190, + 4163, "[settings_order_by!]" ], "where": [ - 4183 + 4156 ] } ], "settings_aggregate": [ - 4181, + 4154, { "distinct_on": [ - 4192, + 4165, "[settings_select_column!]" ], "limit": [ @@ -146516,16 +146088,16 @@ export default { 40 ], "order_by": [ - 4190, + 4163, "[settings_order_by!]" ], "where": [ - 4183 + 4156 ] } ], "settings_by_pk": [ - 4180, + 4153, { "name": [ 80, @@ -146537,10 +146109,10 @@ export default { 74 ], "steam_account_claims": [ - 4200, + 4173, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -146550,19 +146122,19 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "steam_account_claims_aggregate": [ - 4201, + 4174, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -146572,28 +146144,28 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "steam_account_claims_by_pk": [ - 4200, + 4173, { "id": [ - 5111, + 5084, "uuid!" ] } ], "steam_accounts": [ - 4224, + 4197, { "distinct_on": [ - 4239, + 4212, "[steam_accounts_select_column!]" ], "limit": [ @@ -146603,19 +146175,19 @@ export default { 40 ], "order_by": [ - 4237, + 4210, "[steam_accounts_order_by!]" ], "where": [ - 4228 + 4201 ] } ], "steam_accounts_aggregate": [ - 4225, + 4198, { "distinct_on": [ - 4239, + 4212, "[steam_accounts_select_column!]" ], "limit": [ @@ -146625,28 +146197,28 @@ export default { 40 ], "order_by": [ - 4237, + 4210, "[steam_accounts_order_by!]" ], "where": [ - 4228 + 4201 ] } ], "steam_accounts_by_pk": [ - 4224, + 4197, { "id": [ - 5111, + 5084, "uuid!" ] } ], "system_alerts": [ - 4252, + 4225, { "distinct_on": [ - 4266, + 4239, "[system_alerts_select_column!]" ], "limit": [ @@ -146656,19 +146228,19 @@ export default { 40 ], "order_by": [ - 4264, + 4237, "[system_alerts_order_by!]" ], "where": [ - 4256 + 4229 ] } ], "system_alerts_aggregate": [ - 4253, + 4226, { "distinct_on": [ - 4266, + 4239, "[system_alerts_select_column!]" ], "limit": [ @@ -146678,19 +146250,19 @@ export default { 40 ], "order_by": [ - 4264, + 4237, "[system_alerts_order_by!]" ], "where": [ - 4256 + 4229 ] } ], "system_alerts_by_pk": [ - 4252, + 4225, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -146699,16 +146271,16 @@ export default { 87, { "team_id": [ - 5111, + 5084, "uuid!" ] } ], "team_invites": [ - 4279, + 4252, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -146718,19 +146290,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_invites_aggregate": [ - 4280, + 4253, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -146740,28 +146312,28 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_invites_by_pk": [ - 4279, + 4252, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_roster": [ - 4320, + 4293, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -146771,19 +146343,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_roster_aggregate": [ - 4321, + 4294, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -146793,32 +146365,32 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_roster_by_pk": [ - 4320, + 4293, { "player_steam_id": [ 259, "bigint!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_alerts": [ - 4365, + 4338, { "distinct_on": [ - 4379, + 4352, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -146828,19 +146400,19 @@ export default { 40 ], "order_by": [ - 4377, + 4350, "[team_scrim_alerts_order_by!]" ], "where": [ - 4369 + 4342 ] } ], "team_scrim_alerts_aggregate": [ - 4366, + 4339, { "distinct_on": [ - 4379, + 4352, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -146850,28 +146422,28 @@ export default { 40 ], "order_by": [ - 4377, + 4350, "[team_scrim_alerts_order_by!]" ], "where": [ - 4369 + 4342 ] } ], "team_scrim_alerts_by_pk": [ - 4365, + 4338, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_availability": [ - 4392, + 4365, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -146881,19 +146453,19 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "team_scrim_availability_aggregate": [ - 4393, + 4366, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -146903,28 +146475,28 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "team_scrim_availability_by_pk": [ - 4392, + 4365, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4420, + 4393, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -146934,19 +146506,19 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "team_scrim_request_proposals_aggregate": [ - 4421, + 4394, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -146956,28 +146528,28 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "team_scrim_request_proposals_by_pk": [ - 4420, + 4393, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_requests": [ - 4461, + 4434, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -146987,19 +146559,19 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], "team_scrim_requests_aggregate": [ - 4462, + 4435, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -147009,28 +146581,28 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], "team_scrim_requests_by_pk": [ - 4461, + 4434, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_settings": [ - 4507, + 4480, { "distinct_on": [ - 4522, + 4495, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -147040,19 +146612,19 @@ export default { 40 ], "order_by": [ - 4520, + 4493, "[team_scrim_settings_order_by!]" ], "where": [ - 4511 + 4484 ] } ], "team_scrim_settings_aggregate": [ - 4508, + 4481, { "distinct_on": [ - 4522, + 4495, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -147062,28 +146634,28 @@ export default { 40 ], "order_by": [ - 4520, + 4493, "[team_scrim_settings_order_by!]" ], "where": [ - 4511 + 4484 ] } ], "team_scrim_settings_by_pk": [ - 4507, + 4480, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_suggestions": [ - 4535, + 4508, { "distinct_on": [ - 4549, + 4522, "[team_suggestions_select_column!]" ], "limit": [ @@ -147093,19 +146665,19 @@ export default { 40 ], "order_by": [ - 4547, + 4520, "[team_suggestions_order_by!]" ], "where": [ - 4539 + 4512 ] } ], "team_suggestions_aggregate": [ - 4536, + 4509, { "distinct_on": [ - 4549, + 4522, "[team_suggestions_select_column!]" ], "limit": [ @@ -147115,28 +146687,28 @@ export default { 40 ], "order_by": [ - 4547, + 4520, "[team_suggestions_order_by!]" ], "where": [ - 4539 + 4512 ] } ], "team_suggestions_by_pk": [ - 4535, + 4508, { "id": [ - 5111, + 5084, "uuid!" ] } ], "teams": [ - 4562, + 4535, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -147146,19 +146718,19 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "teams_aggregate": [ - 4563, + 4536, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -147168,19 +146740,19 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "teams_by_pk": [ - 4562, + 4535, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -147189,10 +146761,10 @@ export default { 93 ], "tournament_awards": [ - 4613, + 4586, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -147202,19 +146774,19 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_awards_aggregate": [ - 4614, + 4587, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -147224,28 +146796,28 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_awards_by_pk": [ - 4613, + 4586, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_brackets": [ - 4655, + 4628, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -147255,19 +146827,19 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "tournament_brackets_aggregate": [ - 4656, + 4629, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -147277,28 +146849,28 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "tournament_brackets_by_pk": [ - 4655, + 4628, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_categories": [ - 4701, + 4674, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -147308,19 +146880,19 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "tournament_categories_aggregate": [ - 4702, + 4675, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -147330,32 +146902,32 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "tournament_categories_by_pk": [ - 4701, + 4674, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_organizer_teams": [ - 4725, + 4698, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -147365,19 +146937,19 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "tournament_organizer_teams_aggregate": [ - 4726, + 4699, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -147387,32 +146959,32 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "tournament_organizer_teams_by_pk": [ - 4725, + 4698, { "team_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_organizers": [ - 4749, + 4722, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -147422,19 +146994,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_organizers_aggregate": [ - 4750, + 4723, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -147444,32 +147016,32 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_organizers_by_pk": [ - 4749, + 4722, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_prizes": [ - 4790, + 4763, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -147479,19 +147051,19 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "tournament_prizes_aggregate": [ - 4791, + 4764, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -147501,28 +147073,28 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "tournament_prizes_by_pk": [ - 4790, + 4763, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_stage_windows": [ - 4831, + 4804, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -147532,19 +147104,19 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], "tournament_stage_windows_aggregate": [ - 4832, + 4805, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -147554,28 +147126,28 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], "tournament_stage_windows_by_pk": [ - 4831, + 4804, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_stages": [ - 4872, + 4845, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -147585,19 +147157,19 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "tournament_stages_aggregate": [ - 4873, + 4846, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -147607,28 +147179,28 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "tournament_stages_by_pk": [ - 4872, + 4845, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_team_invites": [ - 4923, + 4896, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -147638,19 +147210,19 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], "tournament_team_invites_aggregate": [ - 4924, + 4897, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -147660,28 +147232,28 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], "tournament_team_invites_by_pk": [ - 4923, + 4896, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_team_roster": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -147691,19 +147263,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_team_roster_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -147713,32 +147285,32 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_team_roster_by_pk": [ - 4964, + 4937, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_teams": [ - 5005, + 4978, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -147748,19 +147320,19 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "tournament_teams_aggregate": [ - 5006, + 4979, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -147770,28 +147342,28 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "tournament_teams_by_pk": [ - 5005, + 4978, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournaments": [ - 5047, + 5020, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -147801,19 +147373,19 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_aggregate": [ - 5048, + 5021, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -147823,28 +147395,28 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_by_pk": [ - 5047, + 5020, { "id": [ - 5111, + 5084, "uuid!" ] } ], "v_event_player_stats": [ - 5114, + 5087, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -147854,19 +147426,19 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], "v_event_player_stats_aggregate": [ - 5115, + 5088, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -147876,19 +147448,19 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], "v_gpu_pool_status": [ - 5165, + 5138, { "distinct_on": [ - 5173, + 5146, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -147898,19 +147470,19 @@ export default { 40 ], "order_by": [ - 5172, + 5145, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5169 + 5142 ] } ], "v_gpu_pool_status_aggregate": [ - 5166, + 5139, { "distinct_on": [ - 5173, + 5146, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -147920,19 +147492,19 @@ export default { 40 ], "order_by": [ - 5172, + 5145, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5169 + 5142 ] } ], "v_league_division_standings": [ - 5183, + 5156, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -147942,19 +147514,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "v_league_division_standings_aggregate": [ - 5184, + 5157, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -147964,19 +147536,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "v_league_season_player_stats": [ - 5216, + 5189, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -147986,19 +147558,19 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], "v_league_season_player_stats_aggregate": [ - 5217, + 5190, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -148008,19 +147580,19 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], "v_match_captains": [ - 5267, + 5240, { "distinct_on": [ - 5279, + 5252, "[v_match_captains_select_column!]" ], "limit": [ @@ -148030,19 +147602,19 @@ export default { 40 ], "order_by": [ - 5278, + 5251, "[v_match_captains_order_by!]" ], "where": [ - 5271 + 5244 ] } ], "v_match_captains_aggregate": [ - 5268, + 5241, { "distinct_on": [ - 5279, + 5252, "[v_match_captains_select_column!]" ], "limit": [ @@ -148052,19 +147624,19 @@ export default { 40 ], "order_by": [ - 5278, + 5251, "[v_match_captains_order_by!]" ], "where": [ - 5271 + 5244 ] } ], "v_match_clutches": [ - 5291, + 5264, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -148074,19 +147646,19 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], "v_match_clutches_aggregate": [ - 5292, + 5265, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -148096,19 +147668,19 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], "v_match_kill_pairs": [ - 5324, + 5297, { "distinct_on": [ - 5332, + 5305, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -148118,19 +147690,19 @@ export default { 40 ], "order_by": [ - 5331, + 5304, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5328 + 5301 ] } ], "v_match_kill_pairs_aggregate": [ - 5325, + 5298, { "distinct_on": [ - 5332, + 5305, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -148140,19 +147712,19 @@ export default { 40 ], "order_by": [ - 5331, + 5304, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5328 + 5301 ] } ], "v_match_lineup_buy_types": [ - 5342, + 5315, { "distinct_on": [ - 5350, + 5323, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -148162,19 +147734,19 @@ export default { 40 ], "order_by": [ - 5349, + 5322, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5346 + 5319 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5343, + 5316, { "distinct_on": [ - 5350, + 5323, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -148184,19 +147756,19 @@ export default { 40 ], "order_by": [ - 5349, + 5322, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5346 + 5319 ] } ], "v_match_lineup_map_stats": [ - 5360, + 5333, { "distinct_on": [ - 5368, + 5341, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -148206,19 +147778,19 @@ export default { 40 ], "order_by": [ - 5367, + 5340, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5364 + 5337 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5361, + 5334, { "distinct_on": [ - 5368, + 5341, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -148228,19 +147800,19 @@ export default { 40 ], "order_by": [ - 5367, + 5340, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5364 + 5337 ] } ], "v_match_map_backup_rounds": [ - 5378, + 5351, { "distinct_on": [ - 5389, + 5362, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -148250,19 +147822,19 @@ export default { 40 ], "order_by": [ - 5388, + 5361, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5382 + 5355 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5379, + 5352, { "distinct_on": [ - 5389, + 5362, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -148272,19 +147844,19 @@ export default { 40 ], "order_by": [ - 5388, + 5361, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5382 + 5355 ] } ], "v_match_player_buy_types": [ - 5401, + 5374, { "distinct_on": [ - 5409, + 5382, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -148294,19 +147866,19 @@ export default { 40 ], "order_by": [ - 5408, + 5381, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5405 + 5378 ] } ], "v_match_player_buy_types_aggregate": [ - 5402, + 5375, { "distinct_on": [ - 5409, + 5382, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -148316,19 +147888,19 @@ export default { 40 ], "order_by": [ - 5408, + 5381, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5405 + 5378 ] } ], "v_match_player_opening_duels": [ - 5419, + 5392, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -148338,19 +147910,19 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "v_match_player_opening_duels_aggregate": [ - 5420, + 5393, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -148360,19 +147932,19 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "v_player_arch_nemesis": [ - 5452, + 5425, { "distinct_on": [ - 5460, + 5433, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -148382,19 +147954,19 @@ export default { 40 ], "order_by": [ - 5459, + 5432, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5456 + 5429 ] } ], "v_player_arch_nemesis_aggregate": [ - 5453, + 5426, { "distinct_on": [ - 5460, + 5433, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -148404,19 +147976,19 @@ export default { 40 ], "order_by": [ - 5459, + 5432, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5456 + 5429 ] } ], "v_player_damage": [ - 5470, + 5443, { "distinct_on": [ - 5478, + 5451, "[v_player_damage_select_column!]" ], "limit": [ @@ -148426,19 +147998,19 @@ export default { 40 ], "order_by": [ - 5477, + 5450, "[v_player_damage_order_by!]" ], "where": [ - 5474 + 5447 ] } ], "v_player_damage_aggregate": [ - 5471, + 5444, { "distinct_on": [ - 5478, + 5451, "[v_player_damage_select_column!]" ], "limit": [ @@ -148448,19 +148020,19 @@ export default { 40 ], "order_by": [ - 5477, + 5450, "[v_player_damage_order_by!]" ], "where": [ - 5474 + 5447 ] } ], "v_player_elo": [ - 5488, + 5461, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -148470,19 +148042,19 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "v_player_elo_aggregate": [ - 5489, + 5462, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -148492,19 +148064,19 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "v_player_map_losses": [ - 5539, + 5512, { "distinct_on": [ - 5547, + 5520, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -148514,19 +148086,19 @@ export default { 40 ], "order_by": [ - 5546, + 5519, "[v_player_map_losses_order_by!]" ], "where": [ - 5543 + 5516 ] } ], "v_player_map_losses_aggregate": [ - 5540, + 5513, { "distinct_on": [ - 5547, + 5520, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -148536,19 +148108,19 @@ export default { 40 ], "order_by": [ - 5546, + 5519, "[v_player_map_losses_order_by!]" ], "where": [ - 5543 + 5516 ] } ], "v_player_map_wins": [ - 5557, + 5530, { "distinct_on": [ - 5565, + 5538, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -148558,19 +148130,19 @@ export default { 40 ], "order_by": [ - 5564, + 5537, "[v_player_map_wins_order_by!]" ], "where": [ - 5561 + 5534 ] } ], "v_player_map_wins_aggregate": [ - 5558, + 5531, { "distinct_on": [ - 5565, + 5538, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -148580,19 +148152,19 @@ export default { 40 ], "order_by": [ - 5564, + 5537, "[v_player_map_wins_order_by!]" ], "where": [ - 5561 + 5534 ] } ], "v_player_match_head_to_head": [ - 5575, + 5548, { "distinct_on": [ - 5583, + 5556, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -148602,19 +148174,19 @@ export default { 40 ], "order_by": [ - 5582, + 5555, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5579 + 5552 ] } ], "v_player_match_head_to_head_aggregate": [ - 5576, + 5549, { "distinct_on": [ - 5583, + 5556, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -148624,19 +148196,19 @@ export default { 40 ], "order_by": [ - 5582, + 5555, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5579 + 5552 ] } ], "v_player_match_map_hltv": [ - 5593, + 5566, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -148646,19 +148218,19 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "v_player_match_map_hltv_aggregate": [ - 5594, + 5567, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -148668,19 +148240,19 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "v_player_match_map_roles": [ - 5630, + 5603, { "distinct_on": [ - 5638, + 5611, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -148690,19 +148262,19 @@ export default { 40 ], "order_by": [ - 5637, + 5610, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5634 + 5607 ] } ], "v_player_match_map_roles_aggregate": [ - 5631, + 5604, { "distinct_on": [ - 5638, + 5611, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -148712,19 +148284,19 @@ export default { 40 ], "order_by": [ - 5637, + 5610, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5634 + 5607 ] } ], "v_player_match_performance": [ - 5648, + 5621, { "distinct_on": [ - 5656, + 5629, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -148734,19 +148306,19 @@ export default { 40 ], "order_by": [ - 5655, + 5628, "[v_player_match_performance_order_by!]" ], "where": [ - 5652 + 5625 ] } ], "v_player_match_performance_aggregate": [ - 5649, + 5622, { "distinct_on": [ - 5656, + 5629, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -148756,19 +148328,19 @@ export default { 40 ], "order_by": [ - 5655, + 5628, "[v_player_match_performance_order_by!]" ], "where": [ - 5652 + 5625 ] } ], "v_player_match_rating": [ - 5666, + 5639, { "distinct_on": [ - 5674, + 5647, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -148778,19 +148350,19 @@ export default { 40 ], "order_by": [ - 5673, + 5646, "[v_player_match_rating_order_by!]" ], "where": [ - 5670 + 5643 ] } ], "v_player_match_rating_aggregate": [ - 5667, + 5640, { "distinct_on": [ - 5674, + 5647, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -148800,19 +148372,19 @@ export default { 40 ], "order_by": [ - 5673, + 5646, "[v_player_match_rating_order_by!]" ], "where": [ - 5670 + 5643 ] } ], "v_player_multi_kills": [ - 5684, + 5657, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -148822,19 +148394,19 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], "v_player_multi_kills_aggregate": [ - 5685, + 5658, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -148844,19 +148416,19 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], "v_player_queue_partners": [ - 5717, + 5690, { "distinct_on": [ - 5725, + 5698, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -148866,19 +148438,19 @@ export default { 40 ], "order_by": [ - 5724, + 5697, "[v_player_queue_partners_order_by!]" ], "where": [ - 5721 + 5694 ] } ], "v_player_queue_partners_aggregate": [ - 5718, + 5691, { "distinct_on": [ - 5725, + 5698, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -148888,19 +148460,19 @@ export default { 40 ], "order_by": [ - 5724, + 5697, "[v_player_queue_partners_order_by!]" ], "where": [ - 5721 + 5694 ] } ], "v_player_weapon_damage": [ - 5735, + 5708, { "distinct_on": [ - 5743, + 5716, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -148910,19 +148482,19 @@ export default { 40 ], "order_by": [ - 5742, + 5715, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5739 + 5712 ] } ], "v_player_weapon_damage_aggregate": [ - 5736, + 5709, { "distinct_on": [ - 5743, + 5716, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -148932,19 +148504,19 @@ export default { 40 ], "order_by": [ - 5742, + 5715, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5739 + 5712 ] } ], "v_player_weapon_kills": [ - 5753, + 5726, { "distinct_on": [ - 5761, + 5734, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -148954,19 +148526,19 @@ export default { 40 ], "order_by": [ - 5760, + 5733, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5757 + 5730 ] } ], "v_player_weapon_kills_aggregate": [ - 5754, + 5727, { "distinct_on": [ - 5761, + 5734, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -148976,19 +148548,19 @@ export default { 40 ], "order_by": [ - 5760, + 5733, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5757 + 5730 ] } ], "v_pool_maps": [ - 5771, + 5744, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -148998,19 +148570,19 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], "v_pool_maps_aggregate": [ - 5772, + 5745, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -149020,19 +148592,19 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], "v_steam_account_pool_status": [ - 5795, + 5768, { "distinct_on": [ - 5803, + 5776, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -149042,19 +148614,19 @@ export default { 40 ], "order_by": [ - 5802, + 5775, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5799 + 5772 ] } ], "v_steam_account_pool_status_aggregate": [ - 5796, + 5769, { "distinct_on": [ - 5803, + 5776, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -149064,19 +148636,19 @@ export default { 40 ], "order_by": [ - 5802, + 5775, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5799 + 5772 ] } ], "v_team_ranks": [ - 5813, + 5786, { "distinct_on": [ - 5823, + 5796, "[v_team_ranks_select_column!]" ], "limit": [ @@ -149086,19 +148658,19 @@ export default { 40 ], "order_by": [ - 5822, + 5795, "[v_team_ranks_order_by!]" ], "where": [ - 5817 + 5790 ] } ], "v_team_ranks_aggregate": [ - 5814, + 5787, { "distinct_on": [ - 5823, + 5796, "[v_team_ranks_select_column!]" ], "limit": [ @@ -149108,19 +148680,19 @@ export default { 40 ], "order_by": [ - 5822, + 5795, "[v_team_ranks_order_by!]" ], "where": [ - 5817 + 5790 ] } ], "v_team_reputation": [ - 5833, + 5806, { "distinct_on": [ - 5843, + 5816, "[v_team_reputation_select_column!]" ], "limit": [ @@ -149130,19 +148702,19 @@ export default { 40 ], "order_by": [ - 5842, + 5815, "[v_team_reputation_order_by!]" ], "where": [ - 5837 + 5810 ] } ], "v_team_reputation_aggregate": [ - 5834, + 5807, { "distinct_on": [ - 5843, + 5816, "[v_team_reputation_select_column!]" ], "limit": [ @@ -149152,19 +148724,19 @@ export default { 40 ], "order_by": [ - 5842, + 5815, "[v_team_reputation_order_by!]" ], "where": [ - 5837 + 5810 ] } ], "v_team_stage_results": [ - 5853, + 5826, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -149174,19 +148746,19 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], "v_team_stage_results_aggregate": [ - 5854, + 5827, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -149196,32 +148768,32 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], "v_team_stage_results_by_pk": [ - 5853, + 5826, { "tournament_stage_id": [ - 5111, + 5084, "uuid!" ], "tournament_team_id": [ - 5111, + 5084, "uuid!" ] } ], "v_team_tournament_results": [ - 5913, + 5886, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -149231,19 +148803,19 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "v_team_tournament_results_aggregate": [ - 5914, + 5887, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -149253,19 +148825,19 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "v_tournament_player_stats": [ - 5964, + 5937, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -149275,19 +148847,19 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], "v_tournament_player_stats_aggregate": [ - 5965, + 5938, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -149297,11 +148869,11 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], @@ -149317,7 +148889,7 @@ export default { 57, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -149326,17 +148898,17 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "reset_status": [ 80 ], "scheduled_at": [ - 4611 + 4584 ], "winning_lineup_id": [ - 5111 + 5084 ] } ], @@ -149344,7 +148916,7 @@ export default { 83, { "invite_id": [ - 5111, + 5084, "uuid!" ], "type": [ @@ -149357,9 +148929,12 @@ export default { 83, { "draftGameId": [ - 5111, + 5084, "uuid!" ], + "lineup": [ + 40 + ], "steamId": [ 80, "String!" @@ -149443,7 +149018,7 @@ export default { 83, { "game_server_node_id": [ - 5111, + 5084, "uuid!" ] } @@ -149464,7 +149039,7 @@ export default { 83, { "game_server_node_id": [ - 5111, + 5084, "uuid!" ] } @@ -149473,7 +149048,7 @@ export default { 83, { "job_id": [ - 5111, + 5084, "uuid!" ] } @@ -149482,7 +149057,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -149491,7 +149066,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -149509,7 +149084,7 @@ export default { 83, { "request_id": [ - 5111, + 5084, "uuid!" ] } @@ -149518,7 +149093,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -149527,7 +149102,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -149574,11 +149149,11 @@ export default { 83, { "proposed_scheduled_at": [ - 4611, + 4584, "timestamptz!" ], "request_id": [ - 5111, + 5084, "uuid!" ] } @@ -149599,7 +149174,7 @@ export default { 40 ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "preset": [ @@ -149634,7 +149209,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -149689,7 +149264,7 @@ export default { 83, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149698,7 +149273,7 @@ export default { 83, { "clip_id": [ - 5111, + 5084, "uuid!" ] } @@ -149716,7 +149291,7 @@ export default { 83, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149750,7 +149325,7 @@ export default { 83, { "tournament_id": [ - 5111, + 5084, "uuid!" ] } @@ -149768,11 +149343,11 @@ export default { 102, { "map_id": [ - 5111, + 5084, "uuid!" ], "map_pool_id": [ - 5111, + 5084, "uuid!" ] } @@ -149790,7 +149365,7 @@ export default { 121, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149808,7 +149383,7 @@ export default { 162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149826,7 +149401,7 @@ export default { 190, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149844,7 +149419,7 @@ export default { 231, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149862,7 +149437,7 @@ export default { 264, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149880,7 +149455,7 @@ export default { 316, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149898,7 +149473,7 @@ export default { 348, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149916,7 +149491,7 @@ export default { 375, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -149934,7 +149509,7 @@ export default { 420, { "draft_game_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -149956,7 +149531,7 @@ export default { 465, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -150784,11 +150359,11 @@ export default { 1432, { "event_id": [ - 5111, + 5084, "uuid!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -150806,7 +150381,7 @@ export default { 1450, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -150824,7 +150399,7 @@ export default { 1472, { "media_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -150846,7 +150421,7 @@ export default { 1533, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -150868,7 +150443,7 @@ export default { 1574, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -150890,11 +150465,11 @@ export default { 1615, { "event_id": [ - 5111, + 5084, "uuid!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } @@ -150912,11 +150487,11 @@ export default { 1639, { "event_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } @@ -150934,7 +150509,7 @@ export default { 1663, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151010,7 +150585,7 @@ export default { 1804, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151037,7 +150612,7 @@ export default { 1871, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151055,7 +150630,7 @@ export default { 1899, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151073,7 +150648,7 @@ export default { 1940, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151091,7 +150666,7 @@ export default { 1981, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151109,7 +150684,7 @@ export default { 2022, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151127,7 +150702,7 @@ export default { 2047, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151145,7 +150720,7 @@ export default { 2080, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151163,7 +150738,7 @@ export default { 2121, { "league_team_season_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -151185,7 +150760,7 @@ export default { 2162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151203,7 +150778,7 @@ export default { 2204, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151221,7 +150796,7 @@ export default { 2223, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151239,7 +150814,7 @@ export default { 2242, { "lobby_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -151261,7 +150836,7 @@ export default { 2287, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -151279,238 +150854,220 @@ export default { 2306, { "id": [ - 5111, - "uuid!" - ] - } - ], - "delete_match_camera_tokens": [ - 2345, - { - "where": [ - 2339, - "match_camera_tokens_bool_exp!" - ] - } - ], - "delete_match_camera_tokens_by_pk": [ - 2335, - { - "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_clips": [ - 2379, + 2352, { "where": [ - 2371, + 2344, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2362, + 2335, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2425, + 2398, { "where": [ - 2414, + 2387, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2404, + 2377, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_lineup_players": [ - 2469, + 2442, { "where": [ - 2461, + 2434, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2450, + 2423, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_lineups": [ - 2512, + 2485, { "where": [ - 2504, + 2477, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2495, + 2468, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_map_demos": [ - 2560, + 2533, { "where": [ - 2549, + 2522, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2537, + 2510, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_map_rounds": [ - 2605, + 2578, { "where": [ - 2597, + 2570, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2588, + 2561, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2645, + 2618, { "where": [ - 2638, + 2611, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2629, + 2602, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_maps": [ - 2674, + 2647, { "where": [ - 2666, + 2639, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2657, + 2630, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_options": [ - 2709, + 2682, { "where": [ - 2703, + 2676, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2699, + 2672, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2743, + 2716, { "where": [ - 2736, + 2709, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2727, + 2700, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_streams": [ - 2778, + 2751, { "where": [ - 2767, + 2740, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2755, + 2728, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2813, + 2786, { "where": [ - 2808, + 2781, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2805, + 2778, { "type": [ 742, @@ -151519,34 +151076,34 @@ export default { } ], "delete_matches": [ - 2840, + 2813, { "where": [ - 2832, + 2805, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2823, + 2796, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2873, + 2846, { "where": [ - 2868, + 2841, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2865, + 2838, { "name": [ 80, @@ -151555,43 +151112,43 @@ export default { } ], "delete_my_friends": [ - 2905, + 2878, { "where": [ - 2895, + 2868, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2939, + 2912, { "where": [ - 2933, + 2906, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2929, + 2902, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_notification_preferences": [ - 2966, + 2939, { "where": [ - 2960, + 2933, "notification_preferences_bool_exp!" ] } ], "delete_notification_preferences_by_pk": [ - 2956, + 2929, { "channel": [ 80, @@ -151608,99 +151165,99 @@ export default { } ], "delete_notifications": [ - 3006, + 2979, { "where": [ - 2995, + 2968, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2983, + 2956, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3053, + 3026, { "where": [ - 3045, + 3018, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3036, + 3009, { "steam_id": [ 259, "bigint!" ], "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "delete_pending_match_imports": [ - 3087, + 3060, { "where": [ - 3081, + 3054, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3077, + 3050, { "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3115, + 3088, { "where": [ - 3109, + 3082, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3105, + 3078, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3149, + 3122, { "where": [ - 3141, + 3114, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3132, + 3105, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -151714,16 +151271,16 @@ export default { } ], "delete_player_assists": [ - 3192, + 3165, { "where": [ - 3184, + 3157, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3173, + 3146, { "attacked_steam_id": [ 259, @@ -151734,55 +151291,55 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_player_damages": [ - 3253, + 3226, { "where": [ - 3245, + 3218, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3236, + 3209, { "id": [ - 5111, + 5084, "uuid!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_player_elo": [ - 3287, + 3260, { "where": [ - 3281, + 3254, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3277, + 3250, { "match_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -151796,34 +151353,34 @@ export default { } ], "delete_player_faceit_rank_history": [ - 3321, + 3294, { "where": [ - 3313, + 3286, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3304, + 3277, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_player_flashes": [ - 3364, + 3337, { "where": [ - 3356, + 3329, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3345, + 3318, { "attacked_steam_id": [ 259, @@ -151834,26 +151391,26 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_player_kills": [ - 3450, + 3423, { "where": [ - 3401, + 3374, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3390, + 3363, { "attacked_steam_id": [ 259, @@ -151864,26 +151421,26 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3419, + 3392, { "where": [ - 3411, + 3384, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3402, + 3375, { "player_steam_id": [ 259, @@ -151896,28 +151453,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3485, + 3458, { "where": [ - 3480, + 3453, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3516, + 3489, { "where": [ - 3508, + 3481, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3499, + 3472, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -151927,19 +151484,19 @@ export default { } ], "delete_player_objectives": [ - 3608, + 3581, { "where": [ - 3600, + 3573, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3591, + 3564, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -151947,84 +151504,84 @@ export default { "bigint!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3667, + 3640, { "where": [ - 3659, + 3632, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3650, + 3623, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_player_sanctions": [ - 3708, + 3681, { "where": [ - 3700, + 3673, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3691, + 3664, { "created_at": [ - 4611, + 4584, "timestamptz!" ], "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_player_season_stats": [ - 3759, + 3732, { "where": [ - 3751, + 3724, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3732, + 3705, { "player_steam_id": [ 259, "bigint!" ], "season_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_player_stats": [ - 3801, + 3774, { "where": [ - 3795, + 3768, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3791, + 3764, { "player_steam_id": [ 259, @@ -152033,16 +151590,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3833, + 3806, { "where": [ - 3824, + 3797, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3819, + 3792, { "steam_id": [ 259, @@ -152051,16 +151608,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3861, + 3834, { "where": [ - 3855, + 3828, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3851, + 3824, { "steam_id": [ 259, @@ -152069,19 +151626,19 @@ export default { } ], "delete_player_unused_utility": [ - 3895, + 3868, { "where": [ - 3887, + 3860, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3878, + 3851, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -152091,42 +151648,42 @@ export default { } ], "delete_player_utility": [ - 3936, + 3909, { "where": [ - 3928, + 3901, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3919, + 3892, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "delete_players": [ - 4003, + 3976, { "where": [ - 3997, + 3970, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3993, + 3966, { "steam_id": [ 259, @@ -152135,16 +151692,16 @@ export default { } ], "delete_plugin_versions": [ - 4031, + 4004, { "where": [ - 4025, + 3998, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 4021, + 3994, { "runtime": [ 1112, @@ -152157,52 +151714,52 @@ export default { } ], "delete_push_subscriptions": [ - 4058, + 4031, { "where": [ - 4052, + 4025, "push_subscriptions_bool_exp!" ] } ], "delete_push_subscriptions_by_pk": [ - 4048, + 4021, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_seasons": [ - 4089, + 4062, { "where": [ - 4083, + 4056, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4079, + 4052, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_server_regions": [ - 4116, + 4089, { "where": [ - 4111, + 4084, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4107, + 4080, { "value": [ 80, @@ -152211,34 +151768,34 @@ export default { } ], "delete_servers": [ - 4153, + 4126, { "where": [ - 4145, + 4118, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4134, + 4107, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_settings": [ - 4188, + 4161, { "where": [ - 4183, + 4156, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4180, + 4153, { "name": [ 80, @@ -152247,511 +151804,511 @@ export default { } ], "delete_steam_account_claims": [ - 4214, + 4187, { "where": [ - 4207, + 4180, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4200, + 4173, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_steam_accounts": [ - 4234, + 4207, { "where": [ - 4228, + 4201, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4224, + 4197, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_system_alerts": [ - 4262, + 4235, { "where": [ - 4256, + 4229, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4252, + 4225, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_invites": [ - 4296, + 4269, { "where": [ - 4288, + 4261, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4279, + 4252, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_roster": [ - 4339, + 4312, { "where": [ - 4331, + 4304, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4320, + 4293, { "player_steam_id": [ 259, "bigint!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4375, + 4348, { "where": [ - 4369, + 4342, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4365, + 4338, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4408, + 4381, { "where": [ - 4401, + 4374, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4392, + 4365, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4437, + 4410, { "where": [ - 4429, + 4402, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4420, + 4393, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4480, + 4453, { "where": [ - 4472, + 4445, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4461, + 4434, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4517, + 4490, { "where": [ - 4511, + 4484, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4507, + 4480, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_team_suggestions": [ - 4545, + 4518, { "where": [ - 4539, + 4512, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4535, + 4508, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_teams": [ - 4581, + 4554, { "where": [ - 4573, + 4546, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4562, + 4535, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_awards": [ - 4630, + 4603, { "where": [ - 4622, + 4595, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4613, + 4586, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_brackets": [ - 4674, + 4647, { "where": [ - 4666, + 4639, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4655, + 4628, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_categories": [ - 4715, + 4688, { "where": [ - 4708, + 4681, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4701, + 4674, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4739, + 4712, { "where": [ - 4732, + 4705, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4725, + 4698, { "team_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_organizers": [ - 4766, + 4739, { "where": [ - 4758, + 4731, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4749, + 4722, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_prizes": [ - 4807, + 4780, { "where": [ - 4799, + 4772, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4790, + 4763, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4848, + 4821, { "where": [ - 4840, + 4813, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4831, + 4804, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_stages": [ - 4895, + 4868, { "where": [ - 4884, + 4857, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4872, + 4845, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4940, + 4913, { "where": [ - 4932, + 4905, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4923, + 4896, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4981, + 4954, { "where": [ - 4973, + 4946, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4964, + 4937, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournament_teams": [ - 5022, + 4995, { "where": [ - 5014, + 4987, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5005, + 4978, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_tournaments": [ - 5076, + 5049, { "where": [ - 5068, + 5041, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5047, + 5020, { "id": [ - 5111, + 5084, "uuid!" ] } ], "delete_v_match_captains": [ - 5276, + 5249, { "where": [ - 5271, + 5244, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5387, + 5360, { "where": [ - 5382, + 5355, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5609, + 5582, { "where": [ - 5602, + 5575, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5786, + 5759, { "where": [ - 5780, + 5753, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5880, + 5853, { "where": [ - 5872, + 5845, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5853, + 5826, { "tournament_stage_id": [ - 5111, + 5084, "uuid!" ], "tournament_team_id": [ - 5111, + 5084, "uuid!" ] } @@ -152760,7 +152317,7 @@ export default { 83, { "invite_id": [ - 5111, + 5084, "uuid!" ], "type": [ @@ -152786,11 +152343,11 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "winning_lineup_id": [ - 5111, + 5084, "uuid!" ] } @@ -152802,7 +152359,7 @@ export default { 45, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -152814,14 +152371,14 @@ export default { 4, { "award_id": [ - 5111, + 5084, "uuid!" ], "event_id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "note": [ 80 @@ -152830,13 +152387,13 @@ export default { 80 ], "season_id": [ - 5111 + 5084 ], "team_id": [ - 5111 + 5084 ], "tournament_id": [ - 5111 + 5084 ] } ], @@ -154826,1815 +154383,1791 @@ export default { ] } ], - "insert_match_camera_tokens": [ - 2345, - { - "objects": [ - 2342, - "[match_camera_tokens_insert_input!]!" - ], - "on_conflict": [ - 2346 - ] - } - ], - "insert_match_camera_tokens_one": [ - 2335, - { - "object": [ - 2342, - "match_camera_tokens_insert_input!" - ], - "on_conflict": [ - 2346 - ] - } - ], "insert_match_clips": [ - 2379, + 2352, { "objects": [ - 2374, + 2347, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2381 + 2354 ] } ], "insert_match_clips_one": [ - 2362, + 2335, { "object": [ - 2374, + 2347, "match_clips_insert_input!" ], "on_conflict": [ - 2381 + 2354 ] } ], "insert_match_demo_sessions": [ - 2425, + 2398, { "objects": [ - 2420, + 2393, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2426 + 2399 ] } ], "insert_match_demo_sessions_one": [ - 2404, + 2377, { "object": [ - 2420, + 2393, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2426 + 2399 ] } ], "insert_match_lineup_players": [ - 2469, + 2442, { "objects": [ - 2464, + 2437, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2470 + 2443 ] } ], "insert_match_lineup_players_one": [ - 2450, + 2423, { "object": [ - 2464, + 2437, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2470 + 2443 ] } ], "insert_match_lineups": [ - 2512, + 2485, { "objects": [ - 2507, + 2480, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2514 + 2487 ] } ], "insert_match_lineups_one": [ - 2495, + 2468, { "object": [ - 2507, + 2480, "match_lineups_insert_input!" ], "on_conflict": [ - 2514 + 2487 ] } ], "insert_match_map_demos": [ - 2560, + 2533, { "objects": [ - 2555, + 2528, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2562 + 2535 ] } ], "insert_match_map_demos_one": [ - 2537, + 2510, { "object": [ - 2555, + 2528, "match_map_demos_insert_input!" ], "on_conflict": [ - 2562 + 2535 ] } ], "insert_match_map_rounds": [ - 2605, + 2578, { "objects": [ - 2600, + 2573, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2606 + 2579 ] } ], "insert_match_map_rounds_one": [ - 2588, + 2561, { "object": [ - 2600, + 2573, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2606 + 2579 ] } ], "insert_match_map_veto_picks": [ - 2645, + 2618, { "objects": [ - 2640, + 2613, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2646 + 2619 ] } ], "insert_match_map_veto_picks_one": [ - 2629, + 2602, { "object": [ - 2640, + 2613, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2646 + 2619 ] } ], "insert_match_maps": [ - 2674, + 2647, { "objects": [ - 2669, + 2642, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2676 + 2649 ] } ], "insert_match_maps_one": [ - 2657, + 2630, { "object": [ - 2669, + 2642, "match_maps_insert_input!" ], "on_conflict": [ - 2676 + 2649 ] } ], "insert_match_options": [ - 2709, + 2682, { "objects": [ - 2706, + 2679, "[match_options_insert_input!]!" ], "on_conflict": [ - 2711 + 2684 ] } ], "insert_match_options_one": [ - 2699, + 2672, { "object": [ - 2706, + 2679, "match_options_insert_input!" ], "on_conflict": [ - 2711 + 2684 ] } ], "insert_match_region_veto_picks": [ - 2743, + 2716, { "objects": [ - 2738, + 2711, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2744 + 2717 ] } ], "insert_match_region_veto_picks_one": [ - 2727, + 2700, { "object": [ - 2738, + 2711, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2744 + 2717 ] } ], "insert_match_streams": [ - 2778, + 2751, { "objects": [ - 2773, + 2746, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2779 + 2752 ] } ], "insert_match_streams_one": [ - 2755, + 2728, { "object": [ - 2773, + 2746, "match_streams_insert_input!" ], "on_conflict": [ - 2779 + 2752 ] } ], "insert_match_type_cfgs": [ - 2813, + 2786, { "objects": [ - 2810, + 2783, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2814 + 2787 ] } ], "insert_match_type_cfgs_one": [ - 2805, + 2778, { "object": [ - 2810, + 2783, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2814 + 2787 ] } ], "insert_matches": [ - 2840, + 2813, { "objects": [ - 2835, + 2808, "[matches_insert_input!]!" ], "on_conflict": [ - 2842 + 2815 ] } ], "insert_matches_one": [ - 2823, + 2796, { "object": [ - 2835, + 2808, "matches_insert_input!" ], "on_conflict": [ - 2842 + 2815 ] } ], "insert_migration_hashes_hashes": [ - 2873, + 2846, { "objects": [ - 2870, + 2843, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2874 + 2847 ] } ], "insert_migration_hashes_hashes_one": [ - 2865, + 2838, { "object": [ - 2870, + 2843, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2874 + 2847 ] } ], "insert_my_friends": [ - 2905, + 2878, { "objects": [ - 2900, + 2873, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2883, + 2856, { "object": [ - 2900, + 2873, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2939, + 2912, { "objects": [ - 2936, + 2909, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2940 + 2913 ] } ], "insert_news_articles_one": [ - 2929, + 2902, { "object": [ - 2936, + 2909, "news_articles_insert_input!" ], "on_conflict": [ - 2940 + 2913 ] } ], "insert_notification_preferences": [ - 2966, + 2939, { "objects": [ - 2963, + 2936, "[notification_preferences_insert_input!]!" ], "on_conflict": [ - 2967 + 2940 ] } ], "insert_notification_preferences_one": [ - 2956, + 2929, { "object": [ - 2963, + 2936, "notification_preferences_insert_input!" ], "on_conflict": [ - 2967 + 2940 ] } ], "insert_notifications": [ - 3006, + 2979, { "objects": [ - 3001, + 2974, "[notifications_insert_input!]!" ], "on_conflict": [ - 3007 + 2980 ] } ], "insert_notifications_one": [ - 2983, + 2956, { "object": [ - 3001, + 2974, "notifications_insert_input!" ], "on_conflict": [ - 3007 + 2980 ] } ], "insert_pending_match_import_players": [ - 3053, + 3026, { "objects": [ - 3048, + 3021, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3054 + 3027 ] } ], "insert_pending_match_import_players_one": [ - 3036, + 3009, { "object": [ - 3048, + 3021, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3054 + 3027 ] } ], "insert_pending_match_imports": [ - 3087, + 3060, { "objects": [ - 3084, + 3057, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3089 + 3062 ] } ], "insert_pending_match_imports_one": [ - 3077, + 3050, { "object": [ - 3084, + 3057, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3089 + 3062 ] } ], "insert_player_aim_stats_demo": [ - 3115, + 3088, { "objects": [ - 3112, + 3085, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3116 + 3089 ] } ], "insert_player_aim_stats_demo_one": [ - 3105, + 3078, { "object": [ - 3112, + 3085, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3116 + 3089 ] } ], "insert_player_aim_weapon_stats": [ - 3149, + 3122, { "objects": [ - 3144, + 3117, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3150 + 3123 ] } ], "insert_player_aim_weapon_stats_one": [ - 3132, + 3105, { "object": [ - 3144, + 3117, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3150 + 3123 ] } ], "insert_player_assists": [ - 3192, + 3165, { "objects": [ - 3187, + 3160, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3193 + 3166 ] } ], "insert_player_assists_one": [ - 3173, + 3146, { "object": [ - 3187, + 3160, "player_assists_insert_input!" ], "on_conflict": [ - 3193 + 3166 ] } ], "insert_player_damages": [ - 3253, + 3226, { "objects": [ - 3248, + 3221, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3254 + 3227 ] } ], "insert_player_damages_one": [ - 3236, + 3209, { "object": [ - 3248, + 3221, "player_damages_insert_input!" ], "on_conflict": [ - 3254 + 3227 ] } ], "insert_player_elo": [ - 3287, + 3260, { "objects": [ - 3284, + 3257, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3288 + 3261 ] } ], "insert_player_elo_one": [ - 3277, + 3250, { "object": [ - 3284, + 3257, "player_elo_insert_input!" ], "on_conflict": [ - 3288 + 3261 ] } ], "insert_player_faceit_rank_history": [ - 3321, + 3294, { "objects": [ - 3316, + 3289, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3322 + 3295 ] } ], "insert_player_faceit_rank_history_one": [ - 3304, + 3277, { "object": [ - 3316, + 3289, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3322 + 3295 ] } ], "insert_player_flashes": [ - 3364, + 3337, { "objects": [ - 3359, + 3332, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3365 + 3338 ] } ], "insert_player_flashes_one": [ - 3345, + 3318, { "object": [ - 3359, + 3332, "player_flashes_insert_input!" ], "on_conflict": [ - 3365 + 3338 ] } ], "insert_player_kills": [ - 3450, + 3423, { "objects": [ - 3445, + 3418, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3451 + 3424 ] } ], "insert_player_kills_by_weapon": [ - 3419, + 3392, { "objects": [ - 3414, + 3387, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3420 + 3393 ] } ], "insert_player_kills_by_weapon_one": [ - 3402, + 3375, { "object": [ - 3414, + 3387, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3420 + 3393 ] } ], "insert_player_kills_one": [ - 3390, + 3363, { "object": [ - 3445, + 3418, "player_kills_insert_input!" ], "on_conflict": [ - 3451 + 3424 ] } ], "insert_player_leaderboard_rank": [ - 3485, + 3458, { "objects": [ - 3482, + 3455, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3476, + 3449, { "object": [ - 3482, + 3455, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3516, + 3489, { "objects": [ - 3511, + 3484, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3517 + 3490 ] } ], "insert_player_match_map_stats_one": [ - 3499, + 3472, { "object": [ - 3511, + 3484, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3517 + 3490 ] } ], "insert_player_objectives": [ - 3608, + 3581, { "objects": [ - 3603, + 3576, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3609 + 3582 ] } ], "insert_player_objectives_one": [ - 3591, + 3564, { "object": [ - 3603, + 3576, "player_objectives_insert_input!" ], "on_conflict": [ - 3609 + 3582 ] } ], "insert_player_premier_rank_history": [ - 3667, + 3640, { "objects": [ - 3662, + 3635, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3668 + 3641 ] } ], "insert_player_premier_rank_history_one": [ - 3650, + 3623, { "object": [ - 3662, + 3635, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3668 + 3641 ] } ], "insert_player_sanctions": [ - 3708, + 3681, { "objects": [ - 3703, + 3676, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3709 + 3682 ] } ], "insert_player_sanctions_one": [ - 3691, + 3664, { "object": [ - 3703, + 3676, "player_sanctions_insert_input!" ], "on_conflict": [ - 3709 + 3682 ] } ], "insert_player_season_stats": [ - 3759, + 3732, { "objects": [ - 3754, + 3727, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3760 + 3733 ] } ], "insert_player_season_stats_one": [ - 3732, + 3705, { "object": [ - 3754, + 3727, "player_season_stats_insert_input!" ], "on_conflict": [ - 3760 + 3733 ] } ], "insert_player_stats": [ - 3801, + 3774, { "objects": [ - 3798, + 3771, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3803 + 3776 ] } ], "insert_player_stats_one": [ - 3791, + 3764, { "object": [ - 3798, + 3771, "player_stats_insert_input!" ], "on_conflict": [ - 3803 + 3776 ] } ], "insert_player_steam_bot_friend": [ - 3833, + 3806, { "objects": [ - 3830, + 3803, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3834 + 3807 ] } ], "insert_player_steam_bot_friend_one": [ - 3819, + 3792, { "object": [ - 3830, + 3803, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3834 + 3807 ] } ], "insert_player_steam_match_auth": [ - 3861, + 3834, { "objects": [ - 3858, + 3831, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3862 + 3835 ] } ], "insert_player_steam_match_auth_one": [ - 3851, + 3824, { "object": [ - 3858, + 3831, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3862 + 3835 ] } ], "insert_player_unused_utility": [ - 3895, + 3868, { "objects": [ - 3890, + 3863, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3896 + 3869 ] } ], "insert_player_unused_utility_one": [ - 3878, + 3851, { "object": [ - 3890, + 3863, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3896 + 3869 ] } ], "insert_player_utility": [ - 3936, + 3909, { "objects": [ - 3931, + 3904, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3937 + 3910 ] } ], "insert_player_utility_one": [ - 3919, + 3892, { "object": [ - 3931, + 3904, "player_utility_insert_input!" ], "on_conflict": [ - 3937 + 3910 ] } ], "insert_players": [ - 4003, + 3976, { "objects": [ - 4000, + 3973, "[players_insert_input!]!" ], "on_conflict": [ - 4005 + 3978 ] } ], "insert_players_one": [ - 3993, + 3966, { "object": [ - 4000, + 3973, "players_insert_input!" ], "on_conflict": [ - 4005 + 3978 ] } ], "insert_plugin_versions": [ - 4031, + 4004, { "objects": [ - 4028, + 4001, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4032 + 4005 ] } ], "insert_plugin_versions_one": [ - 4021, + 3994, { "object": [ - 4028, + 4001, "plugin_versions_insert_input!" ], "on_conflict": [ - 4032 + 4005 ] } ], "insert_push_subscriptions": [ - 4058, + 4031, { "objects": [ - 4055, + 4028, "[push_subscriptions_insert_input!]!" ], "on_conflict": [ - 4059 + 4032 ] } ], "insert_push_subscriptions_one": [ - 4048, + 4021, { "object": [ - 4055, + 4028, "push_subscriptions_insert_input!" ], "on_conflict": [ - 4059 + 4032 ] } ], "insert_seasons": [ - 4089, + 4062, { "objects": [ - 4086, + 4059, "[seasons_insert_input!]!" ], "on_conflict": [ - 4091 + 4064 ] } ], "insert_seasons_one": [ - 4079, + 4052, { "object": [ - 4086, + 4059, "seasons_insert_input!" ], "on_conflict": [ - 4091 + 4064 ] } ], "insert_server_regions": [ - 4116, + 4089, { "objects": [ - 4113, + 4086, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4118 + 4091 ] } ], "insert_server_regions_one": [ - 4107, + 4080, { "object": [ - 4113, + 4086, "server_regions_insert_input!" ], "on_conflict": [ - 4118 + 4091 ] } ], "insert_servers": [ - 4153, + 4126, { "objects": [ - 4148, + 4121, "[servers_insert_input!]!" ], "on_conflict": [ - 4155 + 4128 ] } ], "insert_servers_one": [ - 4134, + 4107, { "object": [ - 4148, + 4121, "servers_insert_input!" ], "on_conflict": [ - 4155 + 4128 ] } ], "insert_settings": [ - 4188, + 4161, { "objects": [ - 4185, + 4158, "[settings_insert_input!]!" ], "on_conflict": [ - 4189 + 4162 ] } ], "insert_settings_one": [ - 4180, + 4153, { "object": [ - 4185, + 4158, "settings_insert_input!" ], "on_conflict": [ - 4189 + 4162 ] } ], "insert_steam_account_claims": [ - 4214, + 4187, { "objects": [ - 4209, + 4182, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4215 + 4188 ] } ], "insert_steam_account_claims_one": [ - 4200, + 4173, { "object": [ - 4209, + 4182, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4215 + 4188 ] } ], "insert_steam_accounts": [ - 4234, + 4207, { "objects": [ - 4231, + 4204, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4236 + 4209 ] } ], "insert_steam_accounts_one": [ - 4224, + 4197, { "object": [ - 4231, + 4204, "steam_accounts_insert_input!" ], "on_conflict": [ - 4236 + 4209 ] } ], "insert_system_alerts": [ - 4262, + 4235, { "objects": [ - 4259, + 4232, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4263 + 4236 ] } ], "insert_system_alerts_one": [ - 4252, + 4225, { "object": [ - 4259, + 4232, "system_alerts_insert_input!" ], "on_conflict": [ - 4263 + 4236 ] } ], "insert_team_invites": [ - 4296, + 4269, { "objects": [ - 4291, + 4264, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4297 + 4270 ] } ], "insert_team_invites_one": [ - 4279, + 4252, { "object": [ - 4291, + 4264, "team_invites_insert_input!" ], "on_conflict": [ - 4297 + 4270 ] } ], "insert_team_roster": [ - 4339, + 4312, { "objects": [ - 4334, + 4307, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4340 + 4313 ] } ], "insert_team_roster_one": [ - 4320, + 4293, { "object": [ - 4334, + 4307, "team_roster_insert_input!" ], "on_conflict": [ - 4340 + 4313 ] } ], "insert_team_scrim_alerts": [ - 4375, + 4348, { "objects": [ - 4372, + 4345, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4376 + 4349 ] } ], "insert_team_scrim_alerts_one": [ - 4365, + 4338, { "object": [ - 4372, + 4345, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4376 + 4349 ] } ], "insert_team_scrim_availability": [ - 4408, + 4381, { "objects": [ - 4403, + 4376, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4409 + 4382 ] } ], "insert_team_scrim_availability_one": [ - 4392, + 4365, { "object": [ - 4403, + 4376, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4409 + 4382 ] } ], "insert_team_scrim_request_proposals": [ - 4437, + 4410, { "objects": [ - 4432, + 4405, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4438 + 4411 ] } ], "insert_team_scrim_request_proposals_one": [ - 4420, + 4393, { "object": [ - 4432, + 4405, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4438 + 4411 ] } ], "insert_team_scrim_requests": [ - 4480, + 4453, { "objects": [ - 4475, + 4448, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4482 + 4455 ] } ], "insert_team_scrim_requests_one": [ - 4461, + 4434, { "object": [ - 4475, + 4448, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4482 + 4455 ] } ], "insert_team_scrim_settings": [ - 4517, + 4490, { "objects": [ - 4514, + 4487, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4519 + 4492 ] } ], "insert_team_scrim_settings_one": [ - 4507, + 4480, { "object": [ - 4514, + 4487, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4519 + 4492 ] } ], "insert_team_suggestions": [ - 4545, + 4518, { "objects": [ - 4542, + 4515, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4546 + 4519 ] } ], "insert_team_suggestions_one": [ - 4535, + 4508, { "object": [ - 4542, + 4515, "team_suggestions_insert_input!" ], "on_conflict": [ - 4546 + 4519 ] } ], "insert_teams": [ - 4581, + 4554, { "objects": [ - 4576, + 4549, "[teams_insert_input!]!" ], "on_conflict": [ - 4583 + 4556 ] } ], "insert_teams_one": [ - 4562, + 4535, { "object": [ - 4576, + 4549, "teams_insert_input!" ], "on_conflict": [ - 4583 + 4556 ] } ], "insert_tournament_awards": [ - 4630, + 4603, { "objects": [ - 4625, + 4598, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4632 + 4605 ] } ], "insert_tournament_awards_one": [ - 4613, + 4586, { "object": [ - 4625, + 4598, "tournament_awards_insert_input!" ], "on_conflict": [ - 4632 + 4605 ] } ], "insert_tournament_brackets": [ - 4674, + 4647, { "objects": [ - 4669, + 4642, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4676 + 4649 ] } ], "insert_tournament_brackets_one": [ - 4655, + 4628, { "object": [ - 4669, + 4642, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4676 + 4649 ] } ], "insert_tournament_categories": [ - 4715, + 4688, { "objects": [ - 4710, + 4683, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4716 + 4689 ] } ], "insert_tournament_categories_one": [ - 4701, + 4674, { "object": [ - 4710, + 4683, "tournament_categories_insert_input!" ], "on_conflict": [ - 4716 + 4689 ] } ], "insert_tournament_organizer_teams": [ - 4739, + 4712, { "objects": [ - 4734, + 4707, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4740 + 4713 ] } ], "insert_tournament_organizer_teams_one": [ - 4725, + 4698, { "object": [ - 4734, + 4707, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4740 + 4713 ] } ], "insert_tournament_organizers": [ - 4766, + 4739, { "objects": [ - 4761, + 4734, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4767 + 4740 ] } ], "insert_tournament_organizers_one": [ - 4749, + 4722, { "object": [ - 4761, + 4734, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4767 + 4740 ] } ], "insert_tournament_prizes": [ - 4807, + 4780, { "objects": [ - 4802, + 4775, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4808 + 4781 ] } ], "insert_tournament_prizes_one": [ - 4790, + 4763, { "object": [ - 4802, + 4775, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4808 + 4781 ] } ], "insert_tournament_stage_windows": [ - 4848, + 4821, { "objects": [ - 4843, + 4816, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4849 + 4822 ] } ], "insert_tournament_stage_windows_one": [ - 4831, + 4804, { "object": [ - 4843, + 4816, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4849 + 4822 ] } ], "insert_tournament_stages": [ - 4895, + 4868, { "objects": [ - 4890, + 4863, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4897 + 4870 ] } ], "insert_tournament_stages_one": [ - 4872, + 4845, { "object": [ - 4890, + 4863, "tournament_stages_insert_input!" ], "on_conflict": [ - 4897 + 4870 ] } ], "insert_tournament_team_invites": [ - 4940, + 4913, { "objects": [ - 4935, + 4908, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4941 + 4914 ] } ], "insert_tournament_team_invites_one": [ - 4923, + 4896, { "object": [ - 4935, + 4908, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4941 + 4914 ] } ], "insert_tournament_team_roster": [ - 4981, + 4954, { "objects": [ - 4976, + 4949, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4982 + 4955 ] } ], "insert_tournament_team_roster_one": [ - 4964, + 4937, { "object": [ - 4976, + 4949, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4982 + 4955 ] } ], "insert_tournament_teams": [ - 5022, + 4995, { "objects": [ - 5017, + 4990, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5024 + 4997 ] } ], "insert_tournament_teams_one": [ - 5005, + 4978, { "object": [ - 5017, + 4990, "tournament_teams_insert_input!" ], "on_conflict": [ - 5024 + 4997 ] } ], "insert_tournaments": [ - 5076, + 5049, { "objects": [ - 5071, + 5044, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5078 + 5051 ] } ], "insert_tournaments_one": [ - 5047, + 5020, { "object": [ - 5071, + 5044, "tournaments_insert_input!" ], "on_conflict": [ - 5078 + 5051 ] } ], "insert_v_match_captains": [ - 5276, + 5249, { "objects": [ - 5273, + 5246, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5267, + 5240, { "object": [ - 5273, + 5246, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5387, + 5360, { "objects": [ - 5384, + 5357, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5378, + 5351, { "object": [ - 5384, + 5357, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5609, + 5582, { "objects": [ - 5604, + 5577, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5593, + 5566, { "object": [ - 5604, + 5577, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5786, + 5759, { "objects": [ - 5781, + 5754, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5771, + 5744, { "object": [ - 5781, + 5754, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5880, + 5853, { "objects": [ - 5875, + 5848, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5882 + 5855 ] } ], "insert_v_team_stage_results_one": [ - 5853, + 5826, { "object": [ - 5875, + 5848, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5882 + 5855 ] } ], @@ -156642,7 +156175,7 @@ export default { 83, { "draftGameId": [ - 5111, + 5084, "uuid!" ], "inviteCode": [ @@ -156654,7 +156187,7 @@ export default { 83, { "draftGameId": [ - 5111, + 5084, "uuid!" ], "inviteCode": [ @@ -156679,14 +156212,14 @@ export default { } ], "league_award_forfeit": [ - 2823, + 2796, { "args": [ 1870, "league_award_forfeit_args!" ], "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -156696,11 +156229,11 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], @@ -156759,7 +156292,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -156771,7 +156304,7 @@ export default { 24, { "draftGameId": [ - 5111, + 5084, "uuid!" ], "inviteCode": [ @@ -156786,7 +156319,7 @@ export default { 40 ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "preset": [ @@ -156812,7 +156345,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -156821,7 +156354,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -156830,7 +156363,7 @@ export default { 190, { "args": [ - 4075, + 4048, "recalculate_tournament_awards_args!" ], "distinct_on": [ @@ -156862,7 +156395,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -156886,7 +156419,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -156916,7 +156449,7 @@ export default { 2162, { "args": [ - 4076, + 4049, "remove_league_team_from_season_args!" ], "distinct_on": [ @@ -156962,7 +156495,7 @@ export default { 1871, { "args": [ - 4077, + 4050, "reorder_league_divisions_args!" ], "distinct_on": [ @@ -156994,7 +156527,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -157003,7 +156536,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157025,7 +156558,7 @@ export default { 83, { "job_id": [ - 5111, + 5084, "uuid!" ] } @@ -157038,7 +156571,7 @@ export default { "Boolean!" ], "draftGameId": [ - 5111, + 5084, "uuid!" ] } @@ -157051,7 +156584,7 @@ export default { "Boolean!" ], "request_id": [ - 5111, + 5084, "uuid!" ] } @@ -157069,7 +156602,7 @@ export default { 2047, { "args": [ - 4078, + 4051, "restart_league_season_args!" ], "distinct_on": [ @@ -157095,7 +156628,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -157104,7 +156637,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "only_failed": [ @@ -157125,7 +156658,7 @@ export default { 83, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -157162,20 +156695,20 @@ export default { 80 ], "event_id": [ - 5111 + 5084 ], "id": [ - 5111 + 5084 ], "league_season_id": [ - 5111 + 5084 ], "name": [ 80, "String!" ], "season_id": [ - 5111 + 5084 ], "silhouette": [ 40 @@ -157185,7 +156718,7 @@ export default { "String!" ], "tournament_id": [ - 5111 + 5084 ] } ], @@ -157200,7 +156733,7 @@ export default { 80 ], "id": [ - 5111 + 5084 ], "teaser": [ 80 @@ -157221,11 +156754,11 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611 + 4584 ] } ], @@ -157236,18 +156769,18 @@ export default { 40 ], "from_team_id": [ - 5111, + 5084, "uuid!" ], "proposed_scheduled_at": [ - 4611, + 4584, "timestamptz!" ], "region": [ 80 ], "to_team_id": [ - 5111, + 5084, "uuid!" ] } @@ -157269,7 +156802,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "mode": [ @@ -157282,15 +156815,15 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "winning_lineup_id": [ - 5111, + 5084, "uuid!" ] } @@ -157299,11 +156832,11 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "winning_lineup_id": [ - 5111, + 5084, "uuid!" ] } @@ -157312,7 +156845,7 @@ export default { 50, { "id": [ - 5111, + 5084, "uuid!" ], "status": [ @@ -157325,7 +156858,7 @@ export default { 97, { "award_id": [ - 5111 + 5084 ], "custom_name": [ 80 @@ -157338,7 +156871,7 @@ export default { 40 ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } @@ -157350,7 +156883,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157363,7 +156896,7 @@ export default { "Boolean!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157376,7 +156909,7 @@ export default { "String!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157385,7 +156918,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "visible": [ @@ -157398,7 +156931,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157407,7 +156940,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157420,7 +156953,7 @@ export default { "Int!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157429,7 +156962,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "show": [ @@ -157442,7 +156975,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "slot": [ @@ -157459,7 +156992,7 @@ export default { "Boolean!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157468,7 +157001,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "mode": [ @@ -157481,11 +157014,11 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ], "server_id": [ - 5111 + 5084 ] } ], @@ -157493,7 +157026,7 @@ export default { 83, { "game_server_node_id": [ - 5111, + 5084, "uuid!" ] } @@ -157502,7 +157035,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157511,7 +157044,7 @@ export default { 83, { "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -157533,7 +157066,7 @@ export default { 83, { "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157551,7 +157084,7 @@ export default { 83, { "from_match_id": [ - 5111, + 5084, "uuid!" ], "mode": [ @@ -157559,7 +157092,7 @@ export default { "String!" ], "to_match_id": [ - 5111, + 5084, "uuid!" ] } @@ -157599,7 +157132,7 @@ export default { 83, { "clip_id": [ - 5111, + 5084, "uuid!" ], "target_steam_id": [ @@ -157620,7 +157153,7 @@ export default { 80 ], "game_server_node_id": [ - 5111 + 5084 ] } ], @@ -157628,7 +157161,7 @@ export default { 83, { "draftGameId": [ - 5111, + 5084, "uuid!" ], "settings": [ @@ -160718,3047 +160251,3008 @@ export default { ] } ], - "update_match_camera_tokens": [ - 2345, - { - "_inc": [ - 2341 - ], - "_set": [ - 2350 - ], - "where": [ - 2339, - "match_camera_tokens_bool_exp!" - ] - } - ], - "update_match_camera_tokens_by_pk": [ - 2335, - { - "_inc": [ - 2341 - ], - "_set": [ - 2350 - ], - "pk_columns": [ - 2348, - "match_camera_tokens_pk_columns_input!" - ] - } - ], - "update_match_camera_tokens_many": [ - 2345, - { - "updates": [ - 2358, - "[match_camera_tokens_updates!]!" - ] - } - ], "update_match_clips": [ - 2379, + 2352, { "_inc": [ - 2373 + 2346 ], "_set": [ - 2385 + 2358 ], "where": [ - 2371, + 2344, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2362, + 2335, { "_inc": [ - 2373 + 2346 ], "_set": [ - 2385 + 2358 ], "pk_columns": [ - 2383, + 2356, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2379, + 2352, { "updates": [ - 2397, + 2370, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2425, + 2398, { "_append": [ - 2410 + 2383 ], "_delete_at_path": [ - 2416 + 2389 ], "_delete_elem": [ - 2417 + 2390 ], "_delete_key": [ - 2418 + 2391 ], "_inc": [ - 2419 + 2392 ], "_prepend": [ - 2429 + 2402 ], "_set": [ - 2431 + 2404 ], "where": [ - 2414, + 2387, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2404, + 2377, { "_append": [ - 2410 + 2383 ], "_delete_at_path": [ - 2416 + 2389 ], "_delete_elem": [ - 2417 + 2390 ], "_delete_key": [ - 2418 + 2391 ], "_inc": [ - 2419 + 2392 ], "_prepend": [ - 2429 + 2402 ], "_set": [ - 2431 + 2404 ], "pk_columns": [ - 2428, + 2401, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2425, + 2398, { "updates": [ - 2443, + 2416, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2469, + 2442, { "_inc": [ - 2463 + 2436 ], "_set": [ - 2476 + 2449 ], "where": [ - 2461, + 2434, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2450, + 2423, { "_inc": [ - 2463 + 2436 ], "_set": [ - 2476 + 2449 ], "pk_columns": [ - 2472, + 2445, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2469, + 2442, { "updates": [ - 2488, + 2461, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2512, + 2485, { "_inc": [ - 2506 + 2479 ], "_set": [ - 2518 + 2491 ], "where": [ - 2504, + 2477, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2495, + 2468, { "_inc": [ - 2506 + 2479 ], "_set": [ - 2518 + 2491 ], "pk_columns": [ - 2516, + 2489, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2512, + 2485, { "updates": [ - 2530, + 2503, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2560, + 2533, { "_append": [ - 2545 + 2518 ], "_delete_at_path": [ - 2551 + 2524 ], "_delete_elem": [ - 2552 + 2525 ], "_delete_key": [ - 2553 + 2526 ], "_inc": [ - 2554 + 2527 ], "_prepend": [ - 2565 + 2538 ], "_set": [ - 2569 + 2542 ], "where": [ - 2549, + 2522, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2537, + 2510, { "_append": [ - 2545 + 2518 ], "_delete_at_path": [ - 2551 + 2524 ], "_delete_elem": [ - 2552 + 2525 ], "_delete_key": [ - 2553 + 2526 ], "_inc": [ - 2554 + 2527 ], "_prepend": [ - 2565 + 2538 ], "_set": [ - 2569 + 2542 ], "pk_columns": [ - 2564, + 2537, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2560, + 2533, { "updates": [ - 2581, + 2554, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2605, + 2578, { "_inc": [ - 2599 + 2572 ], "_set": [ - 2610 + 2583 ], "where": [ - 2597, + 2570, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2588, + 2561, { "_inc": [ - 2599 + 2572 ], "_set": [ - 2610 + 2583 ], "pk_columns": [ - 2608, + 2581, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2605, + 2578, { "updates": [ - 2622, + 2595, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2645, + 2618, { "_set": [ - 2652 + 2625 ], "where": [ - 2638, + 2611, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2629, + 2602, { "_set": [ - 2652 + 2625 ], "pk_columns": [ - 2648, + 2621, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2645, + 2618, { "updates": [ - 2656, + 2629, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2674, + 2647, { "_inc": [ - 2668 + 2641 ], "_set": [ - 2680 + 2653 ], "where": [ - 2666, + 2639, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2657, + 2630, { "_inc": [ - 2668 + 2641 ], "_set": [ - 2680 + 2653 ], "pk_columns": [ - 2678, + 2651, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2674, + 2647, { "updates": [ - 2692, + 2665, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2709, + 2682, { "_inc": [ - 2705 + 2678 ], "_set": [ - 2715 + 2688 ], "where": [ - 2703, + 2676, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2699, + 2672, { "_inc": [ - 2705 + 2678 ], "_set": [ - 2715 + 2688 ], "pk_columns": [ - 2713, + 2686, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2709, + 2682, { "updates": [ - 2723, + 2696, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2743, + 2716, { "_set": [ - 2750 + 2723 ], "where": [ - 2736, + 2709, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2727, + 2700, { "_set": [ - 2750 + 2723 ], "pk_columns": [ - 2746, + 2719, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2743, + 2716, { "updates": [ - 2754, + 2727, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2778, + 2751, { "_append": [ - 2763 + 2736 ], "_delete_at_path": [ - 2769 + 2742 ], "_delete_elem": [ - 2770 + 2743 ], "_delete_key": [ - 2771 + 2744 ], "_inc": [ - 2772 + 2745 ], "_prepend": [ - 2782 + 2755 ], "_set": [ - 2786 + 2759 ], "where": [ - 2767, + 2740, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2755, + 2728, { "_append": [ - 2763 + 2736 ], "_delete_at_path": [ - 2769 + 2742 ], "_delete_elem": [ - 2770 + 2743 ], "_delete_key": [ - 2771 + 2744 ], "_inc": [ - 2772 + 2745 ], "_prepend": [ - 2782 + 2755 ], "_set": [ - 2786 + 2759 ], "pk_columns": [ - 2781, + 2754, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2778, + 2751, { "updates": [ - 2798, + 2771, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2813, + 2786, { "_set": [ - 2818 + 2791 ], "where": [ - 2808, + 2781, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2805, + 2778, { "_set": [ - 2818 + 2791 ], "pk_columns": [ - 2816, + 2789, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2813, + 2786, { "updates": [ - 2822, + 2795, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2840, + 2813, { "_inc": [ - 2834 + 2807 ], "_set": [ - 2846 + 2819 ], "where": [ - 2832, + 2805, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2823, + 2796, { "_inc": [ - 2834 + 2807 ], "_set": [ - 2846 + 2819 ], "pk_columns": [ - 2844, + 2817, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2840, + 2813, { "updates": [ - 2858, + 2831, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2873, + 2846, { "_set": [ - 2878 + 2851 ], "where": [ - 2868, + 2841, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2865, + 2838, { "_set": [ - 2878 + 2851 ], "pk_columns": [ - 2876, + 2849, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2873, + 2846, { "updates": [ - 2882, + 2855, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2905, + 2878, { "_append": [ - 2891 + 2864 ], "_delete_at_path": [ - 2896 + 2869 ], "_delete_elem": [ - 2897 + 2870 ], "_delete_key": [ - 2898 + 2871 ], "_inc": [ - 2899 + 2872 ], "_prepend": [ - 2907 + 2880 ], "_set": [ - 2911 + 2884 ], "where": [ - 2895, + 2868, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2905, + 2878, { "updates": [ - 2922, + 2895, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2939, + 2912, { "_inc": [ - 2935 + 2908 ], "_set": [ - 2944 + 2917 ], "where": [ - 2933, + 2906, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2929, + 2902, { "_inc": [ - 2935 + 2908 ], "_set": [ - 2944 + 2917 ], "pk_columns": [ - 2942, + 2915, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2939, + 2912, { "updates": [ - 2952, + 2925, "[news_articles_updates!]!" ] } ], "update_notification_preferences": [ - 2966, + 2939, { "_inc": [ - 2962 + 2935 ], "_set": [ - 2971 + 2944 ], "where": [ - 2960, + 2933, "notification_preferences_bool_exp!" ] } ], "update_notification_preferences_by_pk": [ - 2956, + 2929, { "_inc": [ - 2962 + 2935 ], "_set": [ - 2971 + 2944 ], "pk_columns": [ - 2969, + 2942, "notification_preferences_pk_columns_input!" ] } ], "update_notification_preferences_many": [ - 2966, + 2939, { "updates": [ - 2979, + 2952, "[notification_preferences_updates!]!" ] } ], "update_notifications": [ - 3006, + 2979, { "_append": [ - 2991 + 2964 ], "_delete_at_path": [ - 2997 + 2970 ], "_delete_elem": [ - 2998 + 2971 ], "_delete_key": [ - 2999 + 2972 ], "_inc": [ - 3000 + 2973 ], "_prepend": [ - 3010 + 2983 ], "_set": [ - 3014 + 2987 ], "where": [ - 2995, + 2968, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2983, + 2956, { "_append": [ - 2991 + 2964 ], "_delete_at_path": [ - 2997 + 2970 ], "_delete_elem": [ - 2998 + 2971 ], "_delete_key": [ - 2999 + 2972 ], "_inc": [ - 3000 + 2973 ], "_prepend": [ - 3010 + 2983 ], "_set": [ - 3014 + 2987 ], "pk_columns": [ - 3009, + 2982, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 3006, + 2979, { "updates": [ - 3026, + 2999, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3053, + 3026, { "_inc": [ - 3047 + 3020 ], "_set": [ - 3058 + 3031 ], "where": [ - 3045, + 3018, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3036, + 3009, { "_inc": [ - 3047 + 3020 ], "_set": [ - 3058 + 3031 ], "pk_columns": [ - 3056, + 3029, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3053, + 3026, { "updates": [ - 3070, + 3043, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3087, + 3060, { "_inc": [ - 3083 + 3056 ], "_set": [ - 3093 + 3066 ], "where": [ - 3081, + 3054, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3077, + 3050, { "_inc": [ - 3083 + 3056 ], "_set": [ - 3093 + 3066 ], "pk_columns": [ - 3091, + 3064, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3087, + 3060, { "updates": [ - 3101, + 3074, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3115, + 3088, { "_inc": [ - 3111 + 3084 ], "_set": [ - 3120 + 3093 ], "where": [ - 3109, + 3082, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3105, + 3078, { "_inc": [ - 3111 + 3084 ], "_set": [ - 3120 + 3093 ], "pk_columns": [ - 3118, + 3091, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3115, + 3088, { "updates": [ - 3128, + 3101, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3149, + 3122, { "_inc": [ - 3143 + 3116 ], "_set": [ - 3154 + 3127 ], "where": [ - 3141, + 3114, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3132, + 3105, { "_inc": [ - 3143 + 3116 ], "_set": [ - 3154 + 3127 ], "pk_columns": [ - 3152, + 3125, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3149, + 3122, { "updates": [ - 3166, + 3139, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3192, + 3165, { "_inc": [ - 3186 + 3159 ], "_set": [ - 3199 + 3172 ], "where": [ - 3184, + 3157, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3173, + 3146, { "_inc": [ - 3186 + 3159 ], "_set": [ - 3199 + 3172 ], "pk_columns": [ - 3195, + 3168, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3192, + 3165, { "updates": [ - 3211, + 3184, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3253, + 3226, { "_inc": [ - 3247 + 3220 ], "_set": [ - 3258 + 3231 ], "where": [ - 3245, + 3218, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3236, + 3209, { "_inc": [ - 3247 + 3220 ], "_set": [ - 3258 + 3231 ], "pk_columns": [ - 3256, + 3229, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3253, + 3226, { "updates": [ - 3270, + 3243, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3287, + 3260, { "_inc": [ - 3283 + 3256 ], "_set": [ - 3292 + 3265 ], "where": [ - 3281, + 3254, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3277, + 3250, { "_inc": [ - 3283 + 3256 ], "_set": [ - 3292 + 3265 ], "pk_columns": [ - 3290, + 3263, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3287, + 3260, { "updates": [ - 3300, + 3273, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3321, + 3294, { "_inc": [ - 3315 + 3288 ], "_set": [ - 3326 + 3299 ], "where": [ - 3313, + 3286, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3304, + 3277, { "_inc": [ - 3315 + 3288 ], "_set": [ - 3326 + 3299 ], "pk_columns": [ - 3324, + 3297, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3321, + 3294, { "updates": [ - 3338, + 3311, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3364, + 3337, { "_inc": [ - 3358 + 3331 ], "_set": [ - 3371 + 3344 ], "where": [ - 3356, + 3329, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3345, + 3318, { "_inc": [ - 3358 + 3331 ], "_set": [ - 3371 + 3344 ], "pk_columns": [ - 3367, + 3340, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3364, + 3337, { "updates": [ - 3383, + 3356, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3450, + 3423, { "_inc": [ - 3444 + 3417 ], "_set": [ - 3457 + 3430 ], "where": [ - 3401, + 3374, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3390, + 3363, { "_inc": [ - 3444 + 3417 ], "_set": [ - 3457 + 3430 ], "pk_columns": [ - 3453, + 3426, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3419, + 3392, { "_inc": [ - 3413 + 3386 ], "_set": [ - 3424 + 3397 ], "where": [ - 3411, + 3384, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3402, + 3375, { "_inc": [ - 3413 + 3386 ], "_set": [ - 3424 + 3397 ], "pk_columns": [ - 3422, + 3395, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3419, + 3392, { "updates": [ - 3436, + 3409, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3450, + 3423, { "updates": [ - 3469, + 3442, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3485, + 3458, { "_inc": [ - 3481 + 3454 ], "_set": [ - 3488 + 3461 ], "where": [ - 3480, + 3453, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3485, + 3458, { "updates": [ - 3495, + 3468, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3516, + 3489, { "_inc": [ - 3510 + 3483 ], "_set": [ - 3521 + 3494 ], "where": [ - 3508, + 3481, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3499, + 3472, { "_inc": [ - 3510 + 3483 ], "_set": [ - 3521 + 3494 ], "pk_columns": [ - 3519, + 3492, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3516, + 3489, { "updates": [ - 3533, + 3506, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3608, + 3581, { "_inc": [ - 3602 + 3575 ], "_set": [ - 3613 + 3586 ], "where": [ - 3600, + 3573, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3591, + 3564, { "_inc": [ - 3602 + 3575 ], "_set": [ - 3613 + 3586 ], "pk_columns": [ - 3611, + 3584, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3608, + 3581, { "updates": [ - 3625, + 3598, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3667, + 3640, { "_inc": [ - 3661 + 3634 ], "_set": [ - 3672 + 3645 ], "where": [ - 3659, + 3632, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3650, + 3623, { "_inc": [ - 3661 + 3634 ], "_set": [ - 3672 + 3645 ], "pk_columns": [ - 3670, + 3643, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3667, + 3640, { "updates": [ - 3684, + 3657, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3708, + 3681, { "_inc": [ - 3702 + 3675 ], "_set": [ - 3713 + 3686 ], "where": [ - 3700, + 3673, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3691, + 3664, { "_inc": [ - 3702 + 3675 ], "_set": [ - 3713 + 3686 ], "pk_columns": [ - 3711, + 3684, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3708, + 3681, { "updates": [ - 3725, + 3698, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3759, + 3732, { "_inc": [ - 3753 + 3726 ], "_set": [ - 3772 + 3745 ], "where": [ - 3751, + 3724, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3732, + 3705, { "_inc": [ - 3753 + 3726 ], "_set": [ - 3772 + 3745 ], "pk_columns": [ - 3762, + 3735, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3759, + 3732, { "updates": [ - 3784, + 3757, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3801, + 3774, { "_inc": [ - 3797 + 3770 ], "_set": [ - 3807 + 3780 ], "where": [ - 3795, + 3768, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3791, + 3764, { "_inc": [ - 3797 + 3770 ], "_set": [ - 3807 + 3780 ], "pk_columns": [ - 3805, + 3778, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3801, + 3774, { "updates": [ - 3815, + 3788, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3833, + 3806, { "_append": [ - 3822 + 3795 ], "_delete_at_path": [ - 3826 + 3799 ], "_delete_elem": [ - 3827 + 3800 ], "_delete_key": [ - 3828 + 3801 ], "_inc": [ - 3829 + 3802 ], "_prepend": [ - 3837 + 3810 ], "_set": [ - 3839 + 3812 ], "where": [ - 3824, + 3797, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3819, + 3792, { "_append": [ - 3822 + 3795 ], "_delete_at_path": [ - 3826 + 3799 ], "_delete_elem": [ - 3827 + 3800 ], "_delete_key": [ - 3828 + 3801 ], "_inc": [ - 3829 + 3802 ], "_prepend": [ - 3837 + 3810 ], "_set": [ - 3839 + 3812 ], "pk_columns": [ - 3836, + 3809, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3833, + 3806, { "updates": [ - 3847, + 3820, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3861, + 3834, { "_inc": [ - 3857 + 3830 ], "_set": [ - 3866 + 3839 ], "where": [ - 3855, + 3828, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3851, + 3824, { "_inc": [ - 3857 + 3830 ], "_set": [ - 3866 + 3839 ], "pk_columns": [ - 3864, + 3837, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3861, + 3834, { "updates": [ - 3874, + 3847, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3895, + 3868, { "_inc": [ - 3889 + 3862 ], "_set": [ - 3900 + 3873 ], "where": [ - 3887, + 3860, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3878, + 3851, { "_inc": [ - 3889 + 3862 ], "_set": [ - 3900 + 3873 ], "pk_columns": [ - 3898, + 3871, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3895, + 3868, { "updates": [ - 3912, + 3885, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3936, + 3909, { "_inc": [ - 3930 + 3903 ], "_set": [ - 3941 + 3914 ], "where": [ - 3928, + 3901, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3919, + 3892, { "_inc": [ - 3930 + 3903 ], "_set": [ - 3941 + 3914 ], "pk_columns": [ - 3939, + 3912, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3936, + 3909, { "updates": [ - 3953, + 3926, "[player_utility_updates!]!" ] } ], "update_players": [ - 4003, + 3976, { "_inc": [ - 3999 + 3972 ], "_set": [ - 4009 + 3982 ], "where": [ - 3997, + 3970, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3993, + 3966, { "_inc": [ - 3999 + 3972 ], "_set": [ - 4009 + 3982 ], "pk_columns": [ - 4007, + 3980, "players_pk_columns_input!" ] } ], "update_players_many": [ - 4003, + 3976, { "updates": [ - 4017, + 3990, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4031, + 4004, { "_inc": [ - 4027 + 4000 ], "_set": [ - 4036 + 4009 ], "where": [ - 4025, + 3998, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 4021, + 3994, { "_inc": [ - 4027 + 4000 ], "_set": [ - 4036 + 4009 ], "pk_columns": [ - 4034, + 4007, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4031, + 4004, { "updates": [ - 4044, + 4017, "[plugin_versions_updates!]!" ] } ], "update_push_subscriptions": [ - 4058, + 4031, { "_inc": [ - 4054 + 4027 ], "_set": [ - 4063 + 4036 ], "where": [ - 4052, + 4025, "push_subscriptions_bool_exp!" ] } ], "update_push_subscriptions_by_pk": [ - 4048, + 4021, { "_inc": [ - 4054 + 4027 ], "_set": [ - 4063 + 4036 ], "pk_columns": [ - 4061, + 4034, "push_subscriptions_pk_columns_input!" ] } ], "update_push_subscriptions_many": [ - 4058, + 4031, { "updates": [ - 4071, + 4044, "[push_subscriptions_updates!]!" ] } ], "update_seasons": [ - 4089, + 4062, { "_inc": [ - 4085 + 4058 ], "_set": [ - 4095 + 4068 ], "where": [ - 4083, + 4056, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4079, + 4052, { "_inc": [ - 4085 + 4058 ], "_set": [ - 4095 + 4068 ], "pk_columns": [ - 4093, + 4066, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4089, + 4062, { "updates": [ - 4103, + 4076, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4116, + 4089, { "_set": [ - 4122 + 4095 ], "where": [ - 4111, + 4084, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4107, + 4080, { "_set": [ - 4122 + 4095 ], "pk_columns": [ - 4120, + 4093, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4116, + 4089, { "updates": [ - 4130, + 4103, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4153, + 4126, { "_inc": [ - 4147 + 4120 ], "_set": [ - 4161 + 4134 ], "where": [ - 4145, + 4118, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4134, + 4107, { "_inc": [ - 4147 + 4120 ], "_set": [ - 4161 + 4134 ], "pk_columns": [ - 4157, + 4130, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4153, + 4126, { "updates": [ - 4173, + 4146, "[servers_updates!]!" ] } ], "update_settings": [ - 4188, + 4161, { "_set": [ - 4193 + 4166 ], "where": [ - 4183, + 4156, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4180, + 4153, { "_set": [ - 4193 + 4166 ], "pk_columns": [ - 4191, + 4164, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4188, + 4161, { "updates": [ - 4197, + 4170, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4214, + 4187, { "_set": [ - 4219 + 4192 ], "where": [ - 4207, + 4180, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4200, + 4173, { "_set": [ - 4219 + 4192 ], "pk_columns": [ - 4217, + 4190, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4214, + 4187, { "updates": [ - 4223, + 4196, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4234, + 4207, { "_inc": [ - 4230 + 4203 ], "_set": [ - 4240 + 4213 ], "where": [ - 4228, + 4201, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4224, + 4197, { "_inc": [ - 4230 + 4203 ], "_set": [ - 4240 + 4213 ], "pk_columns": [ - 4238, + 4211, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4234, + 4207, { "updates": [ - 4248, + 4221, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4262, + 4235, { "_inc": [ - 4258 + 4231 ], "_set": [ - 4267 + 4240 ], "where": [ - 4256, + 4229, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4252, + 4225, { "_inc": [ - 4258 + 4231 ], "_set": [ - 4267 + 4240 ], "pk_columns": [ - 4265, + 4238, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4262, + 4235, { "updates": [ - 4275, + 4248, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4296, + 4269, { "_inc": [ - 4290 + 4263 ], "_set": [ - 4301 + 4274 ], "where": [ - 4288, + 4261, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4279, + 4252, { "_inc": [ - 4290 + 4263 ], "_set": [ - 4301 + 4274 ], "pk_columns": [ - 4299, + 4272, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4296, + 4269, { "updates": [ - 4313, + 4286, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4339, + 4312, { "_inc": [ - 4333 + 4306 ], "_set": [ - 4346 + 4319 ], "where": [ - 4331, + 4304, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4320, + 4293, { "_inc": [ - 4333 + 4306 ], "_set": [ - 4346 + 4319 ], "pk_columns": [ - 4342, + 4315, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4339, + 4312, { "updates": [ - 4358, + 4331, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4375, + 4348, { "_inc": [ - 4371 + 4344 ], "_set": [ - 4380 + 4353 ], "where": [ - 4369, + 4342, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4365, + 4338, { "_inc": [ - 4371 + 4344 ], "_set": [ - 4380 + 4353 ], "pk_columns": [ - 4378, + 4351, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4375, + 4348, { "updates": [ - 4388, + 4361, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4408, + 4381, { "_set": [ - 4415 + 4388 ], "where": [ - 4401, + 4374, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4392, + 4365, { "_set": [ - 4415 + 4388 ], "pk_columns": [ - 4411, + 4384, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4408, + 4381, { "updates": [ - 4419, + 4392, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4437, + 4410, { "_inc": [ - 4431 + 4404 ], "_set": [ - 4442 + 4415 ], "where": [ - 4429, + 4402, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4420, + 4393, { "_inc": [ - 4431 + 4404 ], "_set": [ - 4442 + 4415 ], "pk_columns": [ - 4440, + 4413, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4437, + 4410, { "updates": [ - 4454, + 4427, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4480, + 4453, { "_inc": [ - 4474 + 4447 ], "_set": [ - 4488 + 4461 ], "where": [ - 4472, + 4445, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4461, + 4434, { "_inc": [ - 4474 + 4447 ], "_set": [ - 4488 + 4461 ], "pk_columns": [ - 4484, + 4457, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4480, + 4453, { "updates": [ - 4500, + 4473, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4517, + 4490, { "_inc": [ - 4513 + 4486 ], "_set": [ - 4523 + 4496 ], "where": [ - 4511, + 4484, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4507, + 4480, { "_inc": [ - 4513 + 4486 ], "_set": [ - 4523 + 4496 ], "pk_columns": [ - 4521, + 4494, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4517, + 4490, { "updates": [ - 4531, + 4504, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4545, + 4518, { "_inc": [ - 4541 + 4514 ], "_set": [ - 4550 + 4523 ], "where": [ - 4539, + 4512, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4535, + 4508, { "_inc": [ - 4541 + 4514 ], "_set": [ - 4550 + 4523 ], "pk_columns": [ - 4548, + 4521, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4545, + 4518, { "updates": [ - 4558, + 4531, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4581, + 4554, { "_inc": [ - 4575 + 4548 ], "_set": [ - 4589 + 4562 ], "where": [ - 4573, + 4546, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4562, + 4535, { "_inc": [ - 4575 + 4548 ], "_set": [ - 4589 + 4562 ], "pk_columns": [ - 4585, + 4558, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4581, + 4554, { "updates": [ - 4601, + 4574, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4630, + 4603, { "_inc": [ - 4624 + 4597 ], "_set": [ - 4636 + 4609 ], "where": [ - 4622, + 4595, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4613, + 4586, { "_inc": [ - 4624 + 4597 ], "_set": [ - 4636 + 4609 ], "pk_columns": [ - 4634, + 4607, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4630, + 4603, { "updates": [ - 4648, + 4621, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4674, + 4647, { "_inc": [ - 4668 + 4641 ], "_set": [ - 4682 + 4655 ], "where": [ - 4666, + 4639, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4655, + 4628, { "_inc": [ - 4668 + 4641 ], "_set": [ - 4682 + 4655 ], "pk_columns": [ - 4678, + 4651, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4674, + 4647, { "updates": [ - 4694, + 4667, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4715, + 4688, { "_set": [ - 4720 + 4693 ], "where": [ - 4708, + 4681, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4701, + 4674, { "_set": [ - 4720 + 4693 ], "pk_columns": [ - 4718, + 4691, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4715, + 4688, { "updates": [ - 4724, + 4697, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4739, + 4712, { "_set": [ - 4744 + 4717 ], "where": [ - 4732, + 4705, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4725, + 4698, { "_set": [ - 4744 + 4717 ], "pk_columns": [ - 4742, + 4715, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4739, + 4712, { "updates": [ - 4748, + 4721, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4766, + 4739, { "_inc": [ - 4760 + 4733 ], "_set": [ - 4771 + 4744 ], "where": [ - 4758, + 4731, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4749, + 4722, { "_inc": [ - 4760 + 4733 ], "_set": [ - 4771 + 4744 ], "pk_columns": [ - 4769, + 4742, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4766, + 4739, { "updates": [ - 4783, + 4756, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4807, + 4780, { "_inc": [ - 4801 + 4774 ], "_set": [ - 4812 + 4785 ], "where": [ - 4799, + 4772, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4790, + 4763, { "_inc": [ - 4801 + 4774 ], "_set": [ - 4812 + 4785 ], "pk_columns": [ - 4810, + 4783, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4807, + 4780, { "updates": [ - 4824, + 4797, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4848, + 4821, { "_inc": [ - 4842 + 4815 ], "_set": [ - 4853 + 4826 ], "where": [ - 4840, + 4813, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4831, + 4804, { "_inc": [ - 4842 + 4815 ], "_set": [ - 4853 + 4826 ], "pk_columns": [ - 4851, + 4824, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4848, + 4821, { "updates": [ - 4865, + 4838, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4895, + 4868, { "_append": [ - 4880 + 4853 ], "_delete_at_path": [ - 4886 + 4859 ], "_delete_elem": [ - 4887 + 4860 ], "_delete_key": [ - 4888 + 4861 ], "_inc": [ - 4889 + 4862 ], "_prepend": [ - 4900 + 4873 ], "_set": [ - 4904 + 4877 ], "where": [ - 4884, + 4857, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4872, + 4845, { "_append": [ - 4880 + 4853 ], "_delete_at_path": [ - 4886 + 4859 ], "_delete_elem": [ - 4887 + 4860 ], "_delete_key": [ - 4888 + 4861 ], "_inc": [ - 4889 + 4862 ], "_prepend": [ - 4900 + 4873 ], "_set": [ - 4904 + 4877 ], "pk_columns": [ - 4899, + 4872, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4895, + 4868, { "updates": [ - 4916, + 4889, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4940, + 4913, { "_inc": [ - 4934 + 4907 ], "_set": [ - 4945 + 4918 ], "where": [ - 4932, + 4905, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4923, + 4896, { "_inc": [ - 4934 + 4907 ], "_set": [ - 4945 + 4918 ], "pk_columns": [ - 4943, + 4916, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4940, + 4913, { "updates": [ - 4957, + 4930, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4981, + 4954, { "_inc": [ - 4975 + 4948 ], "_set": [ - 4986 + 4959 ], "where": [ - 4973, + 4946, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4964, + 4937, { "_inc": [ - 4975 + 4948 ], "_set": [ - 4986 + 4959 ], "pk_columns": [ - 4984, + 4957, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4981, + 4954, { "updates": [ - 4998, + 4971, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5022, + 4995, { "_inc": [ - 5016 + 4989 ], "_set": [ - 5028 + 5001 ], "where": [ - 5014, + 4987, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5005, + 4978, { "_inc": [ - 5016 + 4989 ], "_set": [ - 5028 + 5001 ], "pk_columns": [ - 5026, + 4999, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5022, + 4995, { "updates": [ - 5040, + 5013, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5076, + 5049, { "_inc": [ - 5070 + 5043 ], "_set": [ - 5092 + 5065 ], "where": [ - 5068, + 5041, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5047, + 5020, { "_inc": [ - 5070 + 5043 ], "_set": [ - 5092 + 5065 ], "pk_columns": [ - 5080, + 5053, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5076, + 5049, { "updates": [ - 5104, + 5077, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5276, + 5249, { "_inc": [ - 5272 + 5245 ], "_set": [ - 5280 + 5253 ], "where": [ - 5271, + 5244, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5276, + 5249, { "updates": [ - 5287, + 5260, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5387, + 5360, { "_inc": [ - 5383 + 5356 ], "_set": [ - 5390 + 5363 ], "where": [ - 5382, + 5355, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5387, + 5360, { "updates": [ - 5397, + 5370, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5609, + 5582, { "_inc": [ - 5603 + 5576 ], "_set": [ - 5612 + 5585 ], "where": [ - 5602, + 5575, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5609, + 5582, { "updates": [ - 5623, + 5596, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5786, + 5759, { "_set": [ - 5791 + 5764 ], "where": [ - 5780, + 5753, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5786, + 5759, { "updates": [ - 5794, + 5767, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5880, + 5853, { "_inc": [ - 5874 + 5847 ], "_set": [ - 5894 + 5867 ], "where": [ - 5872, + 5845, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5853, + 5826, { "_inc": [ - 5874 + 5847 ], "_set": [ - 5894 + 5867 ], "pk_columns": [ - 5884, + 5857, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5880, + 5853, { "updates": [ - 5906, + 5879, "[v_team_stage_results_updates!]!" ] } @@ -163767,7 +163261,7 @@ export default { 83, { "game_server_node_id": [ - 5111, + 5084, "uuid!" ] } @@ -163776,10 +163270,10 @@ export default { 99, { "match_map_demo_id": [ - 5111 + 5084 ], "match_map_id": [ - 5111, + 5084, "uuid!" ] } @@ -163857,11 +163351,11 @@ export default { 102, { "map_id": [ - 5111, + 5084, "uuid!" ], "map_pool_id": [ - 5111, + 5084, "uuid!" ] } @@ -163930,7 +163424,7 @@ export default { 121, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -163999,7 +163493,7 @@ export default { 162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164068,7 +163562,7 @@ export default { 190, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164137,7 +163631,7 @@ export default { 231, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164206,7 +163700,7 @@ export default { 264, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164275,7 +163769,7 @@ export default { 316, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164344,7 +163838,7 @@ export default { 348, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164413,7 +163907,7 @@ export default { 375, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -164482,7 +163976,7 @@ export default { 420, { "draft_game_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -164555,7 +164049,7 @@ export default { 465, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -167729,11 +167223,11 @@ export default { 1432, { "event_id": [ - 5111, + 5084, "uuid!" ], "match_id": [ - 5111, + 5084, "uuid!" ] } @@ -167802,7 +167296,7 @@ export default { 1450, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -167855,7 +167349,7 @@ export default { 1472, { "media_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -167944,7 +167438,7 @@ export default { 1533, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -168017,7 +167511,7 @@ export default { 1574, { "event_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -168090,11 +167584,11 @@ export default { 1615, { "event_id": [ - 5111, + 5084, "uuid!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } @@ -168163,11 +167657,11 @@ export default { 1639, { "event_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } @@ -168236,7 +167730,7 @@ export default { 1663, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -168516,7 +168010,7 @@ export default { 1804, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -168694,14 +168188,14 @@ export default { } ], "get_player_leaderboard_rank": [ - 3476, + 3449, { "args": [ 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -168711,23 +168205,23 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3477, + 3450, { "args": [ 1839, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -168737,11 +168231,11 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], @@ -168853,7 +168347,7 @@ export default { 1871, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -168922,7 +168416,7 @@ export default { 1899, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -168991,7 +168485,7 @@ export default { 1940, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169060,7 +168554,7 @@ export default { 1981, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169129,7 +168623,7 @@ export default { 2022, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169198,7 +168692,7 @@ export default { 2047, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169267,7 +168761,7 @@ export default { 2080, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169336,7 +168830,7 @@ export default { 2121, { "league_team_season_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -169409,7 +168903,7 @@ export default { 2162, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169478,7 +168972,7 @@ export default { 2204, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169547,7 +169041,7 @@ export default { 2223, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169616,7 +169110,7 @@ export default { 2242, { "lobby_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -169689,7 +169183,7 @@ export default { 2287, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169758,7 +169252,7 @@ export default { 2306, { "id": [ - 5111, + 5084, "uuid!" ] } @@ -169779,80 +169273,11 @@ export default { ] } ], - "match_camera_tokens": [ - 2335, - { - "distinct_on": [ - 2349, - "[match_camera_tokens_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2347, - "[match_camera_tokens_order_by!]" - ], - "where": [ - 2339 - ] - } - ], - "match_camera_tokens_aggregate": [ - 2336, - { - "distinct_on": [ - 2349, - "[match_camera_tokens_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2347, - "[match_camera_tokens_order_by!]" - ], - "where": [ - 2339 - ] - } - ], - "match_camera_tokens_by_pk": [ - 2335, - { - "id": [ - 5111, - "uuid!" - ] - } - ], - "match_camera_tokens_stream": [ - 2335, - { - "batch_size": [ - 40, - "Int!" - ], - "cursor": [ - 2354, - "[match_camera_tokens_stream_cursor_input]!" - ], - "where": [ - 2339 - ] - } - ], "match_clips": [ - 2362, + 2335, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -169862,19 +169287,19 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_aggregate": [ - 2363, + 2336, { "distinct_on": [ - 2384, + 2357, "[match_clips_select_column!]" ], "limit": [ @@ -169884,44 +169309,44 @@ export default { 40 ], "order_by": [ - 2382, + 2355, "[match_clips_order_by!]" ], "where": [ - 2371 + 2344 ] } ], "match_clips_by_pk": [ - 2362, + 2335, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_clips_stream": [ - 2362, + 2335, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2392, + 2365, "[match_clips_stream_cursor_input]!" ], "where": [ - 2371 + 2344 ] } ], "match_demo_sessions": [ - 2404, + 2377, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -169931,19 +169356,19 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], "match_demo_sessions_aggregate": [ - 2405, + 2378, { "distinct_on": [ - 2430, + 2403, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -169953,44 +169378,44 @@ export default { 40 ], "order_by": [ - 2427, + 2400, "[match_demo_sessions_order_by!]" ], "where": [ - 2414 + 2387 ] } ], "match_demo_sessions_by_pk": [ - 2404, + 2377, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2404, + 2377, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2438, + 2411, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2414 + 2387 ] } ], "match_lineup_players": [ - 2450, + 2423, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -170000,19 +169425,19 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match_lineup_players_aggregate": [ - 2451, + 2424, { "distinct_on": [ - 2473, + 2446, "[match_lineup_players_select_column!]" ], "limit": [ @@ -170022,44 +169447,44 @@ export default { 40 ], "order_by": [ - 2471, + 2444, "[match_lineup_players_order_by!]" ], "where": [ - 2461 + 2434 ] } ], "match_lineup_players_by_pk": [ - 2450, + 2423, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_lineup_players_stream": [ - 2450, + 2423, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2483, + 2456, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2461 + 2434 ] } ], "match_lineups": [ - 2495, + 2468, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -170069,19 +169494,19 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "match_lineups_aggregate": [ - 2496, + 2469, { "distinct_on": [ - 2517, + 2490, "[match_lineups_select_column!]" ], "limit": [ @@ -170091,44 +169516,44 @@ export default { 40 ], "order_by": [ - 2515, + 2488, "[match_lineups_order_by!]" ], "where": [ - 2504 + 2477 ] } ], "match_lineups_by_pk": [ - 2495, + 2468, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_lineups_stream": [ - 2495, + 2468, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2525, + 2498, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2504 + 2477 ] } ], "match_map_demos": [ - 2537, + 2510, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -170138,19 +169563,19 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "match_map_demos_aggregate": [ - 2538, + 2511, { "distinct_on": [ - 2566, + 2539, "[match_map_demos_select_column!]" ], "limit": [ @@ -170160,44 +169585,44 @@ export default { 40 ], "order_by": [ - 2563, + 2536, "[match_map_demos_order_by!]" ], "where": [ - 2549 + 2522 ] } ], "match_map_demos_by_pk": [ - 2537, + 2510, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_demos_stream": [ - 2537, + 2510, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2576, + 2549, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2549 + 2522 ] } ], "match_map_rounds": [ - 2588, + 2561, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -170207,19 +169632,19 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "match_map_rounds_aggregate": [ - 2589, + 2562, { "distinct_on": [ - 2609, + 2582, "[match_map_rounds_select_column!]" ], "limit": [ @@ -170229,44 +169654,44 @@ export default { 40 ], "order_by": [ - 2607, + 2580, "[match_map_rounds_order_by!]" ], "where": [ - 2597 + 2570 ] } ], "match_map_rounds_by_pk": [ - 2588, + 2561, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_rounds_stream": [ - 2588, + 2561, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2617, + 2590, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2597 + 2570 ] } ], "match_map_veto_picks": [ - 2629, + 2602, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -170276,19 +169701,19 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_map_veto_picks_aggregate": [ - 2630, + 2603, { "distinct_on": [ - 2649, + 2622, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -170298,44 +169723,44 @@ export default { 40 ], "order_by": [ - 2647, + 2620, "[match_map_veto_picks_order_by!]" ], "where": [ - 2638 + 2611 ] } ], "match_map_veto_picks_by_pk": [ - 2629, + 2602, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2629, + 2602, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2653, + 2626, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2638 + 2611 ] } ], "match_maps": [ - 2657, + 2630, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -170345,19 +169770,19 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_aggregate": [ - 2658, + 2631, { "distinct_on": [ - 2679, + 2652, "[match_maps_select_column!]" ], "limit": [ @@ -170367,44 +169792,44 @@ export default { 40 ], "order_by": [ - 2677, + 2650, "[match_maps_order_by!]" ], "where": [ - 2666 + 2639 ] } ], "match_maps_by_pk": [ - 2657, + 2630, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_maps_stream": [ - 2657, + 2630, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2687, + 2660, "[match_maps_stream_cursor_input]!" ], "where": [ - 2666 + 2639 ] } ], "match_options": [ - 2699, + 2672, { "distinct_on": [ - 2714, + 2687, "[match_options_select_column!]" ], "limit": [ @@ -170414,19 +169839,19 @@ export default { 40 ], "order_by": [ - 2712, + 2685, "[match_options_order_by!]" ], "where": [ - 2703 + 2676 ] } ], "match_options_aggregate": [ - 2700, + 2673, { "distinct_on": [ - 2714, + 2687, "[match_options_select_column!]" ], "limit": [ @@ -170436,44 +169861,44 @@ export default { 40 ], "order_by": [ - 2712, + 2685, "[match_options_order_by!]" ], "where": [ - 2703 + 2676 ] } ], "match_options_by_pk": [ - 2699, + 2672, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_options_stream": [ - 2699, + 2672, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2719, + 2692, "[match_options_stream_cursor_input]!" ], "where": [ - 2703 + 2676 ] } ], "match_region_veto_picks": [ - 2727, + 2700, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -170483,19 +169908,19 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], "match_region_veto_picks_aggregate": [ - 2728, + 2701, { "distinct_on": [ - 2747, + 2720, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -170505,44 +169930,44 @@ export default { 40 ], "order_by": [ - 2745, + 2718, "[match_region_veto_picks_order_by!]" ], "where": [ - 2736 + 2709 ] } ], "match_region_veto_picks_by_pk": [ - 2727, + 2700, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2727, + 2700, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2751, + 2724, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2736 + 2709 ] } ], "match_streams": [ - 2755, + 2728, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -170552,19 +169977,19 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "match_streams_aggregate": [ - 2756, + 2729, { "distinct_on": [ - 2783, + 2756, "[match_streams_select_column!]" ], "limit": [ @@ -170574,44 +169999,44 @@ export default { 40 ], "order_by": [ - 2780, + 2753, "[match_streams_order_by!]" ], "where": [ - 2767 + 2740 ] } ], "match_streams_by_pk": [ - 2755, + 2728, { "id": [ - 5111, + 5084, "uuid!" ] } ], "match_streams_stream": [ - 2755, + 2728, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2793, + 2766, "[match_streams_stream_cursor_input]!" ], "where": [ - 2767 + 2740 ] } ], "match_type_cfgs": [ - 2805, + 2778, { "distinct_on": [ - 2817, + 2790, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -170621,19 +170046,19 @@ export default { 40 ], "order_by": [ - 2815, + 2788, "[match_type_cfgs_order_by!]" ], "where": [ - 2808 + 2781 ] } ], "match_type_cfgs_aggregate": [ - 2806, + 2779, { "distinct_on": [ - 2817, + 2790, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -170643,16 +170068,16 @@ export default { 40 ], "order_by": [ - 2815, + 2788, "[match_type_cfgs_order_by!]" ], "where": [ - 2808 + 2781 ] } ], "match_type_cfgs_by_pk": [ - 2805, + 2778, { "type": [ 742, @@ -170661,26 +170086,26 @@ export default { } ], "match_type_cfgs_stream": [ - 2805, + 2778, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2819, + 2792, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2808 + 2781 ] } ], "matches": [ - 2823, + 2796, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -170690,19 +170115,19 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_aggregate": [ - 2824, + 2797, { "distinct_on": [ - 2845, + 2818, "[matches_select_column!]" ], "limit": [ @@ -170712,44 +170137,44 @@ export default { 40 ], "order_by": [ - 2843, + 2816, "[matches_order_by!]" ], "where": [ - 2832 + 2805 ] } ], "matches_by_pk": [ - 2823, + 2796, { "id": [ - 5111, + 5084, "uuid!" ] } ], "matches_stream": [ - 2823, + 2796, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2853, + 2826, "[matches_stream_cursor_input]!" ], "where": [ - 2832 + 2805 ] } ], "migration_hashes_hashes": [ - 2865, + 2838, { "distinct_on": [ - 2877, + 2850, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -170759,19 +170184,19 @@ export default { 40 ], "order_by": [ - 2875, + 2848, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2868 + 2841 ] } ], "migration_hashes_hashes_aggregate": [ - 2866, + 2839, { "distinct_on": [ - 2877, + 2850, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -170781,16 +170206,16 @@ export default { 40 ], "order_by": [ - 2875, + 2848, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2868 + 2841 ] } ], "migration_hashes_hashes_by_pk": [ - 2865, + 2838, { "name": [ 80, @@ -170799,26 +170224,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2865, + 2838, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2879, + 2852, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2868 + 2841 ] } ], "my_friends": [ - 2883, + 2856, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -170828,19 +170253,19 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], "my_friends_aggregate": [ - 2884, + 2857, { "distinct_on": [ - 2908, + 2881, "[my_friends_select_column!]" ], "limit": [ @@ -170850,35 +170275,35 @@ export default { 40 ], "order_by": [ - 2906, + 2879, "[my_friends_order_by!]" ], "where": [ - 2895 + 2868 ] } ], "my_friends_stream": [ - 2883, + 2856, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2918, + 2891, "[my_friends_stream_cursor_input]!" ], "where": [ - 2895 + 2868 ] } ], "news_articles": [ - 2929, + 2902, { "distinct_on": [ - 2943, + 2916, "[news_articles_select_column!]" ], "limit": [ @@ -170888,19 +170313,19 @@ export default { 40 ], "order_by": [ - 2941, + 2914, "[news_articles_order_by!]" ], "where": [ - 2933 + 2906 ] } ], "news_articles_aggregate": [ - 2930, + 2903, { "distinct_on": [ - 2943, + 2916, "[news_articles_select_column!]" ], "limit": [ @@ -170910,44 +170335,44 @@ export default { 40 ], "order_by": [ - 2941, + 2914, "[news_articles_order_by!]" ], "where": [ - 2933 + 2906 ] } ], "news_articles_by_pk": [ - 2929, + 2902, { "id": [ - 5111, + 5084, "uuid!" ] } ], "news_articles_stream": [ - 2929, + 2902, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2948, + 2921, "[news_articles_stream_cursor_input]!" ], "where": [ - 2933 + 2906 ] } ], "notification_preferences": [ - 2956, + 2929, { "distinct_on": [ - 2970, + 2943, "[notification_preferences_select_column!]" ], "limit": [ @@ -170957,19 +170382,19 @@ export default { 40 ], "order_by": [ - 2968, + 2941, "[notification_preferences_order_by!]" ], "where": [ - 2960 + 2933 ] } ], "notification_preferences_aggregate": [ - 2957, + 2930, { "distinct_on": [ - 2970, + 2943, "[notification_preferences_select_column!]" ], "limit": [ @@ -170979,16 +170404,16 @@ export default { 40 ], "order_by": [ - 2968, + 2941, "[notification_preferences_order_by!]" ], "where": [ - 2960 + 2933 ] } ], "notification_preferences_by_pk": [ - 2956, + 2929, { "channel": [ 80, @@ -171005,26 +170430,26 @@ export default { } ], "notification_preferences_stream": [ - 2956, + 2929, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2975, + 2948, "[notification_preferences_stream_cursor_input]!" ], "where": [ - 2960 + 2933 ] } ], "notifications": [ - 2983, + 2956, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -171034,19 +170459,19 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "notifications_aggregate": [ - 2984, + 2957, { "distinct_on": [ - 3011, + 2984, "[notifications_select_column!]" ], "limit": [ @@ -171056,44 +170481,44 @@ export default { 40 ], "order_by": [ - 3008, + 2981, "[notifications_order_by!]" ], "where": [ - 2995 + 2968 ] } ], "notifications_by_pk": [ - 2983, + 2956, { "id": [ - 5111, + 5084, "uuid!" ] } ], "notifications_stream": [ - 2983, + 2956, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3021, + 2994, "[notifications_stream_cursor_input]!" ], "where": [ - 2995 + 2968 ] } ], "pending_match_import_players": [ - 3036, + 3009, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -171103,19 +170528,19 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "pending_match_import_players_aggregate": [ - 3037, + 3010, { "distinct_on": [ - 3057, + 3030, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -171125,48 +170550,48 @@ export default { 40 ], "order_by": [ - 3055, + 3028, "[pending_match_import_players_order_by!]" ], "where": [ - 3045 + 3018 ] } ], "pending_match_import_players_by_pk": [ - 3036, + 3009, { "steam_id": [ 259, "bigint!" ], "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3036, + 3009, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3065, + 3038, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3045 + 3018 ] } ], "pending_match_imports": [ - 3077, + 3050, { "distinct_on": [ - 3092, + 3065, "[pending_match_imports_select_column!]" ], "limit": [ @@ -171176,19 +170601,19 @@ export default { 40 ], "order_by": [ - 3090, + 3063, "[pending_match_imports_order_by!]" ], "where": [ - 3081 + 3054 ] } ], "pending_match_imports_aggregate": [ - 3078, + 3051, { "distinct_on": [ - 3092, + 3065, "[pending_match_imports_select_column!]" ], "limit": [ @@ -171198,44 +170623,44 @@ export default { 40 ], "order_by": [ - 3090, + 3063, "[pending_match_imports_order_by!]" ], "where": [ - 3081 + 3054 ] } ], "pending_match_imports_by_pk": [ - 3077, + 3050, { "valve_match_id": [ - 3033, + 3006, "numeric!" ] } ], "pending_match_imports_stream": [ - 3077, + 3050, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3097, + 3070, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3081 + 3054 ] } ], "player_aim_stats_demo": [ - 3105, + 3078, { "distinct_on": [ - 3119, + 3092, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -171245,19 +170670,19 @@ export default { 40 ], "order_by": [ - 3117, + 3090, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3109 + 3082 ] } ], "player_aim_stats_demo_aggregate": [ - 3106, + 3079, { "distinct_on": [ - 3119, + 3092, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -171267,48 +170692,48 @@ export default { 40 ], "order_by": [ - 3117, + 3090, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3109 + 3082 ] } ], "player_aim_stats_demo_by_pk": [ - 3105, + 3078, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3105, + 3078, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3124, + 3097, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3109 + 3082 ] } ], "player_aim_weapon_stats": [ - 3132, + 3105, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -171318,19 +170743,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "player_aim_weapon_stats_aggregate": [ - 3133, + 3106, { "distinct_on": [ - 3153, + 3126, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -171340,19 +170765,19 @@ export default { 40 ], "order_by": [ - 3151, + 3124, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3141 + 3114 ] } ], "player_aim_weapon_stats_by_pk": [ - 3132, + 3105, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -171366,26 +170791,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 3132, + 3105, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3161, + 3134, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3141 + 3114 ] } ], "player_assists": [ - 3173, + 3146, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -171395,19 +170820,19 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_aggregate": [ - 3174, + 3147, { "distinct_on": [ - 3196, + 3169, "[player_assists_select_column!]" ], "limit": [ @@ -171417,16 +170842,16 @@ export default { 40 ], "order_by": [ - 3194, + 3167, "[player_assists_order_by!]" ], "where": [ - 3184 + 3157 ] } ], "player_assists_by_pk": [ - 3173, + 3146, { "attacked_steam_id": [ 259, @@ -171437,36 +170862,36 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_assists_stream": [ - 3173, + 3146, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3206, + 3179, "[player_assists_stream_cursor_input]!" ], "where": [ - 3184 + 3157 ] } ], "player_career_stats_v": [ - 3218, + 3191, { "distinct_on": [ - 3226, + 3199, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -171476,19 +170901,19 @@ export default { 40 ], "order_by": [ - 3225, + 3198, "[player_career_stats_v_order_by!]" ], "where": [ - 3222 + 3195 ] } ], "player_career_stats_v_aggregate": [ - 3219, + 3192, { "distinct_on": [ - 3226, + 3199, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -171498,35 +170923,35 @@ export default { 40 ], "order_by": [ - 3225, + 3198, "[player_career_stats_v_order_by!]" ], "where": [ - 3222 + 3195 ] } ], "player_career_stats_v_stream": [ - 3218, + 3191, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3230, + 3203, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3222 + 3195 ] } ], "player_damages": [ - 3236, + 3209, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -171536,19 +170961,19 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_aggregate": [ - 3237, + 3210, { "distinct_on": [ - 3257, + 3230, "[player_damages_select_column!]" ], "limit": [ @@ -171558,52 +170983,52 @@ export default { 40 ], "order_by": [ - 3255, + 3228, "[player_damages_order_by!]" ], "where": [ - 3245 + 3218 ] } ], "player_damages_by_pk": [ - 3236, + 3209, { "id": [ - 5111, + 5084, "uuid!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_damages_stream": [ - 3236, + 3209, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3265, + 3238, "[player_damages_stream_cursor_input]!" ], "where": [ - 3245 + 3218 ] } ], "player_elo": [ - 3277, + 3250, { "distinct_on": [ - 3291, + 3264, "[player_elo_select_column!]" ], "limit": [ @@ -171613,19 +171038,19 @@ export default { 40 ], "order_by": [ - 3289, + 3262, "[player_elo_order_by!]" ], "where": [ - 3281 + 3254 ] } ], "player_elo_aggregate": [ - 3278, + 3251, { "distinct_on": [ - 3291, + 3264, "[player_elo_select_column!]" ], "limit": [ @@ -171635,19 +171060,19 @@ export default { 40 ], "order_by": [ - 3289, + 3262, "[player_elo_order_by!]" ], "where": [ - 3281 + 3254 ] } ], "player_elo_by_pk": [ - 3277, + 3250, { "match_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -171661,26 +171086,26 @@ export default { } ], "player_elo_stream": [ - 3277, + 3250, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3296, + 3269, "[player_elo_stream_cursor_input]!" ], "where": [ - 3281 + 3254 ] } ], "player_faceit_rank_history": [ - 3304, + 3277, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -171690,19 +171115,19 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], "player_faceit_rank_history_aggregate": [ - 3305, + 3278, { "distinct_on": [ - 3325, + 3298, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -171712,44 +171137,44 @@ export default { 40 ], "order_by": [ - 3323, + 3296, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3313 + 3286 ] } ], "player_faceit_rank_history_by_pk": [ - 3304, + 3277, { "id": [ - 5111, + 5084, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3304, + 3277, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3333, + 3306, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3313 + 3286 ] } ], "player_flashes": [ - 3345, + 3318, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -171759,19 +171184,19 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_flashes_aggregate": [ - 3346, + 3319, { "distinct_on": [ - 3368, + 3341, "[player_flashes_select_column!]" ], "limit": [ @@ -171781,16 +171206,16 @@ export default { 40 ], "order_by": [ - 3366, + 3339, "[player_flashes_order_by!]" ], "where": [ - 3356 + 3329 ] } ], "player_flashes_by_pk": [ - 3345, + 3318, { "attacked_steam_id": [ 259, @@ -171801,36 +171226,36 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_flashes_stream": [ - 3345, + 3318, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3378, + 3351, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3356 + 3329 ] } ], "player_kills": [ - 3390, + 3363, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -171840,19 +171265,19 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_aggregate": [ - 3391, + 3364, { "distinct_on": [ - 3454, + 3427, "[player_kills_select_column!]" ], "limit": [ @@ -171862,16 +171287,16 @@ export default { 40 ], "order_by": [ - 3452, + 3425, "[player_kills_order_by!]" ], "where": [ - 3401 + 3374 ] } ], "player_kills_by_pk": [ - 3390, + 3363, { "attacked_steam_id": [ 259, @@ -171882,20 +171307,20 @@ export default { "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3402, + 3375, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -171905,19 +171330,19 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], "player_kills_by_weapon_aggregate": [ - 3403, + 3376, { "distinct_on": [ - 3423, + 3396, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -171927,16 +171352,16 @@ export default { 40 ], "order_by": [ - 3421, + 3394, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3411 + 3384 ] } ], "player_kills_by_weapon_by_pk": [ - 3402, + 3375, { "player_steam_id": [ 259, @@ -171949,42 +171374,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3402, + 3375, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3431, + 3404, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3411 + 3384 ] } ], "player_kills_stream": [ - 3390, + 3363, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3464, + 3437, "[player_kills_stream_cursor_input]!" ], "where": [ - 3401 + 3374 ] } ], "player_leaderboard_rank": [ - 3476, + 3449, { "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -171994,19 +171419,19 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "player_leaderboard_rank_aggregate": [ - 3477, + 3450, { "distinct_on": [ - 3487, + 3460, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -172016,35 +171441,35 @@ export default { 40 ], "order_by": [ - 3486, + 3459, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3480 + 3453 ] } ], "player_leaderboard_rank_stream": [ - 3476, + 3449, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3492, + 3465, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3480 + 3453 ] } ], "player_match_map_stats": [ - 3499, + 3472, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -172054,19 +171479,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "player_match_map_stats_aggregate": [ - 3500, + 3473, { "distinct_on": [ - 3520, + 3493, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -172076,19 +171501,19 @@ export default { 40 ], "order_by": [ - 3518, + 3491, "[player_match_map_stats_order_by!]" ], "where": [ - 3508 + 3481 ] } ], "player_match_map_stats_by_pk": [ - 3499, + 3472, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "steam_id": [ @@ -172098,26 +171523,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3499, + 3472, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3528, + 3501, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3508 + 3481 ] } ], "player_match_performance_v": [ - 3540, + 3513, { "distinct_on": [ - 3548, + 3521, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -172127,19 +171552,19 @@ export default { 40 ], "order_by": [ - 3547, + 3520, "[player_match_performance_v_order_by!]" ], "where": [ - 3544 + 3517 ] } ], "player_match_performance_v_aggregate": [ - 3541, + 3514, { "distinct_on": [ - 3548, + 3521, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -172149,35 +171574,35 @@ export default { 40 ], "order_by": [ - 3547, + 3520, "[player_match_performance_v_order_by!]" ], "where": [ - 3544 + 3517 ] } ], "player_match_performance_v_stream": [ - 3540, + 3513, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3552, + 3525, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3544 + 3517 ] } ], "player_match_stats_v": [ - 3558, + 3531, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -172187,19 +171612,19 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "player_match_stats_v_aggregate": [ - 3559, + 3532, { "distinct_on": [ - 3574, + 3547, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -172209,35 +171634,35 @@ export default { 40 ], "order_by": [ - 3573, + 3546, "[player_match_stats_v_order_by!]" ], "where": [ - 3567 + 3540 ] } ], "player_match_stats_v_stream": [ - 3558, + 3531, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3581, + 3554, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3567 + 3540 ] } ], "player_objectives": [ - 3591, + 3564, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -172247,19 +171672,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_aggregate": [ - 3592, + 3565, { "distinct_on": [ - 3612, + 3585, "[player_objectives_select_column!]" ], "limit": [ @@ -172269,19 +171694,19 @@ export default { 40 ], "order_by": [ - 3610, + 3583, "[player_objectives_order_by!]" ], "where": [ - 3600 + 3573 ] } ], "player_objectives_by_pk": [ - 3591, + 3564, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -172289,32 +171714,32 @@ export default { "bigint!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_objectives_stream": [ - 3591, + 3564, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3620, + 3593, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3600 + 3573 ] } ], "player_performance_v": [ - 3632, + 3605, { "distinct_on": [ - 3640, + 3613, "[player_performance_v_select_column!]" ], "limit": [ @@ -172324,19 +171749,19 @@ export default { 40 ], "order_by": [ - 3639, + 3612, "[player_performance_v_order_by!]" ], "where": [ - 3636 + 3609 ] } ], "player_performance_v_aggregate": [ - 3633, + 3606, { "distinct_on": [ - 3640, + 3613, "[player_performance_v_select_column!]" ], "limit": [ @@ -172346,35 +171771,35 @@ export default { 40 ], "order_by": [ - 3639, + 3612, "[player_performance_v_order_by!]" ], "where": [ - 3636 + 3609 ] } ], "player_performance_v_stream": [ - 3632, + 3605, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3644, + 3617, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3636 + 3609 ] } ], "player_premier_rank_history": [ - 3650, + 3623, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -172384,19 +171809,19 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "player_premier_rank_history_aggregate": [ - 3651, + 3624, { "distinct_on": [ - 3671, + 3644, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -172406,44 +171831,44 @@ export default { 40 ], "order_by": [ - 3669, + 3642, "[player_premier_rank_history_order_by!]" ], "where": [ - 3659 + 3632 ] } ], "player_premier_rank_history_by_pk": [ - 3650, + 3623, { "id": [ - 5111, + 5084, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3650, + 3623, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3679, + 3652, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3659 + 3632 ] } ], "player_sanctions": [ - 3691, + 3664, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -172453,19 +171878,19 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "player_sanctions_aggregate": [ - 3692, + 3665, { "distinct_on": [ - 3712, + 3685, "[player_sanctions_select_column!]" ], "limit": [ @@ -172475,48 +171900,48 @@ export default { 40 ], "order_by": [ - 3710, + 3683, "[player_sanctions_order_by!]" ], "where": [ - 3700 + 3673 ] } ], "player_sanctions_by_pk": [ - 3691, + 3664, { "created_at": [ - 4611, + 4584, "timestamptz!" ], "id": [ - 5111, + 5084, "uuid!" ] } ], "player_sanctions_stream": [ - 3691, + 3664, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3720, + 3693, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3700 + 3673 ] } ], "player_season_stats": [ - 3732, + 3705, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -172526,19 +171951,19 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "player_season_stats_aggregate": [ - 3733, + 3706, { "distinct_on": [ - 3763, + 3736, "[player_season_stats_select_column!]" ], "limit": [ @@ -172548,48 +171973,48 @@ export default { 40 ], "order_by": [ - 3761, + 3734, "[player_season_stats_order_by!]" ], "where": [ - 3751 + 3724 ] } ], "player_season_stats_by_pk": [ - 3732, + 3705, { "player_steam_id": [ 259, "bigint!" ], "season_id": [ - 5111, + 5084, "uuid!" ] } ], "player_season_stats_stream": [ - 3732, + 3705, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3779, + 3752, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3751 + 3724 ] } ], "player_stats": [ - 3791, + 3764, { "distinct_on": [ - 3806, + 3779, "[player_stats_select_column!]" ], "limit": [ @@ -172599,19 +172024,19 @@ export default { 40 ], "order_by": [ - 3804, + 3777, "[player_stats_order_by!]" ], "where": [ - 3795 + 3768 ] } ], "player_stats_aggregate": [ - 3792, + 3765, { "distinct_on": [ - 3806, + 3779, "[player_stats_select_column!]" ], "limit": [ @@ -172621,16 +172046,16 @@ export default { 40 ], "order_by": [ - 3804, + 3777, "[player_stats_order_by!]" ], "where": [ - 3795 + 3768 ] } ], "player_stats_by_pk": [ - 3791, + 3764, { "player_steam_id": [ 259, @@ -172639,26 +172064,26 @@ export default { } ], "player_stats_stream": [ - 3791, + 3764, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3811, + 3784, "[player_stats_stream_cursor_input]!" ], "where": [ - 3795 + 3768 ] } ], "player_steam_bot_friend": [ - 3819, + 3792, { "distinct_on": [ - 3838, + 3811, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -172668,19 +172093,19 @@ export default { 40 ], "order_by": [ - 3835, + 3808, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3824 + 3797 ] } ], "player_steam_bot_friend_aggregate": [ - 3820, + 3793, { "distinct_on": [ - 3838, + 3811, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -172690,16 +172115,16 @@ export default { 40 ], "order_by": [ - 3835, + 3808, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3824 + 3797 ] } ], "player_steam_bot_friend_by_pk": [ - 3819, + 3792, { "steam_id": [ 259, @@ -172708,26 +172133,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3819, + 3792, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3843, + 3816, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3824 + 3797 ] } ], "player_steam_match_auth": [ - 3851, + 3824, { "distinct_on": [ - 3865, + 3838, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -172737,19 +172162,19 @@ export default { 40 ], "order_by": [ - 3863, + 3836, "[player_steam_match_auth_order_by!]" ], "where": [ - 3855 + 3828 ] } ], "player_steam_match_auth_aggregate": [ - 3852, + 3825, { "distinct_on": [ - 3865, + 3838, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -172759,16 +172184,16 @@ export default { 40 ], "order_by": [ - 3863, + 3836, "[player_steam_match_auth_order_by!]" ], "where": [ - 3855 + 3828 ] } ], "player_steam_match_auth_by_pk": [ - 3851, + 3824, { "steam_id": [ 259, @@ -172777,26 +172202,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3851, + 3824, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3870, + 3843, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3855 + 3828 ] } ], "player_unused_utility": [ - 3878, + 3851, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -172806,19 +172231,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utility_aggregate": [ - 3879, + 3852, { "distinct_on": [ - 3899, + 3872, "[player_unused_utility_select_column!]" ], "limit": [ @@ -172828,19 +172253,19 @@ export default { 40 ], "order_by": [ - 3897, + 3870, "[player_unused_utility_order_by!]" ], "where": [ - 3887 + 3860 ] } ], "player_unused_utility_by_pk": [ - 3878, + 3851, { "match_map_id": [ - 5111, + 5084, "uuid!" ], "player_steam_id": [ @@ -172850,26 +172275,26 @@ export default { } ], "player_unused_utility_stream": [ - 3878, + 3851, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3907, + 3880, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3887 + 3860 ] } ], "player_utility": [ - 3919, + 3892, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -172879,19 +172304,19 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utility_aggregate": [ - 3920, + 3893, { "distinct_on": [ - 3940, + 3913, "[player_utility_select_column!]" ], "limit": [ @@ -172901,52 +172326,52 @@ export default { 40 ], "order_by": [ - 3938, + 3911, "[player_utility_order_by!]" ], "where": [ - 3928 + 3901 ] } ], "player_utility_by_pk": [ - 3919, + 3892, { "attacker_steam_id": [ 259, "bigint!" ], "match_map_id": [ - 5111, + 5084, "uuid!" ], "time": [ - 4611, + 4584, "timestamptz!" ] } ], "player_utility_stream": [ - 3919, + 3892, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3948, + 3921, "[player_utility_stream_cursor_input]!" ], "where": [ - 3928 + 3901 ] } ], "player_weapon_stats_v": [ - 3960, + 3933, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -172956,19 +172381,19 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], "player_weapon_stats_v_aggregate": [ - 3961, + 3934, { "distinct_on": [ - 3976, + 3949, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -172978,35 +172403,35 @@ export default { 40 ], "order_by": [ - 3975, + 3948, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3969 + 3942 ] } ], "player_weapon_stats_v_stream": [ - 3960, + 3933, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3983, + 3956, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3969 + 3942 ] } ], "players": [ - 3993, + 3966, { "distinct_on": [ - 4008, + 3981, "[players_select_column!]" ], "limit": [ @@ -173016,19 +172441,19 @@ export default { 40 ], "order_by": [ - 4006, + 3979, "[players_order_by!]" ], "where": [ - 3997 + 3970 ] } ], "players_aggregate": [ - 3994, + 3967, { "distinct_on": [ - 4008, + 3981, "[players_select_column!]" ], "limit": [ @@ -173038,16 +172463,16 @@ export default { 40 ], "order_by": [ - 4006, + 3979, "[players_order_by!]" ], "where": [ - 3997 + 3970 ] } ], "players_by_pk": [ - 3993, + 3966, { "steam_id": [ 259, @@ -173056,26 +172481,26 @@ export default { } ], "players_stream": [ - 3993, + 3966, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4013, + 3986, "[players_stream_cursor_input]!" ], "where": [ - 3997 + 3970 ] } ], "plugin_versions": [ - 4021, + 3994, { "distinct_on": [ - 4035, + 4008, "[plugin_versions_select_column!]" ], "limit": [ @@ -173085,19 +172510,19 @@ export default { 40 ], "order_by": [ - 4033, + 4006, "[plugin_versions_order_by!]" ], "where": [ - 4025 + 3998 ] } ], "plugin_versions_aggregate": [ - 4022, + 3995, { "distinct_on": [ - 4035, + 4008, "[plugin_versions_select_column!]" ], "limit": [ @@ -173107,16 +172532,16 @@ export default { 40 ], "order_by": [ - 4033, + 4006, "[plugin_versions_order_by!]" ], "where": [ - 4025 + 3998 ] } ], "plugin_versions_by_pk": [ - 4021, + 3994, { "runtime": [ 1112, @@ -173129,26 +172554,26 @@ export default { } ], "plugin_versions_stream": [ - 4021, + 3994, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4040, + 4013, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 4025 + 3998 ] } ], "push_subscriptions": [ - 4048, + 4021, { "distinct_on": [ - 4062, + 4035, "[push_subscriptions_select_column!]" ], "limit": [ @@ -173158,19 +172583,19 @@ export default { 40 ], "order_by": [ - 4060, + 4033, "[push_subscriptions_order_by!]" ], "where": [ - 4052 + 4025 ] } ], "push_subscriptions_aggregate": [ - 4049, + 4022, { "distinct_on": [ - 4062, + 4035, "[push_subscriptions_select_column!]" ], "limit": [ @@ -173180,44 +172605,44 @@ export default { 40 ], "order_by": [ - 4060, + 4033, "[push_subscriptions_order_by!]" ], "where": [ - 4052 + 4025 ] } ], "push_subscriptions_by_pk": [ - 4048, + 4021, { "id": [ - 5111, + 5084, "uuid!" ] } ], "push_subscriptions_stream": [ - 4048, + 4021, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4067, + 4040, "[push_subscriptions_stream_cursor_input]!" ], "where": [ - 4052 + 4025 ] } ], "seasons": [ - 4079, + 4052, { "distinct_on": [ - 4094, + 4067, "[seasons_select_column!]" ], "limit": [ @@ -173227,19 +172652,19 @@ export default { 40 ], "order_by": [ - 4092, + 4065, "[seasons_order_by!]" ], "where": [ - 4083 + 4056 ] } ], "seasons_aggregate": [ - 4080, + 4053, { "distinct_on": [ - 4094, + 4067, "[seasons_select_column!]" ], "limit": [ @@ -173249,44 +172674,44 @@ export default { 40 ], "order_by": [ - 4092, + 4065, "[seasons_order_by!]" ], "where": [ - 4083 + 4056 ] } ], "seasons_by_pk": [ - 4079, + 4052, { "id": [ - 5111, + 5084, "uuid!" ] } ], "seasons_stream": [ - 4079, + 4052, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4099, + 4072, "[seasons_stream_cursor_input]!" ], "where": [ - 4083 + 4056 ] } ], "server_regions": [ - 4107, + 4080, { "distinct_on": [ - 4121, + 4094, "[server_regions_select_column!]" ], "limit": [ @@ -173296,19 +172721,19 @@ export default { 40 ], "order_by": [ - 4119, + 4092, "[server_regions_order_by!]" ], "where": [ - 4111 + 4084 ] } ], "server_regions_aggregate": [ - 4108, + 4081, { "distinct_on": [ - 4121, + 4094, "[server_regions_select_column!]" ], "limit": [ @@ -173318,16 +172743,16 @@ export default { 40 ], "order_by": [ - 4119, + 4092, "[server_regions_order_by!]" ], "where": [ - 4111 + 4084 ] } ], "server_regions_by_pk": [ - 4107, + 4080, { "value": [ 80, @@ -173336,26 +172761,26 @@ export default { } ], "server_regions_stream": [ - 4107, + 4080, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4126, + 4099, "[server_regions_stream_cursor_input]!" ], "where": [ - 4111 + 4084 ] } ], "servers": [ - 4134, + 4107, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -173365,19 +172790,19 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_aggregate": [ - 4135, + 4108, { "distinct_on": [ - 4158, + 4131, "[servers_select_column!]" ], "limit": [ @@ -173387,44 +172812,44 @@ export default { 40 ], "order_by": [ - 4156, + 4129, "[servers_order_by!]" ], "where": [ - 4145 + 4118 ] } ], "servers_by_pk": [ - 4134, + 4107, { "id": [ - 5111, + 5084, "uuid!" ] } ], "servers_stream": [ - 4134, + 4107, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4168, + 4141, "[servers_stream_cursor_input]!" ], "where": [ - 4145 + 4118 ] } ], "settings": [ - 4180, + 4153, { "distinct_on": [ - 4192, + 4165, "[settings_select_column!]" ], "limit": [ @@ -173434,19 +172859,19 @@ export default { 40 ], "order_by": [ - 4190, + 4163, "[settings_order_by!]" ], "where": [ - 4183 + 4156 ] } ], "settings_aggregate": [ - 4181, + 4154, { "distinct_on": [ - 4192, + 4165, "[settings_select_column!]" ], "limit": [ @@ -173456,16 +172881,16 @@ export default { 40 ], "order_by": [ - 4190, + 4163, "[settings_order_by!]" ], "where": [ - 4183 + 4156 ] } ], "settings_by_pk": [ - 4180, + 4153, { "name": [ 80, @@ -173474,26 +172899,26 @@ export default { } ], "settings_stream": [ - 4180, + 4153, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4194, + 4167, "[settings_stream_cursor_input]!" ], "where": [ - 4183 + 4156 ] } ], "steam_account_claims": [ - 4200, + 4173, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -173503,19 +172928,19 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "steam_account_claims_aggregate": [ - 4201, + 4174, { "distinct_on": [ - 4218, + 4191, "[steam_account_claims_select_column!]" ], "limit": [ @@ -173525,44 +172950,44 @@ export default { 40 ], "order_by": [ - 4216, + 4189, "[steam_account_claims_order_by!]" ], "where": [ - 4207 + 4180 ] } ], "steam_account_claims_by_pk": [ - 4200, + 4173, { "id": [ - 5111, + 5084, "uuid!" ] } ], "steam_account_claims_stream": [ - 4200, + 4173, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4220, + 4193, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4207 + 4180 ] } ], "steam_accounts": [ - 4224, + 4197, { "distinct_on": [ - 4239, + 4212, "[steam_accounts_select_column!]" ], "limit": [ @@ -173572,19 +172997,19 @@ export default { 40 ], "order_by": [ - 4237, + 4210, "[steam_accounts_order_by!]" ], "where": [ - 4228 + 4201 ] } ], "steam_accounts_aggregate": [ - 4225, + 4198, { "distinct_on": [ - 4239, + 4212, "[steam_accounts_select_column!]" ], "limit": [ @@ -173594,44 +173019,44 @@ export default { 40 ], "order_by": [ - 4237, + 4210, "[steam_accounts_order_by!]" ], "where": [ - 4228 + 4201 ] } ], "steam_accounts_by_pk": [ - 4224, + 4197, { "id": [ - 5111, + 5084, "uuid!" ] } ], "steam_accounts_stream": [ - 4224, + 4197, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4244, + 4217, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4228 + 4201 ] } ], "system_alerts": [ - 4252, + 4225, { "distinct_on": [ - 4266, + 4239, "[system_alerts_select_column!]" ], "limit": [ @@ -173641,19 +173066,19 @@ export default { 40 ], "order_by": [ - 4264, + 4237, "[system_alerts_order_by!]" ], "where": [ - 4256 + 4229 ] } ], "system_alerts_aggregate": [ - 4253, + 4226, { "distinct_on": [ - 4266, + 4239, "[system_alerts_select_column!]" ], "limit": [ @@ -173663,44 +173088,44 @@ export default { 40 ], "order_by": [ - 4264, + 4237, "[system_alerts_order_by!]" ], "where": [ - 4256 + 4229 ] } ], "system_alerts_by_pk": [ - 4252, + 4225, { "id": [ - 5111, + 5084, "uuid!" ] } ], "system_alerts_stream": [ - 4252, + 4225, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4271, + 4244, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4256 + 4229 ] } ], "team_invites": [ - 4279, + 4252, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -173710,19 +173135,19 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_invites_aggregate": [ - 4280, + 4253, { "distinct_on": [ - 4300, + 4273, "[team_invites_select_column!]" ], "limit": [ @@ -173732,44 +173157,44 @@ export default { 40 ], "order_by": [ - 4298, + 4271, "[team_invites_order_by!]" ], "where": [ - 4288 + 4261 ] } ], "team_invites_by_pk": [ - 4279, + 4252, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_invites_stream": [ - 4279, + 4252, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4308, + 4281, "[team_invites_stream_cursor_input]!" ], "where": [ - 4288 + 4261 ] } ], "team_roster": [ - 4320, + 4293, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -173779,19 +173204,19 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_roster_aggregate": [ - 4321, + 4294, { "distinct_on": [ - 4343, + 4316, "[team_roster_select_column!]" ], "limit": [ @@ -173801,48 +173226,48 @@ export default { 40 ], "order_by": [ - 4341, + 4314, "[team_roster_order_by!]" ], "where": [ - 4331 + 4304 ] } ], "team_roster_by_pk": [ - 4320, + 4293, { "player_steam_id": [ 259, "bigint!" ], "team_id": [ - 5111, + 5084, "uuid!" ] } ], "team_roster_stream": [ - 4320, + 4293, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4353, + 4326, "[team_roster_stream_cursor_input]!" ], "where": [ - 4331 + 4304 ] } ], "team_scrim_alerts": [ - 4365, + 4338, { "distinct_on": [ - 4379, + 4352, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -173852,19 +173277,19 @@ export default { 40 ], "order_by": [ - 4377, + 4350, "[team_scrim_alerts_order_by!]" ], "where": [ - 4369 + 4342 ] } ], "team_scrim_alerts_aggregate": [ - 4366, + 4339, { "distinct_on": [ - 4379, + 4352, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -173874,44 +173299,44 @@ export default { 40 ], "order_by": [ - 4377, + 4350, "[team_scrim_alerts_order_by!]" ], "where": [ - 4369 + 4342 ] } ], "team_scrim_alerts_by_pk": [ - 4365, + 4338, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4365, + 4338, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4384, + 4357, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4369 + 4342 ] } ], "team_scrim_availability": [ - 4392, + 4365, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -173921,19 +173346,19 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "team_scrim_availability_aggregate": [ - 4393, + 4366, { "distinct_on": [ - 4412, + 4385, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -173943,44 +173368,44 @@ export default { 40 ], "order_by": [ - 4410, + 4383, "[team_scrim_availability_order_by!]" ], "where": [ - 4401 + 4374 ] } ], "team_scrim_availability_by_pk": [ - 4392, + 4365, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4392, + 4365, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4416, + 4389, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4401 + 4374 ] } ], "team_scrim_request_proposals": [ - 4420, + 4393, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -173990,19 +173415,19 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "team_scrim_request_proposals_aggregate": [ - 4421, + 4394, { "distinct_on": [ - 4441, + 4414, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -174012,44 +173437,44 @@ export default { 40 ], "order_by": [ - 4439, + 4412, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4429 + 4402 ] } ], "team_scrim_request_proposals_by_pk": [ - 4420, + 4393, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4420, + 4393, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4449, + 4422, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4429 + 4402 ] } ], "team_scrim_requests": [ - 4461, + 4434, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -174059,19 +173484,19 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], "team_scrim_requests_aggregate": [ - 4462, + 4435, { "distinct_on": [ - 4485, + 4458, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -174081,44 +173506,44 @@ export default { 40 ], "order_by": [ - 4483, + 4456, "[team_scrim_requests_order_by!]" ], "where": [ - 4472 + 4445 ] } ], "team_scrim_requests_by_pk": [ - 4461, + 4434, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4461, + 4434, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4495, + 4468, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4472 + 4445 ] } ], "team_scrim_settings": [ - 4507, + 4480, { "distinct_on": [ - 4522, + 4495, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -174128,19 +173553,19 @@ export default { 40 ], "order_by": [ - 4520, + 4493, "[team_scrim_settings_order_by!]" ], "where": [ - 4511 + 4484 ] } ], "team_scrim_settings_aggregate": [ - 4508, + 4481, { "distinct_on": [ - 4522, + 4495, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -174150,44 +173575,44 @@ export default { 40 ], "order_by": [ - 4520, + 4493, "[team_scrim_settings_order_by!]" ], "where": [ - 4511 + 4484 ] } ], "team_scrim_settings_by_pk": [ - 4507, + 4480, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4507, + 4480, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4527, + 4500, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4511 + 4484 ] } ], "team_suggestions": [ - 4535, + 4508, { "distinct_on": [ - 4549, + 4522, "[team_suggestions_select_column!]" ], "limit": [ @@ -174197,19 +173622,19 @@ export default { 40 ], "order_by": [ - 4547, + 4520, "[team_suggestions_order_by!]" ], "where": [ - 4539 + 4512 ] } ], "team_suggestions_aggregate": [ - 4536, + 4509, { "distinct_on": [ - 4549, + 4522, "[team_suggestions_select_column!]" ], "limit": [ @@ -174219,44 +173644,44 @@ export default { 40 ], "order_by": [ - 4547, + 4520, "[team_suggestions_order_by!]" ], "where": [ - 4539 + 4512 ] } ], "team_suggestions_by_pk": [ - 4535, + 4508, { "id": [ - 5111, + 5084, "uuid!" ] } ], "team_suggestions_stream": [ - 4535, + 4508, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4554, + 4527, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4539 + 4512 ] } ], "teams": [ - 4562, + 4535, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -174266,19 +173691,19 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "teams_aggregate": [ - 4563, + 4536, { "distinct_on": [ - 4586, + 4559, "[teams_select_column!]" ], "limit": [ @@ -174288,44 +173713,44 @@ export default { 40 ], "order_by": [ - 4584, + 4557, "[teams_order_by!]" ], "where": [ - 4573 + 4546 ] } ], "teams_by_pk": [ - 4562, + 4535, { "id": [ - 5111, + 5084, "uuid!" ] } ], "teams_stream": [ - 4562, + 4535, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4596, + 4569, "[teams_stream_cursor_input]!" ], "where": [ - 4573 + 4546 ] } ], "tournament_awards": [ - 4613, + 4586, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -174335,19 +173760,19 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_awards_aggregate": [ - 4614, + 4587, { "distinct_on": [ - 4635, + 4608, "[tournament_awards_select_column!]" ], "limit": [ @@ -174357,44 +173782,44 @@ export default { 40 ], "order_by": [ - 4633, + 4606, "[tournament_awards_order_by!]" ], "where": [ - 4622 + 4595 ] } ], "tournament_awards_by_pk": [ - 4613, + 4586, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_awards_stream": [ - 4613, + 4586, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4643, + 4616, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4622 + 4595 ] } ], "tournament_brackets": [ - 4655, + 4628, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -174404,19 +173829,19 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "tournament_brackets_aggregate": [ - 4656, + 4629, { "distinct_on": [ - 4679, + 4652, "[tournament_brackets_select_column!]" ], "limit": [ @@ -174426,44 +173851,44 @@ export default { 40 ], "order_by": [ - 4677, + 4650, "[tournament_brackets_order_by!]" ], "where": [ - 4666 + 4639 ] } ], "tournament_brackets_by_pk": [ - 4655, + 4628, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_brackets_stream": [ - 4655, + 4628, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4689, + 4662, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4666 + 4639 ] } ], "tournament_categories": [ - 4701, + 4674, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -174473,19 +173898,19 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "tournament_categories_aggregate": [ - 4702, + 4675, { "distinct_on": [ - 4719, + 4692, "[tournament_categories_select_column!]" ], "limit": [ @@ -174495,48 +173920,48 @@ export default { 40 ], "order_by": [ - 4717, + 4690, "[tournament_categories_order_by!]" ], "where": [ - 4708 + 4681 ] } ], "tournament_categories_by_pk": [ - 4701, + 4674, { "category": [ 1314, "e_tournament_categories_enum!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_categories_stream": [ - 4701, + 4674, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4721, + 4694, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4708 + 4681 ] } ], "tournament_organizer_teams": [ - 4725, + 4698, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -174546,19 +173971,19 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "tournament_organizer_teams_aggregate": [ - 4726, + 4699, { "distinct_on": [ - 4743, + 4716, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -174568,48 +173993,48 @@ export default { 40 ], "order_by": [ - 4741, + 4714, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4732 + 4705 ] } ], "tournament_organizer_teams_by_pk": [ - 4725, + 4698, { "team_id": [ - 5111, + 5084, "uuid!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4725, + 4698, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4745, + 4718, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4732 + 4705 ] } ], "tournament_organizers": [ - 4749, + 4722, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -174619,19 +174044,19 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_organizers_aggregate": [ - 4750, + 4723, { "distinct_on": [ - 4770, + 4743, "[tournament_organizers_select_column!]" ], "limit": [ @@ -174641,48 +174066,48 @@ export default { 40 ], "order_by": [ - 4768, + 4741, "[tournament_organizers_order_by!]" ], "where": [ - 4758 + 4731 ] } ], "tournament_organizers_by_pk": [ - 4749, + 4722, { "steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_organizers_stream": [ - 4749, + 4722, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4778, + 4751, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4758 + 4731 ] } ], "tournament_prizes": [ - 4790, + 4763, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -174692,19 +174117,19 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "tournament_prizes_aggregate": [ - 4791, + 4764, { "distinct_on": [ - 4811, + 4784, "[tournament_prizes_select_column!]" ], "limit": [ @@ -174714,44 +174139,44 @@ export default { 40 ], "order_by": [ - 4809, + 4782, "[tournament_prizes_order_by!]" ], "where": [ - 4799 + 4772 ] } ], "tournament_prizes_by_pk": [ - 4790, + 4763, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_prizes_stream": [ - 4790, + 4763, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4819, + 4792, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4799 + 4772 ] } ], "tournament_stage_windows": [ - 4831, + 4804, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -174761,19 +174186,19 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], "tournament_stage_windows_aggregate": [ - 4832, + 4805, { "distinct_on": [ - 4852, + 4825, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -174783,44 +174208,44 @@ export default { 40 ], "order_by": [ - 4850, + 4823, "[tournament_stage_windows_order_by!]" ], "where": [ - 4840 + 4813 ] } ], "tournament_stage_windows_by_pk": [ - 4831, + 4804, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4831, + 4804, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4860, + 4833, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4840 + 4813 ] } ], "tournament_stages": [ - 4872, + 4845, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -174830,19 +174255,19 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "tournament_stages_aggregate": [ - 4873, + 4846, { "distinct_on": [ - 4901, + 4874, "[tournament_stages_select_column!]" ], "limit": [ @@ -174852,44 +174277,44 @@ export default { 40 ], "order_by": [ - 4898, + 4871, "[tournament_stages_order_by!]" ], "where": [ - 4884 + 4857 ] } ], "tournament_stages_by_pk": [ - 4872, + 4845, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_stages_stream": [ - 4872, + 4845, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4911, + 4884, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4884 + 4857 ] } ], "tournament_team_invites": [ - 4923, + 4896, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -174899,19 +174324,19 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], "tournament_team_invites_aggregate": [ - 4924, + 4897, { "distinct_on": [ - 4944, + 4917, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -174921,44 +174346,44 @@ export default { 40 ], "order_by": [ - 4942, + 4915, "[tournament_team_invites_order_by!]" ], "where": [ - 4932 + 4905 ] } ], "tournament_team_invites_by_pk": [ - 4923, + 4896, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4923, + 4896, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4952, + 4925, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4932 + 4905 ] } ], "tournament_team_roster": [ - 4964, + 4937, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -174968,19 +174393,19 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_team_roster_aggregate": [ - 4965, + 4938, { "distinct_on": [ - 4985, + 4958, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -174990,48 +174415,48 @@ export default { 40 ], "order_by": [ - 4983, + 4956, "[tournament_team_roster_order_by!]" ], "where": [ - 4973 + 4946 ] } ], "tournament_team_roster_by_pk": [ - 4964, + 4937, { "player_steam_id": [ 259, "bigint!" ], "tournament_id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4964, + 4937, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4993, + 4966, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4973 + 4946 ] } ], "tournament_teams": [ - 5005, + 4978, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -175041,19 +174466,19 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "tournament_teams_aggregate": [ - 5006, + 4979, { "distinct_on": [ - 5027, + 5000, "[tournament_teams_select_column!]" ], "limit": [ @@ -175063,44 +174488,44 @@ export default { 40 ], "order_by": [ - 5025, + 4998, "[tournament_teams_order_by!]" ], "where": [ - 5014 + 4987 ] } ], "tournament_teams_by_pk": [ - 5005, + 4978, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournament_teams_stream": [ - 5005, + 4978, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5035, + 5008, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5014 + 4987 ] } ], "tournaments": [ - 5047, + 5020, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -175110,19 +174535,19 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_aggregate": [ - 5048, + 5021, { "distinct_on": [ - 5081, + 5054, "[tournaments_select_column!]" ], "limit": [ @@ -175132,44 +174557,44 @@ export default { 40 ], "order_by": [ - 5079, + 5052, "[tournaments_order_by!]" ], "where": [ - 5068 + 5041 ] } ], "tournaments_by_pk": [ - 5047, + 5020, { "id": [ - 5111, + 5084, "uuid!" ] } ], "tournaments_stream": [ - 5047, + 5020, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5099, + 5072, "[tournaments_stream_cursor_input]!" ], "where": [ - 5068 + 5041 ] } ], "v_event_player_stats": [ - 5114, + 5087, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -175179,19 +174604,19 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], "v_event_player_stats_aggregate": [ - 5115, + 5088, { "distinct_on": [ - 5140, + 5113, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -175201,35 +174626,35 @@ export default { 40 ], "order_by": [ - 5139, + 5112, "[v_event_player_stats_order_by!]" ], "where": [ - 5133 + 5106 ] } ], "v_event_player_stats_stream": [ - 5114, + 5087, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5155, + 5128, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5133 + 5106 ] } ], "v_gpu_pool_status": [ - 5165, + 5138, { "distinct_on": [ - 5173, + 5146, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -175239,19 +174664,19 @@ export default { 40 ], "order_by": [ - 5172, + 5145, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5169 + 5142 ] } ], "v_gpu_pool_status_aggregate": [ - 5166, + 5139, { "distinct_on": [ - 5173, + 5146, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -175261,35 +174686,35 @@ export default { 40 ], "order_by": [ - 5172, + 5145, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5169 + 5142 ] } ], "v_gpu_pool_status_stream": [ - 5165, + 5138, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5177, + 5150, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5169 + 5142 ] } ], "v_league_division_standings": [ - 5183, + 5156, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -175299,19 +174724,19 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "v_league_division_standings_aggregate": [ - 5184, + 5157, { "distinct_on": [ - 5199, + 5172, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -175321,35 +174746,35 @@ export default { 40 ], "order_by": [ - 5198, + 5171, "[v_league_division_standings_order_by!]" ], "where": [ - 5192 + 5165 ] } ], "v_league_division_standings_stream": [ - 5183, + 5156, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5206, + 5179, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5192 + 5165 ] } ], "v_league_season_player_stats": [ - 5216, + 5189, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -175359,19 +174784,19 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], "v_league_season_player_stats_aggregate": [ - 5217, + 5190, { "distinct_on": [ - 5242, + 5215, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -175381,35 +174806,35 @@ export default { 40 ], "order_by": [ - 5241, + 5214, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5235 + 5208 ] } ], "v_league_season_player_stats_stream": [ - 5216, + 5189, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5257, + 5230, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5235 + 5208 ] } ], "v_match_captains": [ - 5267, + 5240, { "distinct_on": [ - 5279, + 5252, "[v_match_captains_select_column!]" ], "limit": [ @@ -175419,19 +174844,19 @@ export default { 40 ], "order_by": [ - 5278, + 5251, "[v_match_captains_order_by!]" ], "where": [ - 5271 + 5244 ] } ], "v_match_captains_aggregate": [ - 5268, + 5241, { "distinct_on": [ - 5279, + 5252, "[v_match_captains_select_column!]" ], "limit": [ @@ -175441,35 +174866,35 @@ export default { 40 ], "order_by": [ - 5278, + 5251, "[v_match_captains_order_by!]" ], "where": [ - 5271 + 5244 ] } ], "v_match_captains_stream": [ - 5267, + 5240, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5284, + 5257, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5271 + 5244 ] } ], "v_match_clutches": [ - 5291, + 5264, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -175479,19 +174904,19 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], "v_match_clutches_aggregate": [ - 5292, + 5265, { "distinct_on": [ - 5307, + 5280, "[v_match_clutches_select_column!]" ], "limit": [ @@ -175501,35 +174926,35 @@ export default { 40 ], "order_by": [ - 5306, + 5279, "[v_match_clutches_order_by!]" ], "where": [ - 5300 + 5273 ] } ], "v_match_clutches_stream": [ - 5291, + 5264, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5314, + 5287, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5300 + 5273 ] } ], "v_match_kill_pairs": [ - 5324, + 5297, { "distinct_on": [ - 5332, + 5305, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -175539,19 +174964,19 @@ export default { 40 ], "order_by": [ - 5331, + 5304, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5328 + 5301 ] } ], "v_match_kill_pairs_aggregate": [ - 5325, + 5298, { "distinct_on": [ - 5332, + 5305, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -175561,35 +174986,35 @@ export default { 40 ], "order_by": [ - 5331, + 5304, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5328 + 5301 ] } ], "v_match_kill_pairs_stream": [ - 5324, + 5297, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5336, + 5309, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5328 + 5301 ] } ], "v_match_lineup_buy_types": [ - 5342, + 5315, { "distinct_on": [ - 5350, + 5323, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -175599,19 +175024,19 @@ export default { 40 ], "order_by": [ - 5349, + 5322, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5346 + 5319 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5343, + 5316, { "distinct_on": [ - 5350, + 5323, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -175621,35 +175046,35 @@ export default { 40 ], "order_by": [ - 5349, + 5322, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5346 + 5319 ] } ], "v_match_lineup_buy_types_stream": [ - 5342, + 5315, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5354, + 5327, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5346 + 5319 ] } ], "v_match_lineup_map_stats": [ - 5360, + 5333, { "distinct_on": [ - 5368, + 5341, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -175659,19 +175084,19 @@ export default { 40 ], "order_by": [ - 5367, + 5340, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5364 + 5337 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5361, + 5334, { "distinct_on": [ - 5368, + 5341, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -175681,35 +175106,35 @@ export default { 40 ], "order_by": [ - 5367, + 5340, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5364 + 5337 ] } ], "v_match_lineup_map_stats_stream": [ - 5360, + 5333, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5372, + 5345, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5364 + 5337 ] } ], "v_match_map_backup_rounds": [ - 5378, + 5351, { "distinct_on": [ - 5389, + 5362, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -175719,19 +175144,19 @@ export default { 40 ], "order_by": [ - 5388, + 5361, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5382 + 5355 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5379, + 5352, { "distinct_on": [ - 5389, + 5362, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -175741,35 +175166,35 @@ export default { 40 ], "order_by": [ - 5388, + 5361, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5382 + 5355 ] } ], "v_match_map_backup_rounds_stream": [ - 5378, + 5351, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5394, + 5367, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5382 + 5355 ] } ], "v_match_player_buy_types": [ - 5401, + 5374, { "distinct_on": [ - 5409, + 5382, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -175779,19 +175204,19 @@ export default { 40 ], "order_by": [ - 5408, + 5381, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5405 + 5378 ] } ], "v_match_player_buy_types_aggregate": [ - 5402, + 5375, { "distinct_on": [ - 5409, + 5382, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -175801,35 +175226,35 @@ export default { 40 ], "order_by": [ - 5408, + 5381, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5405 + 5378 ] } ], "v_match_player_buy_types_stream": [ - 5401, + 5374, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5413, + 5386, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5405 + 5378 ] } ], "v_match_player_opening_duels": [ - 5419, + 5392, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -175839,19 +175264,19 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "v_match_player_opening_duels_aggregate": [ - 5420, + 5393, { "distinct_on": [ - 5435, + 5408, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -175861,35 +175286,35 @@ export default { 40 ], "order_by": [ - 5434, + 5407, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5428 + 5401 ] } ], "v_match_player_opening_duels_stream": [ - 5419, + 5392, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5442, + 5415, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5428 + 5401 ] } ], "v_player_arch_nemesis": [ - 5452, + 5425, { "distinct_on": [ - 5460, + 5433, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -175899,19 +175324,19 @@ export default { 40 ], "order_by": [ - 5459, + 5432, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5456 + 5429 ] } ], "v_player_arch_nemesis_aggregate": [ - 5453, + 5426, { "distinct_on": [ - 5460, + 5433, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -175921,35 +175346,35 @@ export default { 40 ], "order_by": [ - 5459, + 5432, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5456 + 5429 ] } ], "v_player_arch_nemesis_stream": [ - 5452, + 5425, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5464, + 5437, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5456 + 5429 ] } ], "v_player_damage": [ - 5470, + 5443, { "distinct_on": [ - 5478, + 5451, "[v_player_damage_select_column!]" ], "limit": [ @@ -175959,19 +175384,19 @@ export default { 40 ], "order_by": [ - 5477, + 5450, "[v_player_damage_order_by!]" ], "where": [ - 5474 + 5447 ] } ], "v_player_damage_aggregate": [ - 5471, + 5444, { "distinct_on": [ - 5478, + 5451, "[v_player_damage_select_column!]" ], "limit": [ @@ -175981,35 +175406,35 @@ export default { 40 ], "order_by": [ - 5477, + 5450, "[v_player_damage_order_by!]" ], "where": [ - 5474 + 5447 ] } ], "v_player_damage_stream": [ - 5470, + 5443, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5482, + 5455, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5474 + 5447 ] } ], "v_player_elo": [ - 5488, + 5461, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -176019,19 +175444,19 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "v_player_elo_aggregate": [ - 5489, + 5462, { "distinct_on": [ - 5514, + 5487, "[v_player_elo_select_column!]" ], "limit": [ @@ -176041,35 +175466,35 @@ export default { 40 ], "order_by": [ - 5513, + 5486, "[v_player_elo_order_by!]" ], "where": [ - 5507 + 5480 ] } ], "v_player_elo_stream": [ - 5488, + 5461, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5529, + 5502, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5507 + 5480 ] } ], "v_player_map_losses": [ - 5539, + 5512, { "distinct_on": [ - 5547, + 5520, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -176079,19 +175504,19 @@ export default { 40 ], "order_by": [ - 5546, + 5519, "[v_player_map_losses_order_by!]" ], "where": [ - 5543 + 5516 ] } ], "v_player_map_losses_aggregate": [ - 5540, + 5513, { "distinct_on": [ - 5547, + 5520, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -176101,35 +175526,35 @@ export default { 40 ], "order_by": [ - 5546, + 5519, "[v_player_map_losses_order_by!]" ], "where": [ - 5543 + 5516 ] } ], "v_player_map_losses_stream": [ - 5539, + 5512, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5551, + 5524, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5543 + 5516 ] } ], "v_player_map_wins": [ - 5557, + 5530, { "distinct_on": [ - 5565, + 5538, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -176139,19 +175564,19 @@ export default { 40 ], "order_by": [ - 5564, + 5537, "[v_player_map_wins_order_by!]" ], "where": [ - 5561 + 5534 ] } ], "v_player_map_wins_aggregate": [ - 5558, + 5531, { "distinct_on": [ - 5565, + 5538, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -176161,35 +175586,35 @@ export default { 40 ], "order_by": [ - 5564, + 5537, "[v_player_map_wins_order_by!]" ], "where": [ - 5561 + 5534 ] } ], "v_player_map_wins_stream": [ - 5557, + 5530, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5569, + 5542, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5561 + 5534 ] } ], "v_player_match_head_to_head": [ - 5575, + 5548, { "distinct_on": [ - 5583, + 5556, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -176199,19 +175624,19 @@ export default { 40 ], "order_by": [ - 5582, + 5555, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5579 + 5552 ] } ], "v_player_match_head_to_head_aggregate": [ - 5576, + 5549, { "distinct_on": [ - 5583, + 5556, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -176221,35 +175646,35 @@ export default { 40 ], "order_by": [ - 5582, + 5555, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5579 + 5552 ] } ], "v_player_match_head_to_head_stream": [ - 5575, + 5548, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5587, + 5560, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5579 + 5552 ] } ], "v_player_match_map_hltv": [ - 5593, + 5566, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -176259,19 +175684,19 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "v_player_match_map_hltv_aggregate": [ - 5594, + 5567, { "distinct_on": [ - 5611, + 5584, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -176281,35 +175706,35 @@ export default { 40 ], "order_by": [ - 5610, + 5583, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5602 + 5575 ] } ], "v_player_match_map_hltv_stream": [ - 5593, + 5566, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5619, + 5592, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5602 + 5575 ] } ], "v_player_match_map_roles": [ - 5630, + 5603, { "distinct_on": [ - 5638, + 5611, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -176319,19 +175744,19 @@ export default { 40 ], "order_by": [ - 5637, + 5610, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5634 + 5607 ] } ], "v_player_match_map_roles_aggregate": [ - 5631, + 5604, { "distinct_on": [ - 5638, + 5611, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -176341,35 +175766,35 @@ export default { 40 ], "order_by": [ - 5637, + 5610, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5634 + 5607 ] } ], "v_player_match_map_roles_stream": [ - 5630, + 5603, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5642, + 5615, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5634 + 5607 ] } ], "v_player_match_performance": [ - 5648, + 5621, { "distinct_on": [ - 5656, + 5629, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -176379,19 +175804,19 @@ export default { 40 ], "order_by": [ - 5655, + 5628, "[v_player_match_performance_order_by!]" ], "where": [ - 5652 + 5625 ] } ], "v_player_match_performance_aggregate": [ - 5649, + 5622, { "distinct_on": [ - 5656, + 5629, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -176401,35 +175826,35 @@ export default { 40 ], "order_by": [ - 5655, + 5628, "[v_player_match_performance_order_by!]" ], "where": [ - 5652 + 5625 ] } ], "v_player_match_performance_stream": [ - 5648, + 5621, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5660, + 5633, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5652 + 5625 ] } ], "v_player_match_rating": [ - 5666, + 5639, { "distinct_on": [ - 5674, + 5647, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -176439,19 +175864,19 @@ export default { 40 ], "order_by": [ - 5673, + 5646, "[v_player_match_rating_order_by!]" ], "where": [ - 5670 + 5643 ] } ], "v_player_match_rating_aggregate": [ - 5667, + 5640, { "distinct_on": [ - 5674, + 5647, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -176461,35 +175886,35 @@ export default { 40 ], "order_by": [ - 5673, + 5646, "[v_player_match_rating_order_by!]" ], "where": [ - 5670 + 5643 ] } ], "v_player_match_rating_stream": [ - 5666, + 5639, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5678, + 5651, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5670 + 5643 ] } ], "v_player_multi_kills": [ - 5684, + 5657, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -176499,19 +175924,19 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], "v_player_multi_kills_aggregate": [ - 5685, + 5658, { "distinct_on": [ - 5700, + 5673, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -176521,35 +175946,35 @@ export default { 40 ], "order_by": [ - 5699, + 5672, "[v_player_multi_kills_order_by!]" ], "where": [ - 5693 + 5666 ] } ], "v_player_multi_kills_stream": [ - 5684, + 5657, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5707, + 5680, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5693 + 5666 ] } ], "v_player_queue_partners": [ - 5717, + 5690, { "distinct_on": [ - 5725, + 5698, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -176559,19 +175984,19 @@ export default { 40 ], "order_by": [ - 5724, + 5697, "[v_player_queue_partners_order_by!]" ], "where": [ - 5721 + 5694 ] } ], "v_player_queue_partners_aggregate": [ - 5718, + 5691, { "distinct_on": [ - 5725, + 5698, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -176581,35 +176006,35 @@ export default { 40 ], "order_by": [ - 5724, + 5697, "[v_player_queue_partners_order_by!]" ], "where": [ - 5721 + 5694 ] } ], "v_player_queue_partners_stream": [ - 5717, + 5690, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5729, + 5702, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5721 + 5694 ] } ], "v_player_weapon_damage": [ - 5735, + 5708, { "distinct_on": [ - 5743, + 5716, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -176619,19 +176044,19 @@ export default { 40 ], "order_by": [ - 5742, + 5715, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5739 + 5712 ] } ], "v_player_weapon_damage_aggregate": [ - 5736, + 5709, { "distinct_on": [ - 5743, + 5716, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -176641,35 +176066,35 @@ export default { 40 ], "order_by": [ - 5742, + 5715, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5739 + 5712 ] } ], "v_player_weapon_damage_stream": [ - 5735, + 5708, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5747, + 5720, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5739 + 5712 ] } ], "v_player_weapon_kills": [ - 5753, + 5726, { "distinct_on": [ - 5761, + 5734, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -176679,19 +176104,19 @@ export default { 40 ], "order_by": [ - 5760, + 5733, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5757 + 5730 ] } ], "v_player_weapon_kills_aggregate": [ - 5754, + 5727, { "distinct_on": [ - 5761, + 5734, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -176701,35 +176126,35 @@ export default { 40 ], "order_by": [ - 5760, + 5733, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5757 + 5730 ] } ], "v_player_weapon_kills_stream": [ - 5753, + 5726, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5765, + 5738, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5757 + 5730 ] } ], "v_pool_maps": [ - 5771, + 5744, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -176739,19 +176164,19 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], "v_pool_maps_aggregate": [ - 5772, + 5745, { "distinct_on": [ - 5788, + 5761, "[v_pool_maps_select_column!]" ], "limit": [ @@ -176761,35 +176186,35 @@ export default { 40 ], "order_by": [ - 5787, + 5760, "[v_pool_maps_order_by!]" ], "where": [ - 5780 + 5753 ] } ], "v_pool_maps_stream": [ - 5771, + 5744, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5792, + 5765, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5780 + 5753 ] } ], "v_steam_account_pool_status": [ - 5795, + 5768, { "distinct_on": [ - 5803, + 5776, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -176799,19 +176224,19 @@ export default { 40 ], "order_by": [ - 5802, + 5775, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5799 + 5772 ] } ], "v_steam_account_pool_status_aggregate": [ - 5796, + 5769, { "distinct_on": [ - 5803, + 5776, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -176821,35 +176246,35 @@ export default { 40 ], "order_by": [ - 5802, + 5775, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5799 + 5772 ] } ], "v_steam_account_pool_status_stream": [ - 5795, + 5768, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5807, + 5780, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5799 + 5772 ] } ], "v_team_ranks": [ - 5813, + 5786, { "distinct_on": [ - 5823, + 5796, "[v_team_ranks_select_column!]" ], "limit": [ @@ -176859,19 +176284,19 @@ export default { 40 ], "order_by": [ - 5822, + 5795, "[v_team_ranks_order_by!]" ], "where": [ - 5817 + 5790 ] } ], "v_team_ranks_aggregate": [ - 5814, + 5787, { "distinct_on": [ - 5823, + 5796, "[v_team_ranks_select_column!]" ], "limit": [ @@ -176881,35 +176306,35 @@ export default { 40 ], "order_by": [ - 5822, + 5795, "[v_team_ranks_order_by!]" ], "where": [ - 5817 + 5790 ] } ], "v_team_ranks_stream": [ - 5813, + 5786, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5827, + 5800, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5817 + 5790 ] } ], "v_team_reputation": [ - 5833, + 5806, { "distinct_on": [ - 5843, + 5816, "[v_team_reputation_select_column!]" ], "limit": [ @@ -176919,19 +176344,19 @@ export default { 40 ], "order_by": [ - 5842, + 5815, "[v_team_reputation_order_by!]" ], "where": [ - 5837 + 5810 ] } ], "v_team_reputation_aggregate": [ - 5834, + 5807, { "distinct_on": [ - 5843, + 5816, "[v_team_reputation_select_column!]" ], "limit": [ @@ -176941,35 +176366,35 @@ export default { 40 ], "order_by": [ - 5842, + 5815, "[v_team_reputation_order_by!]" ], "where": [ - 5837 + 5810 ] } ], "v_team_reputation_stream": [ - 5833, + 5806, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5847, + 5820, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5837 + 5810 ] } ], "v_team_stage_results": [ - 5853, + 5826, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -176979,19 +176404,19 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], "v_team_stage_results_aggregate": [ - 5854, + 5827, { "distinct_on": [ - 5885, + 5858, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -177001,48 +176426,48 @@ export default { 40 ], "order_by": [ - 5883, + 5856, "[v_team_stage_results_order_by!]" ], "where": [ - 5872 + 5845 ] } ], "v_team_stage_results_by_pk": [ - 5853, + 5826, { "tournament_stage_id": [ - 5111, + 5084, "uuid!" ], "tournament_team_id": [ - 5111, + 5084, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5853, + 5826, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5901, + 5874, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5872 + 5845 ] } ], "v_team_tournament_results": [ - 5913, + 5886, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -177052,19 +176477,19 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "v_team_tournament_results_aggregate": [ - 5914, + 5887, { "distinct_on": [ - 5939, + 5912, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -177074,35 +176499,35 @@ export default { 40 ], "order_by": [ - 5938, + 5911, "[v_team_tournament_results_order_by!]" ], "where": [ - 5932 + 5905 ] } ], "v_team_tournament_results_stream": [ - 5913, + 5886, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5954, + 5927, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5932 + 5905 ] } ], "v_tournament_player_stats": [ - 5964, + 5937, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -177112,19 +176537,19 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], "v_tournament_player_stats_aggregate": [ - 5965, + 5938, { "distinct_on": [ - 5990, + 5963, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -177134,27 +176559,27 @@ export default { 40 ], "order_by": [ - 5989, + 5962, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5983 + 5956 ] } ], "v_tournament_player_stats_stream": [ - 5964, + 5937, { "batch_size": [ 40, "Int!" ], "cursor": [ - 6005, + 5978, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5983 + 5956 ] } ], diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 1f24aa42..f8518c9b 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1591,6 +1591,7 @@ type Mutation { addDraftPlayer( draftGameId: uuid! steamId: String! + lineup: Int ): SuccessOutput } diff --git a/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml b/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml deleted file mode 100644 index ac3d4442..00000000 --- a/hasura/metadata/databases/default/tables/public_match_camera_tokens.yaml +++ /dev/null @@ -1,20 +0,0 @@ -table: - name: match_camera_tokens - schema: public -object_relationships: - - name: match - using: - foreign_key_constraint_on: match_id -select_permissions: - - role: user - permission: - columns: - - id - - match_id - - steam_id - - token - - created_at - filter: - steam_id: - _eq: X-Hasura-User-Id - comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index da30c6fa..91ace14f 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -82,7 +82,6 @@ - "!include public_lobby_players.yaml" - "!include public_map_pools.yaml" - "!include public_maps.yaml" -- "!include public_match_camera_tokens.yaml" - "!include public_match_clips.yaml" - "!include public_match_demo_sessions.yaml" - "!include public_match_lineup_players.yaml" diff --git a/hasura/migrations/default/1876000000800_match_camera_options/down.sql b/hasura/migrations/default/1876000000800_match_camera_options/down.sql new file mode 100644 index 00000000..6efaaadd --- /dev/null +++ b/hasura/migrations/default/1876000000800_match_camera_options/down.sql @@ -0,0 +1,5 @@ +ALTER TABLE "public"."match_options" + DROP COLUMN IF EXISTS "camera_allow_teammates"; + +ALTER TABLE "public"."match_options" + DROP COLUMN IF EXISTS "camera_required"; diff --git a/hasura/migrations/default/1876000000800_match_camera_options/up.sql b/hasura/migrations/default/1876000000800_match_camera_options/up.sql new file mode 100644 index 00000000..d7b879e6 --- /dev/null +++ b/hasura/migrations/default/1876000000800_match_camera_options/up.sql @@ -0,0 +1,7 @@ +ALTER TABLE "public"."match_options" + ADD COLUMN IF NOT EXISTS "camera_required" boolean NOT NULL DEFAULT false; + +-- Lets a player see their own side's cameras. Never the other side: that would +-- hand a competitor a live view of the opposition. +ALTER TABLE "public"."match_options" + ADD COLUMN IF NOT EXISTS "camera_allow_teammates" boolean NOT NULL DEFAULT false; diff --git a/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql b/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql deleted file mode 100644 index fed666cf..00000000 --- a/hasura/migrations/default/1876000000800_match_camera_tokens/down.sql +++ /dev/null @@ -1,5 +0,0 @@ -DROP TABLE IF EXISTS "public"."match_camera_tokens"; - -ALTER TABLE "public"."match_options" DROP COLUMN IF EXISTS "camera_allow_teammates"; - -ALTER TABLE "public"."match_options" DROP COLUMN IF EXISTS "camera_required"; diff --git a/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql b/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql deleted file mode 100644 index dea52c84..00000000 --- a/hasura/migrations/default/1876000000800_match_camera_tokens/up.sql +++ /dev/null @@ -1,22 +0,0 @@ -ALTER TABLE "public"."match_options" - ADD COLUMN IF NOT EXISTS "camera_required" boolean NOT NULL DEFAULT false; - --- Lets a player see their own side's cameras. Never the other side: that would --- hand a competitor a live view of the opposition. -ALTER TABLE "public"."match_options" - ADD COLUMN IF NOT EXISTS "camera_allow_teammates" boolean NOT NULL DEFAULT false; - -CREATE TABLE IF NOT EXISTS "public"."match_camera_tokens" ( - "id" uuid DEFAULT gen_random_uuid() NOT NULL, - "match_id" uuid NOT NULL, - "steam_id" bigint NOT NULL, - "token" uuid DEFAULT gen_random_uuid() NOT NULL, - "created_at" timestamp with time zone DEFAULT now() NOT NULL, - PRIMARY KEY ("id"), - FOREIGN KEY ("match_id") REFERENCES "public"."matches"("id") ON UPDATE cascade ON DELETE cascade, - UNIQUE ("token"), - UNIQUE ("match_id", "steam_id") -); - -CREATE INDEX IF NOT EXISTS "match_camera_tokens_match_id_idx" - ON "public"."match_camera_tokens" ("match_id"); diff --git a/hasura/migrations/default/1877000000000_push_subscriptions/down.sql b/hasura/migrations/default/1877000000000_push_subscriptions/down.sql deleted file mode 100644 index 0da39588..00000000 --- a/hasura/migrations/default/1877000000000_push_subscriptions/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE IF EXISTS "public"."push_subscriptions"; diff --git a/hasura/migrations/default/1877000000000_push_subscriptions/up.sql b/hasura/migrations/default/1877000000000_push_subscriptions/up.sql deleted file mode 100644 index d83cca0e..00000000 --- a/hasura/migrations/default/1877000000000_push_subscriptions/up.sql +++ /dev/null @@ -1,20 +0,0 @@ --- One row per browser/device push subscription. A single steam_id can have --- several rows (phone + desktop), and every matching one gets sent to. --- Uniqueness is on endpoint -- the browser's own push-service URL -- rather --- than on steam_id, precisely to allow that multi-device fan-out. -CREATE TABLE IF NOT EXISTS "public"."push_subscriptions" ( - "id" uuid DEFAULT gen_random_uuid() NOT NULL, - "steam_id" bigint NOT NULL, - "endpoint" text NOT NULL, - "p256dh" text NOT NULL, - "auth" text NOT NULL, - "user_agent" text, - "created_at" timestamp with time zone DEFAULT now() NOT NULL, - "last_used_at" timestamp with time zone, - PRIMARY KEY ("id"), - FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, - UNIQUE ("endpoint") -); - -CREATE INDEX IF NOT EXISTS "push_subscriptions_steam_id_idx" - ON "public"."push_subscriptions" ("steam_id"); diff --git a/hasura/migrations/default/1877000000000_web_push_notifications/down.sql b/hasura/migrations/default/1877000000000_web_push_notifications/down.sql new file mode 100644 index 00000000..741b5ae7 --- /dev/null +++ b/hasura/migrations/default/1877000000000_web_push_notifications/down.sql @@ -0,0 +1,10 @@ +ALTER TABLE "public"."players" + DROP COLUMN IF EXISTS "notification_timezone", + DROP COLUMN IF EXISTS "quiet_hours_end", + DROP COLUMN IF EXISTS "quiet_hours_start"; + +DROP INDEX IF EXISTS "public"."notifications_unread_steam_id_idx"; +DROP INDEX IF EXISTS "public"."notifications_type_entity_id_idx"; + +DROP TABLE IF EXISTS "public"."notification_preferences"; +DROP TABLE IF EXISTS "public"."push_subscriptions"; diff --git a/hasura/migrations/default/1877000000000_web_push_notifications/up.sql b/hasura/migrations/default/1877000000000_web_push_notifications/up.sql new file mode 100644 index 00000000..fd458980 --- /dev/null +++ b/hasura/migrations/default/1877000000000_web_push_notifications/up.sql @@ -0,0 +1,72 @@ +-- Web push notifications, whole. +-- +-- One row per browser/device push subscription. A single steam_id can have +-- several rows (phone + desktop), and every matching one gets sent to. +-- Uniqueness is on endpoint -- the browser's own push-service URL -- rather +-- than on steam_id, precisely to allow that multi-device fan-out. +-- +-- The endpoint check keeps the invariant true for anything inserted outside the +-- application, and makes the intent visible in the schema rather than only in +-- TypeScript (see src/notifications/push/push-endpoint.ts). Without it the API +-- can be aimed at a host that is not a push service at all. +CREATE TABLE IF NOT EXISTS "public"."push_subscriptions" ( + "id" uuid DEFAULT gen_random_uuid() NOT NULL, + "steam_id" bigint NOT NULL, + "endpoint" text NOT NULL, + "p256dh" text NOT NULL, + "auth" text NOT NULL, + "user_agent" text, + "created_at" timestamp with time zone DEFAULT now() NOT NULL, + "last_used_at" timestamp with time zone, + PRIMARY KEY ("id"), + FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, + UNIQUE ("endpoint"), + CONSTRAINT "push_subscriptions_endpoint_is_push_service" CHECK ( + "endpoint" ~* '^https://([a-z0-9-]+\.)*(push\.apple\.com|notify\.windows\.com|push\.services\.mozilla\.com)(/|$)' + OR "endpoint" ~* '^https://(fcm|android)\.googleapis\.com(/|$)' + ) +); + +CREATE INDEX IF NOT EXISTS "push_subscriptions_steam_id_idx" + ON "public"."push_subscriptions" ("steam_id"); + +-- Per-player notification opt-out, for both delivery channels at once. +-- +-- Absence of a row means "use this key's own default", so no backfill is ever +-- needed and every existing and future player stays on whatever the default +-- is. Only explicit choices are stored. +-- +-- `key` means different things per channel and that is deliberate: push groups +-- the ~34 notification types into a handful of coarse categories a player can +-- mute, while the in-app bell exposes a small hand-picked set of individual +-- types. See src/notifications/preferences/notification-categories.ts. +CREATE TABLE IF NOT EXISTS "public"."notification_preferences" ( + "steam_id" bigint NOT NULL, + "channel" text NOT NULL, + "key" text NOT NULL, + "enabled" boolean NOT NULL, + "updated_at" timestamp with time zone DEFAULT now() NOT NULL, + PRIMARY KEY ("steam_id", "channel", "key"), + FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, + CONSTRAINT "notification_preferences_channel_check" + CHECK ("channel" IN ('push', 'in_app')) +); + +-- notifications had no index beyond its primary key. Three separate features +-- dedupe by (type, entity_id) via NOT EXISTS -- LeagueWeekReminders, +-- TournamentReminders, and the ChatMessage bell collapse -- and the bell reads +-- unread rows per player on every page load. +CREATE INDEX IF NOT EXISTS "notifications_type_entity_id_idx" + ON "public"."notifications" ("type", "entity_id"); + +CREATE INDEX IF NOT EXISTS "notifications_unread_steam_id_idx" + ON "public"."notifications" ("steam_id") + WHERE "is_read" = false AND "deleted_at" IS NULL; + +-- Quiet hours are stored as local wall-clock times plus the player's zone, +-- rather than as a UTC window, so the window keeps meaning "10pm to 7am" across +-- daylight-saving shifts and travel instead of drifting by an hour. +ALTER TABLE "public"."players" + ADD COLUMN IF NOT EXISTS "quiet_hours_start" time, + ADD COLUMN IF NOT EXISTS "quiet_hours_end" time, + ADD COLUMN IF NOT EXISTS "notification_timezone" text; diff --git a/hasura/migrations/default/1877000000100_notification_preferences/down.sql b/hasura/migrations/default/1877000000100_notification_preferences/down.sql deleted file mode 100644 index 5c6f985c..00000000 --- a/hasura/migrations/default/1877000000100_notification_preferences/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE IF EXISTS "public"."notification_preferences"; diff --git a/hasura/migrations/default/1877000000100_notification_preferences/up.sql b/hasura/migrations/default/1877000000100_notification_preferences/up.sql deleted file mode 100644 index 112e5249..00000000 --- a/hasura/migrations/default/1877000000100_notification_preferences/up.sql +++ /dev/null @@ -1,21 +0,0 @@ --- Per-player notification opt-out, for both delivery channels at once. --- --- Absence of a row means "use this key's own default", so no backfill is ever --- needed and every existing and future player stays on whatever the default --- is. Only explicit choices are stored. --- --- `key` means different things per channel and that is deliberate: push groups --- the ~34 notification types into a handful of coarse categories a player can --- mute, while the in-app bell exposes a small hand-picked set of individual --- types. See src/notifications/preferences/notification-categories.ts. -CREATE TABLE IF NOT EXISTS "public"."notification_preferences" ( - "steam_id" bigint NOT NULL, - "channel" text NOT NULL, - "key" text NOT NULL, - "enabled" boolean NOT NULL, - "updated_at" timestamp with time zone DEFAULT now() NOT NULL, - PRIMARY KEY ("steam_id", "channel", "key"), - FOREIGN KEY ("steam_id") REFERENCES "public"."players"("steam_id") ON UPDATE cascade ON DELETE cascade, - CONSTRAINT "notification_preferences_channel_check" - CHECK ("channel" IN ('push', 'in_app')) -); diff --git a/hasura/migrations/default/1877000000200_notification_indexes/down.sql b/hasura/migrations/default/1877000000200_notification_indexes/down.sql deleted file mode 100644 index 6a026328..00000000 --- a/hasura/migrations/default/1877000000200_notification_indexes/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP INDEX IF EXISTS "public"."notifications_unread_steam_id_idx"; -DROP INDEX IF EXISTS "public"."notifications_type_entity_id_idx"; diff --git a/hasura/migrations/default/1877000000200_notification_indexes/up.sql b/hasura/migrations/default/1877000000200_notification_indexes/up.sql deleted file mode 100644 index 587d710f..00000000 --- a/hasura/migrations/default/1877000000200_notification_indexes/up.sql +++ /dev/null @@ -1,10 +0,0 @@ --- notifications had no index beyond its primary key. Three separate features --- now dedupe by (type, entity_id) via NOT EXISTS -- LeagueWeekReminders, --- TournamentReminders, and the ChatMessage bell collapse -- and the bell reads --- unread rows per player on every page load. -CREATE INDEX IF NOT EXISTS "notifications_type_entity_id_idx" - ON "public"."notifications" ("type", "entity_id"); - -CREATE INDEX IF NOT EXISTS "notifications_unread_steam_id_idx" - ON "public"."notifications" ("steam_id") - WHERE "is_read" = false AND "deleted_at" IS NULL; diff --git a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql deleted file mode 100644 index 3826f17f..00000000 --- a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE "public"."push_subscriptions" - DROP CONSTRAINT IF EXISTS "push_subscriptions_endpoint_is_push_service"; diff --git a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql b/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql deleted file mode 100644 index e88f5bf8..00000000 --- a/hasura/migrations/default/1877000000400_push_subscriptions_endpoint_allowlist/up.sql +++ /dev/null @@ -1,21 +0,0 @@ --- Endpoints were stored unvalidated before src/notifications/push/push-endpoint.ts --- existed, so anything already in the table bypassed the subscribe-time check. --- Sweep them: a row that does not point at a real push service is either junk --- or an attempt to aim the API at something it should not reach. --- --- Deleting rather than flagging is safe -- a legitimate browser simply --- re-subscribes on its next visit. -DELETE FROM "public"."push_subscriptions" - WHERE "endpoint" !~* '^https://([a-z0-9-]+\.)*(push\.apple\.com|notify\.windows\.com|push\.services\.mozilla\.com)(/|$)' - AND "endpoint" !~* '^https://(fcm|android)\.googleapis\.com(/|$)'; - --- Keeps the invariant true for anything inserted outside the application, and --- makes the intent visible in the schema rather than only in TypeScript. -ALTER TABLE "public"."push_subscriptions" - DROP CONSTRAINT IF EXISTS "push_subscriptions_endpoint_is_push_service"; - -ALTER TABLE "public"."push_subscriptions" - ADD CONSTRAINT "push_subscriptions_endpoint_is_push_service" CHECK ( - "endpoint" ~* '^https://([a-z0-9-]+\.)*(push\.apple\.com|notify\.windows\.com|push\.services\.mozilla\.com)(/|$)' - OR "endpoint" ~* '^https://(fcm|android)\.googleapis\.com(/|$)' - ); diff --git a/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql b/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql deleted file mode 100644 index 2ce15dc7..00000000 --- a/hasura/migrations/default/1877000000600_player_quiet_hours/down.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE "public"."players" - DROP COLUMN IF EXISTS "quiet_hours_start", - DROP COLUMN IF EXISTS "quiet_hours_end", - DROP COLUMN IF EXISTS "notification_timezone"; diff --git a/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql b/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql deleted file mode 100644 index 1020a51f..00000000 --- a/hasura/migrations/default/1877000000600_player_quiet_hours/up.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Quiet hours are stored as local wall-clock times plus the player's zone, --- rather than as a UTC window, so the window keeps meaning "10pm to 7am" across --- daylight-saving shifts and travel instead of drifting by an hour. -ALTER TABLE "public"."players" - ADD COLUMN IF NOT EXISTS "quiet_hours_start" time, - ADD COLUMN IF NOT EXISTS "quiet_hours_end" time, - ADD COLUMN IF NOT EXISTS "notification_timezone" text; diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index 90171426..ae117448 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -786,10 +786,14 @@ export class DraftGameService { return isRoleAbove(role, threshold as e_player_roles_enum); } + // `lineup` lets a host drop someone straight into a roster slot. Without it + // the player would land in the lobby pool first and only move on a second + // mutation, which both flickers in the UI and can strand them there. public async addDraftPlayer( user: User, draftGameId: string, steamId: string, + lineup?: number | null, ) { return this.draftLock(draftGameId, async () => { const draftGame = await this.getDraftGame(draftGameId); @@ -817,6 +821,10 @@ export class DraftGameService { return; } + if (lineup != null && ![1, 2].includes(lineup)) { + throw new DraftGameError("Invalid lineup"); + } + const addWithoutInvite = await this.canAddWithoutInvite(user.role); await this.playerLock(steamId, async () => { @@ -853,6 +861,7 @@ export class DraftGameService { steam_id: steamId, elo_snapshot: elo, status: status as e_draft_game_player_status_enum, + ...(lineup != null ? { lineup } : {}), }, }, __typename: true, diff --git a/src/draft-games/draft-games.controller.ts b/src/draft-games/draft-games.controller.ts index ea59f87e..3f728504 100644 --- a/src/draft-games/draft-games.controller.ts +++ b/src/draft-games/draft-games.controller.ts @@ -118,11 +118,13 @@ export class DraftGamesController { user: User; draftGameId: string; steamId: string; + lineup?: number; }) { await this.draftGameService.addDraftPlayer( data.user, data.draftGameId, data.steamId, + data.lineup, ); return { success: true }; } diff --git a/src/hasura/hasura.service.ts b/src/hasura/hasura.service.ts index cafabb04..46bd75d8 100644 --- a/src/hasura/hasura.service.ts +++ b/src/hasura/hasura.service.ts @@ -117,6 +117,20 @@ export class HasuraService { "create table if not exists hdb_catalog.schema_migrations (version bigint not null, dirty boolean not null)", ); + // The table shipped without a unique constraint, so a version could be + // recorded twice -- which made `on conflict` guards against it silently do + // nothing, and left the applied set looking like something it was not. + // Dedupe first: the index cannot be created while duplicates exist. + await this.postgresService.query( + `DELETE FROM hdb_catalog.schema_migrations a + USING hdb_catalog.schema_migrations b + WHERE a.ctid > b.ctid AND a.version = b.version`, + ); + + await this.postgresService.query( + "create unique index if not exists schema_migrations_version_idx on hdb_catalog.schema_migrations (version)", + ); + await this.applyMigrations(path.resolve("./hasura/migrations/default")); await this.apply(path.resolve("./hasura/enums")); @@ -185,6 +199,22 @@ export class HasuraService { await this.postgresService.query( "insert into settings (name, value) values ('public.camera_allow_teammates_default', 'false') on conflict (name) do nothing", ); + + // On wherever voice is, and gated the same way. Turning a camera on is still + // always a deliberate act by the player -- these only decide whether the + // control is offered at all. The two per-surface toggles are read by the web + // app to decide which surfaces show it; the API only enforces the master. + await this.postgresService.query( + "insert into settings (name, value) values ('public.video_chat_enabled', 'true') on conflict (name) do nothing", + ); + + await this.postgresService.query( + "insert into settings (name, value) values ('public.video_chat_lobbies_enabled', 'true') on conflict (name) do nothing", + ); + + await this.postgresService.query( + "insert into settings (name, value) values ('public.video_chat_matches_enabled', 'true') on conflict (name) do nothing", + ); } private async applyMigrations(path: string): Promise { @@ -199,7 +229,7 @@ export class HasuraService { this.logger.log(" applying", version.toString()); let patchedSQL = sql; const disableTransactions = sql.startsWith(`-- @disable-transaction`); - const updateSchemaMigrations = `insert into hdb_catalog.schema_migrations (version, dirty) values (${version}, false)`; + const updateSchemaMigrations = `insert into hdb_catalog.schema_migrations (version, dirty) values (${version}, false) on conflict (version) do nothing`; if (!disableTransactions) { // Disable the pool's statement_timeout for the migration; some run long. patchedSQL = `begin;set local statement_timeout = 0;${patchedSQL};${updateSchemaMigrations};commit;`; diff --git a/src/matches/camera/camera-monitor.service.spec.ts b/src/matches/camera/camera-monitor.service.spec.ts index 68ea5ca2..e3350162 100644 --- a/src/matches/camera/camera-monitor.service.spec.ts +++ b/src/matches/camera/camera-monitor.service.spec.ts @@ -29,6 +29,13 @@ describe("CameraMonitorService", () => { server_id: SERVER_ID, steam_id: steamId, name: `player-${steamId}`, + coach: false, + }); + + const coachRow = (steamId: string) => ({ + ...rosterRow(steamId), + name: `coach-${steamId}`, + coach: true, }); beforeEach(() => { @@ -105,6 +112,50 @@ describe("CameraMonitorService", () => { }); }); + // A coach has no `is_connected` to say whether they turned up, so their own + // camera is the attendance record: watched from the moment it first appears, + // and not before. + describe("coaches", () => { + const COACH = "76561198000000009"; + + it("ignores a coach who has never been on camera", async () => { + postgres.query.mockResolvedValue([coachRow(COACH)]); + redis.hgetall.mockResolvedValue({}); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 60_000); + + expect(rcon.connect).not.toHaveBeenCalled(); + // Nothing sampled either: an absent coach leaves no trace to age out of. + expect(redis.hset).toHaveBeenCalledWith(`camera:samples:${MATCH_ID}`, {}); + }); + + it("starts watching a coach once their camera appears", async () => { + postgres.query.mockResolvedValue([coachRow(COACH)]); + redis.hgetall.mockResolvedValue({}); + mediaMtx.listPaths.mockResolvedValue( + listing([[path(COACH), { ready: true, bytesReceived: 400 }]]), + ); + + await service.monitorLiveMatches(5000); + + expect(rcon.connect).not.toHaveBeenCalled(); + expect(redis.hset).toHaveBeenCalledWith(`camera:samples:${MATCH_ID}`, { + [COACH]: `400:5000:live`, + }); + }); + + it("pauses on a coach who was on camera and then dropped", async () => { + postgres.query.mockResolvedValue([coachRow(COACH)]); + redis.hgetall.mockResolvedValue({ [COACH]: "400:1000:live" }); + mediaMtx.listPaths.mockResolvedValue(listing([])); + + await service.monitorLiveMatches(1000 + 30_000); + + expect(rconClient.send).toHaveBeenCalledWith(`camera_state ${COACH}`); + }); + }); + // Pausing every live match because our own monitor lost its connection is // far worse than missing a drop for one pass. it("changes nothing when mediamtx cannot be reached", async () => { diff --git a/src/matches/camera/camera-monitor.service.ts b/src/matches/camera/camera-monitor.service.ts index a43c82fa..c585a927 100644 --- a/src/matches/camera/camera-monitor.service.ts +++ b/src/matches/camera/camera-monitor.service.ts @@ -51,18 +51,24 @@ export class CameraMonitorService { } public async monitorLiveMatches(now = Date.now()) { + // Coaches are included, but on different terms -- see monitorMatch. A + // player is only watched once they are in the server (`is_connected`), and + // a coach has no equivalent of that, so the query cannot filter them the + // same way and the attendance rule lives downstream instead. const rows = await this.postgres.query< Array<{ match_id: string; server_id: string | null; steam_id: string; name: string | null; + coach: boolean; }> >( `SELECT m.id AS match_id, m.server_id::text AS server_id, mlp.steam_id::text AS steam_id, - p.name + p.name, + false AS coach FROM matches m INNER JOIN match_options mo ON mo.id = m.match_options_id INNER JOIN match_lineup_players mlp @@ -72,7 +78,24 @@ export class CameraMonitorService { AND mo.camera_required = true AND m.server_id IS NOT NULL AND mlp.steam_id IS NOT NULL - AND mlp.is_connected = true`, + AND mlp.is_connected = true + + UNION ALL + + SELECT m.id AS match_id, + m.server_id::text AS server_id, + ml.coach_steam_id::text AS steam_id, + p.name, + true AS coach + FROM matches m + INNER JOIN match_options mo ON mo.id = m.match_options_id + INNER JOIN match_lineups ml + ON ml.id IN (m.lineup_1_id, m.lineup_2_id) + LEFT JOIN players p ON p.steam_id = ml.coach_steam_id + WHERE m.status = 'Live' + AND mo.camera_required = true + AND m.server_id IS NOT NULL + AND ml.coach_steam_id IS NOT NULL`, ); if (rows.length === 0) { @@ -95,7 +118,14 @@ export class CameraMonitorService { const byMatch = new Map< string, - { serverId: string; players: Array<{ steamId: string; name: string | null }> } + { + serverId: string; + players: Array<{ + steamId: string; + name: string | null; + coach: boolean; + }>; + } >(); for (const row of rows) { @@ -107,7 +137,11 @@ export class CameraMonitorService { serverId: row.server_id, players: [], }; - match.players.push({ steamId: row.steam_id, name: row.name }); + match.players.push({ + steamId: row.steam_id, + name: row.name, + coach: row.coach === true, + }); byMatch.set(row.match_id, match); } @@ -119,7 +153,7 @@ export class CameraMonitorService { private async monitorMatch( matchId: string, serverId: string, - players: Array<{ steamId: string; name: string | null }>, + players: Array<{ steamId: string; name: string | null; coach: boolean }>, paths: Map, now: number, ) { @@ -128,10 +162,19 @@ export class CameraMonitorService { const nextSamples: Record = {}; const monitored: Array = []; - for (const { steamId, name } of players) { + for (const { steamId, name, coach } of players) { const path = paths.get(CameraService.pathForPlayer(matchId, steamId)); const previous = CameraMonitorService.parseSample(stored[steamId]); + // A coach is watched from the moment they first appear on camera, and not + // before. `is_connected` says a player is in the server; a coach has no + // such signal, so their own camera is the attendance record. Without this + // an assigned-but-absent coach -- a very ordinary thing -- would hold a + // match paused from the first pass and nobody could start it. + if (coach && !previous && !path?.ready) { + continue; + } + let health: CameraHealth; if (!path?.ready) { health = "down"; diff --git a/src/matches/camera/camera.controller.ts b/src/matches/camera/camera.controller.ts index 6fbb92eb..53f1c1fd 100644 --- a/src/matches/camera/camera.controller.ts +++ b/src/matches/camera/camera.controller.ts @@ -48,46 +48,60 @@ export class CameraController { } } - // The player routes are gated by the secret token alone: the phone scanning - // the QR code has no session of its own. + // The player routes are gated by the session, like everything else. They used + // to take a minted token instead, because the phone scanning the QR had no + // login of its own -- it does now, and the QR carries only a URL. - @Post("player/:token/whip") + @Post("player/:matchId/whip") public async playerPublish( - @Param("token") token: string, + @Param("matchId") matchId: string, @Req() request: Request, @Res() response: Response, ) { + const user = this.requireUser(request); const sdp = await this.readRawBody(request); await this.sendSdp(response, () => - this.camera.proxyPlayerPublish(token, sdp), + this.camera.proxyPlayerPublish(matchId, user, sdp), ); } - @Get("player/:token/status") - public async playerStatus(@Param("token") token: string) { - return this.camera.getPlayerStatus(token); + @Get("player/:matchId/status") + public async playerStatus( + @Param("matchId") matchId: string, + @Req() request: Request, + ) { + return this.camera.getPlayerStatus(matchId, this.requireUser(request)); } - @Post("player/:token/talk/whep") + @Post("player/:matchId/talk/whep") public async playerTalk( - @Param("token") token: string, + @Param("matchId") matchId: string, @Req() request: Request, @Res() response: Response, ) { + const user = this.requireUser(request); const sdp = await this.readRawBody(request); - await this.sendSdp(response, () => this.camera.proxyPlayerTalk(token, sdp)); + await this.sendSdp(response, () => + this.camera.proxyPlayerTalk(matchId, user, sdp), + ); } - @Get("player/:token/talk/status") - public async playerTalkStatus(@Param("token") token: string) { - return this.camera.getPlayerTalkStatus(token); + @Get("player/:matchId/talk/status") + public async playerTalkStatus( + @Param("matchId") matchId: string, + @Req() request: Request, + ) { + return this.camera.getPlayerTalkStatus(matchId, this.requireUser(request)); } - @Post("player/:token/talk/hangup") - public async playerTalkHangup(@Param("token") token: string) { - await this.camera.hangupPlayerTalk(token); + @Post("player/:matchId/talk/hangup") + public async playerTalkHangup( + @Param("matchId") matchId: string, + @Req() request: Request, + ) { + await this.camera.hangupPlayerTalk(matchId, this.requireUser(request)); return { ok: true }; } diff --git a/src/matches/camera/camera.service.spec.ts b/src/matches/camera/camera.service.spec.ts index 17b5bdb2..469e9a9b 100644 --- a/src/matches/camera/camera.service.spec.ts +++ b/src/matches/camera/camera.service.spec.ts @@ -134,6 +134,131 @@ describe("CameraService authorization", () => { expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); }); + // Coaches publish a camera of their own now, so they belong to a side for + // every rule that asks "whose side are you on". + describe("coaches", () => { + it("treats a lineup as its roster plus its coach when scoping", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, true)); + + await service.watchScope(MATCH_ID, player); + + const [sql] = postgres.query.mock.calls[0]; + expect(sql).toMatch(/coach_steam_id/); + expect(sql).toMatch(/FROM match_lineups/); + }); + + // The hole this closes: a coach who also organised the match used to fall + // through the "not playing" branch and be handed both lineups -- a live + // view of the team they are coaching against. + it("keeps a coach scoped to their own side even if they organise", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, true)); + matchAssistant.isOrganizer.mockResolvedValue(true); + + await expect(service.watchScope(MATCH_ID, player)).resolves.toEqual({ + kind: "lineup", + lineupId: MY_LINEUP, + }); + }); + + it("refuses a coach entirely when teammate viewing is off", async () => { + postgres.query.mockResolvedValue(scopeRow(MY_LINEUP, false)); + + await expect(service.watchScope(MATCH_ID, player)).rejects.toThrow( + /not authorized/i, + ); + }); + + it("lets a teammate watch their own coach", async () => { + postgres.query + .mockResolvedValueOnce(scopeRow(MY_LINEUP, true)) + .mockResolvedValueOnce([{ exists: true }]); + + await service.proxyAdminWatch(MATCH_ID, TEAMMATE, player, "offer"); + + const [sql] = postgres.query.mock.calls[1]; + expect(sql).toMatch(/coach_steam_id/); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `camera-${MATCH_ID}-${TEAMMATE}`, + "whep", + "offer", + ); + }); + + // Coaches stand behind the team during a technical timeout, so "on camera" + // has to mean them too. This used to be proven by them being minted a token + // alongside the roster; the token is gone, so it is proven where the check + // now lives instead. + it("lets a coach publish their own camera", async () => { + postgres.query.mockResolvedValueOnce([{ status: "Live" }]); + + await service.proxyPlayerPublish(MATCH_ID, player, "offer"); + + const [sql] = postgres.query.mock.calls[0]; + expect(sql).toMatch(/coach_steam_id/); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `camera-${MATCH_ID}-${player.steam_id}`, + "whip", + "offer", + ); + }); + }); + + // Authorisation for publishing your own camera. There is no token to check + // any more: the session says who you are, and the only question left is + // whether you are in this match while it is still being played. + describe("publishing your own camera", () => { + it("publishes to the caller's own path, never one named by the request", async () => { + postgres.query.mockResolvedValueOnce([{ status: "Live" }]); + + await service.proxyPlayerPublish(MATCH_ID, player, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `camera-${MATCH_ID}-${player.steam_id}`, + "whip", + "offer", + ); + expect(mediaMtx.proxySdp).not.toHaveBeenCalledWith( + expect.stringContaining(TEAMMATE), + expect.anything(), + expect.anything(), + ); + }); + + it("refuses someone who is not in the match", async () => { + postgres.query.mockResolvedValue([]); + + await expect( + service.proxyPlayerPublish(MATCH_ID, player, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + // The same thing an expired token used to do on its own. + it("refuses once the match is over", async () => { + postgres.query.mockResolvedValueOnce([{ status: "Finished" }]); + + await expect( + service.proxyPlayerPublish(MATCH_ID, player, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + it("refuses a match id that is not a uuid without reaching postgres", async () => { + await expect( + service.proxyPlayerPublish("../../etc/passwd", player, "offer"), + ).rejects.toThrow(/not authorized/i); + expect(postgres.query).not.toHaveBeenCalled(); + }); + + it("gates the talk-back leg the same way", async () => { + postgres.query.mockResolvedValue([]); + + await expect( + service.getPlayerTalkStatus(MATCH_ID, player), + ).rejects.toThrow(/not authorized/i); + }); + }); + // `..` segments in a steam id resolve away the path prefix and reach a // different camera entirely once the URL is parsed. it.each([ diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index ada66d5a..3a111876 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -7,8 +7,7 @@ import { GameStreamerService } from "../game-streamer/game-streamer.service"; import { User } from "../../auth/types/User"; import { isRoleAbove } from "../../utilities/isRoleAbove"; -// A token is only meaningful while the match is actually being played, so a -// leaked link stops working on its own without needing an expiry column. +// A camera is only publishable while the match is actually being played. export const CAMERA_ACTIVE_MATCH_STATUSES = [ "WaitingForCheckIn", "Veto", @@ -24,11 +23,6 @@ const UUID_PATTERN = // path other than the one the caller was authorized for. const STEAM_ID_PATTERN = /^\d{17}$/; -export type CameraTokenLookup = { - matchId: string; - steamId: string; -}; - const NOT_AUTHORIZED = "not authorized to view cameras for this match"; // "all" is both lineups; "lineup" is a competitor seeing only their own side. @@ -49,6 +43,10 @@ export type CameraPlayerStatus = { // "stalled" is a path that is still up but has stopped delivering — it looks // identical to a working camera in the grid unless we say so. health: CameraHealth; + // Coaching this side rather than playing on it. An official watching the grid + // needs to tell them apart: the coach is the tile that matters during a + // technical timeout, and the one that never appears in the server. + coach: boolean; }; @Injectable() @@ -72,44 +70,6 @@ export class CameraService { return `camera-talk-${matchId}-${steamId}`; } - public async generateTokensIfRequired(matchId: string) { - const rows = await this.postgres.query< - Array<{ camera_required: boolean; steam_id: string | null }> - >( - `SELECT mo.camera_required, mlp.steam_id::text AS steam_id - FROM matches m - INNER JOIN match_options mo ON mo.id = m.match_options_id - LEFT JOIN match_lineup_players mlp - ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) - AND mlp.steam_id IS NOT NULL - WHERE m.id = $1`, - [matchId], - ); - - if (rows.length === 0 || !rows[0].camera_required) { - return; - } - - const steamIds = rows - .map((row) => row.steam_id) - .filter((steamId): steamId is string => Boolean(steamId)); - - if (steamIds.length === 0) { - this.logger.warn( - `[${matchId}] camera_required is on but the lineups are empty; not minting tokens`, - ); - return; - } - - // Idempotent: the Live edge can fire more than once for one match. - await this.postgres.query( - `INSERT INTO match_camera_tokens (match_id, steam_id) - SELECT $1, unnest($2::bigint[]) - ON CONFLICT (match_id, steam_id) DO NOTHING`, - [matchId, steamIds], - ); - } - // Whether this player's own camera is publishing right now. Used to gate // check-in, which happens before the monitor starts sampling. public async isPlayerLive(matchId: string, steamId: string) { @@ -132,36 +92,46 @@ export class CameraService { return row?.camera_required === true; } - public async revokeTokens(matchId: string) { - await this.postgres.query( - `DELETE FROM match_camera_tokens WHERE match_id = $1`, - [matchId], - ); - } - - public async validateToken(token: string): Promise { - // The column is a uuid, so anything else (a stray URL, someone probing the - // endpoint) would reach Postgres and fail as a 500 rather than a clean miss. - if (!token || !UUID_PATTERN.test(token)) { - return null; + // Who may publish a camera for this match: anyone actually in it, while it is + // still being played. + // + // This used to be a minted token handed to a phone over a QR code. It no + // longer is -- the phone signs in like anything else, so the session already + // says who it is, and a bearer credential for a device that can just log in + // was surface area for nothing. Coaches count: they stand behind the team + // during a technical timeout, so "on camera" has to mean them too. + public async assertCameraPlayer(matchId: string, user: User) { + if (!UUID_PATTERN.test(matchId)) { + throw new Error(NOT_AUTHORIZED); } - const [row] = await this.postgres.query< - Array<{ match_id: string; steam_id: string; status: string }> - >( - `SELECT t.match_id, t.steam_id::text AS steam_id, m.status - FROM match_camera_tokens t - INNER JOIN matches m ON m.id = t.match_id - WHERE t.token = $1 + const [row] = await this.postgres.query>( + `SELECT m.status + FROM matches m + WHERE m.id = $1 + AND ( + EXISTS ( + SELECT 1 + FROM match_lineup_players mlp + WHERE mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + AND mlp.steam_id = $2 + ) + OR EXISTS ( + SELECT 1 + FROM match_lineups ml + WHERE ml.id IN (m.lineup_1_id, m.lineup_2_id) + AND ml.coach_steam_id = $2 + ) + ) LIMIT 1`, - [token], + [matchId, user.steam_id], ); + // A finished match is not one you can still publish to, the same way an + // expired token used to stop working. if (!row || !CAMERA_ACTIVE_MATCH_STATUSES.includes(row.status)) { - return null; + throw new Error(NOT_AUTHORIZED); } - - return { matchId: row.match_id, steamId: row.steam_id }; } // Site admins, or an organizer of this specific match — deliberately not the @@ -181,12 +151,25 @@ export class CameraService { allow_teammates: boolean; }> >( + // "My side", not "my roster spot": a coach belongs to a lineup just as + // much as a player does, and now publishes a camera of their own. Reading + // only the roster here meant a coach who also organised the match was + // handed both lineups -- a live view of the team they are playing + // against, which is the exact advantage this rule exists to prevent. `SELECT mo.camera_allow_teammates AS allow_teammates, ( - SELECT mlp.match_lineup_id::text - FROM match_lineup_players mlp - WHERE mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) - AND mlp.steam_id = $2 + SELECT ml.id::text + FROM match_lineups ml + WHERE ml.id IN (m.lineup_1_id, m.lineup_2_id) + AND ( + ml.coach_steam_id = $2 + OR EXISTS ( + SELECT 1 + FROM match_lineup_players mlp + WHERE mlp.match_lineup_id = ml.id + AND mlp.steam_id = $2 + ) + ) LIMIT 1 ) AS my_lineup_id FROM matches m @@ -248,10 +231,21 @@ export class CameraService { return; } + // Same widening as watchScope: a lineup is its roster and its coach, so a + // teammate may watch their own coach's camera and nobody else's. const [row] = await this.postgres.query>( `SELECT true AS exists - FROM match_lineup_players - WHERE match_lineup_id = $1 AND steam_id = $2 + FROM match_lineups ml + WHERE ml.id = $1 + AND ( + ml.coach_steam_id = $2 + OR EXISTS ( + SELECT 1 + FROM match_lineup_players mlp + WHERE mlp.match_lineup_id = ml.id + AND mlp.steam_id = $2 + ) + ) LIMIT 1`, [scope.lineupId, steamId], ); @@ -307,26 +301,22 @@ export class CameraService { ); } - public async proxyPlayerPublish(token: string, sdp: string) { - const lookup = await this.requireToken(token); + public async proxyPlayerPublish(matchId: string, user: User, sdp: string) { + await this.assertCameraPlayer(matchId, user); return this.mediaMtx.proxySdp( - CameraService.pathForPlayer(lookup.matchId, lookup.steamId), + CameraService.pathForPlayer(matchId, user.steam_id), "whip", sdp, ); } - public async getPlayerStatus(token: string) { - const lookup = await this.validateToken(token); - - if (!lookup) { - return { ready: false }; - } + public async getPlayerStatus(matchId: string, user: User) { + await this.assertCameraPlayer(matchId, user); return { ready: await this.mediaMtx.isPathReady( - CameraService.pathForPlayer(lookup.matchId, lookup.steamId), + CameraService.pathForPlayer(matchId, user.steam_id), ), }; } @@ -361,26 +351,22 @@ export class CameraService { ); } - public async proxyPlayerTalk(token: string, sdp: string) { - const lookup = await this.requireToken(token); + public async proxyPlayerTalk(matchId: string, user: User, sdp: string) { + await this.assertCameraPlayer(matchId, user); return this.mediaMtx.proxySdp( - CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + CameraService.talkPathForPlayer(matchId, user.steam_id), "whep", sdp, ); } - public async getPlayerTalkStatus(token: string) { - const lookup = await this.validateToken(token); - - if (!lookup) { - return { ready: false }; - } + public async getPlayerTalkStatus(matchId: string, user: User) { + await this.assertCameraPlayer(matchId, user); return { ready: await this.mediaMtx.isPathReady( - CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + CameraService.talkPathForPlayer(matchId, user.steam_id), ), }; } @@ -403,15 +389,11 @@ export class CameraService { ); } - public async hangupPlayerTalk(token: string) { - const lookup = await this.validateToken(token); - - if (!lookup) { - return; - } + public async hangupPlayerTalk(matchId: string, user: User) { + await this.assertCameraPlayer(matchId, user); await this.mediaMtx.kickSessions( - CameraService.talkPathForPlayer(lookup.matchId, lookup.steamId), + CameraService.talkPathForPlayer(matchId, user.steam_id), ); } @@ -431,6 +413,11 @@ export class CameraService { id: true, name: true, team_id: true, + coach: { + steam_id: true, + name: true, + avatar_url: true, + }, team: { roster: { player_steam_id: true, @@ -449,6 +436,11 @@ export class CameraService { id: true, name: true, team_id: true, + coach: { + steam_id: true, + name: true, + avatar_url: true, + }, team: { roster: { player_steam_id: true, @@ -489,16 +481,6 @@ export class CameraService { return { lineups }; } - private async requireToken(token: string) { - const lookup = await this.validateToken(token); - - if (!lookup) { - throw new Error("invalid or expired camera link"); - } - - return lookup; - } - private lineupWithCameraStatus( matchId: string, lineup: { @@ -511,6 +493,11 @@ export class CameraService { roster_image_url?: string | null; }> | null; } | null; + coach?: { + steam_id: string; + name?: string | null; + avatar_url?: string | null; + } | null; lineup_players?: Array<{ steam_id: string; player?: { name?: string | null; avatar_url?: string | null } | null; @@ -532,30 +519,55 @@ export class CameraService { } } + // Same shape for a player and for the coach, so the grid does not need two + // code paths for what is one tile with one camera behind it. + const describe = ( + steamId: string, + name: string | null, + avatarUrl: string | null, + coach: boolean, + ) => { + const ready = + paths.get(CameraService.pathForPlayer(matchId, steamId))?.ready === true; + + return { + steamId, + name, + avatarUrl: rosterImages.get(String(steamId)) ?? avatarUrl ?? null, + lineupId: lineup.id, + ready, + coach, + // Fall back to the live path check when the monitor has no sample: + // it only runs for Live matches, and the grid opens during veto too. + health: health.get(String(steamId)) ?? (ready ? "live" : "down"), + } satisfies CameraPlayerStatus; + }; + return { id: lineup.id, name: lineup.name, - players: (lineup.lineup_players ?? []).map((lineupPlayer) => { - const ready = - paths.get(CameraService.pathForPlayer(matchId, lineupPlayer.steam_id)) - ?.ready === true; - - return { - steamId: lineupPlayer.steam_id, - name: lineupPlayer.player?.name ?? null, - avatarUrl: - rosterImages.get(String(lineupPlayer.steam_id)) ?? - lineupPlayer.player?.avatar_url ?? - null, - lineupId: lineup.id, - ready, - // Fall back to the live path check when the monitor has no sample: - // it only runs for Live matches, and the grid opens during veto too. - health: - health.get(String(lineupPlayer.steam_id)) ?? - (ready ? "live" : "down"), - } satisfies CameraPlayerStatus; - }), + // The coach goes last: the five players are what an official scans, and + // the coach is the one they look for deliberately. + players: [ + ...(lineup.lineup_players ?? []).map((lineupPlayer) => + describe( + lineupPlayer.steam_id, + lineupPlayer.player?.name ?? null, + lineupPlayer.player?.avatar_url ?? null, + false, + ), + ), + ...(lineup.coach + ? [ + describe( + lineup.coach.steam_id, + lineup.coach.name ?? null, + lineup.coach.avatar_url ?? null, + true, + ), + ] + : []), + ], }; } } diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index e950887e..9257f8cd 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -625,7 +625,6 @@ export class MatchesController { ) { await this.tournamentVoice.createMatchVoiceChannels(matchId); await this.tournamentVoice.movePlayersToMatchChannels(matchId); - await this.camera.generateTokensIfRequired(matchId); } if ( @@ -666,7 +665,6 @@ export class MatchesController { await this.removeDiscordIntegration(matchId); await this.matchmaking.cancelMatchMakingByMatchId(matchId); await this.releaseScrimScheduledNotifications(matchId); - await this.camera.revokeTokens(matchId); await this.cameraMonitor.clearMatch(matchId); await this.eloCalculationQueue.add(EloCalculation.name, { @@ -805,7 +803,6 @@ export class MatchesController { // Veto finishing is what flips a match Live (create_match_map_from_veto), // and that is the first point the lineups can no longer change. - await this.camera.generateTokensIfRequired(matchId); } await this.discordMatchOverview.updateMatchOverview(matchId); @@ -2741,7 +2738,6 @@ export class MatchesController { // mints tokens, and without one they can never check in. Idempotent, so // re-running it for the rest of the roster costs nothing. if (CAMERA_ACTIVE_MATCH_STATUSES.includes(match.status)) { - await this.camera.generateTokensIfRequired(match.id); } if (!["Live"].includes(match.status)) { diff --git a/src/mediamtx/mediamtx.controller.ts b/src/mediamtx/mediamtx.controller.ts new file mode 100644 index 00000000..abe70eff --- /dev/null +++ b/src/mediamtx/mediamtx.controller.ts @@ -0,0 +1,32 @@ +import { Controller, ForbiddenException, Get, Req } from "@nestjs/common"; +import { Request } from "express"; +import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { User } from "../auth/types/User"; +import { MediaMtxService } from "./mediamtx.service"; + +// What the media server is carrying right now. +// +// Every feature that touches WebRTC on this deployment -- game streams, player +// cameras, voice, video calls -- shares one MediaMTX instance and one muxed UDP +// port, so this is the only place the load across all of them is visible at +// once. Administrators only: the path names it reports on carry match ids and +// steam ids. +@Controller("mediamtx") +export class MediaMtxController { + constructor(private readonly mediaMtx: MediaMtxService) {} + + @Get("stats") + public async stats(@Req() request: Request) { + const user = request.user as User | undefined; + + if (!user || !isRoleAbove(user.role, "administrator")) { + throw new ForbiddenException("Administrators only"); + } + + const stats = await this.mediaMtx.stats(); + + // Null means MediaMTX did not answer, which the caller must be able to tell + // apart from an idle one -- an outage drawn as zeroes is worse than a gap. + return { reachable: stats !== null, stats }; + } +} diff --git a/src/mediamtx/mediamtx.module.ts b/src/mediamtx/mediamtx.module.ts index f18e1bed..1a74c37d 100644 --- a/src/mediamtx/mediamtx.module.ts +++ b/src/mediamtx/mediamtx.module.ts @@ -1,8 +1,10 @@ import { Module } from "@nestjs/common"; import { MediaMtxService } from "./mediamtx.service"; +import { MediaMtxController } from "./mediamtx.controller"; import { loggerFactory } from "../utilities/LoggerFactory"; @Module({ + controllers: [MediaMtxController], exports: [MediaMtxService], providers: [MediaMtxService, loggerFactory()], }) diff --git a/src/mediamtx/mediamtx.service.spec.ts b/src/mediamtx/mediamtx.service.spec.ts new file mode 100644 index 00000000..3694a4b1 --- /dev/null +++ b/src/mediamtx/mediamtx.service.spec.ts @@ -0,0 +1,129 @@ +import { Logger } from "@nestjs/common"; +import { MediaMtxService } from "./mediamtx.service"; + +describe("MediaMtxService", () => { + let service: MediaMtxService; + + beforeEach(() => { + service = new MediaMtxService(new Logger("MediaMtxTest")); + }); + + // The prefix is the only place the purpose of a path exists -- MediaMTX has + // no notion of what a path is for. + describe("kindForPath", () => { + it.each([ + ["voice-11111111-1111-1111-1111-111111111111-76561198000000001", "voice"], + [ + "voicecam-11111111-1111-1111-1111-111111111111-76561198000000001", + "videoCalls", + ], + [ + "camera-11111111-1111-1111-1111-111111111111-76561198000000001", + "playerCameras", + ], + [ + "camera-talk-11111111-1111-1111-1111-111111111111-76561198000000001", + "cameraTalkback", + ], + ["match-abc-stream", "gameStreams"], + ["anything-else", "gameStreams"], + ])("reads %s as %s", (path, expected) => { + expect(MediaMtxService.kindForPath(path)).toBe(expected); + }); + + // `camera-` is a prefix of `camera-talk-`, and `voice-` all but one + // character of `voicecam-`. Checked in the wrong order, talk-back counts as + // a player camera and every video call counts as voice -- which would make + // the busiest row on the admin view the wrong one. + it("does not let a prefix swallow the longer name it starts", () => { + expect(MediaMtxService.kindForPath("camera-talk-x-1")).not.toBe( + "playerCameras", + ); + expect(MediaMtxService.kindForPath("voicecam-x-1")).not.toBe("voice"); + }); + }); + + describe("stats", () => { + const paths = ( + entries: Array<[string, { ready: boolean; bytesReceived: number }]>, + ) => new Map(entries); + + it("counts paths and bytes into the kind each one belongs to", async () => { + jest.spyOn(service, "listPaths").mockResolvedValue( + paths([ + ["voice-a-1", { ready: true, bytesReceived: 100 }], + ["voice-a-2", { ready: false, bytesReceived: 0 }], + ["voicecam-a-1", { ready: true, bytesReceived: 900 }], + ["camera-m-1", { ready: true, bytesReceived: 50 }], + ["camera-talk-m-1", { ready: true, bytesReceived: 5 }], + ["some-game-stream", { ready: true, bytesReceived: 9000 }], + ]), + ); + jest + .spyOn(service as any, "listWebrtcSessions") + .mockResolvedValue(12); + + const stats = await service.stats(); + + expect(stats).not.toBeNull(); + expect(stats!.paths).toBe(6); + // A path can exist without a live publisher, so these differ on purpose. + expect(stats!.ready).toBe(5); + expect(stats!.webrtcSessions).toBe(12); + + expect(stats!.byKind.voice).toEqual({ + paths: 2, + ready: 1, + bytesReceived: 100, + }); + expect(stats!.byKind.videoCalls).toEqual({ + paths: 1, + ready: 1, + bytesReceived: 900, + }); + expect(stats!.byKind.playerCameras.paths).toBe(1); + expect(stats!.byKind.cameraTalkback.paths).toBe(1); + expect(stats!.byKind.gameStreams.bytesReceived).toBe(9000); + }); + + // An outage drawn as an idle server is worse than a gap: the admin view has + // to be able to say "unknown" rather than a zero it never measured. + it("returns null when mediamtx does not answer", async () => { + jest.spyOn(service, "listPaths").mockResolvedValue(null); + + await expect(service.stats()).resolves.toBeNull(); + }); + + // Paths answered, sessions did not. Everything else is still real, so the + // whole response must not be thrown away over the one field. + it("keeps the path numbers when only the session count is unavailable", async () => { + jest + .spyOn(service, "listPaths") + .mockResolvedValue(paths([["voice-a-1", { ready: true, bytesReceived: 1 }]])); + jest + .spyOn(service as any, "listWebrtcSessions") + .mockResolvedValue(null); + + const stats = await service.stats(); + + expect(stats!.paths).toBe(1); + expect(stats!.webrtcSessions).toBeNull(); + }); + + it("reports every kind even when nothing is publishing", async () => { + jest.spyOn(service, "listPaths").mockResolvedValue(paths([])); + jest.spyOn(service as any, "listWebrtcSessions").mockResolvedValue(0); + + const stats = await service.stats(); + + expect(Object.keys(stats!.byKind).sort()).toEqual([ + "cameraTalkback", + "gameStreams", + "playerCameras", + "videoCalls", + "voice", + ]); + expect(stats!.paths).toBe(0); + }); + }); +}); diff --git a/src/mediamtx/mediamtx.service.ts b/src/mediamtx/mediamtx.service.ts index 1b23da67..0e7e1c00 100644 --- a/src/mediamtx/mediamtx.service.ts +++ b/src/mediamtx/mediamtx.service.ts @@ -1,5 +1,29 @@ import { Injectable, Logger } from "@nestjs/common"; +// What a path is for, worked out from its prefix -- MediaMTX itself has no +// notion of this, and every feature on the box shares the one instance. +export type MediaMtxPathKind = + | "gameStreams" + | "playerCameras" + | "cameraTalkback" + | "voice" + | "videoCalls"; + +export type MediaMtxKindStats = { + paths: number; + // Actually publishing. A path can exist without a live publisher. + ready: number; + bytesReceived: number; +}; + +export type MediaMtxStats = { + paths: number; + ready: number; + // Null when MediaMTX answered for paths but not for sessions. + webrtcSessions: number | null; + byKind: Record; +}; + @Injectable() export class MediaMtxService { constructor(private readonly logger: Logger) {} @@ -26,6 +50,105 @@ export class MediaMtxService { ); } + // What the one media server is actually carrying, broken down by what each + // path is for. Every feature on the box shares a single MediaMTX instance and + // a single muxed UDP port, so "how loaded is it" is otherwise unanswerable + // without shelling into the pod. + // + // The kind comes from the path prefix, which is the only place that + // information exists -- MediaMTX has no notion of what a path is for. + public static kindForPath(path: string): MediaMtxPathKind { + if (path.startsWith("voicecam-")) { + return "videoCalls"; + } + + if (path.startsWith("voice-")) { + return "voice"; + } + + // Checked before `camera-`, which is its prefix. + if (path.startsWith("camera-talk-")) { + return "cameraTalkback"; + } + + if (path.startsWith("camera-")) { + return "playerCameras"; + } + + return "gameStreams"; + } + + public async stats(): Promise { + const [paths, sessions] = await Promise.all([ + this.listPaths(), + this.listWebrtcSessions(), + ]); + + // Null rather than zeroes: an unreachable MediaMTX must not be drawn as an + // idle one, which is the same distinction listPaths already makes. + if (!paths) { + return null; + } + + const empty = (): MediaMtxKindStats => ({ + paths: 0, + ready: 0, + bytesReceived: 0, + }); + + const byKind: Record = { + gameStreams: empty(), + playerCameras: empty(), + cameraTalkback: empty(), + voice: empty(), + videoCalls: empty(), + }; + + for (const [path, state] of paths) { + const kind = byKind[MediaMtxService.kindForPath(path)]; + + kind.paths += 1; + kind.bytesReceived += state.bytesReceived ?? 0; + + if (state.ready) { + kind.ready += 1; + } + } + + return { + paths: paths.size, + ready: [...paths.values()].filter((state) => state.ready).length, + // Null when MediaMTX answered for paths but not for sessions, so the UI + // can say "unknown" rather than draw a zero it did not measure. + webrtcSessions: sessions, + byKind, + }; + } + + private async listWebrtcSessions(): Promise { + try { + const response = await fetch(`${this.apiBase()}/v3/webrtcsessions/list`, { + signal: AbortSignal.timeout(5_000), + }); + + if (!response.ok) { + return null; + } + + const { itemCount, items } = (await response.json()) as { + itemCount?: number; + items?: Array; + }; + + return itemCount ?? items?.length ?? 0; + } catch (error) { + this.logger.warn( + `[mediamtx] listing webrtc sessions failed: ${(error as Error)?.message}`, + ); + return null; + } + } + public async proxySdp(path: string, action: "whip" | "whep", sdp: string) { let response: Response; diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index c3d060ed..f42939dd 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -17,6 +17,11 @@ export enum SystemSettingName { CameraRequiredDefault = "public.camera_required_default", CameraAllowTeammatesDefault = "public.camera_allow_teammates_default", VoiceChatEnabled = "public.voice_chat_enabled", + // Only the master switch is read here. Which surfaces offer a camera -- + // lobbies, matches -- is decided in the web app, exactly as the voice + // equivalents are: gating it here would mean asking which sort of channel an + // id belongs to, and assertMember is deliberately built not to care. + VideoChatEnabled = "public.video_chat_enabled", LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", diff --git a/src/voice/voice.controller.ts b/src/voice/voice.controller.ts index 4f071e02..3c437bb3 100644 --- a/src/voice/voice.controller.ts +++ b/src/voice/voice.controller.ts @@ -56,6 +56,32 @@ export class VoiceController { await this.sendSdp(response, () => this.voice.publish(lobbyId, user, sdp)); } + // Declared ahead of the `:steamId` routes below so a literal `cam` segment is + // never a candidate steam id. + @Post(":lobbyId/cam/whip") + public async publishVideo( + @Param("lobbyId") lobbyId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.voice.publishVideo(lobbyId, user, sdp), + ); + } + + @Post(":lobbyId/cam/stop") + public async stopVideo( + @Param("lobbyId") lobbyId: string, + @Req() request: Request, + ) { + await this.voice.stopVideo(lobbyId, this.requireUser(request)); + + return { ok: true }; + } + @Post(":lobbyId/:steamId/whep") public async subscribe( @Param("lobbyId") lobbyId: string, @@ -71,6 +97,35 @@ export class VoiceController { ); } + @Post(":lobbyId/:steamId/cam/whep") + public async subscribeVideo( + @Param("lobbyId") lobbyId: string, + @Param("steamId") steamId: string, + @Req() request: Request, + @Res() response: Response, + ) { + const user = this.requireUser(request); + const sdp = await this.readRawBody(request); + + await this.sendSdp(response, () => + this.voice.subscribeVideo(lobbyId, steamId, user, sdp), + ); + } + + // Where this player already is, across every window and device -- the tab + // bridge only ever sees tabs of the same browser profile. + @Get("active") + public async active(@Req() request: Request) { + return this.voice.activeChannel(this.requireUser(request)); + } + + // Not scoped to a channel: the same relay serves every call, and a client + // needs this before it has picked one. + @Get("ice-servers") + public async iceServers(@Req() request: Request) { + return this.voice.iceServers(this.requireUser(request)); + } + @Get(":lobbyId/participants") public async participants( @Param("lobbyId") lobbyId: string, diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts index 4f715e56..ebfc69d0 100644 --- a/src/voice/voice.service.spec.ts +++ b/src/voice/voice.service.spec.ts @@ -1,4 +1,5 @@ import { Logger } from "@nestjs/common"; +import { createHmac } from "crypto"; import { VoiceService } from "./voice.service"; import { User } from "../auth/types/User"; @@ -167,6 +168,8 @@ describe("VoiceService", () => { avatarUrl: null, connected: false, speaking: false, + coach: false, + video: false, }, { steamId: PEER, @@ -174,6 +177,8 @@ describe("VoiceService", () => { avatarUrl: null, connected: true, speaking: false, + coach: false, + video: false, }, ]); }); @@ -377,6 +382,77 @@ describe("VoiceService", () => { expect(sql).toMatch(/Canceled/); }); + // A coach is not a match_lineup_players row -- they never publish a camera + // and are not on the roster -- but talking to the side they are coaching is + // the job, so membership asks the lineup rather than only its roster. + it("asks the lineup rather than only its roster, so a coach counts", async () => { + rostered(); + + await service.publish(LINEUP_ID, ME, "offer"); + + const [sql] = postgres.query.mock.calls[2]; + expect(sql).toMatch(/FROM match_lineups/); + expect(sql).toMatch(/coach_steam_id/); + }); + + it("admits the lineup's coach", async () => { + const COACH = { steam_id: "76561198000000009" } as User; + + postgres.query + .mockResolvedValueOnce(enabled(true)) + // Not in any lobby... + .mockResolvedValueOnce([]) + // ...but the lineup matched them on coach_steam_id. + .mockResolvedValueOnce([{ exists: true }]); + + await expect(service.publish(LINEUP_ID, COACH, "offer")).resolves.toBe( + "answer-sdp", + ); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voice-${LINEUP_ID}-${COACH.steam_id}`, + "whip", + "offer", + ); + }); + + // Admitting the coach without listing them would let them in and then never + // tell them anything: `push` addresses this list, so the speaking and + // participant events would go to everyone except the coach. + it("counts the coach as a channel member so pushes reach them", async () => { + const COACH = "76561198000000009"; + + rostered(); + postgres.query.mockResolvedValueOnce([ + { steam_id: ME.steam_id, name: "me", avatar_url: null }, + { steam_id: COACH, name: "coach", avatar_url: null }, + ]); + + const participants = await service.participants(LINEUP_ID, ME); + + const [membersSql] = postgres.query.mock.calls[3]; + expect(membersSql).toMatch(/coach_steam_id/); + expect(participants.map((p) => p.steamId)).toContain(COACH); + }); + + // The roster on screen should not make you work out which of the voices is + // the one not playing. + it("marks the coach so the roster can say so", async () => { + const COACH = "76561198000000009"; + + rostered(); + postgres.query.mockResolvedValueOnce([ + { steam_id: ME.steam_id, name: "me", avatar_url: null, coach: false }, + { steam_id: COACH, name: "coach", avatar_url: null, coach: true }, + ]); + + const participants = await service.participants(LINEUP_ID, ME); + + expect(participants.find((p) => p.steamId === COACH)?.coach).toBe(true); + expect(participants.find((p) => p.steamId === ME.steam_id)?.coach).toBe( + false, + ); + }); + it("lists lineup members as participants", async () => { rostered(); postgres.query.mockResolvedValueOnce([ @@ -467,6 +543,64 @@ describe("VoiceService", () => { expect(pushed()).toHaveLength(0); }); + // The reason the snapshot tracks cameras and not just steam ids: turning a + // camera off while staying on mic leaves the set of ids identical, so a + // snapshot of ids alone reports no change and every other member keeps + // rendering a tile that stopped publishing. + it("announces a camera going off even though the same people are on mic", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}:v`); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [path(ME.steam_id), { ready: true, bytesReceived: 1 }], + [path(PEER), { ready: true, bytesReceived: 1 }], + ]), + ); + + await service.monitorChannels(); + + expect(pushed()).not.toHaveLength(0); + }); + + it("announces a camera coming on", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}`); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [path(ME.steam_id), { ready: true, bytesReceived: 1 }], + [path(PEER), { ready: true, bytesReceived: 1 }], + [ + `voicecam-${LOBBY_ID}-${PEER}`, + { ready: true, bytesReceived: 1 }, + ], + ]), + ); + + await service.monitorChannels(); + + expect(pushed()).not.toHaveLength(0); + }); + + // A member who never turns a camera on has to serialise exactly as it did + // before video existed, or the deploy that adds this reads every live + // channel as changed and pushes to all of them at once. + it("writes a mic-only member the same way it always did", async () => { + roster(); + snapshot(null); + mediaMtx.listPaths.mockResolvedValue( + new Map([[path(ME.steam_id), { ready: true, bytesReceived: 1 }]]), + ); + + await service.monitorChannels(); + + expect(redis.set).toHaveBeenCalledWith( + `voice:publishing:${LOBBY_ID}`, + ME.steam_id, + "EX", + expect.any(Number), + ); + }); + // A restart must not announce a change to every live channel at once. it("seeds a channel it has not seen before without announcing", async () => { roster(); @@ -528,4 +662,318 @@ describe("VoiceService", () => { expect(pushed()).toHaveLength(0); }); }); + + // Video rides a second path per member rather than a second track on the + // audio one, so a camera going on or off never renegotiates the microphone. + describe("video", () => { + // Membership is settled first, then the camera switch on top of it. + const videoAccepted = () => + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([{ value: "true" }]); + + it("publishes a camera to its own path, not the microphone's", async () => { + videoAccepted(); + + await expect( + service.publishVideo(LOBBY_ID, ME, "offer"), + ).resolves.toBe("answer-sdp"); + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${ME.steam_id}`, + "whip", + "offer", + ); + }); + + it("subscribes to a peer's camera path", async () => { + videoAccepted(); + + await service.subscribeVideo(LOBBY_ID, PEER, ME, "offer"); + + expect(mediaMtx.proxySdp).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${PEER}`, + "whep", + "offer", + ); + }); + + it("refuses subscribing to your own camera", async () => { + videoAccepted(); + + await expect( + service.subscribeVideo(LOBBY_ID, ME.steam_id, ME, "offer"), + ).rejects.toThrow(/your own/i); + }); + + // Same default as voice: on unless an operator said otherwise. + it("is enabled when no setting row exists", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([]); + + await expect(service.publishVideo(LOBBY_ID, ME, "offer")).resolves.toBe( + "answer-sdp", + ); + }); + + it("refuses once an operator turns video off", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([{ value: "false" }]); + + await expect( + service.publishVideo(LOBBY_ID, ME, "offer"), + ).rejects.toThrow(/not enabled/i); + expect(mediaMtx.proxySdp).not.toHaveBeenCalled(); + }); + + it("refuses video while voice itself is off", async () => { + postgres.query.mockResolvedValue(enabled(false)); + + await expect( + service.publishVideo(LOBBY_ID, ME, "offer"), + ).rejects.toThrow(/not enabled/i); + }); + + // A camera that outlived its microphone would keep playing for everyone + // still in the call, long after the member had gone. + it("drops the camera as well as the microphone on leave", async () => { + accepted(); + + await service.leave(LOBBY_ID, ME); + + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${ME.steam_id}`, + ); + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${ME.steam_id}`, + ); + }); + + it("stops only the camera, leaving the microphone published", async () => { + accepted(); + + await service.stopVideo(LOBBY_ID, ME); + + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${ME.steam_id}`, + ); + expect(mediaMtx.kickSessions).not.toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${ME.steam_id}`, + ); + }); + + // Turning the feature off platform-wide must not strand a camera whose + // owner can no longer reach the endpoint that stops it. + it("still stops a camera after video is disabled platform-wide", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]); + + await expect(service.stopVideo(LOBBY_ID, ME)).resolves.toBeUndefined(); + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${ME.steam_id}`, + ); + }); + + it("flags a member who is publishing a camera", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([ + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [`voice-${LOBBY_ID}-${PEER}`, { ready: true }], + [`voicecam-${LOBBY_ID}-${PEER}`, { ready: true }], + ]), + ); + + const [participant] = await service.participants(LOBBY_ID, ME); + + expect(participant.connected).toBe(true); + expect(participant.video).toBe(true); + }); + + // Being in the call and being on camera are separate choices. + it("reports video off for a member who is only on the microphone", async () => { + postgres.query + .mockResolvedValueOnce(enabled(true)) + .mockResolvedValueOnce([{ status: "Accepted" }]) + .mockResolvedValueOnce([ + { steam_id: PEER, name: "peer", avatar_url: null }, + ]); + mediaMtx.listPaths.mockResolvedValue( + new Map([[`voice-${LOBBY_ID}-${PEER}`, { ready: true }]]), + ); + + const [participant] = await service.participants(LOBBY_ID, ME); + + expect(participant.connected).toBe(true); + expect(participant.video).toBe(false); + }); + + // The two prefixes must never be read as each other, or a camera path + // would register its owner as publishing a microphone they never opened. + it("does not confuse a camera path for a microphone path", () => { + const camPath = `voicecam-${LOBBY_ID}-${PEER}`; + const micPath = `voice-${LOBBY_ID}-${PEER}`; + + expect(VoiceService.parseMemberPath(camPath)).toBeNull(); + expect(VoiceService.parseCameraPath(micPath)).toBeNull(); + expect(VoiceService.parseCameraPath(camPath)).toEqual({ + channelId: LOBBY_ID, + steamId: PEER, + }); + }); + }); + + describe("ice servers", () => { + const ORIGINAL = { ...process.env }; + + afterEach(() => { + process.env = { ...ORIGINAL }; + }); + + // The normal case for a small install: STUN is enough for most players, and + // no relay configured is not an error. + it("hands out STUN alone when no relay is configured", () => { + delete process.env.TURN_DOMAIN; + delete process.env.TURN_SECRET; + + const { iceServers, ttl } = service.iceServers(ME); + + expect(iceServers).toHaveLength(1); + expect(iceServers[0].urls).toMatch(/^stun:/); + expect(ttl).toBe(0); + }); + + it("does not offer a relay when only half of it is configured", () => { + process.env.TURN_DOMAIN = "turn.example.com"; + delete process.env.TURN_SECRET; + + expect(service.iceServers(ME).iceServers).toHaveLength(1); + }); + + it("mints a credential the relay can verify without storing anything", () => { + process.env.TURN_DOMAIN = "turn.example.com"; + process.env.TURN_SECRET = "shhh"; + + const { iceServers, ttl } = service.iceServers(ME); + const relay = iceServers[1]; + + expect(ttl).toBeGreaterThan(0); + expect(relay.urls).toEqual([ + "turn:turn.example.com:3478?transport=udp", + "turn:turn.example.com:3478?transport=tcp", + ]); + + // coturn splits the username on ":" and reads the first half as the + // expiry, so the shape is load bearing rather than cosmetic. + const [expiresAt, steamId] = (relay.username as string).split(":"); + expect(steamId).toBe(ME.steam_id); + expect(Number(expiresAt)).toBeGreaterThan(Math.floor(Date.now() / 1000)); + + // The password is exactly what coturn recomputes from the username and + // the shared secret -- if this drifts, every credential is rejected. + const expected = createHmac("sha1", "shhh") + .update(relay.username as string) + .digest("base64"); + expect(relay.credential).toBe(expected); + }); + + // The secret is the one thing that must never reach a browser. + it("never returns the shared secret itself", () => { + process.env.TURN_DOMAIN = "turn.example.com"; + process.env.TURN_SECRET = "shhh"; + + expect(JSON.stringify(service.iceServers(ME))).not.toContain("shhh"); + }); + + // Two players must not be handed the same credential: the username carries + // the steam id so a relay session can be attributed to somebody. + it("mints a distinct credential per player", () => { + process.env.TURN_DOMAIN = "turn.example.com"; + process.env.TURN_SECRET = "shhh"; + + const mine = service.iceServers(ME).iceServers[1]; + const theirs = service.iceServers({ steam_id: PEER } as User) + .iceServers[1]; + + expect(mine.username).not.toBe(theirs.username); + expect(mine.credential).not.toBe(theirs.credential); + }); + }); + + + // The tab bridge only reaches tabs of one browser profile. A second window + // under another profile, another browser, or a phone has to be able to find + // out from the server that the player is already in a call. + describe("active channel", () => { + it("finds the channel this player is publishing to", async () => { + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [`voice-${LOBBY_ID}-${ME.steam_id}`, { ready: true }], + [`voice-${LOBBY_ID}-${PEER}`, { ready: true }], + ]), + ); + + await expect(service.activeChannel(ME)).resolves.toEqual({ + known: true, + channelId: LOBBY_ID, + video: false, + }); + }); + + it("reports whether the camera is on there too", async () => { + mediaMtx.listPaths.mockResolvedValue( + new Map([ + [`voice-${LOBBY_ID}-${ME.steam_id}`, { ready: true }], + [`voicecam-${LOBBY_ID}-${ME.steam_id}`, { ready: true }], + ]), + ); + + await expect(service.activeChannel(ME)).resolves.toMatchObject({ + video: true, + }); + }); + + // Somebody else being in a call is not this player being in one. + it("ignores other people's paths", async () => { + mediaMtx.listPaths.mockResolvedValue( + new Map([[`voice-${LOBBY_ID}-${PEER}`, { ready: true }]]), + ); + + await expect(service.activeChannel(ME)).resolves.toMatchObject({ + channelId: null, + }); + }); + + // A path that exists but has no publisher is not a call in progress. + it("ignores a path that is not publishing", async () => { + mediaMtx.listPaths.mockResolvedValue( + new Map([[`voice-${LOBBY_ID}-${ME.steam_id}`, { ready: false }]]), + ); + + await expect(service.activeChannel(ME)).resolves.toMatchObject({ + channelId: null, + }); + }); + + // Unreachable must not read as "not in a call", or the client draws a join + // button for a call that is still running. + it("says it does not know when mediamtx is unreachable", async () => { + mediaMtx.listPaths.mockResolvedValue(null); + + await expect(service.activeChannel(ME)).resolves.toEqual({ + known: false, + channelId: null, + video: false, + }); + }); + }); }); diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts index bd73bd49..5bb1d6fe 100644 --- a/src/voice/voice.service.ts +++ b/src/voice/voice.service.ts @@ -1,4 +1,5 @@ import { Injectable, Logger } from "@nestjs/common"; +import { createHmac } from "crypto"; import { Redis } from "ioredis"; import { PostgresService } from "../postgres/postgres.service"; import { MediaMtxService } from "../mediamtx/mediamtx.service"; @@ -32,6 +33,27 @@ const PUBLISHING_TTL_SECONDS = 120; const MEMBER_PATH_PATTERN = /^voice-([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})-(\d+)$/i; +// A member's camera rides a path of its own rather than a second track on the +// one above. Turning a camera on or off would otherwise renegotiate the audio +// publish and force every other member to re-subscribe -- a drop-out in the +// middle of a call, for a change that has nothing to do with the microphone. +// The prefix cannot be confused for the audio one: MEMBER_PATH_PATTERN anchors +// on `voice-` immediately followed by the uuid. +const CAMERA_PATH_PATTERN = + /^voicecam-([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})-(\d+)$/i; + +// Long enough to cover a match without a client ever having to re-ask +// mid-connection, short enough that a leaked pair is not worth much. The +// credential is only checked when a peer connection is established, so an +// expiry part-way through a call does not interrupt one already running. +const TURN_CREDENTIAL_TTL = 6 * 60 * 60; + +export type RTCIceServerConfig = { + urls: string | Array; + username?: string; + credential?: string; +}; + export type VoiceParticipant = { steamId: string; name: string | null; @@ -44,12 +66,21 @@ export type VoiceParticipant = { // which is the only thing that knows: MediaMTX sees a continuous stream // whether or not anyone is talking into it. speaking: boolean; + // Coaching this lineup rather than playing on it. Worth saying: a coach in a + // team channel is a different thing to a teammate, and the roster on screen + // should not make you work out which of the five voices is not playing. + coach: boolean; + // Publishing a camera as well. Independent of `connected` on purpose: being in + // the call and being on camera are separate choices, and either can be true + // without the other. + video: boolean; }; type VoiceMember = { steam_id: string; name: string | null; avatar_url: string | null; + coach: boolean; }; @Injectable() @@ -71,6 +102,10 @@ export class VoiceService { return `voice-${lobbyId}-${steamId}`; } + public static pathForMemberCamera(lobbyId: string, steamId: string) { + return `voicecam-${lobbyId}-${steamId}`; + } + private static speakingKey(channelId: string, steamId: string) { return `voice:speaking:${channelId}:${steamId}`; } @@ -90,6 +125,12 @@ export class VoiceService { return match ? { channelId: match[1], steamId: match[2] } : null; } + public static parseCameraPath(path: string) { + const match = CAMERA_PATH_PATTERN.exec(path); + + return match ? { channelId: match[1], steamId: match[2] } : null; + } + // Read straight from the settings table rather than through SystemService, // which would drag its whole module graph (chat, k8s, s3, queues) into this // feature for the sake of one row. On by default — only an explicit "false" @@ -103,6 +144,88 @@ export class VoiceService { return row?.value !== "false"; } + // ICE servers for a voice or video peer connection. + // + // Deliberately an endpoint rather than a constant in the web bundle: the TURN + // secret never leaves this process, credentials expire on their own, and a + // relay can be switched on or off without shipping a web build. + // + // Handed only to the call surfaces. The regional matchmaking probes must keep + // their own STUN-only list -- they open a data channel per region and time it, + // so a relay candidate would measure the hop to the relay instead of the + // region -- and so must game streams, where relaying is a bandwidth disaster. + public iceServers(user: User) { + return VoiceService.buildIceServers(user.steam_id); + } + + // Static, and keyed on a steam id rather than a User, so the camera feature + // can mint the same credentials for a phone holding a join token. That phone + // has no session -- and is the case a relay exists for, since a mobile network + // is behind carrier-grade NAT by definition. + public static buildIceServers(steamId: string): { + iceServers: Array; + ttl: number; + } { + const stun: RTCIceServerConfig = { + urls: "stun:stun.l.google.com:19302", + }; + + const domain = process.env.TURN_DOMAIN; + const secret = process.env.TURN_SECRET; + + // No relay configured is the normal case for a small install, not an error: + // STUN alone is enough for most players. + if (!domain || !secret) { + return { iceServers: [stun], ttl: 0 }; + } + + // coturn's REST scheme: the username carries its own expiry, and the + // password is an HMAC of it. Nothing has to be stored on either side, and a + // leaked pair stops working on its own. + const expiresAt = Math.floor(Date.now() / 1000) + TURN_CREDENTIAL_TTL; + const username = `${expiresAt}:${steamId}`; + const credential = createHmac("sha1", secret) + .update(username) + .digest("base64"); + + return { + iceServers: [ + stun, + { + // TCP as well as UDP: the networks that need a relay at all are + // usually the ones blocking UDP outright. + urls: [ + `turn:${domain}:3478?transport=udp`, + `turn:${domain}:3478?transport=tcp`, + ], + username, + credential, + }, + ], + ttl: TURN_CREDENTIAL_TTL, + }; + } + + // On unless explicitly disabled, like voice. Only the camera switch -- whether + // voice itself is on is assertMember's business, and asking twice is a second + // settings round trip per negotiation. + public async isVideoEnabled() { + const [row] = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = $1 LIMIT 1`, + [SystemSettingName.VideoChatEnabled], + ); + + return row?.value !== "false"; + } + + private async assertVideoMember(channelId: string, user: User) { + await this.assertMember(channelId, user); + + if (!(await this.isVideoEnabled())) { + throw new Error("video chat is not enabled"); + } + } + // A channel id is either a lobby id or a match lineup id. Both are uuids and // neither can collide, so match voice reuses the whole lobby transport rather // than duplicating it — the only thing that differs is who counts as a member. @@ -128,15 +251,26 @@ export class VoiceService { return; } + // Rostered on the lineup, or coaching it. A coach is not a + // match_lineup_players row, but talking to the side they are coaching is + // the whole job -- so membership is asked of the lineup, not of its roster. const [lineup] = await this.postgres.query>( `SELECT true AS exists - FROM match_lineup_players mlp + FROM match_lineups ml INNER JOIN matches m - ON m.lineup_1_id = mlp.match_lineup_id - OR m.lineup_2_id = mlp.match_lineup_id - WHERE mlp.match_lineup_id = $1 - AND mlp.steam_id = $2 + ON m.lineup_1_id = ml.id + OR m.lineup_2_id = ml.id + WHERE ml.id = $1 AND m.status NOT IN ('Finished', 'Canceled', 'Forfeit', 'Surrendered', 'Tie') + AND ( + ml.coach_steam_id = $2 + OR EXISTS ( + SELECT 1 + FROM match_lineup_players mlp + WHERE mlp.match_lineup_id = ml.id + AND mlp.steam_id = $2 + ) + ) LIMIT 1`, [channelId, user.steam_id], ); @@ -148,11 +282,58 @@ export class VoiceService { throw new Error(NOT_A_MEMBER); } + // Which channel this player already has a live microphone on, if any. + // + // The web app mirrors a running call between tabs over a BroadcastChannel, + // which only ever reaches tabs of the same browser profile -- a second window + // signed in under a different profile, another browser, or a phone sees + // nothing and cheerfully offers to join a call the player is already in. + // MediaMTX knows the truth for all of them, so this asks it. + public async activeChannel(user: User) { + const paths = await this.mediaMtx.listPaths(); + + // Unreachable is not the same as "not in a call": answering null here would + // have the client draw a join button for a call that is still running. + if (!paths) { + return { known: false, channelId: null, video: false }; + } + + for (const [path, state] of paths) { + if (!state?.ready) { + continue; + } + + const member = VoiceService.parseMemberPath(path); + + if (member?.steamId !== user.steam_id) { + continue; + } + + return { + known: true, + channelId: member.channelId, + video: + paths.get( + VoiceService.pathForMemberCamera(member.channelId, member.steamId), + )?.ready === true, + }; + } + + return { known: true, channelId: null, video: false }; + } + public async publish(lobbyId: string, user: User, sdp: string) { await this.assertMember(lobbyId, user); + return this.publishAs(lobbyId, user.steam_id, sdp); + } + + // Keyed on a steam id rather than a User so the token paths can reuse it -- + // a phone joining is the same publish, it just proved who it was differently. + // Callers do the authorising; this only does the work. + private async publishAs(lobbyId: string, steamId: string, sdp: string) { const answer = await this.mediaMtx.proxySdp( - VoiceService.pathForMember(lobbyId, user.steam_id), + VoiceService.pathForMember(lobbyId, steamId), "whip", sdp, ); @@ -160,21 +341,33 @@ export class VoiceService { // Somebody joining is a change to the party, and it is the one moment a // stale membership cache would hide the new arrival from everyone else. await this.redis.del(VoiceService.membersKey(lobbyId)); - // Deferred: MediaMTX only reports the path as ready once the session is - // actually up, which is after this answer gets back to the publisher. - setTimeout(() => { - void this.pushParticipants(lobbyId).catch((error: unknown) => { - this.logger.warn( - `failed to push voice participants for ${lobbyId}: ${ - (error as Error)?.message - }`, - ); - }); - }, 1000); + this.pushParticipantsSoon(lobbyId); return answer; } + // Deferred: MediaMTX only reports the path as ready once the session is + // actually up, which is after the answer gets back to the publisher. + // + // Twice, because that moment cannot be predicted, only bracketed. A single + // one-second wait was tuned to always be late enough, which made every camera + // coming on cost a second before anyone else saw it. The early push usually + // lands and the late one is a no-op -- pushParticipants only emits when the + // roster actually changed, so the extra call is free when the first won. + private pushParticipantsSoon(lobbyId: string) { + for (const delay of [250, 1200]) { + setTimeout(() => { + void this.pushParticipants(lobbyId).catch((error: unknown) => { + this.logger.warn( + `failed to push voice participants for ${lobbyId}: ${ + (error as Error)?.message + }`, + ); + }); + }, delay); + } + } + public async subscribe( lobbyId: string, steamId: string, @@ -200,11 +393,69 @@ export class VoiceService { await this.mediaMtx.kickSessions( VoiceService.pathForMember(lobbyId, user.steam_id), ); + // A camera outlives its microphone otherwise: the member is gone from the + // call but their tile keeps playing for everyone still in it. + await this.mediaMtx.kickSessions( + VoiceService.pathForMemberCamera(lobbyId, user.steam_id), + ); await this.redis.del(VoiceService.speakingKey(lobbyId, user.steam_id)); await this.pushParticipants(lobbyId); } + // The camera half of publish/subscribe/leave above. Same membership gate, same + // proxy, a different path -- see CAMERA_PATH_PATTERN for why it is not simply + // a second track on the audio one. + public async publishVideo(lobbyId: string, user: User, sdp: string) { + await this.assertVideoMember(lobbyId, user); + + return this.publishVideoAs(lobbyId, user.steam_id, sdp); + } + + private async publishVideoAs(lobbyId: string, steamId: string, sdp: string) { + const answer = await this.mediaMtx.proxySdp( + VoiceService.pathForMemberCamera(lobbyId, steamId), + "whip", + sdp, + ); + + this.pushParticipantsSoon(lobbyId); + + return answer; + } + + public async subscribeVideo( + lobbyId: string, + steamId: string, + user: User, + sdp: string, + ) { + await this.assertVideoMember(lobbyId, user); + + if (steamId === user.steam_id) { + throw new Error("cannot subscribe to your own camera"); + } + + return this.mediaMtx.proxySdp( + VoiceService.pathForMemberCamera(lobbyId, steamId), + "whep", + sdp, + ); + } + + // Turning a camera off, without leaving the call. Deliberately gated on + // membership alone rather than assertVideoMember: switching the feature off + // platform-wide must not strand a camera nobody can now stop publishing. + public async stopVideo(lobbyId: string, user: User) { + await this.assertMember(lobbyId, user); + + await this.mediaMtx.kickSessions( + VoiceService.pathForMemberCamera(lobbyId, user.steam_id), + ); + + await this.pushParticipants(lobbyId); + } + // Everyone in the channel: who is in the call, and who is talking right now. public async participants( channelId: string, @@ -231,22 +482,39 @@ export class VoiceService { // Union rather than a branch on channel kind: a given id only ever matches // one of the two tables, so this stays a single round trip and the caller // never has to say which sort of channel it is asking about. + // Grouped rather than plain UNION: someone who is both rostered and listed + // as the coach would otherwise arrive as two rows that differ only in the + // flag, and be counted twice in their own channel. const members = await this.postgres.query>( - `SELECT steam_id::text AS steam_id, name, avatar_url + `SELECT steam_id::text AS steam_id, + MAX(name) AS name, + MAX(avatar_url) AS avatar_url, + bool_or(coach) AS coach FROM ( - SELECT lp.steam_id, p.name, p.avatar_url + SELECT lp.steam_id, p.name, p.avatar_url, false AS coach FROM lobby_players lp LEFT JOIN players p ON p.steam_id = lp.steam_id WHERE lp.lobby_id = $1 AND lp.status = 'Accepted' - UNION + UNION ALL - SELECT mlp.steam_id, p.name, p.avatar_url + SELECT mlp.steam_id, p.name, p.avatar_url, false AS coach FROM match_lineup_players mlp LEFT JOIN players p ON p.steam_id = mlp.steam_id WHERE mlp.match_lineup_id = $1 + + UNION ALL + + -- The coach is in the channel too, and this list is what decides who + -- gets the speaking and participant pushes -- leaving them out would + -- admit them and then never tell them anything. + SELECT ml.coach_steam_id AS steam_id, p.name, p.avatar_url, true AS coach + FROM match_lineups ml + LEFT JOIN players p ON p.steam_id = ml.coach_steam_id + WHERE ml.id = $1 AND ml.coach_steam_id IS NOT NULL ) members - ORDER BY name`, + GROUP BY steam_id + ORDER BY MAX(name)`, [channelId], ); @@ -286,6 +554,11 @@ export class VoiceService { ); const connected = path?.ready === true; + // Read out of the map already in hand rather than asked for separately -- + // the monitor lists every path on the box once for all channels. + const camera = paths?.get( + VoiceService.pathForMemberCamera(channelId, member.steam_id), + ); return { steamId: member.steam_id, @@ -297,6 +570,8 @@ export class VoiceService { // A flag left behind by a client that dropped would keep someone lit up // forever, so it only counts while they are still publishing. speaking: connected && speaking[index] !== null, + coach: member.coach === true, + video: camera?.ready === true, } satisfies VoiceParticipant; }); } @@ -379,7 +654,21 @@ export class VoiceService { return; } - const publishing = new Map>(); + // Cameras are tracked alongside microphones, not instead of them: a member + // who turns their camera off while staying on mic does not change the set of + // steam ids, so a snapshot of ids alone would report no change and leave + // everyone else rendering a tile that stopped publishing. + const publishing = new Map>(); + + function entryFor(channelId: string, steamId: string) { + const channel = publishing.get(channelId) ?? new Map(); + publishing.set(channelId, channel); + + const entry = channel.get(steamId) ?? { video: false }; + channel.set(steamId, entry); + + return entry; + } for (const [path, state] of paths) { if (!state?.ready) { @@ -388,17 +677,27 @@ export class VoiceService { const member = VoiceService.parseMemberPath(path); - if (!member) { + if (member) { + entryFor(member.channelId, member.steamId); continue; } - const channel = publishing.get(member.channelId) ?? []; - channel.push(member.steamId); - publishing.set(member.channelId, channel); + const camera = VoiceService.parseCameraPath(path); + + if (camera) { + entryFor(camera.channelId, camera.steamId).video = true; + } } - for (const [channelId, steamIds] of publishing) { - const snapshot = steamIds.sort().join(","); + for (const [channelId, members] of publishing) { + // A member on mic alone is written exactly as before, so the snapshots a + // running deployment already holds stay comparable across the deploy that + // adds video -- otherwise every live channel reads as changed once and + // pushes to everyone at the same moment. + const snapshot = [...members.entries()] + .map(([steamId, entry]) => (entry.video ? `${steamId}:v` : steamId)) + .sort() + .join(","); const key = VoiceService.publishingKey(channelId); const previous = await this.redis.get(key); diff --git a/test/camera.spec.ts b/test/camera.spec.ts index 1ed0eba9..e9277955 100644 --- a/test/camera.spec.ts +++ b/test/camera.spec.ts @@ -1,6 +1,7 @@ import { Logger } from "@nestjs/common"; import { PostgresService } from "./../src/postgres/postgres.service"; import { CameraService } from "./../src/matches/camera/camera.service"; +import { User } from "./../src/auth/types/User"; import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, @@ -8,9 +9,15 @@ import { SqlTestDb, } from "./utils/sql-test-db"; -// Runs CameraService's real SQL (minting, revoking, token lookup) against a -// migrated database, so the queries are covered rather than re-typed here. -describe("camera tokens (SQL-driven)", () => { +// Who may publish a camera for a match, run as real SQL against a migrated +// database so the query is covered rather than re-typed here. +// +// This used to exercise minting, revoking and looking up match_camera_tokens. +// That table is gone: the camera page is behind the ordinary login now, so +// there is no unauthenticated device to hand a bearer credential to, and the +// question the token was standing in for -- "are you in this match, while it is +// still being played" -- is asked directly. +describe("camera authorization (SQL-driven)", () => { let db: SqlTestDb; let postgres: PostgresService; let fx: Fixtures; @@ -41,113 +48,104 @@ describe("camera tokens (SQL-driven)", () => { await postgres.query("DELETE FROM players"); }); - const rosteredMatch = async (cameraRequired: boolean) => { + const asUser = (steamId: string) => ({ steam_id: steamId }) as User; + + const rosteredMatch = async (status = "Live") => { const { poolId } = await fx.mapPool(1); const match = await fx.match({ mapPoolId: poolId }); - await postgres.query( - "UPDATE match_options SET camera_required = $1 WHERE id = $2", - [cameraRequired, match.options_id], - ); - - const steamIds = [ - await fx.lineupPlayer(match.lineup_1_id), + const players = [ await fx.lineupPlayer(match.lineup_1_id), await fx.lineupPlayer(match.lineup_2_id), ]; - return { matchId: match.id, steamIds }; - }; - - const tokensFor = (matchId: string) => - postgres.query>( - "SELECT steam_id::text AS steam_id, token::text AS token FROM match_camera_tokens WHERE match_id = $1 ORDER BY steam_id", - [matchId], - ); - - it("mints one token per rostered player when camera_required is on", async () => { - const { matchId, steamIds } = await rosteredMatch(true); - - await camera.generateTokensIfRequired(matchId); - - const tokens = await tokensFor(matchId); - expect(tokens.map((row) => row.steam_id).sort()).toEqual( - [...steamIds].sort(), + const coach = await fx.player(); + await postgres.query( + "UPDATE match_lineups SET coach_steam_id = $1 WHERE id = $2", + [coach, match.lineup_1_id], ); - expect(new Set(tokens.map((row) => row.token)).size).toBe(steamIds.length); - }); - - it("mints nothing when camera_required is off", async () => { - const { matchId } = await rosteredMatch(false); - - await camera.generateTokensIfRequired(matchId); - - expect(await tokensFor(matchId)).toHaveLength(0); - }); - // The Live edge can fire more than once for a single match. - it("is idempotent and keeps the token a player already has", async () => { - const { matchId } = await rosteredMatch(true); + await postgres.query("UPDATE matches SET status = $1 WHERE id = $2", [ + status, + match.id, + ]); - await camera.generateTokensIfRequired(matchId); - const first = await tokensFor(matchId); + return { matchId: match.id, players, coach }; + }; - await camera.generateTokensIfRequired(matchId); - const second = await tokensFor(matchId); + it("admits a player rostered on either lineup", async () => { + const { matchId, players } = await rosteredMatch(); - expect(second).toEqual(first); + for (const steamId of players) { + await expect( + camera.assertCameraPlayer(matchId, asUser(steamId)), + ).resolves.toBeUndefined(); + } }); - it("resolves a token to its match and player only while the match is active", async () => { - const { matchId } = await rosteredMatch(true); - await camera.generateTokensIfRequired(matchId); - const [{ steam_id: steamId, token }] = await tokensFor(matchId); - - await postgres.query("UPDATE matches SET status = 'Live' WHERE id = $1", [ - matchId, - ]); - expect(await camera.validateToken(token)).toEqual({ matchId, steamId }); + // A coach stands behind the team during a technical timeout, so "on camera" + // has to mean them as well. + it("admits the lineup's coach", async () => { + const { matchId, coach } = await rosteredMatch(); - await postgres.query( - "UPDATE matches SET status = 'Canceled' WHERE id = $1", - [matchId], - ); - expect(await camera.validateToken(token)).toBeNull(); + await expect( + camera.assertCameraPlayer(matchId, asUser(coach)), + ).resolves.toBeUndefined(); }); - it("rejects a token that is not a uuid without reaching the database", async () => { - const failing = { - query: jest.fn(), - } as unknown as PostgresService; - const guard = new CameraService( - new Logger("CameraTest"), - {} as any, - failing, - {} as any, - {} as any, - {} as any, - ); + it("refuses somebody who is not in the match at all", async () => { + const { matchId } = await rosteredMatch(); + const stranger = await fx.player(); - expect(await guard.validateToken("../../etc/passwd")).toBeNull(); - expect(await guard.validateToken("")).toBeNull(); - expect(failing.query).not.toHaveBeenCalled(); + await expect( + camera.assertCameraPlayer(matchId, asUser(stranger)), + ).rejects.toThrow(/not authorized/i); }); - it("revokes every token for a match", async () => { - const { matchId } = await rosteredMatch(true); - await camera.generateTokensIfRequired(matchId); - - await camera.revokeTokens(matchId); + // Being rostered somewhere is not being rostered here. + it("refuses a player rostered on a different match", async () => { + const { matchId } = await rosteredMatch(); + const other = await rosteredMatch(); - expect(await tokensFor(matchId)).toHaveLength(0); + await expect( + camera.assertCameraPlayer(matchId, asUser(other.players[0])), + ).rejects.toThrow(/not authorized/i); }); - it("drops tokens with the match", async () => { - const { matchId } = await rosteredMatch(true); - await camera.generateTokensIfRequired(matchId); - - await postgres.query("DELETE FROM matches WHERE id = $1", [matchId]); - - expect(await tokensFor(matchId)).toHaveLength(0); + // What a token's match-status check used to do on its own. + it.each(["Finished", "Canceled", "Forfeit"])( + "refuses once the match is %s", + async (status) => { + const { matchId, players } = await rosteredMatch(status); + + await expect( + camera.assertCameraPlayer(matchId, asUser(players[0])), + ).rejects.toThrow(/not authorized/i); + }, + ); + + it.each(["WaitingForCheckIn", "Veto", "Live", "WaitingForServer"])( + "admits while the match is %s", + async (status) => { + const { matchId, players } = await rosteredMatch(status); + + await expect( + camera.assertCameraPlayer(matchId, asUser(players[0])), + ).resolves.toBeUndefined(); + }, + ); + + // The id is interpolated into a query as a uuid, so anything else has to be + // turned away before it gets there. + it("rejects a match id that is not a uuid without reaching the database", async () => { + const spy = jest.spyOn(postgres, "query"); + spy.mockClear(); + + await expect( + camera.assertCameraPlayer("../../etc/passwd", asUser("76561198000000001")), + ).rejects.toThrow(/not authorized/i); + expect(spy).not.toHaveBeenCalled(); + + spy.mockRestore(); }); }); From 18df553bff3c571ca057c0442a0407637a4baa7e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 14:48:49 -0400 Subject: [PATCH 15/17] wip --- .../default/tables/public_notifications.yaml | 50 ++++++---- .../down.sql | 3 - .../up.sql | 24 ----- .../down.sql | 5 + .../up.sql | 42 ++++++++- package.json | 3 +- src/chat/chat.service.ts | 59 ++++++++---- src/main.ts | 4 + .../camera/camera-monitor.service.spec.ts | 5 +- src/matches/camera/camera-monitor.service.ts | 8 +- src/matches/camera/camera.controller.ts | 30 +++--- src/matches/camera/camera.service.ts | 5 +- src/matches/matches.controller.ts | 49 +++++----- src/matches/matches.module.ts | 4 +- src/mediamtx/mediamtx.service.ts | 19 +++- src/notifications/notifications.service.ts | 42 +++++++-- .../push/push-notifications.service.spec.ts | 61 +++++++++++- .../push/push-notifications.service.ts | 93 +++++++++++++++++-- .../utilities/notificationUrl.ts | 15 ++- src/voice/voice.controller.ts | 28 +++--- src/voice/voice.service.spec.ts | 73 +++++++++++++-- src/voice/voice.service.ts | 79 +++++++++++++--- test/notifications.spec.ts | 56 ++++++++++- 23 files changed, 582 insertions(+), 175 deletions(-) delete mode 100644 hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql delete mode 100644 hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql rename hasura/migrations/default/{1877000000000_web_push_notifications => 1877000002000_notifications}/down.sql (58%) rename hasura/migrations/default/{1877000000000_web_push_notifications => 1877000002000_notifications}/up.sql (64%) diff --git a/hasura/metadata/databases/default/tables/public_notifications.yaml b/hasura/metadata/databases/default/tables/public_notifications.yaml index 367de4c0..e8edc770 100644 --- a/hasura/metadata/databases/default/tables/public_notifications.yaml +++ b/hasura/metadata/databases/default/tables/public_notifications.yaml @@ -33,11 +33,14 @@ select_permissions: - title - type filter: - _or: - - steam_id: - _eq: X-Hasura-User-Id - - role: - _eq: administrator + _and: + - _or: + - steam_id: + _eq: X-Hasura-User-Id + - role: + _eq: administrator + - in_app: + _eq: true comment: "" - role: match_organizer permission: @@ -55,11 +58,14 @@ select_permissions: - title - type filter: - _or: - - steam_id: - _eq: X-Hasura-User-Id - - role: - _eq: match_organizer + _and: + - _or: + - steam_id: + _eq: X-Hasura-User-Id + - role: + _eq: match_organizer + - in_app: + _eq: true comment: "" - role: tournament_organizer permission: @@ -77,13 +83,16 @@ select_permissions: - title - type filter: - _or: - - steam_id: - _eq: X-Hasura-User-Id - - role: - _in: - - match_organizer - - tournament_organizer + _and: + - _or: + - steam_id: + _eq: X-Hasura-User-Id + - role: + _in: + - match_organizer + - tournament_organizer + - in_app: + _eq: true comment: "" - role: user permission: @@ -101,8 +110,11 @@ select_permissions: - title - type filter: - steam_id: - _eq: X-Hasura-User-Id + _and: + - steam_id: + _eq: X-Hasura-User-Id + - in_app: + _eq: true comment: "" update_permissions: - role: administrator diff --git a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql deleted file mode 100644 index 1ceab576..00000000 --- a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/down.sql +++ /dev/null @@ -1,3 +0,0 @@ --- One-way: the sweep cannot distinguish rows it retracted from rows retracted --- by the application, and un-deleting both would resurrect the backlog. -SELECT 1; diff --git a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql b/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql deleted file mode 100644 index 114149f2..00000000 --- a/hasura/migrations/default/1877000000500_resolve_stale_match_alerts/up.sql +++ /dev/null @@ -1,24 +0,0 @@ --- One-off sweep of the alerts that accumulated before they were retracted on --- resume/finish/cancel (see NotificationsService.resolveMatchAlerts). --- --- "Map is paused" and "waiting for a server" describe a condition, so any of --- them still outstanding against a match that has since stopped is describing --- nothing. Live matches are deliberately left alone -- their alerts may still --- be true. -UPDATE public.notifications n - SET deleted_at = now() - FROM public.matches m - WHERE n.type = 'MatchStatusChange' - AND n.deleted_at IS NULL - AND m.id::text = n.entity_id - AND m.status IN ('Canceled', 'Finished', 'Forfeit', 'Tie', 'Surrendered'); - --- Alerts whose match no longer exists at all can never be resolved by an event, --- so they would otherwise sit in the bell forever. -UPDATE public.notifications n - SET deleted_at = now() - WHERE n.type = 'MatchStatusChange' - AND n.deleted_at IS NULL - AND NOT EXISTS ( - SELECT 1 FROM public.matches m WHERE m.id::text = n.entity_id - ); diff --git a/hasura/migrations/default/1877000000000_web_push_notifications/down.sql b/hasura/migrations/default/1877000002000_notifications/down.sql similarity index 58% rename from hasura/migrations/default/1877000000000_web_push_notifications/down.sql rename to hasura/migrations/default/1877000002000_notifications/down.sql index 741b5ae7..699d475c 100644 --- a/hasura/migrations/default/1877000000000_web_push_notifications/down.sql +++ b/hasura/migrations/default/1877000002000_notifications/down.sql @@ -1,3 +1,6 @@ +-- The stale-alert sweep at the end of up.sql is one-way: it cannot distinguish +-- rows it retracted from rows retracted by the application, and un-deleting +-- both would resurrect the backlog. Everything else reverses. ALTER TABLE "public"."players" DROP COLUMN IF EXISTS "notification_timezone", DROP COLUMN IF EXISTS "quiet_hours_end", @@ -6,5 +9,7 @@ ALTER TABLE "public"."players" DROP INDEX IF EXISTS "public"."notifications_unread_steam_id_idx"; DROP INDEX IF EXISTS "public"."notifications_type_entity_id_idx"; +ALTER TABLE "public"."notifications" DROP COLUMN IF EXISTS "in_app"; + DROP TABLE IF EXISTS "public"."notification_preferences"; DROP TABLE IF EXISTS "public"."push_subscriptions"; diff --git a/hasura/migrations/default/1877000000000_web_push_notifications/up.sql b/hasura/migrations/default/1877000002000_notifications/up.sql similarity index 64% rename from hasura/migrations/default/1877000000000_web_push_notifications/up.sql rename to hasura/migrations/default/1877000002000_notifications/up.sql index fd458980..2c1329e7 100644 --- a/hasura/migrations/default/1877000000000_web_push_notifications/up.sql +++ b/hasura/migrations/default/1877000002000_notifications/up.sql @@ -1,4 +1,10 @@ --- Web push notifications, whole. +-- Notifications, whole: web push delivery, per-channel preferences, quiet +-- hours, and the indexes the bell reads through. +-- +-- Every statement here is idempotent, and has to stay that way. This started +-- life as 1877000000000 plus two follow-ups; squashing them meant stacks that +-- had already applied the first would never see the rest, so the version was +-- bumped to re-run the lot over whatever they already have. -- -- One row per browser/device push subscription. A single steam_id can have -- several rows (phone + desktop), and every matching one gets sent to. @@ -52,6 +58,15 @@ CREATE TABLE IF NOT EXISTS "public"."notification_preferences" ( CHECK ("channel" IN ('push', 'in_app')) ); +-- Push is delivered by the INSERT event trigger on `notifications`, so dropping +-- a recipient who muted the type in the bell would silence their push as well -- +-- even though push carries its own, separate preference. Every recipient who +-- can receive one or the other gets a row, and this column is what keeps the +-- muted ones out of the bell. The select_permissions filter on it; nothing +-- reads it client side. +ALTER TABLE "public"."notifications" + ADD COLUMN IF NOT EXISTS "in_app" boolean NOT NULL DEFAULT true; + -- notifications had no index beyond its primary key. Three separate features -- dedupe by (type, entity_id) via NOT EXISTS -- LeagueWeekReminders, -- TournamentReminders, and the ChatMessage bell collapse -- and the bell reads @@ -70,3 +85,28 @@ ALTER TABLE "public"."players" ADD COLUMN IF NOT EXISTS "quiet_hours_start" time, ADD COLUMN IF NOT EXISTS "quiet_hours_end" time, ADD COLUMN IF NOT EXISTS "notification_timezone" text; + +-- One-off sweep of the alerts that accumulated before they were retracted on +-- resume/finish/cancel (see NotificationsService.resolveMatchAlerts). +-- +-- "Map is paused" and "waiting for a server" describe a condition, so any of +-- them still outstanding against a match that has since stopped is describing +-- nothing. Live matches are deliberately left alone -- their alerts may still +-- be true. +UPDATE public.notifications n + SET deleted_at = now() + FROM public.matches m + WHERE n.type = 'MatchStatusChange' + AND n.deleted_at IS NULL + AND m.id::text = n.entity_id + AND m.status IN ('Canceled', 'Finished', 'Forfeit', 'Tie', 'Surrendered'); + +-- Alerts whose match no longer exists at all can never be resolved by an event, +-- so they would otherwise sit in the bell forever. +UPDATE public.notifications n + SET deleted_at = now() + WHERE n.type = 'MatchStatusChange' + AND n.deleted_at IS NULL + AND NOT EXISTS ( + SELECT 1 FROM public.matches m WHERE m.id::text = n.entity_id + ); diff --git a/package.json b/package.json index 1a521a08..7400a11f 100644 --- a/package.json +++ b/package.json @@ -151,5 +151,6 @@ "transformIgnorePatterns": [ "node_modules/(?!(@kubernetes|uuid))" ] - } + }, + "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" } diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 8da1aa55..b7d8676d 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -803,47 +803,66 @@ export class ChatService { ChatService.DIRECT_READ_KEY(user.steam_id), ); - const conversations = []; + // One round trip for every room rather than one each: a player with a + // hundred threads was paying a hundred sequential awaits on page load. + const pipeline = this.redis.pipeline(); for (const roomId of roomIds) { + pipeline.hgetall(`chat_${ChatLobbyType.Direct}_${roomId}`); + } + + const stored = await pipeline.exec(); + const conversations = []; + + for (const [index, roomId] of roomIds.entries()) { const parties = parseDirectRoomId(roomId); if (!parties) { continue; } + const [, hash] = stored?.[index] ?? []; + const raw = Object.values((hash as Record) ?? {}); + + if (raw.length === 0) { + continue; + } + const peerSteamId = parties.find( (party) => party !== String(user.steam_id), ); + const readAt = readState[roomId] ? new Date(readState[roomId]) : null; - const messages = Object.values( - await this.redis.hgetall(`chat_${ChatLobbyType.Direct}_${roomId}`), - ).map((value) => JSON.parse(value)); + let unread = 0; + let peer: { steam_id: string } | undefined; + // ISO strings, so the newest is also the largest. + let lastMessageAt: string | undefined; - if (messages.length === 0) { - continue; - } + for (const value of raw) { + const message = JSON.parse(value); + const from = String(message.from?.steam_id); - const readAt = readState[roomId] ? new Date(readState[roomId]) : null; + if (!peer && from === peerSteamId) { + peer = message.from; + } - const unread = messages.filter( - (message) => - String(message.from?.steam_id) !== String(user.steam_id) && - (!readAt || new Date(message.timestamp) > readAt), - ).length; + if ( + from !== String(user.steam_id) && + (!readAt || new Date(message.timestamp) > readAt) + ) { + unread++; + } - const peer = messages.find( - (message) => String(message.from?.steam_id) === peerSteamId, - )?.from; + if (!lastMessageAt || message.timestamp > lastMessageAt) { + lastMessageAt = message.timestamp; + } + } conversations.push({ roomId, unread, peer: peer ?? { steam_id: peerSteamId }, - lastMessageAt: messages - .map((message) => message.timestamp) - .sort() - .pop(), + lastMessageAt, }); } diff --git a/src/main.ts b/src/main.ts index 64e52593..73413f47 100644 --- a/src/main.ts +++ b/src/main.ts @@ -42,6 +42,10 @@ async function bootstrap() { app.useBodyParser("json", { limit: "50mb" }); app.useBodyParser("urlencoded", { limit: "50mb", extended: true }); + // WHIP/WHEP offers. Parsing them here rather than draining the stream inside + // the handler is what makes a request that arrives under some other content + // type a 400 instead of a socket waiting on an `end` that already fired. + app.useBodyParser("text", { type: "application/sdp", limit: "256kb" }); if (process.env.RUN_MIGRATIONS || process.env.DEV) { const hasura = app.get(HasuraService); diff --git a/src/matches/camera/camera-monitor.service.spec.ts b/src/matches/camera/camera-monitor.service.spec.ts index e3350162..020c4d38 100644 --- a/src/matches/camera/camera-monitor.service.spec.ts +++ b/src/matches/camera/camera-monitor.service.spec.ts @@ -126,8 +126,9 @@ describe("CameraMonitorService", () => { await service.monitorLiveMatches(1000 + 60_000); expect(rcon.connect).not.toHaveBeenCalled(); - // Nothing sampled either: an absent coach leaves no trace to age out of. - expect(redis.hset).toHaveBeenCalledWith(`camera:samples:${MATCH_ID}`, {}); + // Nothing sampled either: an absent coach leaves no trace to age out of, + // and redis rejects an hset with no fields. + expect(redis.hset).not.toHaveBeenCalled(); }); it("starts watching a coach once their camera appears", async () => { diff --git a/src/matches/camera/camera-monitor.service.ts b/src/matches/camera/camera-monitor.service.ts index c585a927..e498c20c 100644 --- a/src/matches/camera/camera-monitor.service.ts +++ b/src/matches/camera/camera-monitor.service.ts @@ -199,8 +199,12 @@ export class CameraMonitorService { }); } - await this.redis.hset(samplesKey, nextSamples); - await this.redis.expire(samplesKey, 3600); + // hset errors on an empty payload, and an empty pass is ordinary: a match + // flips Live with nobody connected yet and an assigned coach not on camera. + if (Object.keys(nextSamples).length > 0) { + await this.redis.hset(samplesKey, nextSamples); + await this.redis.expire(samplesKey, 3600); + } await this.reportToServer(matchId, serverId, monitored); } diff --git a/src/matches/camera/camera.controller.ts b/src/matches/camera/camera.controller.ts index 53f1c1fd..dc20edf1 100644 --- a/src/matches/camera/camera.controller.ts +++ b/src/matches/camera/camera.controller.ts @@ -1,4 +1,5 @@ import { + BadRequestException, Controller, ForbiddenException, Get, @@ -19,15 +20,16 @@ export class CameraController { private readonly monitor: CameraMonitorService, ) {} - // WHIP/WHEP bodies are `application/sdp`, a content type neither of the - // parsers registered in main.ts claims, so the stream is still unread here. - private readRawBody(request: Request): Promise { - return new Promise((resolve, reject) => { - const chunks: Array = []; - request.on("data", (chunk) => chunks.push(chunk)); - request.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); - request.on("error", reject); - }); + // WHIP/WHEP bodies are `application/sdp`, parsed by the text parser + // registered in main.ts. + private readSdp(request: Request): string { + const sdp = request.body; + + if (typeof sdp !== "string" || !sdp) { + throw new BadRequestException("expected an application/sdp body"); + } + + return sdp; } private requireUser(request: Request) { @@ -59,7 +61,7 @@ export class CameraController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.camera.proxyPlayerPublish(matchId, user, sdp), @@ -81,7 +83,7 @@ export class CameraController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.camera.proxyPlayerTalk(matchId, user, sdp), @@ -115,7 +117,7 @@ export class CameraController { @Res() response: Response, ) { const originAuth = request.headers["x-origin-auth"]; - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.camera.proxyBroadcastWatch(matchId, steamId, originAuth, sdp), @@ -144,7 +146,7 @@ export class CameraController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.camera.proxyAdminWatch(matchId, steamId, user, sdp), @@ -159,7 +161,7 @@ export class CameraController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.camera.proxyAdminTalk(matchId, steamId, user, sdp), diff --git a/src/matches/camera/camera.service.ts b/src/matches/camera/camera.service.ts index 3a111876..0ad603f4 100644 --- a/src/matches/camera/camera.service.ts +++ b/src/matches/camera/camera.service.ts @@ -72,8 +72,11 @@ export class CameraService { // Whether this player's own camera is publishing right now. Used to gate // check-in, which happens before the monitor starts sampling. + // + // `null` when MediaMTX could not answer, so the gate can fail open rather + // than lock out a player whose camera is fine. public async isPlayerLive(matchId: string, steamId: string) { - return this.mediaMtx.isPathReady( + return this.mediaMtx.pathReadyState( CameraService.pathForPlayer(matchId, steamId), ); } diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index 9257f8cd..2ff4d4ae 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -46,10 +46,7 @@ import { GameStreamerService } from "./game-streamer/game-streamer.service"; import { isRoleAbove } from "../utilities/isRoleAbove"; import { DemoMetadataService } from "../demos/demo-metadata.service"; import { ClipsService } from "./clips/clips.service"; -import { - CAMERA_ACTIVE_MATCH_STATUSES, - CameraService, -} from "./camera/camera.service"; +import { CameraService } from "./camera/camera.service"; import { CameraMonitorService } from "./camera/camera-monitor.service"; import { ClipSpec } from "./clips/types/ClipSpec"; @@ -793,16 +790,15 @@ export class MatchesController { } } - if (status === "Live" && data.old.status !== "Live") { - if (match.server?.game_server_node_id) { - await this.maybePauseRendersForServerNode( - matchId, - String(match.server.game_server_node_id), - ); - } - - // Veto finishing is what flips a match Live (create_match_map_from_veto), - // and that is the first point the lineups can no longer change. + if ( + status === "Live" && + data.old.status !== "Live" && + match.server?.game_server_node_id + ) { + await this.maybePauseRendersForServerNode( + matchId, + String(match.server.game_server_node_id), + ); } await this.discordMatchOverview.updateMatchOverview(matchId); @@ -2139,11 +2135,20 @@ export class MatchesController { // Checking in is the commitment to play, so it is the right gate: letting // it through and only enforcing at Live means a player reaches the server // unwatched and the match pauses on them instead. - if ( - (await this.camera.isRequired(data.match_id)) && - !(await this.camera.isPlayerLive(data.match_id, data.user.steam_id)) - ) { - throw Error("connect your camera before checking in"); + // + // Only a definite "not publishing" blocks. MediaMTX being unreachable + // answers `null`, and turning our own outage into a check-in nobody can + // complete is worse than admitting a player whose camera the live monitor + // will catch anyway -- the same trade the monitor itself makes. + if (await this.camera.isRequired(data.match_id)) { + const live = await this.camera.isPlayerLive( + data.match_id, + data.user.steam_id, + ); + + if (live === false) { + throw Error("connect your camera before checking in"); + } } const { update_match_lineup_players } = await this.hasura.mutation({ @@ -2734,12 +2739,6 @@ export class MatchesController { ); } - // A substitute added after check-in opened missed the status edge that - // mints tokens, and without one they can never check in. Idempotent, so - // re-running it for the rest of the roster costs nothing. - if (CAMERA_ACTIVE_MATCH_STATUSES.includes(match.status)) { - } - if (!["Live"].includes(match.status)) { return; } diff --git a/src/matches/matches.module.ts b/src/matches/matches.module.ts index cff9d15f..47f8f981 100644 --- a/src/matches/matches.module.ts +++ b/src/matches/matches.module.ts @@ -246,8 +246,6 @@ export class MatchesModule implements NestModule { }, ); - // More often than the league reminder above, because the 2h window is far - // tighter than its 48h one. // Hourly: both windows here are days wide, unlike the tournament 2h one. void scheduleMatchQueue.add( EventReminders.name, @@ -259,6 +257,8 @@ export class MatchesModule implements NestModule { }, ); + // More often than the reminders above, because the 2h window is far + // tighter than their day-wide ones. void scheduleMatchQueue.add( TournamentReminders.name, {}, diff --git a/src/mediamtx/mediamtx.service.ts b/src/mediamtx/mediamtx.service.ts index 0e7e1c00..bf94753c 100644 --- a/src/mediamtx/mediamtx.service.ts +++ b/src/mediamtx/mediamtx.service.ts @@ -227,7 +227,10 @@ export class MediaMtxService { } } - public async isPathReady(path: string) { + // `null` means MediaMTX could not be asked, which is not the same answer as + // "nothing is publishing". A caller that blocks on a feed being live has to + // be able to tell our own outage apart from a camera that never connected. + public async pathReadyState(path: string): Promise { try { const response = await fetch( `${this.apiBase()}/v3/paths/get/${this.encodePath(path)}`, @@ -236,10 +239,16 @@ export class MediaMtxService { }, ); - if (!response.ok) { + // The one non-ok status that is an answer rather than a failure: no such + // path is exactly what a path with no publisher looks like. + if (response.status === 404) { return false; } + if (!response.ok) { + return null; + } + const { ready } = (await response.json()) as { ready?: boolean }; return ready === true; @@ -247,10 +256,14 @@ export class MediaMtxService { this.logger.warn( `[mediamtx] status check for ${path} failed: ${(error as Error)?.message}`, ); - return false; + return null; } } + public async isPathReady(path: string) { + return (await this.pathReadyState(path)) === true; + } + // Dropping the publisher is what actually ends a session for everyone // attached to the path — there is no per-viewer teardown to coordinate. public async kickSessions(path: string) { diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts index 31a3a390..28641841 100644 --- a/src/notifications/notifications.service.ts +++ b/src/notifications/notifications.service.ts @@ -401,12 +401,28 @@ export class NotificationsService { }>, color?: number, ) { - // Filtered before the insert rather than at read time: the bell reads + // Resolved before the insert rather than at read time: the bell reads // `notifications` straight through Hasura, and "hide rows whose type the - // viewer muted" isn't expressible as a select_permission. - const steamIds = await this.preferences.filterInAppRecipients( - type, - Array.from(new Set(notification.steamIds)), + // viewer muted" isn't expressible as a select_permission, so `in_app` + // carries the answer on the row itself. + // + // A muted recipient still gets a row if they can be pushed to. Push is + // delivered by the INSERT trigger on this table and has a preference of its + // own, so skipping the row entirely would silence a channel they never + // turned off. Recipients with no subscription at all are skipped -- their + // row could only ever be dead weight. + const recipients = Array.from(new Set(notification.steamIds)); + const inApp = new Set( + await this.preferences.filterInAppRecipients(type, recipients), + ); + const pushable = new Set( + await this.pushNotifications.filterSubscribed( + recipients.filter((steamId) => !inApp.has(steamId)), + ), + ); + + const steamIds = recipients.filter( + (steamId) => inApp.has(steamId) || pushable.has(steamId), ); if (steamIds.length > 0) { @@ -421,6 +437,7 @@ export class NotificationsService { steam_id, entity_id: notification.entity_id, actions, + in_app: inApp.has(steam_id), ...(notification.deletable === false ? { deletable: false } : {}), @@ -528,8 +545,9 @@ export class NotificationsService { // `role: 'user'` broadcast with a null steam_id is visible to nobody. // // Written as one INSERT..SELECT because the recipient list is the whole - // players table, and the in-app preference filter is inlined for the same - // reason. + // players table, and the in-app preference is resolved inline for the same + // reason. See notifyPlayers for why a player who muted the bell still gets a + // row when they have somewhere to be pushed. async notifyActivePlayers( type: e_notification_types_enum, notification: { @@ -541,15 +559,19 @@ export class NotificationsService { const key = inAppKeyForType(type); const inserted = await this.postgres.query>( - `INSERT INTO public.notifications (type, title, message, role, steam_id, entity_id) - SELECT $1, $2, $3, 'user', p.steam_id, $4 + `INSERT INTO public.notifications (type, title, message, role, steam_id, entity_id, in_app) + SELECT $1, $2, $3, 'user', p.steam_id, $4, + COALESCE(np.enabled, $7::boolean) FROM public.players p LEFT JOIN public.notification_preferences np ON np.steam_id = p.steam_id AND np.channel = 'in_app' AND np.key = $5 WHERE p.last_sign_in_at >= now() - $6::interval - AND COALESCE(np.enabled, $7::boolean) = true + AND (COALESCE(np.enabled, $7::boolean) = true + OR EXISTS (SELECT 1 + FROM public.push_subscriptions ps + WHERE ps.steam_id = p.steam_id)) RETURNING id::text AS id`, [ type, diff --git a/src/notifications/push/push-notifications.service.spec.ts b/src/notifications/push/push-notifications.service.spec.ts index 00732764..87fcfd41 100644 --- a/src/notifications/push/push-notifications.service.spec.ts +++ b/src/notifications/push/push-notifications.service.spec.ts @@ -34,6 +34,9 @@ describe("PushNotificationsService", () => { }; const redis = { exists: jest.fn().mockResolvedValue(0), + subscribe: jest.fn().mockResolvedValue(1), + publish: jest.fn().mockResolvedValue(1), + on: jest.fn(), pipeline: jest.fn(() => ({ set: jest.fn(), exec: jest.fn().mockResolvedValue([]), @@ -56,6 +59,7 @@ describe("PushNotificationsService", () => { let service: PushNotificationsService; let notificationRow: Record | undefined; + let settings: Record; let subscriptions: Array>; let updates: Array<{ sql: string; bindings: any[] }>; @@ -78,6 +82,7 @@ describe("PushNotificationsService", () => { notificationRow = notification(); subscriptions = [subscription("sub-1")]; updates = []; + settings = {}; postgres.query.mockImplementation(async (sql: string, bindings: any[]) => { if (sql.includes("FROM public.notifications\n")) { @@ -86,6 +91,30 @@ describe("PushNotificationsService", () => { if (sql.includes("push_subscriptions ps")) { return subscriptions; } + if (sql.includes("INSERT INTO public.settings")) { + updates.push({ sql, bindings }); + + for (let i = 0; i < bindings.length; i += 2) { + // DO NOTHING is the bootstrap write: whoever got there first keeps it. + if ( + sql.includes("DO NOTHING") && + settings[bindings[i]] !== undefined + ) { + continue; + } + + settings[bindings[i]] = bindings[i + 1]; + } + + return []; + } + if (sql.includes("FROM public.settings")) { + const wanted = Array.isArray(bindings[0]) ? bindings[0] : [bindings[0]]; + + return wanted + .filter((name: string) => settings[name] !== undefined) + .map((name: string) => ({ name, value: settings[name] })); + } updates.push({ sql, bindings }); return []; }); @@ -227,11 +256,41 @@ describe("PushNotificationsService", () => { updates.some( ({ sql, bindings }) => sql.includes("INSERT INTO public.settings") && - bindings[0] === "web_push_private_key", + bindings.includes("web_push_private_key") && + bindings.includes("generated-private"), ), ).toBe(true); }); + // Two pods booting into an install with no keys both generate one. If the + // second overwrote the first, they would sign with different private keys + // and every subscription taken out against the loser's public key would be + // rejected 403 until that pod restarted. + it("adopts the keypair another pod stored first", async () => { + withoutEnvKeys(); + (webPush.generateVAPIDKeys as jest.Mock).mockReturnValue({ + publicKey: "first-public", + privateKey: "first-private", + }); + + const first = await build(); + + (webPush.generateVAPIDKeys as jest.Mock).mockReturnValue({ + publicKey: "second-public", + privateKey: "second-private", + }); + + const second = await build(); + + expect(first.getPublicKey()).toBe("first-public"); + expect(second.getPublicKey()).toBe("first-public"); + expect(webPush.setVapidDetails).toHaveBeenLastCalledWith( + "https://example.com", + "first-public", + "first-private", + ); + }); + it("stays inert when a keypair cannot be produced", async () => { withoutEnvKeys(); (webPush.generateVAPIDKeys as jest.Mock).mockImplementation(() => { diff --git a/src/notifications/push/push-notifications.service.ts b/src/notifications/push/push-notifications.service.ts index 89946cbc..fe15349f 100644 --- a/src/notifications/push/push-notifications.service.ts +++ b/src/notifications/push/push-notifications.service.ts @@ -64,6 +64,8 @@ const SEND_CHUNK_SIZE = 25; const fanOutClaimKey = (id: string) => `notifications:fan-out:${id}`; +const KEYS_CHANGED_CHANNEL = "web-push-keys-changed"; + // Long enough to outlast Hasura's delivery of the last row in a fan-out, // including its retry_conf (3 retries, 10s apart, 60s timeout each). const FAN_OUT_CLAIM_TTL_SECONDS = 900; @@ -85,6 +87,22 @@ export class PushNotificationsService { this.appConfig = this.configService.get("app"); this.webPushConfig = this.configService.get("webPush"); this.redis = redisManager.getConnection(); + + // A rotation on one pod has to reach the others. They would otherwise keep + // signing with the retired private key, and keep handing the retired public + // key to anyone subscribing, until they happened to restart. + const sub = redisManager.getConnection("sub"); + + void sub.subscribe(KEYS_CHANGED_CHANNEL); + sub.on("message", (channel: string) => { + if (channel !== KEYS_CHANGED_CHANNEL) { + return; + } + + void this.loadKeys().catch((error: unknown) => { + this.logger.warn("unable to reload VAPID keys", error); + }); + }); } // A fan-out writes one notification row per recipient and Hasura's event @@ -137,15 +155,9 @@ export class PushNotificationsService { this.logger.log("no VAPID keys found; generating a keypair"); try { - const keys = webPush.generateVAPIDKeys(); - - await this.setSetting(SystemSettingName.WebPushPublicKey, keys.publicKey); - await this.setSetting( - SystemSettingName.WebPushPrivateKey, - keys.privateKey, - ); + const claimed = await this.claimKeys(webPush.generateVAPIDKeys()); - this.apply(keys.publicKey, keys.privateKey); + this.apply(claimed.publicKey, claimed.privateKey); } catch (error) { this.configured = false; this.publicKey = null; @@ -183,9 +195,32 @@ export class PushNotificationsService { await this.loadKeys(); + // Valid JSON with no payload: the "sub" connection is shared, and the + // sockets subscriber on it parses every message it receives. + await this.redis.publish(KEYS_CHANGED_CHANNEL, "{}"); + return { publicKey: keys.publicKey }; } + // Which of these players could receive a push at all. Callers use it to + // decide whether a recipient who muted the bell still needs a notifications + // row written for them -- the INSERT event trigger is what delivers push, so + // no row means no push, but a row nobody can be pushed to is dead weight. + public async filterSubscribed(steamIds: string[]): Promise { + if (!this.configured || steamIds.length === 0) { + return []; + } + + const rows = await this.postgres.query>( + `SELECT DISTINCT steam_id::text AS steam_id + FROM public.push_subscriptions + WHERE steam_id = ANY($1::bigint[])`, + [steamIds], + ); + + return rows.map((row) => row.steam_id); + } + public async countSubscriptions(): Promise<[number]> { const [row] = await this.postgres.query>( `SELECT count(*)::text AS count FROM public.push_subscriptions`, @@ -211,6 +246,48 @@ export class PushNotificationsService { ); } + // The install-time write, as opposed to the deliberate rotation in + // generateKeys(): the first pod to get here wins and every other pod adopts + // what is already stored. Overwriting instead would leave pods signing with + // different private keys, and every subscription a browser took out against + // the loser's public key rejected with a 403 until that pod restarted. + // + // Both rows go in one statement so a race cannot leave two halves of + // different keypairs behind, and the read is a second statement because a + // CTE's SELECT runs against the snapshot from before its own INSERT. + private async claimKeys(keys: { + publicKey: string; + privateKey: string; + }): Promise<{ publicKey: string; privateKey: string }> { + const names = [ + SystemSettingName.WebPushPublicKey, + SystemSettingName.WebPushPrivateKey, + ]; + + await this.postgres.query( + `INSERT INTO public.settings (name, value) + VALUES ($1, $2), ($3, $4) + ON CONFLICT (name) DO NOTHING`, + [names[0], keys.publicKey, names[1], keys.privateKey], + ); + + const rows = await this.postgres.query< + Array<{ name: string; value: string }> + >(`SELECT name, value FROM public.settings WHERE name = ANY($1::text[])`, [ + names, + ]); + + const stored = new Map(rows.map((row) => [row.name, row.value])); + const publicKey = stored.get(names[0]); + const privateKey = stored.get(names[1]); + + if (!publicKey || !privateKey) { + throw new Error("VAPID keys were not stored"); + } + + return { publicKey, privateKey }; + } + public isConfigured(): boolean { return this.configured; } diff --git a/src/notifications/utilities/notificationUrl.ts b/src/notifications/utilities/notificationUrl.ts index 3fbf9a38..e3134e40 100644 --- a/src/notifications/utilities/notificationUrl.ts +++ b/src/notifications/utilities/notificationUrl.ts @@ -32,11 +32,20 @@ export function notificationUrl( .first() .attr("href"); - if (href?.startsWith(webDomain)) { - return href.slice(webDomain.length) || "/"; + // The trailing slash matters: without it `https://5stack.gg.evil.test/x` is + // also a prefix match. + if (href === webDomain) { + return "/"; } - if (href?.startsWith("/")) { + if (href?.startsWith(`${webDomain}/`)) { + return href.slice(webDomain.length); + } + + // Not `startsWith("/")` on its own: `//evil.test/x` passes that and is a + // fully qualified URL to somewhere else, which the service worker would hand + // straight to clients.openWindow. + if (href?.startsWith("/") && !href.startsWith("//")) { return href; } diff --git a/src/voice/voice.controller.ts b/src/voice/voice.controller.ts index 3c437bb3..9d3ae65e 100644 --- a/src/voice/voice.controller.ts +++ b/src/voice/voice.controller.ts @@ -1,4 +1,5 @@ import { + BadRequestException, Controller, ForbiddenException, Get, @@ -15,15 +16,16 @@ import { User } from "../auth/types/User"; export class VoiceController { constructor(private readonly voice: VoiceService) {} - // WHIP/WHEP bodies are `application/sdp`, which neither parser registered in - // main.ts claims, so the stream is still unread here. - private readRawBody(request: Request): Promise { - return new Promise((resolve, reject) => { - const chunks: Array = []; - request.on("data", (chunk) => chunks.push(chunk)); - request.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); - request.on("error", reject); - }); + // WHIP/WHEP bodies are `application/sdp`, parsed by the text parser + // registered in main.ts. + private readSdp(request: Request): string { + const sdp = request.body; + + if (typeof sdp !== "string" || !sdp) { + throw new BadRequestException("expected an application/sdp body"); + } + + return sdp; } private requireUser(request: Request) { @@ -51,7 +53,7 @@ export class VoiceController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.voice.publish(lobbyId, user, sdp)); } @@ -65,7 +67,7 @@ export class VoiceController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.voice.publishVideo(lobbyId, user, sdp), @@ -90,7 +92,7 @@ export class VoiceController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.voice.subscribe(lobbyId, steamId, user, sdp), @@ -105,7 +107,7 @@ export class VoiceController { @Res() response: Response, ) { const user = this.requireUser(request); - const sdp = await this.readRawBody(request); + const sdp = this.readSdp(request); await this.sendSdp(response, () => this.voice.subscribeVideo(lobbyId, steamId, user, sdp), diff --git a/src/voice/voice.service.spec.ts b/src/voice/voice.service.spec.ts index ebfc69d0..f43feb02 100644 --- a/src/voice/voice.service.spec.ts +++ b/src/voice/voice.service.spec.ts @@ -17,6 +17,7 @@ describe("VoiceService", () => { mget: jest.Mock; expire: jest.Mock; publish: jest.Mock; + scan: jest.Mock; }; let service: VoiceService; @@ -30,6 +31,11 @@ describe("VoiceService", () => { .mockResolvedValueOnce(enabled(true)) .mockResolvedValueOnce([{ status: "Accepted" }]); + // The teardown paths ask membership without the feature switch in front of + // it, so the membership row is the first query they make. + const member = () => + postgres.query.mockResolvedValueOnce([{ status: "Accepted" }]); + beforeEach(() => { postgres = { query: jest.fn().mockResolvedValue([]) }; mediaMtx = { @@ -49,6 +55,7 @@ describe("VoiceService", () => { ), expire: jest.fn().mockResolvedValue(1), publish: jest.fn().mockResolvedValue(1), + scan: jest.fn().mockResolvedValue(["0", []]), }; service = new VoiceService( new Logger("VoiceTest"), @@ -312,7 +319,7 @@ describe("VoiceService", () => { }); it("drops only your own session on leave", async () => { - accepted(); + member(); await service.leave(LOBBY_ID, ME); @@ -661,6 +668,39 @@ describe("VoiceService", () => { expect(redis.set).not.toHaveBeenCalled(); expect(pushed()).toHaveLength(0); }); + + // A channel with no publisher left never appears in the pass at all, so the + // stored snapshot is the only thing that knows it was occupied a moment ago. + // Members who were never publishing still have to be told. + it("announces a channel that emptied completely", async () => { + roster(); + snapshot(`${ME.steam_id},${PEER}`); + redis.scan.mockResolvedValue(["0", [`voice:publishing:${LOBBY_ID}`]]); + mediaMtx.listPaths.mockResolvedValue(new Map()); + + await service.monitorChannels(); + + expect(redis.del).toHaveBeenCalledWith(`voice:publishing:${LOBBY_ID}`); + expect(pushed()).toHaveLength(2); + expect(pushed()[0].data.participants).toEqual([ + expect.objectContaining({ connected: false }), + expect.objectContaining({ connected: false }), + ]); + }); + + it("leaves a channel that is still publishing alone", async () => { + roster(); + snapshot(`${ME.steam_id}`); + redis.scan.mockResolvedValue(["0", [`voice:publishing:${LOBBY_ID}`]]); + mediaMtx.listPaths.mockResolvedValue( + new Map([[path(ME.steam_id), { ready: true, bytesReceived: 1 }]]), + ); + + await service.monitorChannels(); + + expect(redis.del).not.toHaveBeenCalled(); + expect(pushed()).toHaveLength(0); + }); }); // Video rides a second path per member rather than a second track on the @@ -741,7 +781,7 @@ describe("VoiceService", () => { // A camera that outlived its microphone would keep playing for everyone // still in the call, long after the member had gone. it("drops the camera as well as the microphone on leave", async () => { - accepted(); + member(); await service.leave(LOBBY_ID, ME); @@ -754,7 +794,7 @@ describe("VoiceService", () => { }); it("stops only the camera, leaving the microphone published", async () => { - accepted(); + member(); await service.stopVideo(LOBBY_ID, ME); @@ -766,12 +806,20 @@ describe("VoiceService", () => { ); }); - // Turning the feature off platform-wide must not strand a camera whose - // owner can no longer reach the endpoint that stops it. + // Turning either feature off platform-wide must not strand a camera whose + // owner can no longer reach the endpoint that stops it. Neither switch is + // even read here -- membership is the whole gate. it("still stops a camera after video is disabled platform-wide", async () => { - postgres.query - .mockResolvedValueOnce(enabled(true)) - .mockResolvedValueOnce([{ status: "Accepted" }]); + member(); + + await expect(service.stopVideo(LOBBY_ID, ME)).resolves.toBeUndefined(); + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voicecam-${LOBBY_ID}-${ME.steam_id}`, + ); + }); + + it("still stops a camera after voice itself is disabled", async () => { + member(); await expect(service.stopVideo(LOBBY_ID, ME)).resolves.toBeUndefined(); expect(mediaMtx.kickSessions).toHaveBeenCalledWith( @@ -779,6 +827,15 @@ describe("VoiceService", () => { ); }); + it("still leaves a call after voice itself is disabled", async () => { + member(); + + await expect(service.leave(LOBBY_ID, ME)).resolves.toBeUndefined(); + expect(mediaMtx.kickSessions).toHaveBeenCalledWith( + `voice-${LOBBY_ID}-${ME.steam_id}`, + ); + }); + it("flags a member who is publishing a camera", async () => { postgres.query .mockResolvedValueOnce(enabled(true)) diff --git a/src/voice/voice.service.ts b/src/voice/voice.service.ts index 5bb1d6fe..ab18f519 100644 --- a/src/voice/voice.service.ts +++ b/src/voice/voice.service.ts @@ -114,8 +114,10 @@ export class VoiceService { return `voice:members:${channelId}`; } + private static readonly PUBLISHING_KEY_PREFIX = "voice:publishing:"; + private static publishingKey(channelId: string) { - return `voice:publishing:${channelId}`; + return `${VoiceService.PUBLISHING_KEY_PREFIX}${channelId}`; } // The inverse of pathForMember, kept beside it so the two cannot drift. @@ -238,6 +240,14 @@ export class VoiceService { throw new Error("voice chat is not enabled"); } + await this.assertMembership(channelId, user); + } + + // Membership on its own, with no feature switch in front of it. Everything + // that starts something asks assertMember; the teardown paths ask this, + // because switching voice off platform-wide must not strand a microphone or a + // camera nobody can now stop publishing. + private async assertMembership(channelId: string, user: User) { if (!UUID_PATTERN.test(channelId)) { throw new Error(NOT_A_MEMBER); } @@ -346,14 +356,15 @@ export class VoiceService { return answer; } - // Deferred: MediaMTX only reports the path as ready once the session is - // actually up, which is after the answer gets back to the publisher. + // Deferred: MediaMTX reports a path as ready only once the session is really + // up, and keeps reporting it until the session is really gone -- both of which + // land after the answer or the kick has returned here. Reading the path list + // straight afterwards describes the call as it was, not as it now is. // // Twice, because that moment cannot be predicted, only bracketed. A single // one-second wait was tuned to always be late enough, which made every camera // coming on cost a second before anyone else saw it. The early push usually - // lands and the late one is a no-op -- pushParticipants only emits when the - // roster actually changed, so the extra call is free when the first won. + // lands; the late one is one extra message per member and settles the rest. private pushParticipantsSoon(lobbyId: string) { for (const delay of [250, 1200]) { setTimeout(() => { @@ -388,7 +399,7 @@ export class VoiceService { } public async leave(lobbyId: string, user: User) { - await this.assertMember(lobbyId, user); + await this.assertMembership(lobbyId, user); await this.mediaMtx.kickSessions( VoiceService.pathForMember(lobbyId, user.steam_id), @@ -400,7 +411,7 @@ export class VoiceService { ); await this.redis.del(VoiceService.speakingKey(lobbyId, user.steam_id)); - await this.pushParticipants(lobbyId); + this.pushParticipantsSoon(lobbyId); } // The camera half of publish/subscribe/leave above. Same membership gate, same @@ -447,13 +458,13 @@ export class VoiceService { // membership alone rather than assertVideoMember: switching the feature off // platform-wide must not strand a camera nobody can now stop publishing. public async stopVideo(lobbyId: string, user: User) { - await this.assertMember(lobbyId, user); + await this.assertMembership(lobbyId, user); await this.mediaMtx.kickSessions( VoiceService.pathForMemberCamera(lobbyId, user.steam_id), ); - await this.pushParticipants(lobbyId); + this.pushParticipantsSoon(lobbyId); } // Everyone in the channel: who is in the call, and who is talking right now. @@ -640,9 +651,10 @@ export class VoiceService { // a killed tab -- by watching MediaMTX itself, the same way camera health is // watched. One list call covers every channel on the box. // - // A channel that empties completely is not reported: with no publisher left - // there is nobody still in the call to tell, and the member who dropped is - // the one who would have been told. + // A channel that empties completely is still reported. `push` addresses the + // whole member list, not just the publishers, so there is somebody to tell: + // a teammate with the lobby open who never joined the call would otherwise + // keep rendering everyone as connected until the snapshot aged out on its own. public async monitorChannels() { const paths = await this.mediaMtx.listPaths(); @@ -712,6 +724,49 @@ export class VoiceService { await this.pushParticipants(channelId, paths); } + + // Channels that emptied since the last pass are not in `publishing` at all, + // so the loop above never visits them. Their snapshot is what says they were + // occupied a moment ago. + for (const key of await this.emptiedChannelKeys(publishing)) { + await this.redis.del(key); + + await this.pushParticipants( + key.slice(VoiceService.PUBLISHING_KEY_PREFIX.length), + paths, + ); + } + } + + private async emptiedChannelKeys( + publishing: Map, + ): Promise { + const emptied: string[] = []; + let cursor = "0"; + + do { + const [next, keys] = await this.redis.scan( + cursor, + "MATCH", + `${VoiceService.PUBLISHING_KEY_PREFIX}*`, + "COUNT", + 100, + ); + + cursor = next; + + for (const key of keys) { + const channelId = key.slice( + VoiceService.PUBLISHING_KEY_PREFIX.length, + ); + + if (!publishing.has(channelId)) { + emptied.push(key); + } + } + } while (cursor !== "0"); + + return emptied; } // Addressed to the channel's members rather than broadcast: who is in a voice diff --git a/test/notifications.spec.ts b/test/notifications.spec.ts index 0b2da12a..94fdface 100644 --- a/test/notifications.spec.ts +++ b/test/notifications.spec.ts @@ -53,8 +53,8 @@ describe("notifications (SQL-driven)", () => { for (const object of insert.__args.objects) { await postgres.query( - `INSERT INTO notifications (type, title, message, role, steam_id, entity_id) - VALUES ($1, $2, $3, $4, $5::bigint, $6)`, + `INSERT INTO notifications (type, title, message, role, steam_id, entity_id, in_app) + VALUES ($1, $2, $3, $4, $5::bigint, $6, $7)`, [ object.type, object.title, @@ -62,6 +62,7 @@ describe("notifications (SQL-driven)", () => { object.role, object.steam_id, object.entity_id ?? null, + object.in_app ?? true, ], ); } @@ -70,6 +71,22 @@ describe("notifications (SQL-driven)", () => { }), }); + // notifyPlayers asks who could be pushed to at all, so this answers from the + // real table rather than a fixed list. + const pushNotifications = () => ({ + add: jest.fn(), + claimFanOut: jest.fn(), + filterSubscribed: async (steamIds: Array) => + ( + await postgres.query>( + `SELECT DISTINCT steam_id::text AS steam_id + FROM push_subscriptions + WHERE steam_id = ANY($1::bigint[])`, + [steamIds], + ) + ).map((row) => row.steam_id), + }); + const notifications = () => new NotificationsService( hasuraWritingToPostgres() as any, @@ -77,8 +94,16 @@ describe("notifications (SQL-driven)", () => { logger as any, { get: () => ({ webDomain: "https://example.com" }) } as any, preferences(), - { add: jest.fn() } as any, + pushNotifications() as any, + ); + + const subscribed = async (steamId: string) => { + await postgres.query( + `INSERT INTO push_subscriptions (steam_id, endpoint, p256dh, auth) + VALUES ($1::bigint, $2, 'key', 'auth')`, + [steamId, `https://fcm.googleapis.com/fcm/send/${steamId}`], ); + }; const activePlayer = async () => { const steamId = await fx.player(); @@ -179,6 +204,28 @@ describe("notifications (SQL-driven)", () => { ); expect(row.count).toBe("0"); }); + + // Push is delivered by the insert trigger on this table, so a muted bell + // must not take the push with it -- push has its own preference. + it("still writes a row for a muted player who can be pushed to", async () => { + const active = await activePlayer(); + await preferences().set(active, "in_app", "NewsPublished", false); + await subscribed(active); + + await notifications().notifyActivePlayers("NewsPublished", { + title: "New article", + message: "something happened", + entity_id: "article-3", + }); + + const rows = await postgres.query< + Array<{ steam_id: string; in_app: boolean }> + >( + `SELECT steam_id::text AS steam_id, in_app FROM notifications`, + ); + + expect(rows).toEqual([{ steam_id: active, in_app: false }]); + }); }); describe("collapseOlderUnread", () => { @@ -233,6 +280,9 @@ describe("notifications (SQL-driven)", () => { getConnection: () => ({ exists: async () => 0, pipeline: () => ({ set: () => {}, exec: async () => [] }), + subscribe: async () => 1, + publish: async () => 1, + on: () => {}, }), }; From e5c83672dac6448c05276ec00988067f3a8a3bf4 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 14:49:43 -0400 Subject: [PATCH 16/17] wip --- generated/schema.graphql | 18 ++++++++++++++++++ generated/schema.ts | 24 +++++++++++++++--------- generated/types.ts | 18 ++++++++++++++++++ 3 files changed, 51 insertions(+), 9 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index eba1b76c..604f8ea0 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -49682,6 +49682,7 @@ type notifications { deleted_at: timestamptz entity_id: String id: uuid! + in_app: Boolean! is_read: Boolean! message: String! @@ -49802,6 +49803,7 @@ input notifications_bool_exp { deleted_at: timestamptz_comparison_exp entity_id: String_comparison_exp id: uuid_comparison_exp + in_app: Boolean_comparison_exp is_read: Boolean_comparison_exp message: String_comparison_exp player: players_bool_exp @@ -49859,6 +49861,7 @@ input notifications_insert_input { deleted_at: timestamptz entity_id: String id: uuid + in_app: Boolean is_read: Boolean message: String player: players_obj_rel_insert_input @@ -49944,6 +49947,7 @@ input notifications_order_by { deleted_at: order_by entity_id: order_by id: order_by + in_app: order_by is_read: order_by message: order_by player: players_order_by @@ -49985,6 +49989,9 @@ enum notifications_select_column { """column name""" id + """column name""" + in_app + """column name""" is_read @@ -50011,6 +50018,9 @@ enum notifications_select_column_notifications_aggregate_bool_exp_bool_and_argum """column name""" deletable + """column name""" + in_app + """column name""" is_read } @@ -50022,6 +50032,9 @@ enum notifications_select_column_notifications_aggregate_bool_exp_bool_or_argume """column name""" deletable + """column name""" + in_app + """column name""" is_read } @@ -50036,6 +50049,7 @@ input notifications_set_input { deleted_at: timestamptz entity_id: String id: uuid + in_app: Boolean is_read: Boolean message: String role: e_player_roles_enum @@ -50099,6 +50113,7 @@ input notifications_stream_cursor_value_input { deleted_at: timestamptz entity_id: String id: uuid + in_app: Boolean is_read: Boolean message: String role: e_player_roles_enum @@ -50141,6 +50156,9 @@ enum notifications_update_column { """column name""" id + """column name""" + in_app + """column name""" is_read diff --git a/generated/schema.ts b/generated/schema.ts index f7f00675..262916dc 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -15236,6 +15236,7 @@ export interface notifications { deleted_at: (Scalars['timestamptz'] | null) entity_id: (Scalars['String'] | null) id: Scalars['uuid'] + in_app: Scalars['Boolean'] is_read: Scalars['Boolean'] message: Scalars['String'] /** An object relationship */ @@ -15321,15 +15322,15 @@ export interface notifications_mutation_response { /** select columns of table "notifications" */ -export type notifications_select_column = 'actions' | 'created_at' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' +export type notifications_select_column = 'actions' | 'created_at' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' /** select "notifications_aggregate_bool_exp_bool_and_arguments_columns" columns of table "notifications" */ -export type notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns = 'deletable' | 'is_read' +export type notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns = 'deletable' | 'in_app' | 'is_read' /** select "notifications_aggregate_bool_exp_bool_or_arguments_columns" columns of table "notifications" */ -export type notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns = 'deletable' | 'is_read' +export type notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns = 'deletable' | 'in_app' | 'is_read' /** aggregate stddev on columns */ @@ -15361,7 +15362,7 @@ export interface notifications_sum_fields { /** update columns of table "notifications" */ -export type notifications_update_column = 'actions' | 'created_at' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' +export type notifications_update_column = 'actions' | 'created_at' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' /** aggregate var_pop on columns */ @@ -63347,6 +63348,7 @@ export interface notificationsGenqlSelection{ deleted_at?: boolean | number entity_id?: boolean | number id?: boolean | number + in_app?: boolean | number is_read?: boolean | number message?: boolean | number /** An object relationship */ @@ -63422,7 +63424,7 @@ export interface notifications_avg_order_by {steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. */ -export interface notifications_bool_exp {_and?: (notifications_bool_exp[] | null),_not?: (notifications_bool_exp | null),_or?: (notifications_bool_exp[] | null),actions?: (jsonb_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),deletable?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),entity_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_read?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),player?: (players_bool_exp | null),role?: (e_player_roles_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_notification_types_enum_comparison_exp | null)} +export interface notifications_bool_exp {_and?: (notifications_bool_exp[] | null),_not?: (notifications_bool_exp | null),_or?: (notifications_bool_exp[] | null),actions?: (jsonb_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),deletable?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),entity_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),in_app?: (Boolean_comparison_exp | null),is_read?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),player?: (players_bool_exp | null),role?: (e_player_roles_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_notification_types_enum_comparison_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -63442,7 +63444,7 @@ export interface notifications_inc_input {steam_id?: (Scalars['bigint'] | null)} /** input type for inserting data into table "notifications" */ -export interface notifications_insert_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} +export interface notifications_insert_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} /** aggregate max on columns */ @@ -63497,7 +63499,7 @@ export interface notifications_on_conflict {constraint: notifications_constraint /** Ordering options when selecting data from "notifications". */ -export interface notifications_order_by {actions?: (order_by | null),created_at?: (order_by | null),deletable?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),is_read?: (order_by | null),message?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null),type?: (order_by | null)} +export interface notifications_order_by {actions?: (order_by | null),created_at?: (order_by | null),deletable?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),in_app?: (order_by | null),is_read?: (order_by | null),message?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null),type?: (order_by | null)} /** primary key columns input for table: notifications */ @@ -63509,7 +63511,7 @@ export interface notifications_prepend_input {actions?: (Scalars['jsonb'] | null /** input type for updating data in table "notifications" */ -export interface notifications_set_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} +export interface notifications_set_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} /** aggregate stddev on columns */ @@ -63557,7 +63559,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface notifications_stream_cursor_value_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} +export interface notifications_stream_cursor_value_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} /** aggregate sum on columns */ @@ -122002,6 +122004,7 @@ export const enumNotificationsSelectColumn = { deleted_at: 'deleted_at' as const, entity_id: 'entity_id' as const, id: 'id' as const, + in_app: 'in_app' as const, is_read: 'is_read' as const, message: 'message' as const, role: 'role' as const, @@ -122012,11 +122015,13 @@ export const enumNotificationsSelectColumn = { export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolAndArgumentsColumns = { deletable: 'deletable' as const, + in_app: 'in_app' as const, is_read: 'is_read' as const } export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolOrArgumentsColumns = { deletable: 'deletable' as const, + in_app: 'in_app' as const, is_read: 'is_read' as const } @@ -122027,6 +122032,7 @@ export const enumNotificationsUpdateColumn = { deleted_at: 'deleted_at' as const, entity_id: 'entity_id' as const, id: 'id' as const, + in_app: 'in_app' as const, is_read: 'is_read' as const, message: 'message' as const, role: 'role' as const, diff --git a/generated/types.ts b/generated/types.ts index 608dc470..52a2f401 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -56988,6 +56988,9 @@ export default { "id": [ 5084 ], + "in_app": [ + 5 + ], "is_read": [ 5 ], @@ -57237,6 +57240,9 @@ export default { "id": [ 5086 ], + "in_app": [ + 6 + ], "is_read": [ 6 ], @@ -57314,6 +57320,9 @@ export default { "id": [ 5084 ], + "in_app": [ + 5 + ], "is_read": [ 5 ], @@ -57487,6 +57496,9 @@ export default { "id": [ 3008 ], + "in_app": [ + 3008 + ], "is_read": [ 3008 ], @@ -57550,6 +57562,9 @@ export default { "id": [ 5084 ], + "in_app": [ + 5 + ], "is_read": [ 5 ], @@ -57650,6 +57665,9 @@ export default { "id": [ 5084 ], + "in_app": [ + 5 + ], "is_read": [ 5 ], From d7553e87be3f0e93a47aea5eb2491fe28132ce10 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 14 Aug 2026 15:15:35 -0400 Subject: [PATCH 17/17] wip --- src/draft-games/draft-game.service.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts index ae117448..e9b31d6a 100644 --- a/src/draft-games/draft-game.service.ts +++ b/src/draft-games/draft-game.service.ts @@ -1087,6 +1087,7 @@ export class DraftGameService { } if (isRoleAbove(user.role, "tournament_organizer")) { + object.check_in_setting = source.check_in_setting; object.auto_cancellation = source.auto_cancellation; object.match_mode = source.match_mode; object.auto_cancel_duration = source.auto_cancel_duration ?? null; @@ -1281,6 +1282,11 @@ export class DraftGameService { if (settings.options && draftGame.match_options_id) { const optionSet = this.matchOptionScalars(user, settings.options); + // The match is spawned straight off match_options, so the type has to + // follow the draft or the lobby and the match disagree on format. + if (settings.type) { + optionSet.type = settings.type; + } if (mapPoolId) { optionSet.map_pool_id = mapPoolId; }