diff --git a/.env.sample b/.env.sample index e45561bd..383507e6 100644 --- a/.env.sample +++ b/.env.sample @@ -2,25 +2,53 @@ RAILS_ENV=development # Redis # Connect with your mastodon instance's redis -REDIS_HOST=localhost +REDIS_HOST=your_redis_host REDIS_PORT=6379 # PostgreSQL # Connect with your mastodon instance's database -DB_HOST=localhost +DB_HOST=your_postgres_host DB_NAME=your_mastodon_instance_db -DB_USER=postgres -DB_PASS=db_pass +DB_USER=your_postgres_user +DB_PASS=your_postgres_password DB_PORT=5432 -PATCHWORK_HUB_URL=http://localhost:8000 -MASTODON_INSTANCE_URL=http://localhost:3000 -PATCHWORK_DASHBOARD_URL=http://localhost:8001 -MASTODON_APPLICATION_TOKEN=GDtc2wQoxu8r7LBdrK26UecQAnSLtSOh5YPD5YRlZRc -MASTODON_CLIENT_ID=0umSVjLgczp7D6oIK6mA8OUjX2v28Zyi_63cXTbjLMU -MASTODON_CLIENT_SECRET=M2Lofni_76syqk7UkXGdd2KmFAksFmsT35ZMAgCdClA +# Patchwork Hub(central dashboard) +PATCHWORK_HUB_URL=https://hub.patchwork.online -CREATE_CHANNEL_LAMBDA_URL=https://lambda_url -CREATE_CHANNEL_LAMBDA_API_KEY=lambda_api_key +# Your hosted Patchwork Dashboard URL +PATCHWORK_DASHBOARD_URL=https://localhost:3001 + +# Mastodon Credentials +# Obtain these from your Mastodon instance under "Development" settings. +# Required scope: read, profile, write, follow, push +MASTODON_APPLICATION_TOKEN=your_mastodon_application_token +MASTODON_CLIENT_ID=yur_mastodon_client_id +MASTODON_CLIENT_SECRET=your_mastodon_client_secret +MASTODON_INSTANCE_URL=https://example.com + +# Configure your SMTP settings for sending emails. +# You can use services like Amazon SES, SendGrid, or any SMTP server. +SMTP_LOGIN=your_smtp_login +SMTP_ENABLE_STARTTLS_AUTO=true +SMTP_AUTH_METHOD=plain +SMTP_DOMAIN=example.com +SMTP_PASSWORD=your_smtp_password +SMTP_FROM_ADDRESS=no-reply@example.com +SMTP_PORT=2587 +SMTP_ENABLE_STARTTLS=auto +SMTP_SERVER=your_smtp_server +# S3 Configuration +# Configure your S3 bucket for file storage. +S3_REGION=your_s3_region +S3_BUCKET=example-bucket +S3_ALIAS_HOST=example-bucket.s3.eu-west-2.amazonaws.com +S3_ENABLED=false +S3_ACCESS_KEY_ID=your_s3_access_key_id + +# Channel Creation +# Configure the channel creation settings. ALLOW_CHANNELS_CREATION=false +CREATE_CHANNEL_LAMBDA_URL=https://example.com/create-channel +CREATE_CHANNEL_LAMBDA_API_KEY=lambda_api_key diff --git a/app/controllers/api/v1/app_versions_controller.rb b/app/controllers/api/v1/app_versions_controller.rb index ba61816f..249ea0b7 100644 --- a/app/controllers/api/v1/app_versions_controller.rb +++ b/app/controllers/api/v1/app_versions_controller.rb @@ -6,28 +6,46 @@ class AppVersionsController < ApiController before_action :set_app_version, only: %i[check_version] def check_version - return render_not_found unless @app_version - - app_version_history = AppVersionHistory.where( - app_version_id: @app_version.id, - os_type: params[:os_type] - ).last - app_version_history.present? ? render(json: { data: app_version_history }) : render_not_found + return render_error(message: 'Record not found!', status_code: 404) unless @app_version + + unless app_version_params[:os_type].present? + return render_error(message: 'OS type is required', status_code: 400) + end + + app_version_history = fetch_version_history + app_version_history.present? ? render(json: { data: app_version_history }) : render_error(message: 'Record not found!', status_code: 404) end private - def set_app_version - @app_version = AppVersion.find_by(version_name: params[:current_app_version]) - end - - def render_not_found - render json: { error: "Record not found" }, status: 404 - end + def set_app_version + key = app_version_params[:app_name]&.to_sym || :patchwork + app_name = AppVersion.app_names[key] || AppVersion.app_names[:patchwork] + @app_version = AppVersion.find_by( + version_name: app_version_params[:current_app_version], + app_name: app_name + ) + end + + def render_error(message: "", status_code: 400) + render json: { error: message }, status: status_code + end + + def app_version_params + params.permit(:current_app_version, :app_name, :os_type) + end + + def check_authorization_header + authenticate_user_from_header if request.headers['Authorization'].present? + end + + def fetch_version_history + @app_version.app_version_histories + .where(os_type: app_version_params[:os_type]) + .order(created_at: :desc) + .first + end - def check_authorization_header - authenticate_user_from_header if request.headers['Authorization'].present? - end end end end diff --git a/app/controllers/api/v1/channels_controller.rb b/app/controllers/api/v1/channels_controller.rb index ce5dc32d..2c745a2f 100644 --- a/app/controllers/api/v1/channels_controller.rb +++ b/app/controllers/api/v1/channels_controller.rb @@ -61,6 +61,18 @@ def newsmast_channels end end + def bridge_information + community = Community.find_by(id: params[:id]) + if community.nil? + render json: { error: 'Community not found' }, status: :not_found and return + end + bluesky_info = BlueskyService.new(community).fetch_bluesky_account + render json: { + community: community, + bluesky_info: bluesky_info, + } + end + private def set_channel diff --git a/app/controllers/api/v1/collections_controller.rb b/app/controllers/api/v1/collections_controller.rb index e491459f..7937dca9 100644 --- a/app/controllers/api/v1/collections_controller.rb +++ b/app/controllers/api/v1/collections_controller.rb @@ -6,33 +6,46 @@ class CollectionsController < ApiController skip_before_action :verify_key! before_action :fetch_channel_details, only: [:fetch_channels] - NEWSMAST_CHANNELS_SORTING_ORDERS = ['Newsmast Channels', 'News','Global Issues', 'Government & Politics', 'Environment', 'Communities & Allies', 'Business & Work', 'Technology', 'Science', 'Humanities', 'Culture', 'Sport', 'Lifestyle', ] + COLLECTION_TYPES = { + channel: 'channel', + channel_feed: 'channel_feed', + newsmast: 'newsmast' + }.freeze + + NEWSMAST_CHANNELS_SORTING_ORDERS = [ + 'Newsmast Channels', + 'News', + 'Global Issues', + 'Government & Politics', + 'Environment', + 'Communities & Allies', + 'Business & Work', + 'Technology', + 'Science', + 'Humanities', + 'Culture', + 'Sport', + 'Lifestyle' + ].freeze def index - @all_collections = fetch_all_channels_by_type(type: 'channel') - render_collections(@all_collections, type: 'channel') + @all_collections = fetch_all_channels_by_type(type: COLLECTION_TYPES[:channel]) + render_collections(@all_collections, type: COLLECTION_TYPES[:channel]) end - def newsmast_collections - patchwork_collection_ids = extract_patchwork_collection_ids - @all_collections = fetch_collections_by_ids(patchwork_collection_ids) - - # Sort collections by NEWSMAST_CHANNELS_SORTING_ORDERS - @all_collections = @all_collections.sort_by do |collection| - NEWSMAST_CHANNELS_SORTING_ORDERS.index(collection.name) || Float::INFINITY - end - - render_collections(@all_collections, type: 'newsmast') + def channel_feed_collections + @all_collections = fetch_all_channels_by_type(type: COLLECTION_TYPES[:channel_feed]) + render_collections(@all_collections, type: COLLECTION_TYPES[:channel_feed]) end - def channel_feed_collections - @all_collections = fetch_all_channels_by_type(type: 'channel_feed') - render_collections(@all_collections, type: 'channel_feed') + def newsmast_collections + @all_collections = fetch_all_channels_by_type(type: COLLECTION_TYPES[:newsmast]) + render_collections(@all_collections, type: COLLECTION_TYPES[:newsmast]) end def fetch_channels if @channels - render json: serialized_channels(@channels,type: params[:type]) + render json: serialized_channels(type: params[:type]) else render json: { data: [] } end @@ -41,10 +54,22 @@ def fetch_channels private def fetch_all_channels_by_type(type:) - collections = if type == 'channel' - Collection.filter_channels.distinct.order(sorting_index: :asc).to_a + collections = case type + when COLLECTION_TYPES[:channel] + Collection.filter_by_channel_type(type).order(sorting_index: :asc).to_a + when COLLECTION_TYPES[:channel_feed] + Collection.filter_by_channel_type(type).order(sorting_index: :asc).to_a else - Collection.filter_channel_feeds.distinct.order(sorting_index: :asc).to_a + newsmast_collections = if Community.has_local_newsmast_channel? + Collection.filter_by_channel_type(type).order(sorting_index: :asc).to_a + else + patchwork_collection_ids = extract_patchwork_collection_ids + fetch_collections_by_ids(patchwork_collection_ids) + end + newsmast_collections = newsmast_collections.sort_by do |collection| + NEWSMAST_CHANNELS_SORTING_ORDERS.index(collection.name) || Float::INFINITY + end + newsmast_collections end add_all_collection(collections, type: type) end @@ -56,8 +81,7 @@ def extract_patchwork_collection_ids end def fetch_collections_by_ids(ids) - collections = Collection.where(id: ids).order(sorting_index: :asc).to_a - add_all_collection(collections, type: 'newsmast') + Collection.where(id: ids).order(sorting_index: :asc).to_a end def render_collections(collections, type:) @@ -66,22 +90,29 @@ def render_collections(collections, type:) ).serializable_hash.to_json end - def serialized_channels(channels, type:) - if type == 'channel' || type == 'channel_feed' - Api::V1::ChannelSerializer.new(channels).serializable_hash.to_json + def serialized_channels(type:) + if type == COLLECTION_TYPES[:channel] || type == COLLECTION_TYPES[:channel_feed] + Api::V1::ChannelSerializer.new(@channels).serializable_hash.to_json else - channels + if Community.has_local_newsmast_channel? && params[:type] == COLLECTION_TYPES[:newsmast] + data = Api::V1::ChannelSerializer.new(@channels).serializable_hash.to_json + # Need to remove after mobile lunch again + parsed = JSON.parse(data) + parsed["data"] + else + @channels + end end end def fetch_channel_details return unless params[:slug].present? && params[:type].present? - @channels = if params[:type] == 'newsmast' - fetch_newsmast_channels - else - fetch_communities(type: params[:type]) - end + @channels = if !Community.has_local_newsmast_channel? && params[:type] == COLLECTION_TYPES[:newsmast] + fetch_newsmast_channels + else + fetch_communities(type: params[:type]) + end end def fetch_newsmast_channels @@ -105,8 +136,13 @@ def fetch_communities(type:) end return [] unless base_communities - scope = type == 'channel' ? :filter_channels : :filter_channel_feeds - + scope = if type == COLLECTION_TYPES[:channel] + :filter_channels + elsif type == COLLECTION_TYPES[:channel_feed] + :filter_channel_feeds + else + :filter_newsmast_channels + end base_communities .public_send(scope) .exclude_array_ids @@ -117,9 +153,9 @@ def fetch_communities(type:) def add_all_collection(collections, type:) name = case type - when 'channel' + when COLLECTION_TYPES[:channel] 'Communities' - when 'channel_feed' + when COLLECTION_TYPES[:channel_feed] 'Channels' else 'Newsmast Channels' @@ -138,4 +174,4 @@ def add_all_collection(collections, type:) end end end -end \ No newline at end of file +end diff --git a/app/controllers/api/v1/communities_controller.rb b/app/controllers/api/v1/communities_controller.rb index b62f99f0..ce5fcc69 100644 --- a/app/controllers/api/v1/communities_controller.rb +++ b/app/controllers/api/v1/communities_controller.rb @@ -6,6 +6,7 @@ class CommunitiesController < ApiController before_action :set_community, only: %i[show update set_visibility manage_additional_information] before_action :validate_patchwork_community_id, only: %i[contributor_list mute_contributor_list] before_action :set_content_and_channel_type, only: %i[index create update] + include BlueskyAccountBridgeHleper PER_PAGE = 5 def index diff --git a/app/controllers/api/v1/joined_communities_controller.rb b/app/controllers/api/v1/joined_communities_controller.rb index c1979b1d..bad96f73 100644 --- a/app/controllers/api/v1/joined_communities_controller.rb +++ b/app/controllers/api/v1/joined_communities_controller.rb @@ -63,7 +63,7 @@ def set_primary return render json: { errors: 'Community not found' }, status: 404 end - if @account.joined_communities.size < 6 + if @account.joined_communities.size < 4 return render json: { errors: 'You need to join at least 5 to set as primary' }, status: 422 end diff --git a/app/controllers/api/v1/settings_controller.rb b/app/controllers/api/v1/settings_controller.rb new file mode 100644 index 00000000..face61df --- /dev/null +++ b/app/controllers/api/v1/settings_controller.rb @@ -0,0 +1,88 @@ +# frozen_string_literal: true + +module Api + module V1 + class SettingsController < ApiController + skip_before_action :verify_key! + before_action :authenticate_and_set_account + before_action :validate_and_set_app_name + before_action :set_setting, only: [:destroy] + + def index + @setting = Setting.find_by(account: @account, app_name: @app_name) + + if @setting + render json: { data: @setting } + else + render json: { data: default_setting }, status: 200 + end + end + + def upsert + @setting = Setting.find_or_initialize_by(account: @account, app_name: @app_name) + + if @setting.update(setting_params) + render json: { message: 'Settings have been saved successfully.' }, status: 200 + else + render json: { errors: @setting.errors.to_hash }, status: 422 + end + end + + def destroy + if @setting.destroy + head :no_content + else + render json: { errors: { base: 'Failed to delete settings.' } }, status: 422 + end + end + + private + + def set_setting + @setting = Setting.find_by(account: @account, app_name: @app_name) + render json: { error: 'Settings not found.' }, status: 404 unless @setting + end + + def authenticate_and_set_account + if request.headers['Authorization'].present? && params[:instance_domain].present? + validate_mastodon_account + @account = current_remote_account + else + authenticate_user_from_header + @account = current_account + end + rescue AuthenticationError => e + render json: { error: 'Authentication failed: ' + e.message }, status: 401 + end + + def validate_and_set_app_name + app_name_param = params[:app_name] + if app_name_param.blank? + @app_name = Setting.column_defaults['app_name'] + elsif Setting.app_names.key?(app_name_param) + @app_name = app_name_param + else + render json: { + errors: { app_name: "'#{app_name_param}' is not a valid app_name. Valid options are: #{Setting.app_names.keys.join(', ')}" } + }, status: 400 + end + end + + def setting_params + params.permit(settings: [theme: [:type]]) + end + + def default_setting + { + app_name: @app_name, + account_id: @account.id, + settings: { + theme: { + type: setting_params.present? ? setting_params[:settings][:theme][:type] || nil : nil + } + } + }.compact + end + end + end +end diff --git a/app/controllers/app_versions_controller.rb b/app/controllers/app_versions_controller.rb index d3fd9baf..c2a29c9b 100644 --- a/app/controllers/app_versions_controller.rb +++ b/app/controllers/app_versions_controller.rb @@ -5,8 +5,13 @@ class AppVersionsController < ApplicationController PER_PAGE = 10 def index - @search = AppVersion.ransack(params[:q]) - @app_versions = @search.result.order(created_at: :asc).page(params[:page]).per(PER_PAGE) + app_name_key = params[:app_name]&.to_s + scope = if AppVersion.app_names.value?(app_name_key&.to_i) + AppVersion.send(AppVersion.app_names.key(app_name_key.to_i)).ransack(params[:q]) + else + AppVersion.patchwork.ransack(params[:q]) + end + @app_versions = scope.result.order(created_at: :asc).page(params[:page]).per(PER_PAGE) end def new @@ -14,20 +19,13 @@ def new end def create - payload = app_version_params - version_name = payload.delete :version_name - @app_version = AppVersion.new(version_name: version_name) - if @app_version.save - if params[:os_type] == 'both' - AppVersionHistory.create(app_version: @app_version, os_type: 'android', deprecated: false) - AppVersionHistory.create(app_version: @app_version, os_type: 'ios', deprecated: false) - else - AppVersionHistory.create(app_version: @app_version, os_type: params[:os_type], deprecated: false) - end - redirect_to app_versions_url, notice: 'An App version was successfully created!' + service = CreateAppVersionService.new(app_version_params.merge(os_type: params[:os_type])) + + if service.call + redirect_to app_versions_url(app_name: service.app_name&.to_i), notice: 'App version was successfully created!' else - flash[:error] = @app_version.errors.full_messages - render :new + flash[:error] = service.errors.full_messages + redirect_to new_app_version_url(app_name: service.app_name&.to_i || AppVersion.app_names.invert[AppVersion.app_names[:patchwork]]) end end @@ -40,8 +38,9 @@ def update end def destroy + app_name = @app_version.app_name_before_type_cast @app_version.destroy - redirect_to app_versions_url, notice: 'App version was successfully destroyed.' + redirect_to app_versions_url(params: {app_name: app_name}), notice: 'App version was successfully destroyed.' end def deprecate @@ -61,6 +60,6 @@ def set_app_version end def app_version_params - params.require(:app_version).permit(:version_name) + params.require(:app_version).permit(:version_name, :app_name) end end diff --git a/app/controllers/communities_controller.rb b/app/controllers/communities_controller.rb index 157dcc13..5859d4b8 100644 --- a/app/controllers/communities_controller.rb +++ b/app/controllers/communities_controller.rb @@ -300,11 +300,12 @@ def prepare_for_step6_rendering def community_params params.require(:community).permit( + :post_visibility, patchwork_community_additional_informations_attributes: [:id, :heading, :text, :_destroy], social_links_attributes: [:id, :icon, :name, :url, :_destroy], general_links_attributes: [:id, :icon, :name, :url, :_destroy], patchwork_community_rules_attributes: [:id, :rule, :_destroy], - registration_mode: [], + registration_mode: [] ) end diff --git a/app/controllers/community_admins_controller.rb b/app/controllers/community_admins_controller.rb index 079bb7f8..888a4c8c 100644 --- a/app/controllers/community_admins_controller.rb +++ b/app/controllers/community_admins_controller.rb @@ -17,7 +17,14 @@ def create if @community_admin.save CommunityAdminPostService.new(@community_admin, current_user, @community).call - flash[:notice] = 'Community admin created successfully.' + flash[:notice] = case @community.channel_type + when 'hub' + 'Hub admin created successfully.' + when 'channel_feed' + 'Channel admin created successfully.' + else + 'Community admin created successfully.' + end else flash[:error] = @community_admin.errors.full_messages.join(', ') end diff --git a/app/controllers/users/sessions_controller.rb b/app/controllers/users/sessions_controller.rb index 6da92a64..6132096d 100644 --- a/app/controllers/users/sessions_controller.rb +++ b/app/controllers/users/sessions_controller.rb @@ -13,18 +13,11 @@ def create self.resource = warden.authenticate!(auth_options) unless resource.master_admin? - community_admin = CommunityAdmin.find_by( - account_id: resource.account_id, - is_boost_bot: true, - account_status: CommunityAdmin.account_statuses["active"] - ) + community_admin = find_active_community_admin(resource) - # If no active community admin is found, sign out and show error if community_admin.nil? - sign_out(resource) - flash[:error] = "You are not authorized to log in." - Rails.logger.debug("Flash message: #{flash[:error]}") - redirect_to new_user_session_path and return + handle_unauthorized_login + return end end @@ -82,4 +75,26 @@ def revoke_access_token(token) Rails.logger.error "Failed to revoke access token: #{e.message}" end end + + def find_active_community_admin(user) + if user.organisation_admin? + CommunityAdmin.find_by( + account_id: user.account_id, + account_status: CommunityAdmin.account_statuses[:active] + ) + else + CommunityAdmin.find_by( + account_id: user.account_id, + is_boost_bot: true, + account_status: CommunityAdmin.account_statuses[:active] + ) + end + end + + def handle_unauthorized_login + sign_out(resource) + flash[:error] = "You are not authorized to log in." + Rails.logger.debug("Flash message: #{flash[:error]}") + redirect_to new_user_session_path + end end diff --git a/app/helpers/app_version_helper.rb b/app/helpers/app_version_helper.rb index 7daf9ffa..ad41d219 100644 --- a/app/helpers/app_version_helper.rb +++ b/app/helpers/app_version_helper.rb @@ -18,4 +18,12 @@ def deprecated_ios(histories) ios_history = histories.find { |h| h.os_type == 'ios' } ios_history ? { id: ios_history.id, string: (ios_history.deprecated ? '✅' : '❌') } : { id: nil, string: '❌' } end + + def application_name(app_name) + return 'Patchwork' unless app_name.present? + + if app_name.present? + AppVersion.app_names.key(app_name.to_i).humanize.capitalize + end + end end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index bf08cbb8..82b00833 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -21,14 +21,14 @@ def sidebar_menu_items { path: communities_path(channel_type: 'channel'), id: 'communities-link', header: 'Communities', icon: 'speech.svg', text: 'Communities', active_if: channel_active }, { path: communities_path(channel_type: 'channel_feed'), id: 'communities-link', header: 'Channels', icon: 'channel-feed.svg', text: 'Channels', active_if: channel_feed_active }, { path: communities_path(channel_type: 'hub'), id: 'communities-link', header: 'Hubs', icon: 'hub.svg', text: 'Hubs', active_if: hub_active }, - { path: communities_path(channel_type: 'newsmast'), id: 'communities-link', header: 'Newsmast', icon: 'newsmast.svg', text: 'Newsmast', active_if: newsmast_active }, + { path: communities_path(channel_type: 'newsmast'), id: 'communities-link', header: 'Newsmast channels', icon: 'newsmast.svg', text: 'Newsmast channels', active_if: newsmast_active }, { path: collections_path, id: 'collections-link', header: 'Collections', icon: 'collection.svg', text: 'Collections', active_if: 'collections' }, { path: master_admins_path, id: 'master_admins-link', header: 'Master admin', icon: 'administrator.svg', text: 'Master admins', active_if: 'master_admins' }, # { path: accounts_path, id: 'accounts-link', header: 'Users', icon: 'users.svg', text: 'Users', active_if: 'accounts' }, { path: resources_path, id: 'resources-link', header: 'Resources', icon: 'folder.svg', text: 'Resources', active_if: 'resources' }, { path: api_keys_path, id: 'resources-link', header: 'API Key', icon: 'key.svg', text: 'API Key', active_if: 'api_keys' }, { path: wait_lists_path, id: 'invitation-codes-link', header: 'Invitation codes', icon: 'invitation_code.svg', text: 'Invitation codes', active_if: 'wait_lists' }, - { path: app_versions_path, id: 'app-versions-link', header: 'App versions', icon: 'sliders.svg', text: 'App versions', active_if: 'app_versions' }, + { path: app_versions_path(app_name: AppVersion.app_names['patchwork']), id: 'app-versions-link', header: 'App versions', icon: 'sliders.svg', text: 'App versions', active_if: 'app_versions' }, { path: "/sidekiq", id: 'sidekiq-link', header: 'Sidekiq', icon: 'smile-1.svg', text: 'Sidekiq', target: '_blank' }, { path: '#', id: 'help-support-link', header: 'Help & Support', icon: 'question.svg', text: 'Help & Support', active_if: 'help_support' } ] @@ -44,7 +44,7 @@ def sidebar_menu_items ] elsif newsmast_admin? [ - { path: communities_path(channel_type: 'newsmast'), id: 'communities-link', header: 'Newsmast', icon: 'newsmast.svg', text: 'Newsmast', active_if: newsmast_active }, + { path: communities_path(channel_type: 'newsmast'), id: 'communities-link', header: 'Newsmast channels', icon: 'newsmast.svg', text: 'Newsmast channels', active_if: newsmast_active }, { path: '#', id: 'help-support-link', header: 'Help & Support', icon: 'question.svg', text: 'Help & Support', active_if: 'help_support' } ] else diff --git a/app/helpers/bluesky_account_bridge_hleper.rb b/app/helpers/bluesky_account_bridge_hleper.rb index 1281f397..9fcbc95f 100644 --- a/app/helpers/bluesky_account_bridge_hleper.rb +++ b/app/helpers/bluesky_account_bridge_hleper.rb @@ -30,8 +30,8 @@ def check_account_info(community) def bridged_completely?(community, bridge_info) return false if community.nil? || !bridge_info.present? - domain = community.is_custom_domain? ? community.slug : "#{community.slug}.channel.org" - bridge_info['did'] == community.did_value && bridge_info['handle'].eql?(domain) + + bridge_info['did'] == community.did_value && bridged_domain?(community, bridge_info) end def bridged_account_url(community, bridge_info) @@ -46,4 +46,30 @@ def bridged_handle(community, bridge_info) "@#{bridge_info['handle']}" end + private + + def bridged_domain?(community, bridge_info) + return false unless community && bridge_info&.key?('handle') + + handle = bridge_info['handle'].to_s.downcase + + # Avoid querying admins or account if not needed + community_handle = if community.is_custom_domain? + community.slug.to_s + else + "#{community.slug}.channel.org" + end + + return true if handle == community_handle.to_s.downcase + + # Only fetch admin_account and account if first check fails + admin_account = community&.community_admins.where(is_boost_bot: true).last + return false unless admin_account + + account = Account.find_by(id: admin_account.account_id) + return false unless account + + handle == account.username.to_s.downcase + end + end diff --git a/app/helpers/community_helper.rb b/app/helpers/community_helper.rb index e83913d0..dd72caef 100644 --- a/app/helpers/community_helper.rb +++ b/app/helpers/community_helper.rb @@ -115,7 +115,7 @@ def channel_title(channel_type_param) when 'channel_feed' 'Channels' else - 'Newsmast' + 'Newsmast channels' end end diff --git a/app/helpers/step_helper.rb b/app/helpers/step_helper.rb index 103f5aac..7748de03 100644 --- a/app/helpers/step_helper.rb +++ b/app/helpers/step_helper.rb @@ -9,7 +9,7 @@ def community_steps if master_admin? && is_channel steps << { step: 0, display: 1, title: 'Choose community type', description: 'Select the type of community you want to create.' } - steps << { step: 1, display: 2, title: 'Community Information', description: 'Set up the basic details of your community.' } + steps << { step: 1, display: 2, title: 'Community information', description: 'Set up the basic details of your community.' } steps << { step: 2, display: 3, title: 'Admin and public feed details', description: 'Create admin accounts for your community.' } if is_custom_channel steps << { step: 3, display: 4, title: 'Add content', description: 'Populate your channel with content from across the New Social network. Here you can define rules that specify what content is included in your community.' } @@ -25,13 +25,13 @@ def community_steps steps << { step: 3, display: 3, title: 'Add content', description: 'Populate your channel with content from across the New Social network. Here you can define rules that specify what content is included in your channel.' } steps << { step: 4, display: 4, title: 'Filter content', description: 'Filter content from the wider network to ensure your channel stays relevant.' } elsif newsmast_admin? || is_newsmast - steps << { step: 1, display: 1, title: 'Newsmat community information', description: 'Set up the basic details of your newsmast community.' } - steps << { step: 2, display: 2, title: 'Admin and public feed details', description: 'Create admin accounts for your newsmast community.' } - steps << { step: 3, display: 3, title: 'Add content', description: 'Populate your newsmast community with content from across the New Social network. Here you can define rules that specify what content is included in your newsmast community.' } - steps << { step: 4, display: 4, title: 'Filter content', description: 'Filter content from the wider network to ensure your newsmast community stays relevant.' } + steps << { step: 1, display: 1, title: 'Newsmat channel information', description: 'Set up the basic details of your newsmast channel.' } + steps << { step: 2, display: 2, title: 'Admin and public feed details', description: 'Create admin accounts for your newsmast channel.' } + steps << { step: 3, display: 3, title: 'Add content', description: 'Populate your newsmast channel with content from across the New Social network. Here you can define rules that specify what content is included in your newsmast channel.' } + steps << { step: 4, display: 4, title: 'Filter content', description: 'Filter content from the wider network to ensure your newsmast channel stays relevant.' } elsif organisation_admin? && is_channel steps << { step: 0, display: 1, title: 'Choose Channel Type', description: 'Select the type of channel you want to create.' } - steps << { step: 1, display: 2, title: 'Community Information', description: 'Set up the basic details of your channel.' } + steps << { step: 1, display: 2, title: 'Community information', description: 'Set up the basic details of your channel.' } if is_custom_channel steps << { step: 3, display: 3, title: 'Add content', description: 'Populate your channel with content from across the New Social network. Here you can define rules that specify what content is included in your channel.' } steps << { step: 4, display: 4, title: 'Filter content', description: 'Filter content from the wider network to ensure your channel stays relevant.' } @@ -40,7 +40,7 @@ def community_steps steps << { step: 6, display: 3, title: 'Additional information', description: 'Add your channel guidelines and any additional information to support the channel.' } end elsif hub_admin? || is_hub - steps << { step: 1, display: 1, title: 'Hub Information', description: 'Set up the basic details of your channel.' } + steps << { step: 1, display: 1, title: 'Hub information', description: 'Set up the basic details of your channel.' } steps << { step: 2, display: 2, title: 'Admin and public feed details', description: 'Create admin accounts for your channel.' } steps << { step: 6, display: 3, title: 'Additional information', description: 'Add your channel guidelines and any additional information to support the channel.' } end diff --git a/app/javascript/custom_js/custom_domain.js b/app/javascript/custom_js/custom_domain.js index d7123879..aa1fd100 100644 --- a/app/javascript/custom_js/custom_domain.js +++ b/app/javascript/custom_js/custom_domain.js @@ -185,9 +185,12 @@ $(document).ready(function () { return; } + const subdomainVal = $subdomainSection.find("input").val(); + const customDomainVal = $customDomainInput && $customDomainInput.length ? $customDomainInput.val() : ""; + const isDisabled = state.isSubdomainMode - ? $subdomainSection.find("input").val().trim() === "" - : !(state.domainVerified && $customDomainInput.val().trim()); + ? !subdomainVal || subdomainVal.trim() === "" + : !(state.domainVerified && customDomainVal && customDomainVal.trim()); $continueButton.prop("disabled", isDisabled); } @@ -212,7 +215,7 @@ $(document).ready(function () { const $channelType = $("#channel_type").val(); - if ($channelType !== "channel_feed") { + if ($channelType !== "channel_feed" && $channelType !== "newsmast") { CommunitySetup.init(); } }); diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb new file mode 100644 index 00000000..9fd204ef --- /dev/null +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -0,0 +1,112 @@ +require 'csv' + +class MigrateNewsmastAccountsJob < ApplicationJob + queue_as :default + + def perform(csv_path = Rails.root.join('user_community_export.csv')) + @missing_accounts = [] + + owner_role = UserRole.find_by(name: 'Owner') + owner_user = User.find_by(role: owner_role) + return Rails.logger.error('Owner user not found. Aborting migration.') unless owner_user + + @owner_token = fetch_oauth_token(owner_user.id) + return Rails.logger.error('Owner access token not found. Aborting migration.') unless @owner_token + + Rails.logger.info "Starting migration of accounts from #{csv_path}" + + CSV.foreach(csv_path, headers: true) do |row| + process_batch(row) + end + + # Output missing accounts at the end + output_missing_accounts + end + + private + + def process_batch(row) + # Preload communities + handle = row['handle'] + communities_json = row['communities'] + + + communities_data = JSON.parse(communities_json) + + primary_slug = communities_data['primary'] + other_slugs = communities_data['others'] || [] + + # Combine all community slugs + all_slugs = [primary_slug] + other_slugs + + # Prepare account queries + + account_id = search_target_account_id(handle, @owner_token) + account = Account.find_by(id: account_id) + existing_communities = Community.where(slug: all_slugs, channel_type: 'newsmast') + + if account + JoinedCommunity.where(account_id: account.id).destroy_all + + existing_communities.each do |community| + + if primary_slug && (primary_slug == community.slug) + is_primary = true + else + is_primary = false + end + JoinedCommunity.create!( + account_id: account.id, + patchwork_community_id: community.id, + is_primary: is_primary + ) + Rails.logger.info "Created joined_community for account #{handle}." + + end + else + @missing_accounts << handle + end + end + + def output_missing_accounts + Rails.logger.info "="*80 + Rails.logger.info "MIGRATION COMPLETED" + Rails.logger.info "="*80 + + if @missing_accounts.empty? + Rails.logger.info "✅ All accounts were found successfully!" + else + Rails.logger.info "❌ Missing accounts summary:" + Rails.logger.info "Total missing accounts: #{@missing_accounts.length}" + Rails.logger.info "-" * 80 + + @missing_accounts.each_with_index do |account, index| + Rails.logger.info "#{account}" + end + end + + Rails.logger.info "="*80 + end + + def search_target_account_id(query, owner_token) + retries = 20 + result = nil + while retries >= 0 + result = ContributorSearchService.new( + query, + url: ENV['MASTODON_INSTANCE_URL'], + token: owner_token + ).call + if result.any? + return result.last['id'] + end + retries -= 1 + end + nil + end + + def fetch_oauth_token(user_id) + token_service = GenerateAdminAccessTokenService.new(user_id) + token_service.call + end +end \ No newline at end of file diff --git a/app/models/AppVersion.rb b/app/models/AppVersion.rb index 3a9bca6b..f1911c29 100644 --- a/app/models/AppVersion.rb +++ b/app/models/AppVersion.rb @@ -3,17 +3,33 @@ # Table name: patchwork_app_versions # # id :bigint not null, primary key +# app_name :integer default("patchwork"), not null # version_name :string # created_at :datetime not null # updated_at :datetime not null # # Indexes # -# index_patchwork_app_versions_on_version_name (version_name) UNIQUE +# index_patchwork_app_versions_on_version_name_and_app_name (version_name,app_name) UNIQUE # class AppVersion < ApplicationRecord + VALID_VERSION_REGEX = /\A(\*|(\d+(\.(\*|\d+)){0,2}))\z/ + self.table_name = 'patchwork_app_versions' - has_many :app_version_hostories, class_name: "AppVersionHistory", dependent: :destroy + has_many :app_version_histories, class_name: "AppVersionHistory", dependent: :destroy + + validates :version_name, presence: true, uniqueness: { scope: :app_name, case_sensitive: false} + validate :version_name_format + + enum app_name: { patchwork: 0, newsmast: 1 } + + private + def version_name_format + return if version_name.blank? + + unless version_name.match?(VALID_VERSION_REGEX) + errors.add(:version_name, "must be in the format 1, 1.23, 1.23.456, 1.*, 1.23.*, or * (numbers and dots only, * allowed)") + end + end - validates :version_name, presence: true, uniqueness: true end diff --git a/app/models/account.rb b/app/models/account.rb index e6851e66..e62ba47f 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -85,6 +85,7 @@ class Account < ApplicationRecord has_many :communities, through: :joined_communities has_one :wait_list, foreign_key: :account_id, class_name: 'WaitList', dependent: :destroy has_one :community_admin, foreign_key: :account_id, class_name: 'CommunityAdmin', dependent: :destroy + has_many :settings, class_name: 'Setting', foreign_key: :account_id, dependent: :destroy validates_attachment_content_type :avatar, content_type: IMAGE_MIME_TYPES validates_attachment_content_type :header, content_type: IMAGE_MIME_TYPES diff --git a/app/models/collection.rb b/app/models/collection.rb index a7caf10f..c628e34d 100644 --- a/app/models/collection.rb +++ b/app/models/collection.rb @@ -57,7 +57,15 @@ class Collection < ApplicationRecord .order('patchwork_collections.sorting_index ASC') } - scope :filter_channels, -> { joins(:patchwork_communities).where(patchwork_communities: { channel_type: Community.channel_types[:channel] }).where.not(patchwork_communities: { visibility: nil }) } - scope :filter_channel_feeds, -> { joins(:patchwork_communities).where(patchwork_communities: { channel_type: Community.channel_types[:channel_feed] }).where.not(patchwork_communities: { visibility: nil }) } + scope :filter_by_channel_type, ->(type) { + includes(:patchwork_communities) + .where(patchwork_communities: { channel_type: Community.channel_types[type] }) + .merge(Community.exclude_incomplete_channels) + .distinct + } + + # scope :filter_channels, -> { joins(:patchwork_communities).where(patchwork_communities: { channel_type: Community.channel_types[:channel] }).where.not(patchwork_communities: { visibility: nil }) } + # scope :filter_channel_feeds, -> { joins(:patchwork_communities).where(patchwork_communities: { channel_type: Community.channel_types[:channel_feed] }).where.not(patchwork_communities: { visibility: nil }) } + # scope :filter_newsmast, -> { joins(:patchwork_communities).where(patchwork_communities: { channel_type: Community.channel_types[:newsmast] }).where.not(patchwork_communities: { visibility: nil }) } end diff --git a/app/models/community.rb b/app/models/community.rb index dbdb1d91..cd18fe87 100644 --- a/app/models/community.rb +++ b/app/models/community.rb @@ -26,6 +26,7 @@ # name :string not null # participants_count :integer default(0) # position :integer default(0) +# post_visibility :integer default("followers_only"), not null # registration_mode :string default("none") # slug :string not null # visibility :integer @@ -66,7 +67,8 @@ class Community < ApplicationRecord attribute :is_custom_domain, :boolean, default: false validates :name, presence: true, - length: { maximum: NAME_LENGTH_LIMIT, too_long: "cannot be longer than %{count} characters" } + length: { maximum: NAME_LENGTH_LIMIT, too_long: "cannot be longer than %{count} characters" }, + uniqueness: { case_sensitive: false, message: "has already been taken" } validates :slug, presence: true, length: { minimum: MINIMUM_SLUG_LENGTH, maximum: SLUG_LENGTH_LIMIT, @@ -229,6 +231,8 @@ def formatted_error_messages enum channel_type: { channel: 'channel', channel_feed: 'channel_feed', hub: 'hub', newsmast: 'newsmast'} + enum post_visibility: { public_visibility: 0, unlisted: 1, followers_only: 2, direct: 3 } + def self.ransackable_attributes(auth_object = nil) ["name"] end @@ -256,6 +260,10 @@ def recoverable? deleted_at && deleted_at > 30.days.ago end + def self.has_local_newsmast_channel? + self.filter_newsmast_channels.present? + end + private def unique_patchwork_community_links diff --git a/app/models/community_rule.rb b/app/models/community_rule.rb index 52eaccfc..d495f344 100644 --- a/app/models/community_rule.rb +++ b/app/models/community_rule.rb @@ -14,7 +14,7 @@ # # Foreign Keys # -# fk_rails_... (patchwork_community_id => patchwork_communities.id) +# fk_rails_... (patchwork_community_id => patchwork_communities.id) ON DELETE => cascade # class CommunityRule < ApplicationRecord self.table_name = 'patchwork_community_rules' diff --git a/app/models/joined_community.rb b/app/models/joined_community.rb index 7d79dae9..0202b6fd 100644 --- a/app/models/joined_community.rb +++ b/app/models/joined_community.rb @@ -16,8 +16,8 @@ # # Foreign Keys # -# fk_rails_... (account_id => accounts.id) -# fk_rails_... (patchwork_community_id => patchwork_communities.id) +# fk_rails_... (account_id => accounts.id) ON DELETE => cascade +# fk_rails_... (patchwork_community_id => patchwork_communities.id) ON DELETE => cascade # class JoinedCommunity < ApplicationRecord self.table_name = 'patchwork_joined_communities' diff --git a/app/models/setting.rb b/app/models/setting.rb new file mode 100644 index 00000000..4a45b694 --- /dev/null +++ b/app/models/setting.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +# == Schema Information +# +# Table name: patchwork_settings +# +# id :bigint not null, primary key +# app_name :integer default("patchwork"), not null +# settings :jsonb +# created_at :datetime not null +# updated_at :datetime not null +# account_id :bigint not null +# +# Indexes +# +# index_patchwork_settings_on_account_id (account_id) +# +# Foreign Keys +# +# fk_rails_... (account_id => accounts.id) ON DELETE => cascade +# +class Setting < ApplicationRecord + self.table_name = 'patchwork_settings' + + belongs_to :account, class_name: 'Account' + + validates :account, presence: true, uniqueness: { scope: :app_name, case_sensitive: false } + + enum app_name: { patchwork: 0, newsmast: 1 } , _default: :patchwork + +end diff --git a/app/serializers/api/v1/channel_serializer.rb b/app/serializers/api/v1/channel_serializer.rb index 0ff61d8a..1a8d9828 100644 --- a/app/serializers/api/v1/channel_serializer.rb +++ b/app/serializers/api/v1/channel_serializer.rb @@ -48,16 +48,25 @@ class Api::V1::ChannelSerializer favourited_status(object.id, params[:current_account]) end + attribute :favourited_count do |object, params| + favourited_account_counts(object.id) + end + attribute :is_primary do |object, params| primary_status(object.id, params[:current_account]) end attribute :community_admin do |object| community_admin = object&.community_admins&.first + username = if object&.channel_type == Community.channel_types[:newsmast] + community_admin&.account&.username ? "@#{community_admin&.account&.username}@newsmast.community" : "" + else + community_admin&.account&.username ? "@#{community_admin&.account&.username}@#{self.default_domain}" : "" + end community_admin ? { id: community_admin.id, account_id: community_admin&.account&.id.to_s, - username: community_admin&.account&.username ? "@#{community_admin&.account&.username}@#{self.default_domain}" : "", + username: username, } : {} end @@ -97,4 +106,8 @@ def self.primary_status(channel_id, account) JoinedCommunity.exists?(patchwork_community_id: channel_id, is_primary: true, account_id: account['id']) end + + def self.favourited_account_counts(channel_id) + JoinedCommunity.where(patchwork_community_id: channel_id).size + end end diff --git a/app/serializers/api/v1/collection_serializer.rb b/app/serializers/api/v1/collection_serializer.rb index 44043e3d..251e7475 100644 --- a/app/serializers/api/v1/collection_serializer.rb +++ b/app/serializers/api/v1/collection_serializer.rb @@ -42,10 +42,19 @@ class Api::V1::CollectionSerializer private def self.newsmast_community_count(object) - if object.slug == "all-collection" - NEWSMAST_CHANNELS.size + if Community.has_local_newsmast_channel? + if object.slug == "all-collection" + Community.filter_newsmast_channels.size + else + Community.filter_newsmast_channels.where(patchwork_collection_id: object.id).size + end else - NEWSMAST_CHANNELS.select { |channel| channel[:attributes][:patchwork_collection_id] == object.id }.size + # If there are no local newsmast channels, we use the NEWSMAST_CHANNELS constant + if object.slug == "all-collection" + NEWSMAST_CHANNELS.size + else + NEWSMAST_CHANNELS.select { |channel| channel[:attributes][:patchwork_collection_id] == object.id }.size + end end end @@ -63,7 +72,12 @@ def self.newsmast_channels(object) if object.slug == "all-collection" { data: [] } else + if Community.has_local_newsmast_channel? + newmast_channels = Community.filter_newsmast_channels.where(patchwork_collection_id: object.id) + Api::V1::ChannelSerializer.new(newmast_channels).serializable_hash + else { data: NEWSMAST_CHANNELS.select { |channel| channel[:attributes][:patchwork_collection_id] == object.id } } + end end end diff --git a/app/services/bluesky_service.rb b/app/services/bluesky_service.rb index 466effac..60478f45 100644 --- a/app/services/bluesky_service.rb +++ b/app/services/bluesky_service.rb @@ -1,27 +1,45 @@ class BlueskyService + def initialize(community) - @community = community - @url = "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=#{@community&.slug}.channel.org" + admin_account = community&.community_admins.where(is_boost_bot: true).last + account = Account.find_by(id: admin_account&.account_id) + + @urls = [] + @urls << "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=#{community&.slug}.channel.org" if community&.slug + @urls << "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=#{account&.username}.channel.org" if account&.username end def fetch_bluesky_account - retries = 2 - begin - response = HTTParty.get(@url) + @urls.each do |url| + result = fetch_with_retries(url) + return result unless result.empty? + end - return JSON.parse(response.body) if response.code == 200 + {} + end - Rails.logger.error("Failed to fetch bluesky account: #{@community&.slug} => #{response.body}") - {} + private + + def fetch_with_retries(url, retries = 2) + begin + response = HTTParty.get(url) + + if response.code == 200 + return JSON.parse(response.body) + else + Rails.logger.error("Failed to fetch bluesky account from #{url}: #{response.body}") + return {} + end rescue Socket::ResolutionError, SocketError => e if (retries -= 1) > 0 sleep 1 retry + else + Rails.logger.error("Network error after retries for #{url}: #{e.message}") + return {} end - Rails.logger.error("Network error after retries: #{e.message}") - {} rescue StandardError => e - Rails.logger.error("Unexpected error: #{e.message}") + Rails.logger.error("Unexpected error fetching #{url}: #{e.message}") {} end end diff --git a/app/services/community_admin_post_service.rb b/app/services/community_admin_post_service.rb index 3d090efe..e20284ef 100644 --- a/app/services/community_admin_post_service.rb +++ b/app/services/community_admin_post_service.rb @@ -12,12 +12,14 @@ def call private def create_admin! + is_locked = @community&.content_type&.group_channel? ? true : false account_attributes = { display_name: @community_admin.display_name, avatar: @community.avatar_image || '', header: @community.banner_image || '', note: @community.description, - discoverable: true + discoverable: true, + locked: is_locked } if @community_admin.is_boost_bot diff --git a/app/services/community_post_service.rb b/app/services/community_post_service.rb index 3b9b1f88..55a27af8 100644 --- a/app/services/community_post_service.rb +++ b/app/services/community_post_service.rb @@ -12,6 +12,7 @@ def call(current_user, options = {}) create_community end create_content_type if @community.persisted? + @community rescue ActiveRecord::RecordNotUnique => e Rails.logger.error("Community creation/update failed: #{e.message}") @@ -115,7 +116,6 @@ def set_default_additional_information def set_default_hashtag(community, user) return nil if community.nil? || user.nil? - @community = community @current_user = user hashtag = "#{@community.slug.split('-').map(&:capitalize).join}Channel" @@ -193,6 +193,14 @@ def create_content_type channel_type: @options[:content_type], custom_condition: custom_condition_value ) + boost_bot_account = Account.find_by(id: @community&.community_admins&.where(is_boost_bot: true)&.first&.account_id) + if boost_bot_account + if content_type.group_channel? + boost_bot_account.update(locked: true) + else + boost_bot_account.update(locked: false) + end + end end def custom_condition_value diff --git a/app/services/create_app_version_service.rb b/app/services/create_app_version_service.rb new file mode 100644 index 00000000..4d701a18 --- /dev/null +++ b/app/services/create_app_version_service.rb @@ -0,0 +1,70 @@ +class CreateAppVersionService + include ActiveModel::Model + + attr_accessor :version_name, :app_name, :os_type + + validates :version_name, presence: true + validate :valid_app_name + + def initialize(params = {}) + @version_name = params[:version_name] + @app_name = params[:app_name] + @os_type = params[:os_type]&.strip&.downcase + end + + def call + return false unless valid? + + AppVersion.transaction do + @app_version = AppVersion.create!( + version_name: version_name, + app_name: app_value + ) + + history_records = if both_os? + %w[android ios].map { |os| history_attributes(os) } + else + [history_attributes(os_type)] + end + AppVersionHistory.insert_all(history_records) + end + + true + rescue ActiveRecord::RecordInvalid => e + errors.add(:base, "Failed to create record: #{e.record.errors.full_messages.to_sentence}") + false + end + + private + + def history_attributes(os) + { + app_version_id: @app_version.id, + os_type: os, + deprecated: false, + created_at: Time.current, + updated_at: Time.current + } + end + + def valid_app_name + + if @app_name.blank? || @app_name.empty? + errors.add(:app_name, 'cannot be blank') + end + + if AppVersion.app_names.value?(@app_name&.to_i) + return @app_name&.to_i + end + + errors.add(:app_name, 'is not valid') + end + + def app_value + @app_name&.to_i + end + + def both_os? + @os_type == 'both' + end +end \ No newline at end of file diff --git a/app/views/app_versions/_form.html.haml b/app/views/app_versions/_form.html.haml index 47605d4d..366c2a2b 100644 --- a/app/views/app_versions/_form.html.haml +++ b/app/views/app_versions/_form.html.haml @@ -1,9 +1,11 @@ +- title = application_name(params[:app_name]) + .row .col-12 .card .card-header %h3.card-title - = "#{action_name.capitalize}" + = "#{action_name.capitalize} App version of #{title}" .card-body.w-250 = simple_form_for @app_version, local: true do |f| @@ -17,11 +19,12 @@ .col-md-6 = label_tag :os_type, 'OS type', class: 'form-label' = select_tag :os_type, options_for_select([ 'both', 'android', 'ios'], 'both'), class: 'form-control' - + + = f.input :app_name, as: :hidden, input_html: { value: params[:app_name] } .row.mt-2 .col-md-6.d-flex.justify-content-center - = link_to 'Cancel', app_versions_path, class: 'btn btn-secondary mx-2 btn-custom' + = link_to 'Cancel', app_versions_path(app_name: params[:app_name]), class: 'btn btn-secondary mx-2 btn-custom' = f.submit 'Save', class: 'btn btn-danger mx-2 btn-custom' .row.d-flex.justify-content-between.mt-4 .col-auto - %a.btn.btn-outline-secondary{ href: app_versions_path } Back + %a.btn.btn-outline-secondary{ href: app_versions_path(app_name: params[:app_name]) } Back diff --git a/app/views/app_versions/index.html.haml b/app/views/app_versions/index.html.haml index 38d697b3..2d605dec 100644 --- a/app/views/app_versions/index.html.haml +++ b/app/views/app_versions/index.html.haml @@ -1,18 +1,25 @@ - content_for :title do = 'App versions' +- title = application_name(params[:app_name]) .row .col-12 .card .card-header %h3.card-title - App versions + App versions of #{title} %br - %small.text-muted.pt-2 App versions list. - .card-tools - %button.btn.btn-sm.btn-danger.ml-3{ onclick: "window.location='#{new_app_version_path}'" } + %small.text-muted.pt-2 Here are all the application versions. + .card-tools.d-flex.justify-content-end.align-items-center + = form_with url: app_versions_path, method: :get, local: true, html: { class: 'form-inline mr-2' } do + = select_tag :app_name, + options_for_select(AppVersion.app_names.map { |k, v| [k.humanize.capitalize, v] }, params[:app_name]), + class: "form-control form-control-sm", + onchange: "this.form.submit();" + %button.btn.btn-danger.d-flex.align-items-center.ml-3{ onclick: "window.location='#{new_app_version_path(app_name: params[:app_name])}'" } Create App version - = image_tag("icons/circle-plus.svg", class: "ml-2", width: "16", height: "16") + = image_tag("icons/circle-plus.svg",class: "ml-2", width: "16", height: "16") + .card-body %table.table.no-side-borders.top-bottom-border{data: {url: app_versions_url, type: 'app_version'}} %thead @@ -28,27 +35,27 @@ %tr %td.text-center.info-box-content{colspan: "100%"} %p.text-muted.small You haven’t added any App versions yet. - %a.text-danger.small{ href: new_app_version_path } Click here to create one + %a.text-danger.small{ href: new_app_version_path(app_name: params[:app_name]) } Click here to create one - @app_versions.each do |app_version| %tr %td= app_version.version_name - - android_data = os_type_android(app_version.app_version_hostories) + - android_data = os_type_android(app_version.app_version_histories) - unless android_data[:id].nil? %td= "#{android_data[:string]}" - else %td - - - android_deprecated_data = deprecated_android(app_version.app_version_hostories) + - android_deprecated_data = deprecated_android(app_version.app_version_histories) - unless android_deprecated_data[:id].nil? %td = check_box_tag "android_deprecated_#{android_deprecated_data[:id]}", '1', android_deprecated_data[:string] == '✅', data: { id: android_deprecated_data[:id], os_type: 'android' }, class: 'deprecated-checkbox' - else %td - - - ios_data = os_type_ios(app_version.app_version_hostories) + - ios_data = os_type_ios(app_version.app_version_histories) - unless ios_data[:id].nil? %td= "#{ios_data[:string]}" - else %td - - - ios_deprecated_data = deprecated_ios(app_version.app_version_hostories) + - ios_deprecated_data = deprecated_ios(app_version.app_version_histories) - unless ios_deprecated_data[:id].nil? %td = check_box_tag "ios_deprecated_#{ios_deprecated_data[:id]}", '1', ios_deprecated_data[:string] == '✅', data: { id: ios_deprecated_data[:id], os_type: 'ios' }, class: 'deprecated-checkbox' diff --git a/app/views/communities/_form_step1.html.haml b/app/views/communities/_form_step1.html.haml index 51f5041d..364490eb 100644 --- a/app/views/communities/_form_step1.html.haml +++ b/app/views/communities/_form_step1.html.haml @@ -21,7 +21,7 @@ .card-header %div.d-flex.justify-content-between %div - %h5.card-title Step #{fetch_display_step} #{channel_type_info} Information + %h5.card-title Step #{fetch_display_step} #{channel_type_info} information .card-body %p.text-muted.small Fill out the basic details for your channel. Provide a unique name, choose the collection it belongs to, and upload images for the banner and avatar. Write a short bio to describe the channel’s purpose and theme. - is_read_only = params[:id].present? && (!is_channel_feed || is_newsmast ? Community.find_by_id(params[:id])&.visibility.present? : true) @@ -186,7 +186,9 @@ %div.dropzone-placeholder %i.fa-solid.fa-upload %p.mb-1 Drag & drop an image here or click to select a file - %p.mb-0.text-muted.small 1080 x 540 recommended dimensions, up to 2MB + %p.mb-0.text-muted.small 1080 x 540px recommended dimensions, up to 2MB + - if banner_image_url.present? + %p.mt-4.text-muted.small.text-center 1080 x 540px recommended dimensions, up to 2MB .row.d-flex.justify-content-between .col-auto diff --git a/app/views/communities/_form_step3.html.haml b/app/views/communities/_form_step3.html.haml index 43b6e6c8..eb0eaa03 100644 --- a/app/views/communities/_form_step3.html.haml +++ b/app/views/communities/_form_step3.html.haml @@ -136,8 +136,7 @@ .row.d-flex.justify-content-between .col-md-9-auto %label Keyword filtering (filter in) - %p.text-muted.small Add keyword filters to allow posts from the wider network which contain this keyword from appearing in the channel. - .col-md-3-auto.mt-auto + %p.text-muted.small Use labels to keep your Channel on topic. Unless left blank, only posts using these keywords will appear in your Channel. %button.btn.btn-outline-secondary{title: 'Add keyword filtering', "data-toggle" => "modal", "data-target" => "#CommunityFilterModal"} Add new .table-responsive %table.table.table-striped.no-side-borders.top-bottom-border.mt-3 diff --git a/app/views/communities/_form_step6.html.haml b/app/views/communities/_form_step6.html.haml index 3b6dde32..da57ad79 100644 --- a/app/views/communities/_form_step6.html.haml +++ b/app/views/communities/_form_step6.html.haml @@ -2,6 +2,7 @@ .row-md-12.my-4 .col = carousel_indicators + - is_group_channel = @content_type&.group_channel? = simple_form_for @community, url: manage_additional_information_community_path, method: :post, html: { id: 'additionalForm' } do |form| .row @@ -85,7 +86,72 @@ %span.ml-2 Open to new users %span.ml-2 = render 'shared/tooltip_custom', tooltip_text: 'Anyone can sign up freely without any approval or invitation needed.', tooltip_position: 'right' + .row{ class: ("d-none" unless is_group_channel) } + .col-md-12 + .card.mb-3 + .card-body + .row + .col + %label Post’s default visibility setting + %p.text-muted.small Controls who can see your post, giving you flexible privacy from public sharing to private messages. + .form-check + .d-flex.align-items-center + %label.form-check-label.switch.mb-0 + %input.form-check-input.switch-input#public_mode{ type: 'radio', name: 'community[post_visibility]', value: 'public_visibility', checked: @community.post_visibility == 'public_visibility' } + %span.switch-slider.round + %span.slider-tick + %i.fa-solid.fa-check + %span.slider-cross + %i.fa-solid.fa-xmark + %span.ml-2 Public + %span.ml-2 + = render 'shared/tooltip_custom', tooltip_text: 'Visible to everyone and appears in public timelines', tooltip_position: 'right' + %hr + .row.mt-2 + .col + .form-check + .d-flex.align-items-center + %label.form-check-label.switch.mb-0 + %input.form-check-input.switch-input#unlisted_mode{ type: 'radio', name: 'community[post_visibility]', value: 'unlisted', checked: @community.post_visibility == 'unlisted' } + %span.switch-slider.round + %span.slider-tick + %i.fa-solid.fa-check + %span.slider-cross + %i.fa-solid.fa-xmark + %span.ml-2 Unlisted + %span.ml-2 + = render 'shared/tooltip_custom', tooltip_text: 'Visible to anyone with the link but hidden from public timelines.', tooltip_position: 'right' + %hr + .row.mt-2 + .col + .form-check + .d-flex.align-items-center + %label.form-check-label.switch.mb-0 + %input.form-check-input.switch-input#followers_only_mode{ type: 'radio', name: 'community[post_visibility]', value: 'followers_only', checked: @community.post_visibility == 'followers_only' } + %span.switch-slider.round + %span.slider-tick + %i.fa-solid.fa-check + %span.slider-cross + %i.fa-solid.fa-xmark + %span.ml-2 Followers-only + %span.ml-2 + = render 'shared/tooltip_custom', tooltip_text: 'Visible only to your followers and excluded from public timelines.', tooltip_position: 'right' + %hr + .row.mt-2 + .col + .form-check + .d-flex.align-items-center + %label.form-check-label.switch.mb-0 + %input.form-check-input.switch-input#direct_mode{ type: 'radio', name: 'community[post_visibility]', value: 'direct', checked: @community.post_visibility == 'direct' } + %span.switch-slider.round + %span.slider-tick + %i.fa-solid.fa-check + %span.slider-cross + %i.fa-solid.fa-xmark + %span.ml-2 Direct + %span.ml-2 + = render 'shared/tooltip_custom', tooltip_text: 'Visible only to mentioned users, like a private message.', tooltip_position: 'right' .row .col-md-12 .card diff --git a/app/views/communities/index.html.haml b/app/views/communities/index.html.haml index 5fdf0ca8..26b30008 100644 --- a/app/views/communities/index.html.haml +++ b/app/views/communities/index.html.haml @@ -32,16 +32,16 @@ %table.table.no-side-borders.top-bottom-border{data: {url: accounts_url, type: 'account'}} %thead %tr - %th.align-left + %th.align-left{ style: "width: 40px;" } = check_box_tag :select_all, '', false, id: 'select_all' - %th #{title} - %th Username + %th{ style: "width: 80px;"} #{title} + %th{ style: "width: 100px;"} Username - if channel_type_param.eql?('channel') || channel_type_param.eql?('hub') - %th Address - %th Followers - %th #{keyword.capitalize} type - %th Status - %th Actions + %th{ style: "width: 100px;"} Address + %th{ style: "width: 50px;"} Followers + %th{ style: "width: 100px;"} Type + %th{ style: "width: 110px;"} Status + %th{ style: "width: 80px;"} Actions %tbody - if @records.size == 0 %tr @@ -52,22 +52,22 @@ - @records.each do |community| - account = community&.community_admins&.first&.account %tr - %td.text-center + %td.text-center{ style: "width: 40px;" } = check_box_tag "selected_communities[]", community.id, false, class: 'select_community' - %td= community.name - %td + %td{ style: "width: 80px;"}= community.name + %td{ style: "width: 100px;"} - if account.present? %span.copyable-text{title: "Click to copy", style: "cursor: pointer;", onclick: "copyToClipboard('#{account_url(account)}')"}= "@#{username(account)}@#{domain(account)}" - else %span.text-muted - - if channel_type_param.eql?('channel') || channel_type_param.eql?('hub') - %td + %td{ style: "width: 100px;"} - if address_url(community).present? %p = link_to address_url(community).sub('/public', ''), address_url(community), target: '_blank' - else %p.text-muted - - %td + %td{ style: "width: 50px;"} - if account&.follower_count && account&.follower_count > 0 %a{ href: follower_list_community_url(id: community), title: "view followers", style: "display: flex; align-items: center;" } = image_tag("icons/eye.svg", width: "20", height: "20", style: "margin-right: 5px;") @@ -76,13 +76,13 @@ %a{ href: "#", title: "no followers", style: "display: flex; align-items: center; pointer-events: none; color: gray !important;" } = image_tag("icons/eye.svg", width: "20", height: "20", style: "margin-right: 5px;") 0 - %td= get_channel_content_type(community) - %td + %td{ style: "width: 100px;"}= get_channel_content_type(community) + %td{ style: "width: 110px;"} - if community.visibility.present? %span.badge.badge-pill.badge-success Complete - else %span.badge.badge-pill.badge-warning Incomplete - %td + %td{ style: "width: 80px;"} - if community.deleted_at.present? = link_to recover_community_path(community, channel_type_param: channel_type_param), method: :post, data: { confirm: "Are you sure you want to recover this #{keyword}?" } do = image_tag("icons/recover.svg", title: "Recover", class: "ml-2", width: "16", height: "16") diff --git a/config/database.yml b/config/database.yml index 8ca53528..49f5b257 100644 --- a/config/database.yml +++ b/config/database.yml @@ -63,7 +63,11 @@ development: # Do not set this db to the same as development or production. test: <<: *default - database: dashboard_test + database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %> + username: <%= ENV['DB_USER'] || 'mastodon' %> + password: <%= (ENV['DB_PASS'] || '').to_json %> + host: <%= ENV['DB_HOST'] || 'localhost' %> + port: <%= ENV['DB_PORT'] || 5432 %> # As with config/credentials.yml, you never want to store sensitive information, # like your database password, in your source code. If your source code is diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index 5c815d88..8cc5579d 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -1,19 +1,20 @@ require 'sidekiq' require 'sidekiq/web' require 'sidekiq-scheduler' - +require 'uri' + redis_url = if ENV['REDIS_PASSWORD'].present? "redis://:#{ENV['REDIS_PASSWORD']}@#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" else "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" end - + Sidekiq.configure_server do |config| config.redis = { url: redis_url } end - + Sidekiq.configure_client do |config| config.redis = { url: redis_url diff --git a/config/routes/api_v1.rb b/config/routes/api_v1.rb index 452b9504..ee685572 100644 --- a/config/routes/api_v1.rb +++ b/config/routes/api_v1.rb @@ -16,6 +16,7 @@ get :my_channel get :channel_feeds get :newsmast_channels + get :bridge_information end end @@ -83,6 +84,12 @@ get 'check_version' => 'app_versions#check_version', as: 'check_version' end end + + resources :settings,only: [:index, :destroy] do + collection do + post :upsert + end + end end end diff --git a/db/migrate/20250530082427_add_app_name_to_patchwork_app_versions.rb b/db/migrate/20250530082427_add_app_name_to_patchwork_app_versions.rb new file mode 100644 index 00000000..672cf3f2 --- /dev/null +++ b/db/migrate/20250530082427_add_app_name_to_patchwork_app_versions.rb @@ -0,0 +1,5 @@ +class AddAppNameToPatchworkAppVersions < ActiveRecord::Migration[7.1] + def change + add_column :patchwork_app_versions, :app_name, :integer, default: 0, null: false + end +end diff --git a/db/migrate/20250530120317_update_version_name_index_on_app_versions.rb b/db/migrate/20250530120317_update_version_name_index_on_app_versions.rb new file mode 100644 index 00000000..5ded2fba --- /dev/null +++ b/db/migrate/20250530120317_update_version_name_index_on_app_versions.rb @@ -0,0 +1,10 @@ +class UpdateVersionNameIndexOnAppVersions < ActiveRecord::Migration[7.1] + disable_ddl_transaction! + def change + if index_exists?(:patchwork_app_versions, :version_name, unique: true) + remove_index :patchwork_app_versions, :version_name + end + + add_index :patchwork_app_versions, [:version_name, :app_name], unique: true, algorithm: :concurrently + end +end diff --git a/db/migrate/20250618065354_patchwork_settings.rb b/db/migrate/20250618065354_patchwork_settings.rb new file mode 100644 index 00000000..4cfb682a --- /dev/null +++ b/db/migrate/20250618065354_patchwork_settings.rb @@ -0,0 +1,10 @@ +class PatchworkSettings < ActiveRecord::Migration[7.1] + def change + create_table :patchwork_settings do |t| + t.integer :app_name, :integer, default: 0, null: false + t.references :account, null: false, foreign_key: { on_delete: :cascade, validate: false } + t.jsonb :settings, default: {} + t.timestamps + end + end +end diff --git a/db/migrate/20250618093728_remove_integer_from_settings.rb b/db/migrate/20250618093728_remove_integer_from_settings.rb new file mode 100644 index 00000000..5e21a83a --- /dev/null +++ b/db/migrate/20250618093728_remove_integer_from_settings.rb @@ -0,0 +1,6 @@ +class RemoveIntegerFromSettings < ActiveRecord::Migration[7.1] + def change + safety_assured { remove_column :patchwork_settings, :integer, :integer } + change_column_default :patchwork_settings, :app_name, from: nil, to: 0 + end +end diff --git a/db/migrate/20250619053704_add_post_visibility_to_communities.rb b/db/migrate/20250619053704_add_post_visibility_to_communities.rb new file mode 100644 index 00000000..459d322e --- /dev/null +++ b/db/migrate/20250619053704_add_post_visibility_to_communities.rb @@ -0,0 +1,5 @@ +class AddPostVisibilityToCommunities < ActiveRecord::Migration[7.1] + def change + add_column :patchwork_communities, :post_visibility, :integer, default: 2, null: false + end +end diff --git a/db/migrate/20250625095953_add_foreign_key_to_community_rules.rb b/db/migrate/20250625095953_add_foreign_key_to_community_rules.rb new file mode 100644 index 00000000..3ae92b1a --- /dev/null +++ b/db/migrate/20250625095953_add_foreign_key_to_community_rules.rb @@ -0,0 +1,6 @@ +class AddForeignKeyToCommunityRules < ActiveRecord::Migration[7.1] + def change + remove_foreign_key :patchwork_community_rules, :patchwork_communities, if_exists: true + add_foreign_key :patchwork_community_rules, :patchwork_communities, on_delete: :cascade, validate: false + end +end diff --git a/db/migrate/20250626070014_add_foreign_key_to_joined_communities.rb b/db/migrate/20250626070014_add_foreign_key_to_joined_communities.rb new file mode 100644 index 00000000..7e18e127 --- /dev/null +++ b/db/migrate/20250626070014_add_foreign_key_to_joined_communities.rb @@ -0,0 +1,8 @@ +class AddForeignKeyToJoinedCommunities < ActiveRecord::Migration[7.1] + def change + %i[patchwork_communities accounts].each do |table| + remove_foreign_key :patchwork_joined_communities, table, if_exists: true + add_foreign_key :patchwork_joined_communities, table, on_delete: :cascade, validate: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb index c0fd526d..fa58f5b0 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2025_05_13_002202) do +ActiveRecord::Schema[7.1].define(version: 2025_06_26_070014) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -424,6 +424,28 @@ t.index ["account_id"], name: "index_custom_filters_on_account_id" end + create_table "deprecated_preview_cards", force: :cascade do |t| + t.bigint "status_id" + t.string "url", default: "", null: false + t.string "title" + t.string "description" + t.string "image_file_name" + t.string "image_content_type" + t.bigint "image_file_size" + t.datetime "image_updated_at", precision: nil + t.datetime "created_at", precision: nil, null: false + t.datetime "updated_at", precision: nil, null: false + t.integer "type", default: 0, null: false + t.text "html", default: "", null: false + t.string "author_name", default: "", null: false + t.string "author_url", default: "", null: false + t.string "provider_name", default: "", null: false + t.string "provider_url", default: "", null: false + t.integer "width", default: 0, null: false + t.integer "height", default: 0, null: false + t.index ["status_id"], name: "index_deprecated_preview_cards_on_status_id", unique: true + end + create_table "domain_allows", force: :cascade do |t| t.string "domain", default: "", null: false t.datetime "created_at", precision: nil, null: false @@ -808,7 +830,8 @@ t.string "version_name" t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.index ["version_name"], name: "index_patchwork_app_versions_on_version_name", unique: true + t.integer "app_name", default: 0, null: false + t.index ["version_name", "app_name"], name: "index_patchwork_app_versions_on_version_name_and_app_name", unique: true end create_table "patchwork_collections", force: :cascade do |t| @@ -860,6 +883,7 @@ t.string "registration_mode", default: "none" t.bigint "ip_address_id" t.datetime "deleted_at" + t.integer "post_visibility", default: 2, null: false t.index ["ip_address_id"], name: "index_patchwork_communities_on_ip_address_id" t.index ["name"], name: "index_patchwork_communities_on_name", unique: true t.index ["patchwork_collection_id"], name: "index_patchwork_communities_on_patchwork_collection_id" @@ -1020,6 +1044,15 @@ t.index ["account_id"], name: "index_patchwork_notification_tokens_on_account_id" end + create_table "patchwork_settings", force: :cascade do |t| + t.integer "app_name", default: 0, null: false + t.bigint "account_id", null: false + t.jsonb "settings", default: {} + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["account_id"], name: "index_patchwork_settings_on_account_id" + end + create_table "patchwork_wait_lists", force: :cascade do |t| t.text "email" t.text "description" @@ -1579,6 +1612,7 @@ add_foreign_key "custom_filter_statuses", "custom_filters", on_delete: :cascade add_foreign_key "custom_filter_statuses", "statuses", on_delete: :cascade add_foreign_key "custom_filters", "accounts", on_delete: :cascade + add_foreign_key "deprecated_preview_cards", "statuses", on_delete: :cascade add_foreign_key "email_domain_blocks", "email_domain_blocks", column: "parent_id", on_delete: :cascade add_foreign_key "favourites", "accounts", name: "fk_5eb6c2b873", on_delete: :cascade add_foreign_key "favourites", "statuses", name: "fk_b0e856845e", on_delete: :cascade @@ -1639,12 +1673,13 @@ add_foreign_key "patchwork_community_contact_emails", "patchwork_communities", on_delete: :cascade add_foreign_key "patchwork_community_links", "patchwork_communities", on_delete: :cascade add_foreign_key "patchwork_community_post_types", "patchwork_communities", on_delete: :cascade - add_foreign_key "patchwork_community_rules", "patchwork_communities" + add_foreign_key "patchwork_community_rules", "patchwork_communities", on_delete: :cascade, validate: false add_foreign_key "patchwork_content_types", "patchwork_communities", on_delete: :cascade add_foreign_key "patchwork_drafted_statuses", "accounts", on_delete: :cascade - add_foreign_key "patchwork_joined_communities", "accounts" - add_foreign_key "patchwork_joined_communities", "patchwork_communities" + add_foreign_key "patchwork_joined_communities", "accounts", on_delete: :cascade, validate: false + add_foreign_key "patchwork_joined_communities", "patchwork_communities", on_delete: :cascade, validate: false add_foreign_key "patchwork_notification_tokens", "accounts", on_delete: :cascade + add_foreign_key "patchwork_settings", "accounts", on_delete: :cascade add_foreign_key "patchwork_wait_lists", "accounts", on_delete: :cascade, validate: false add_foreign_key "poll_votes", "accounts", on_delete: :cascade add_foreign_key "poll_votes", "polls", on_delete: :cascade diff --git a/db/seeds/01_server_setttings.rb b/db/seeds/01_server_setttings.rb index 744c8518..30878737 100644 --- a/db/seeds/01_server_setttings.rb +++ b/db/seeds/01_server_setttings.rb @@ -1,41 +1,39 @@ -# if Rails.env.development? - if ServerSetting.count == 0 +if ServerSetting.count == 0 - settings = [ - { - name: 'Spam Block', - options: ['Spam filters', 'Sign up challenge'] - }, - { - name: 'Content Moderation', - options: ['Content filters'] - }, - { - name: 'Federation', - options: ['Bluesky', 'Threads', 'Live blocklist'] - }, - { - name: 'Local Features', - options: ['Custom theme', 'Search opt-out', 'Local only posts', 'Long posts and markdown', 'Local quote posts'] - }, - { - name: 'User Management', - options: ['Guest accounts', 'e-Newsletters', 'Analytics'] - }, - { - name: 'Plug-ins', - options: [] - } - ] + settings = [ + { + name: 'Spam Block', + options: ['Spam filters', 'Sign up challenge'] + }, + { + name: 'Content Moderation', + options: ['Content filters'] + }, + { + name: 'Federation', + options: ['Bluesky', 'Threads', 'Live blocklist'] + }, + { + name: 'Local Features', + options: ['Custom theme', 'Search opt-out', 'Local only posts', 'Long posts and markdown', 'Local quote posts'] + }, + { + name: 'User Management', + options: ['Guest accounts', 'e-Newsletters', 'Analytics'] + }, + { + name: 'Plug-ins', + options: [] + } + ] - settings.each do |setting| - server_setting = ServerSetting.create(name: setting[:name]) + settings.each do |setting| + server_setting = ServerSetting.create(name: setting[:name]) - setting[:options].each_with_index do |option, index| - ServerSetting.create(name: option, position: (index + 1), parent_id: server_setting.id) - end + setting[:options].each_with_index do |option, index| + ServerSetting.create(name: option, position: (index + 1), parent_id: server_setting.id) end - - p 'Server Settings are created!!' end -# end + + p 'Server Settings are created!!' +end \ No newline at end of file diff --git a/db/seeds/community_user_role.rb b/db/seeds/community_user_role.rb index 14821fae..2c509485 100644 --- a/db/seeds/community_user_role.rb +++ b/db/seeds/community_user_role.rb @@ -1,5 +1,3 @@ -# UserRole.where(name: 'community-admin').destroy_all - roles = [ { name: 'OrganisationAdmin', position: 1010, permissions: %w[invite_users] }, { name: 'MasterAdmin', position: 1100, permissions: %w[administrator] }, diff --git a/lib/tasks/migrate_newsmast_accounts.rake b/lib/tasks/migrate_newsmast_accounts.rake new file mode 100644 index 00000000..f305af3a --- /dev/null +++ b/lib/tasks/migrate_newsmast_accounts.rake @@ -0,0 +1,9 @@ +namespace :migrate_newsmast_accounts do + desc 'Migrate Newsmast accounts (usage: rake migrate_newsmast_accounts:create' + task create: :environment do + + puts 'Staring Newsmast accounts migrations......' + + MigrateNewsmastAccountsJob.perform_later + end +end \ No newline at end of file diff --git a/lib/tasks/migrate_newsmast_channels.rake b/lib/tasks/migrate_newsmast_channels.rake index 1804d2af..82e3694b 100644 --- a/lib/tasks/migrate_newsmast_channels.rake +++ b/lib/tasks/migrate_newsmast_channels.rake @@ -57,16 +57,18 @@ def find_or_create_community_admin(community, admin_username) acc.save(validate: false) domain = 'channel.org' - user = User.where(email: "#{admin_username}@#{domain}").first_or_initialize(email: "#{admin_username}@#{domain}", password: 'password', password_confirmation: 'password', confirmed_at: Time.now.utc, role: UserRole.find_by(name: 'UserAdmin'), account: acc, agreement: true, approved: true) + user = User.where(email: "#{admin_username}@#{domain}").first_or_initialize(email: "#{admin_username}@#{domain}", password: 'password', password_confirmation: 'password', confirmed_at: Time.now.utc, role: UserRole.find_by(name: 'NewsmastAdmin'), account: acc, agreement: true, approved: true) user.save! acc end + account&.user.update(role: UserRole.find_by(name: 'NewsmastAdmin')) if account&.user&.role&.name != 'NewsmastAdmin' + admin = CommunityAdmin.find_or_initialize_by(account_id: account.id, patchwork_community_id: community.id) return admin if admin.persisted? admin.assign_attributes( - role: 'UserAdmin', + role: 'NewsmastAdmin', display_name: community.slug, email: "#{admin_username}@channel.org", password: ENV.fetch('DEFAULT_ADMIN_PASSWORD', 'password'), @@ -92,6 +94,13 @@ def create_content_type(community) ) end +def create_post_type(community) + CommunityPostType.find_or_create_by( + patchwork_community_id: community.id, + posts: true + ) +end + def set_hashtags(community, user, channel = nil) return nil if community.nil? || user.nil? @@ -113,7 +122,7 @@ namespace :migrate_newsmast_channels do puts 'Staring Newsmast migration......' - @newsmast_account_token = args[:token] || 'eXRapzohPTadlcvzmfCLOMdkAAykVd634V1C85idKE8' + @newsmast_account_token = args[:token] || 'hCRc66fBH8BGxhPKeWx49S0m_rrIDR2UStVM1R-Uvds' acc_id = RemoteAccountVerifyService.new(@newsmast_account_token, 'newsmast.social').call.fetch_remote_account_id @@ -140,7 +149,7 @@ namespace :migrate_newsmast_channels do created_count = skipped_count = error_count = 0 - NEWSMAST_CHANNELS.first(5).each_with_index do |channel, index| + NEWSMAST_CHANNELS.each_with_index do |channel, index| puts "Processing [#{index + 1}] #{channel[:attributes][:name]} : #{channel[:attributes][:slug]}" ActiveRecord::Base.transaction do @@ -205,6 +214,14 @@ namespace :migrate_newsmast_channels do else puts " ✗ Failed to create content type: #{content_type.errors.full_messages.join(', ')}" end + + # Create post type + post_type = create_post_type(@community) + if post_type.save + puts " ✓ Successfully created post type for @community: #{@community.name}" + else + puts " ✗ Failed to create post type: #{post_type.errors.full_messages.join(', ')}" + end rescue StandardError => e puts " ✗ Error processing @community #{channel[:attributes][:name]}: #{e.message}" error_count += 1 diff --git a/user_community_export.csv b/user_community_export.csv new file mode 100644 index 00000000..3e5443b0 --- /dev/null +++ b/user_community_export.csv @@ -0,0 +1,1121 @@ +handle,communities +@emilyjd@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""visual-arts"",""social-sciences"",""food-drink"",""books-literature"",""women-voices"",""space"",""creative-arts"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""tv-radio"",""travel"",""lgbtq"",""movies"",""poverty-inequality"",""environment"",""humanities"",""music""]}" +@robotmaths@newsmast.social,"{""primary"":""mathematics"",""others"":[""news-comment-data"",""government-policy"",""tv-radio"",""movies""]}" +@mstepich@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""social-sciences"",""hunger-disease-water"",""history"",""ukraine-invasion"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""democracy-human-rights"",""engineering"",""philosophy"",""technology"",""healthcare"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@kamran@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""government-policy"",""mathematics""]}" +@princessbamboo@newsmast.social,"{""primary"":""food-drink"",""others"":[""pets"",""mental-health-wellbeing"",""travel""]}" +@YNDA@newsmast.social,"{""primary"":""business"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""puzzles"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""markets-finance"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""movies"",""music""]}" +@AnnaJ@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""visual-arts"",""food-drink"",""books-literature"",""women-voices"",""activism-civil-rights"",""mental-health-wellbeing"",""black-voices"",""lgbtq"",""movies"",""humanities""]}" +@minkhantkyaw35@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""immigrants-rights"",""democracy-human-rights"",""weather"",""poverty-inequality"",""environment""]}" +@sonbish@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""food-drink"",""creative-arts"",""humour""]}" +@fs0c131y@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""technology""]}" +@thepopblog@newsmast.social,"{""primary"":""music"",""others"":[""creative-arts"",""mental-health-wellbeing"",""tv-radio"",""movies""]}" +@refugeescommunityupdate@newsmast.social,"{""primary"":""immigrants-rights"",""others"":[""hunger-disease-water"",""poverty-inequality""]}" +@kazwan@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""food-drink"",""news-comment-data"",""space"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""travel"",""environment""]}" +@dianajspencer@newsmast.social,"{""primary"":""humanities"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""history"",""books-literature"",""space"",""biodiversity-rewilding"",""democracy-human-rights"",""philosophy"",""technology"",""photography"",""movies"",""science"",""environment""]}" +@quincyocharles@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""ai"",""physics"",""sport"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""business"",""chemistry"",""markets-finance"",""engineering"",""mathematics"",""technology"",""weather"",""science""]}" +@yangfengji@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""mathematics"",""philosophy"",""technology"",""programming"",""science"",""humanities""]}" +@DisabledWorld@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""ai"",""physics"",""nature-wildlife"",""social-sciences"",""books-literature"",""biology"",""space"",""democracy-human-rights"",""engineering"",""mental-health-wellbeing"",""technology"",""poverty-inequality"",""science"",""humanities""]}" +@FinlandatWar@newsmast.social,"{""primary"":""history"",""others"":[""breaking-news"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""gaming"",""tv-radio"",""movies"",""humanities""]}" +@Shali@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""ukraine-invasion"",""activism-civil-rights"",""government-policy"",""democracy-human-rights"",""poverty-inequality"",""law-justice""]}" +@chamkaurghag@newsmast.social,"{""primary"":""physics"",""others"":[""ai"",""social-sciences"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""science"",""energy-pollution"",""environment""]}" +@dollarbureau@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""business"",""markets-finance"",""humour"",""technology""]}" +@Lamech@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""hunger-disease-water"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""energy-pollution""]}" +@awanderfulsole@newsmast.social,"{""primary"":""photography"",""others"":[""visual-arts"",""architecture-design"",""performing-arts"",""gaming"",""tv-radio"",""movies"",""music""]}" +@MarieGeneste@newsmast.social,"{""primary"":""climate-change"",""others"":[""social-sciences"",""business"",""biodiversity-rewilding"",""technology"",""energy-pollution"",""environment""]}" +@aliegilbert@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""news-comment-data"",""women-voices"",""democracy-human-rights"",""lgbtq"",""science"",""environment""]}" +@salads4lunch@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""nature-wildlife"",""puzzles"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""social-media"",""travel""]}" +@Hope@newsmast.social,"{""primary"":""movies"",""others"":[""performing-arts"",""biodiversity-rewilding"",""tv-radio"",""environment""]}" +@lspar002@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""social-sciences"",""pets"",""science""]}" +@thosgood@newsmast.social,"{""primary"":""mathematics"",""others"":[""social-sciences"",""history"",""books-literature"",""philosophy"",""humanities""]}" +@theblogofdimi@newsmast.social,"{""primary"":""history"",""others"":[""breaking-news"",""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""technology"",""social-media"",""photography"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@bryancollins@newsmast.social,"{""primary"":""books-literature"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""puzzles"",""business"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""markets-finance"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""movies"",""music""]}" +@adanvers@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""hunger-disease-water"",""history"",""news-comment-data"",""biology"",""politics"",""us-politics"",""government-policy"",""academia-research"",""democracy-human-rights"",""climate-change"",""philosophy"",""technology"",""healthcare"",""poverty-inequality"",""science"",""law-justice""]}" +@paing89@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""technology"",""social-media"",""weather""]}" +@DemocracyAlarm@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""activism-civil-rights"",""us-politics"",""government-policy"",""social-media"",""law-justice""]}" +@ekonomism@newsmast.social,"{""primary"":""breaking-news"",""others"":[""social-sciences"",""ukraine-invasion"",""politics"",""government-policy"",""healthcare""]}" +@ekaasha@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""nature-wildlife"",""food-drink"",""puzzles"",""business"",""pets"",""workers-rights"",""creative-arts"",""humour"",""engineering"",""mental-health-wellbeing"",""technology"",""travel"",""programming""]}" +@Thiha@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""news-comment-data"",""football"",""ukraine-invasion"",""puzzles"",""politics"",""performing-arts"",""pets"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""movies"",""weather"",""music""]}" +@EMcParland@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""government-policy"",""social-media""]}" +@PowellsParadigm@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""space"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""philosophy"",""technology"",""programming"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@ericovarjao@newsmast.social,"{""primary"":""law-justice"",""others"":[""ai"",""visual-arts"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""books-literature"",""politics"",""business"",""creative-arts"",""markets-finance"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""movies"",""energy-pollution"",""humanities"",""music""]}" +@parben@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@sassyboi@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""government-policy"",""democracy-human-rights"",""poverty-inequality""]}" +@dreamingawake09@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""social-sciences"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""puzzles"",""pets"",""creative-arts"",""humour"",""democracy-human-rights"",""engineering"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""social-media"",""travel"",""programming"",""weather"",""poverty-inequality"",""humanities""]}" +@DocumentingReal@newsmast.social,"{""primary"":""us-politics"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""government-policy"",""academia-research"",""social-media"",""weather"",""law-justice""]}" +@dawnie@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""breaking-news"",""food-drink"",""puzzles"",""pets"",""creative-arts"",""mental-health-wellbeing""]}" +@jayasax@newsmast.social,"{""primary"":""food-drink"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""books-literature"",""women-voices"",""puzzles"",""activism-civil-rights"",""disabled-voices"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""music""]}" +@kamalaharris@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@uobadam@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""pets"",""academia-research"",""workers-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""technology"",""healthcare"",""social-media"",""travel"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@Greenarchist@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""biodiversity-rewilding"",""science"",""energy-pollution""]}" +@Roko@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""architecture-design"",""sport"",""space"",""politics"",""us-politics"",""government-policy"",""democracy-human-rights"",""technology"",""social-media"",""photography"",""science"",""environment""]}" +@beergeek@newsmast.social,"{""primary"":""ai"",""others"":[""food-drink"",""puzzles"",""workers-rights"",""humour"",""gaming"",""mental-health-wellbeing"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""energy-pollution"",""music""]}" +@tomruns@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""activism-civil-rights"",""social-media"",""weather""]}" +@nijicat@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@Capt_Canadia@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""social-media"",""programming"",""weather"",""science""]}" +@abc35@newsmast.social,"{""primary"":""government-policy"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""academia-research"",""democracy-human-rights"",""healthcare"",""poverty-inequality"",""law-justice""]}" +@CameronOrdSmith@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""ai"",""ukraine-invasion"",""climate-change"",""programming""]}" +@hoer356@newsmast.social,"{""primary"":""chemistry"",""others"":[""physics"",""social-sciences"",""history"",""biology"",""space"",""mathematics"",""philosophy"",""science"",""humanities""]}" +@ThomasSixt@newsmast.social,"{""primary"":""food-drink"",""others"":[""news-comment-data"",""democracy-human-rights"",""social-media"",""travel""]}" +@PaulSeven@newsmast.social,"{""primary"":""performing-arts"",""others"":[""visual-arts"",""business"",""government-policy"",""tv-radio""]}" +@bret@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""business"",""markets-finance"",""climate-change"",""social-media"",""energy-pollution""]}" +@breakingnews@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@blurredbylines@newsmast.social,"{""primary"":""lgbtq"",""others"":[""indigenous-peoples"",""social-sciences"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""immigrants-rights"",""black-voices"",""humanities"",""law-justice""]}" +@bothuthesi@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""technology"",""social-media"",""weather"",""science"",""energy-pollution"",""environment""]}" +@Caughtlight@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data"",""us-sport""]}" +@hanism@newsmast.social,"{""primary"":""space"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""biology"",""chemistry"",""engineering"",""mathematics"",""technology"",""programming"",""science""]}" +@palmeiras@newsmast.social,"{""primary"":""black-voices"",""others"":[""breaking-news"",""news-comment-data"",""disabled-voices"",""social-media""]}" +@mervecaldiran@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""politics"",""activism-civil-rights"",""government-policy"",""performing-arts"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""philosophy"",""tv-radio"",""black-voices"",""photography"",""lgbtq"",""movies"",""poverty-inequality"",""energy-pollution"",""humanities"",""music"",""law-justice""]}" +@sas_test@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@sofiahvillar@newsmast.social,"{""primary"":""history"",""others"":[""social-sciences"",""politics"",""markets-finance"",""philosophy""]}" +@Dineshvd@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""food-drink"",""puzzles"",""mental-health-wellbeing"",""us-sport""]}" +@minkkyaw@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@sithubo_pt@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@HelloSomething@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@spanini@newsmast.social,"{""primary"":""business"",""others"":[""history"",""books-literature"",""workers-rights"",""markets-finance"",""philosophy""]}" +@gppainphysio@newsmast.social,"{""primary"":""business"",""others"":[""ai"",""sport"",""football"",""workers-rights"",""markets-finance"",""engineering"",""us-sport"",""technology"",""programming""]}" +@WelchE@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""physics"",""nature-wildlife"",""indigenous-peoples"",""food-drink"",""women-voices"",""biology"",""puzzles"",""space"",""creative-arts"",""mental-health-wellbeing"",""lgbtq"",""science""]}" +@JAVPPT@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""physics"",""social-sciences"",""sport"",""food-drink"",""history"",""women-voices"",""space"",""politics"",""us-politics"",""business"",""workers-rights"",""creative-arts"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""philosophy"",""technology"",""social-media"",""photography"",""lgbtq"",""poverty-inequality"",""science"",""environment"",""humanities""]}" +@xavierho@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""ukraine-invasion"",""politics"",""academia-research"",""programming""]}" +@lwinmoepaing@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""football"",""engineering"",""programming""]}" +@nothing34@newsmast.social,"{""primary"":""academia-research"",""others"":[""politics"",""us-politics"",""government-policy"",""healthcare"",""law-justice""]}" +@bilerico@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""food-drink"",""us-politics"",""humour""]}" +@LetsAnimePod@newsmast.social,"{""primary"":""tv-radio"",""others"":[""books-literature"",""humour"",""gaming"",""movies""]}" +@Anderst_S@newsmast.social,"{""primary"":""climate-change"",""others"":[""ai"",""biology"",""space"",""biodiversity-rewilding"",""engineering"",""technology"",""programming"",""science"",""energy-pollution"",""environment""]}" +@RebecaM67@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""hunger-disease-water"",""history"",""politics"",""government-policy"",""democracy-human-rights"",""philosophy"",""technology"",""humanities"",""law-justice""]}" +@olympusmoans@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""ai"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""us-politics"",""government-policy"",""academia-research"",""democracy-human-rights"",""engineering"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""law-justice""]}" +@LolaBea19@newsmast.social,"{""primary"":""performing-arts"",""others"":[""women-voices"",""creative-arts"",""tv-radio"",""lgbtq""]}" +@willis@newsmast.social,"{""primary"":""books-literature"",""others"":[""architecture-design"",""news-comment-data"",""movies"",""music""]}" +@shadsiddiqui@newsmast.social,"{""primary"":""travel"",""others"":[""ai"",""football"",""business"",""technology""]}" +@Laurens@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""biodiversity-rewilding"",""climate-change"",""engineering"",""philosophy"",""social-media"",""weather"",""energy-pollution"",""environment"",""humanities""]}" +@luciaGerry444@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ai"",""ukraine-invasion"",""engineering"",""technology"",""programming"",""weather""]}" +@zinmoe@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""weather""]}" +@thefluffy007@newsmast.social,"{""primary"":""academia-research"",""others"":[""government-policy"",""engineering"",""healthcare"",""law-justice""]}" +@TimelinesStatus@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@seedling@newsmast.social,"{""primary"":""history"",""others"":[""social-sciences"",""indigenous-peoples"",""women-voices"",""philosophy""]}" +@iqruds@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""breaking-news"",""sport"",""food-drink"",""news-comment-data"",""creative-arts"",""biodiversity-rewilding"",""humour"",""social-media"",""travel"",""environment""]}" +@prapa@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""hunger-disease-water"",""biology"",""space"",""chemistry"",""democracy-human-rights"",""engineering"",""mathematics"",""technology"",""programming"",""poverty-inequality"",""science""]}" +@herstoryseapod@newsmast.social,"{""primary"":""history"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""books-literature"",""politics"",""government-policy"",""performing-arts"",""academia-research"",""gaming"",""philosophy"",""tv-radio"",""photography"",""movies"",""humanities"",""music"",""law-justice""]}" +@paulcrosby@newsmast.social,"{""primary"":""lgbtq"",""others"":[""ai"",""breaking-news"",""ukraine-invasion"",""space"",""markets-finance"",""technology""]}" +@fictaddict@newsmast.social,"{""primary"":""books-literature"",""others"":[""pets"",""creative-arts"",""gaming""]}" +@liamchase@newsmast.social,"{""primary"":""lgbtq"",""others"":[""nature-wildlife"",""sport"",""pets"",""creative-arts"",""travel""]}" +@Billyboy@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""indigenous-peoples"",""hunger-disease-water"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""academia-research"",""workers-rights"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""engineering"",""technology"",""healthcare"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@youronlyone@newsmast.social,"{""primary"":""physics"",""others"":[""nature-wildlife"",""food-drink"",""history"",""books-literature"",""biology"",""space"",""disabled-voices"",""chemistry"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""programming"",""weather"",""science""]}" +@nifta@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""activism-civil-rights"",""disabled-voices"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""chemistry"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""humanities"",""music""]}" +@thm@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""business"",""workers-rights"",""markets-finance"",""democracy-human-rights"",""engineering"",""technology"",""social-media"",""programming"",""weather"",""poverty-inequality""]}" +@ppt_56@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@vpotter@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""government-policy"",""business"",""workers-rights"",""climate-change"",""healthcare"",""environment"",""law-justice""]}" +@relaxedmale@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""social-sciences"",""food-drink"",""news-comment-data"",""us-politics"",""government-policy"",""humour"",""gaming"",""philosophy"",""social-media"",""photography"",""weather"",""poverty-inequality""]}" +@userlau@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""social-media""]}" +@heathercarlson@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""food-drink"",""hunger-disease-water"",""women-voices"",""activism-civil-rights"",""pets"",""democracy-human-rights"",""poverty-inequality""]}" +@DEW1970@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""nature-wildlife"",""architecture-design"",""food-drink"",""football"",""biology"",""space"",""politics"",""performing-arts"",""pets"",""humour"",""mental-health-wellbeing"",""tv-radio"",""healthcare"",""social-media"",""travel"",""photography"",""movies"",""weather"",""science"",""music""]}" +@nayyaung9@newsmast.social,"{""primary"":""performing-arts"",""others"":[""physics"",""breaking-news""]}" +@mleaning@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""democracy-human-rights"",""mathematics"",""science""]}" +@FionaDobsonCD@newsmast.social,"{""primary"":""lgbtq"",""others"":[""nature-wildlife"",""history"",""humour"",""philosophy"",""travel""]}" +@drizzly_august@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""us-politics"",""government-policy"",""democracy-human-rights"",""engineering"",""technology"",""poverty-inequality"",""law-justice""]}" +@healthylifetips@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""indigenous-peoples"",""food-drink"",""women-voices"",""puzzles"",""pets"",""creative-arts"",""humour"",""climate-change"",""social-media"",""travel"",""energy-pollution"",""environment""]}" +@orel@newsmast.social,"{""primary"":""history"",""others"":[""social-sciences"",""books-literature"",""poverty-inequality""]}" +@JamesNewsMast@newsmast.social,"{""primary"":""space"",""others"":[""food-drink"",""government-policy"",""gaming"",""mental-health-wellbeing""]}" +@poverty@newsmast.social,"{""primary"":""poverty-inequality"",""others"":[""hunger-disease-water"",""environment""]}" +@megs@newsmast.social,"{""primary"":""physics"",""others"":[""ai"",""architecture-design"",""space"",""activism-civil-rights"",""immigrants-rights"",""engineering"",""gaming"",""technology"",""lgbtq""]}" +@avalio77@newsmast.social,"{""primary"":""poverty-inequality"",""others"":[""ai"",""social-sciences"",""history"",""books-literature"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""technology"",""environment"",""humanities"",""law-justice""]}" +@Stevivor@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""creative-arts"",""mental-health-wellbeing"",""technology"",""lgbtq""]}" +@DannSy18@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""ukraine-invasion""]}" +@Stephen@newsmast.social,"{""primary"":""visual-arts"",""others"":[""news-comment-data"",""gaming"",""tv-radio"",""movies"",""law-justice"",""music""]}" +@sabah@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""visual-arts"",""social-sciences"",""performing-arts"",""creative-arts"",""poverty-inequality"",""environment"",""music""]}" +@Pyae@newsmast.social,"{""primary"":""government-policy"",""others"":[""social-sciences"",""news-comment-data"",""activism-civil-rights"",""business"",""democracy-human-rights"",""technology"",""environment"",""humanities""]}" +@dianashurman@newsmast.social,"{""primary"":""ai"",""others"":[""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""government-policy"",""pets"",""markets-finance"",""humanities""]}" +@orianavictoria@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""food-drink"",""politics"",""business"",""markets-finance"",""technology"",""movies"",""environment""]}" +@jomaan123@newsmast.social,"{""primary"":""pets"",""others"":[""breaking-news"",""history"",""news-comment-data"",""politics"",""humanities""]}" +@sophiecunningham@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""nature-wildlife"",""biodiversity-rewilding"",""science"",""energy-pollution"",""environment""]}" +@IZMartinez86@newsmast.social,"{""primary"":""poverty-inequality"",""others"":[""physics"",""social-sciences"",""history"",""biology"",""space"",""politics"",""government-policy"",""immigrants-rights"",""chemistry"",""democracy-human-rights"",""engineering"",""mathematics"",""healthcare"",""science"",""environment"",""law-justice""]}" +@sandy@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""social-sciences"",""creative-arts"",""chemistry"",""humour"",""philosophy"",""lgbtq"",""humanities""]}" +@alice11@newsmast.social,"{""primary"":""music"",""others"":[""news-comment-data"",""performing-arts"",""pets"",""creative-arts"",""humour"",""tv-radio"",""travel"",""photography"",""lgbtq"",""movies"",""weather""]}" +@YuliaMHersey@newsmast.social,"{""primary"":""books-literature"",""others"":[""ai"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""performing-arts"",""creative-arts"",""mental-health-wellbeing"",""philosophy"",""technology"",""humanities""]}" +@lucygreenwold@newsmast.social,"{""primary"":""books-literature"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""news-comment-data"",""women-voices"",""activism-civil-rights"",""performing-arts"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""travel"",""lgbtq"",""music""]}" +@orianavmatos@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""physics"",""nature-wildlife"",""food-drink"",""biology"",""puzzles"",""space"",""business"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""travel"",""movies"",""programming"",""science""]}" +@eve@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""food-drink"",""history"",""books-literature"",""ukraine-invasion"",""women-voices"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""climate-change"",""engineering"",""lgbtq"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@Phebe@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""architecture-design"",""hunger-disease-water"",""movies"",""poverty-inequality""]}" +@delyan@newsmast.social,"{""primary"":""movies"",""others"":[""breaking-news"",""ai"",""visual-arts"",""social-sciences"",""sport"",""news-comment-data"",""football"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""workers-rights"",""creative-arts"",""humour"",""democracy-human-rights"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""lgbtq"",""humanities"",""music""]}" +@Tasha@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""humanities"",""music"",""law-justice""]}" +@JackMoulton@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""government-policy"",""gaming"",""tv-radio"",""movies"",""music"",""law-justice""]}" +@priyal@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""history"",""books-literature"",""creative-arts"",""climate-change"",""movies"",""environment""]}" +@zainabismail@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""politics"",""activism-civil-rights"",""democracy-human-rights"",""mental-health-wellbeing"",""travel""]}" +@seb_bw@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""hunger-disease-water"",""biodiversity-rewilding"",""climate-change"",""technology"",""energy-pollution"",""environment""]}" +@Janet_O@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""government-policy"",""black-voices"",""photography""]}" +@Supantha@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""government-policy"",""technology"",""weather""]}" +@aishiterutokyo@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""news-comment-data"",""gaming"",""tv-radio""]}" +@minkhantkyawygn@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""immigrants-rights"",""democracy-human-rights"",""weather"",""poverty-inequality"",""environment""]}" +@hopheim@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""creative-arts"",""tv-radio"",""travel"",""movies"",""music""]}" +@vpatel@newsmast.social,"{""primary"":""philosophy"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@natashaklondon@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""creative-arts"",""travel""]}" +@akptest007@newsmast.social,"{""primary"":""climate-change"",""others"":[""nature-wildlife"",""hunger-disease-water"",""books-literature"",""government-policy"",""business"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""technology"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@Academistry@newsmast.social,"{""primary"":""chemistry"",""others"":[""breaking-news"",""hunger-disease-water"",""news-comment-data"",""biology"",""politics"",""government-policy"",""healthcare"",""poverty-inequality"",""science""]}" +@andadapt@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""business"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""humanities"",""music""]}" +@Hurns@newsmast.social,"{""primary"":""climate-change"",""others"":[""ai"",""breaking-news"",""biodiversity-rewilding"",""energy-pollution"",""environment""]}" +@Lawrence@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""creative-arts"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""environment"",""humanities""]}" +@stephieduffy@newsmast.social,"{""primary"":""performing-arts"",""others"":[""breaking-news"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""travel"",""lgbtq"",""movies"",""humanities"",""music""]}" +@DrECSkirmuntt@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""food-drink"",""news-comment-data"",""biology"",""space"",""pets"",""creative-arts"",""biodiversity-rewilding"",""gaming"",""mental-health-wellbeing"",""travel"",""movies"",""weather""]}" +@samlee@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""gaming"",""movies"",""music""]}" +@Joan_Kem@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""women-voices"",""activism-civil-rights"",""workers-rights"",""democracy-human-rights"",""black-voices"",""poverty-inequality"",""environment""]}" +@elrondburrell@newsmast.social,"{""primary"":""architecture-design"",""others"":[""democracy-human-rights"",""climate-change"",""photography"",""science"",""energy-pollution"",""environment""]}" +@TVPsychologist@newsmast.social,"{""primary"":""social-sciences"",""others"":[""news-comment-data"",""politics"",""creative-arts"",""mental-health-wellbeing"",""tv-radio""]}" +@saturn@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""black-voices"",""lgbtq"",""energy-pollution""]}" +@liharris30@newsmast.social,"{""primary"":""environment"",""others"":[""business"",""mental-health-wellbeing"",""technology"",""humanities""]}" +@Bekash@newsmast.social,"{""primary"":""football"",""others"":[""nature-wildlife"",""sport"",""food-drink"",""puzzles"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""travel""]}" +@CharityNews@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""architecture-design"",""sport"",""food-drink"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""puzzles"",""politics"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""travel"",""photography"",""movies"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@chrisfrench@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""news-comment-data"",""space"",""politics"",""government-policy"",""performing-arts"",""democracy-human-rights"",""tv-radio"",""movies"",""science""]}" +@esgcsrpodcastalert@newsmast.social,"{""primary"":""business"",""others"":[""markets-finance""]}" +@NineBall@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""ukraine-invasion"",""news-comment-data"",""politics"",""technology"",""weather""]}" +@zerotwo@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""nature-wildlife"",""news-comment-data"",""ukraine-invasion"",""politics"",""government-policy"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""healthcare"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@dev_sithu@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""politics"",""weather""]}" +@mkk_newsmast@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""weather""]}" +@Roncaglia@newsmast.social,"{""primary"":""ai"",""others"":[""history"",""books-literature"",""space"",""humanities""]}" +@daniel_mckeon@newsmast.social,"{""primary"":""physics"",""others"":[""social-sciences"",""news-comment-data"",""chemistry"",""tv-radio""]}" +@SoeMyinHtel_dev@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""immigrants-rights"",""weather"",""poverty-inequality"",""environment""]}" +@S33J@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""visual-arts"",""nature-wildlife"",""social-sciences"",""sport"",""food-drink"",""books-literature"",""football"",""biology"",""space"",""performing-arts"",""creative-arts"",""biodiversity-rewilding"",""mental-health-wellbeing"",""science"",""environment"",""humanities""]}" +@savenues@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""creative-arts"",""humour"",""mental-health-wellbeing""]}" +@artek@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""physics"",""biology"",""space"",""chemistry"",""engineering"",""mathematics""]}" +@macroliter@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""nature-wildlife"",""biology"",""activism-civil-rights"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""science"",""environment""]}" +@LukaszSzulc@newsmast.social,"{""primary"":""lgbtq"",""others"":[""ai"",""social-sciences"",""women-voices"",""immigrants-rights"",""technology"",""humanities""]}" +@3arabawy@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""social-sciences"",""history"",""books-literature"",""politics"",""activism-civil-rights"",""government-policy"",""workers-rights"",""immigrants-rights"",""philosophy"",""humanities""]}" +@Thomas@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""nature-wildlife"",""activism-civil-rights"",""government-policy"",""biodiversity-rewilding"",""philosophy""]}" +@jacklscanlan@newsmast.social,"{""primary"":""science"",""others"":[""hunger-disease-water"",""biology"",""government-policy"",""biodiversity-rewilding""]}" +@docip@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""nature-wildlife"",""social-sciences"",""biodiversity-rewilding"",""climate-change"",""energy-pollution"",""environment""]}" +@TashaA@newsmast.social,"{""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@JulieSpray@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""ai"",""visual-arts"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""workers-rights"",""immigrants-rights"",""democracy-human-rights"",""mental-health-wellbeing"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""lgbtq"",""poverty-inequality"",""science"",""law-justice""]}" +@sethlazar@newsmast.social,"{""primary"":""ai"",""others"":[""government-policy"",""democracy-human-rights"",""technology"",""poverty-inequality""]}" +@Joshmcc_05@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data""]}" +@stephenb@newsmast.social,"{""primary"":""technology"",""others"":[""performing-arts"",""energy-pollution""]}" +@WilliamHolland@newsmast.social,"{""primary"":""government-policy"",""others"":[""mental-health-wellbeing"",""healthcare"",""law-justice""]}" +@Stutsies@newsmast.social,"{""primary"":""gaming"",""others"":[""breaking-news"",""food-drink"",""performing-arts"",""creative-arts"",""travel"",""movies"",""music""]}" +@enangha@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""social-sciences"",""food-drink"",""ukraine-invasion"",""women-voices"",""biology"",""activism-civil-rights"",""government-policy"",""pets"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""mathematics"",""philosophy"",""healthcare"",""black-voices"",""poverty-inequality"",""science"",""environment""]}" +@DeliSaavedra@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""nature-wildlife"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""activism-civil-rights"",""workers-rights"",""democracy-human-rights"",""climate-change"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@phylis@newsmast.social,"{""primary"":""ai"",""others"":[""physics"",""visual-arts"",""architecture-design"",""hunger-disease-water"",""biology"",""space"",""government-policy"",""performing-arts"",""immigrants-rights"",""chemistry"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""healthcare"",""photography"",""movies"",""poverty-inequality"",""science"",""environment"",""music"",""law-justice""]}" +@Dr_Finbar@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""biodiversity-rewilding"",""technology"",""energy-pollution"",""environment""]}" +@jannus@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""ai"",""physics"",""social-sciences"",""space"",""climate-change"",""technology"",""energy-pollution"",""environment""]}" +@EV_Musings@newsmast.social,"{""primary"":""technology"",""others"":[""physics"",""business"",""engineering"",""climate-change"",""travel""]}" +@rozenberg@newsmast.social,"{""primary"":""law-justice"",""others"":[""breaking-news"",""history"",""news-comment-data"",""books-literature"",""politics"",""government-policy"",""workers-rights"",""democracy-human-rights"",""philosophy"",""humanities""]}" +@UniverseMoment@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""biology"",""space"",""chemistry"",""engineering"",""mathematics""]}" +@healthygfasian@newsmast.social,"{""primary"":""food-drink"",""others"":[""ai"",""nature-wildlife"",""hunger-disease-water"",""women-voices"",""puzzles"",""disabled-voices"",""business"",""pets"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""technology"",""travel"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@EasternBorder@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""space"",""politics"",""government-policy"",""creative-arts"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""travel"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""humanities"",""law-justice""]}" +@morefunwithjuan@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""creative-arts"",""mental-health-wellbeing"",""movies"",""weather"",""music""]}" +@Kayleigh@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""indigenous-peoples"",""news-comment-data"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""markets-finance"",""democracy-human-rights"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""black-voices"",""lgbtq"",""movies"",""poverty-inequality"",""humanities"",""music""]}" +@lorenaflag@newsmast.social,"{""primary"":""women-voices"",""others"":[""visual-arts"",""social-sciences"",""hunger-disease-water"",""activism-civil-rights"",""technology"",""tv-radio"",""photography""]}" +@Sushmitapanda@newsmast.social,"{""primary"":""healthcare"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""government-policy"",""business"",""performing-arts"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""tv-radio"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""music"",""law-justice""]}" +@DerrickEMugisha@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""nature-wildlife"",""sport"",""hunger-disease-water"",""football"",""business"",""pets"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""travel"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@VAVEL@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data""]}" +@Aysha@newsmast.social,"{""primary"":""books-literature"",""others"":[""space"",""performing-arts"",""photography"",""movies""]}" +@Sebsb@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""ai"",""visual-arts"",""architecture-design"",""sport"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""performing-arts"",""immigrants-rights"",""democracy-human-rights"",""gaming"",""technology"",""tv-radio"",""photography"",""movies"",""weather"",""poverty-inequality"",""environment"",""music""]}" +@Sinobabble@newsmast.social,"{""primary"":""humanities"",""others"":[""breaking-news"",""ai"",""history"",""news-comment-data"",""books-literature"",""business"",""markets-finance"",""philosophy"",""technology""]}" +@samarpahwa@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""puzzles"",""politics"",""business"",""pets"",""immigrants-rights"",""creative-arts"",""markets-finance"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""healthcare"",""travel"",""weather"",""poverty-inequality"",""environment"",""law-justice""]}" +@stephenreid@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""visual-arts"",""nature-wildlife"",""architecture-design"",""news-comment-data"",""ukraine-invasion"",""politics"",""business"",""performing-arts"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""gaming"",""tv-radio"",""photography"",""movies"",""weather"",""energy-pollution"",""environment"",""music""]}" +@vividbiology@newsmast.social,"{""primary"":""science"",""others"":[""visual-arts"",""biology"",""chemistry"",""technology""]}" +@zhichangliu@newsmast.social,"{""primary"":""chemistry"",""others"":[""ai"",""breaking-news"",""energy-pollution"",""environment""]}" +@protein@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@EEVblog@newsmast.social,"{""primary"":""engineering"",""others"":[""ai"",""space"",""technology"",""science""]}" +@islifearecipe@newsmast.social,"{""primary"":""food-drink"",""others"":[""mental-health-wellbeing"",""travel"",""music""]}" +@Player2@newsmast.social,"{""primary"":""gaming"",""others"":[""breaking-news"",""sport"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""politics"",""movies"",""weather"",""energy-pollution""]}" +@mbarbatti@newsmast.social,"{""primary"":""chemistry"",""others"":[""physics"",""biology"",""space"",""engineering"",""mathematics"",""science""]}" +@marianajeronimo@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""food-drink"",""news-comment-data"",""democracy-human-rights"",""mental-health-wellbeing"",""travel"",""environment""]}" +@lawyer@newsmast.social,"{""primary"":""law-justice"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""food-drink"",""history"",""books-literature"",""women-voices"",""puzzles"",""activism-civil-rights"",""disabled-voices"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""markets-finance"",""humour"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""humanities"",""music""]}" +@andrewfeinstein@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""weather""]}" +@Tarden7@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""nature-wildlife"",""news-comment-data"",""ukraine-invasion"",""puzzles"",""markets-finance"",""humour"",""mental-health-wellbeing"",""travel"",""photography"",""movies"",""music""]}" +@manii@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""mental-health-wellbeing"",""technology"",""lgbtq""]}" +@Hedvig1Lindahl@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""social-sciences"",""politics"",""democracy-human-rights"",""climate-change"",""movies"",""poverty-inequality""]}" +@akp@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""space"",""politics"",""immigrants-rights"",""democracy-human-rights"",""technology"",""tv-radio"",""weather"",""poverty-inequality"",""environment""]}" +@Accessiology@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""ai"",""nature-wildlife"",""architecture-design"",""technology"",""travel""]}" +@Cedric@newsmast.social,"{""primary"":""chemistry"",""others"":[""ai"",""hunger-disease-water"",""immigrants-rights"",""democracy-human-rights"",""gaming"",""photography"",""science"",""music""]}" +@Headfort@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""activism-civil-rights"",""government-policy"",""technology"",""poverty-inequality"",""law-justice""]}" +@nico@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""sport"",""news-comment-data"",""football"",""government-policy"",""mathematics"",""science""]}" +@MichaelMarshall@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""space"",""politics"",""government-policy"",""performing-arts"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""photography"",""movies"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@Dolores@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""indigenous-peoples"",""women-voices"",""news-comment-data""]}" +@Nadeem@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""news-comment-data"",""weather""]}" +@AlasdairGold@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""tv-radio"",""travel"",""movies""]}" +@JustinWeinberg@newsmast.social,"{""primary"":""philosophy"",""others"":[""ai"",""visual-arts"",""social-sciences"",""science"",""environment"",""humanities"",""music""]}" +@Fitwirr@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""food-drink"",""business"",""markets-finance"",""technology"",""travel""]}" +@raachotrekkers@newsmast.social,"{""primary"":""climate-change"",""others"":[""nature-wildlife"",""politics"",""biodiversity-rewilding"",""travel"",""energy-pollution"",""environment""]}" +@davidwees@newsmast.social,"{""primary"":""mathematics"",""others"":[""news-comment-data"",""activism-civil-rights"",""space"",""democracy-human-rights"",""climate-change"",""lgbtq""]}" +@saralimback@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""indigenous-peoples"",""social-sciences"",""food-drink"",""history"",""books-literature"",""women-voices"",""biology"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""black-voices"",""photography"",""lgbtq"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@HRWright@newsmast.social,"{""primary"":""food-drink"",""others"":[""news-comment-data"",""creative-arts"",""democracy-human-rights"",""travel"",""lgbtq""]}" +@DanielGilbert@newsmast.social,"{""primary"":""social-sciences"",""others"":[""science""]}" +@billmckibben@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""news-comment-data"",""ukraine-invasion"",""activism-civil-rights"",""climate-change"",""tv-radio"",""weather"",""science"",""energy-pollution"",""music""]}" +@Omega_RF@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""activism-civil-rights"",""government-policy"",""law-justice""]}" +@James_Shield@newsmast.social,"{""primary"":""football"",""others"":[""social-sciences"",""sport"",""news-comment-data"",""politics""]}" +@brunellus@newsmast.social,"{""primary"":""history"",""others"":[""books-literature"",""mathematics"",""philosophy"",""humanities""]}" +@jrmartin@newsmast.social,"{""primary"":""travel"",""others"":[""social-sciences"",""architecture-design"",""history"",""books-literature"",""creative-arts"",""biodiversity-rewilding"",""photography"",""environment""]}" +@indianhistory@newsmast.social,"{""primary"":""history"",""others"":[""breaking-news"",""visual-arts"",""architecture-design"",""books-literature"",""performing-arts"",""gaming"",""tv-radio"",""photography"",""movies"",""weather"",""humanities"",""music""]}" +@fpricejr@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""social-sciences"",""sport"",""history"",""football"",""politics"",""activism-civil-rights"",""government-policy"",""democracy-human-rights"",""technology"",""tv-radio"",""poverty-inequality"",""environment"",""humanities"",""music"",""law-justice""]}" +@siji@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""puzzles"",""creative-arts"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""travel"",""environment"",""humanities"",""law-justice""]}" +@calebijioma@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""nature-wildlife"",""hunger-disease-water"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@AldridgePhoto@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""nature-wildlife"",""hunger-disease-water"",""news-comment-data"",""climate-change"",""energy-pollution"",""environment""]}" +@PAAwarenessUK@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""social-sciences"",""hunger-disease-water"",""politics"",""government-policy"",""poverty-inequality"",""law-justice""]}" +@ajj65@newsmast.social,"{""primary"":""lgbtq"",""others"":[""ai"",""physics"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""hunger-disease-water"",""women-voices"",""biology"",""space"",""activism-civil-rights"",""disabled-voices"",""business"",""workers-rights"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""technology"",""black-voices"",""photography"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""music""]}" +@shubhambutola@newsmast.social,"{""primary"":""climate-change"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""hunger-disease-water"",""puzzles"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""gaming"",""mental-health-wellbeing"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""poverty-inequality"",""energy-pollution"",""environment"",""music""]}" +@KamranSaeed@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""sport"",""hunger-disease-water"",""football"",""ukraine-invasion"",""politics"",""government-policy"",""business"",""immigrants-rights"",""markets-finance"",""democracy-human-rights"",""climate-change"",""technology"",""healthcare"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@discerningcat@newsmast.social,"{""primary"":""pets"",""others"":[""nature-wildlife"",""food-drink"",""creative-arts"",""travel""]}" +@Dhiraj@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""breaking-news"",""politics"",""government-policy"",""business"",""markets-finance"",""democracy-human-rights"",""mental-health-wellbeing"",""weather"",""poverty-inequality""]}" +@The_EV_Report@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""mental-health-wellbeing""]}" +@AndreCMonteiro@newsmast.social,"{""primary"":""environment"",""others"":[""hunger-disease-water"",""immigrants-rights"",""democracy-human-rights"",""poverty-inequality""]}" +@ScharSchool@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""women-voices"",""biology"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""business"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mental-health-wellbeing"",""technology"",""healthcare"",""black-voices"",""lgbtq"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@ChinHuaLu@newsmast.social,"{""primary"":""women-voices"",""others"":[""nature-wildlife"",""social-sciences"",""food-drink"",""books-literature"",""activism-civil-rights"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""movies"",""science""]}" +@ANT_LCFC@newsmast.social,"{""primary"":""football"",""others"":[""food-drink"",""creative-arts"",""humour"",""mental-health-wellbeing""]}" +@Brian_J_Keane@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""hunger-disease-water"",""activism-civil-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""environment""]}" +@itdrc@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""ukraine-invasion"",""government-policy"",""business"",""engineering"",""technology"",""weather"",""science"",""humanities""]}" +@benwritesthings@newsmast.social,"{""primary"":""lgbtq"",""others"":[""architecture-design"",""history"",""books-literature"",""performing-arts"",""workers-rights"",""humanities""]}" +@dltj@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""government-policy"",""democracy-human-rights"",""climate-change"",""science"",""energy-pollution"",""environment""]}" +@Childdotorg@newsmast.social,"{""primary"":""women-voices"",""others"":[""breaking-news"",""hunger-disease-water"",""news-comment-data"",""democracy-human-rights"",""black-voices"",""photography"",""poverty-inequality""]}" +@BriannaABaker@newsmast.social,"{""primary"":""black-voices"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""creative-arts"",""humour"",""mental-health-wellbeing"",""poverty-inequality""]}" +@faithbenson@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""ai"",""hunger-disease-water"",""creative-arts"",""technology"",""poverty-inequality"",""science"",""environment""]}" +@O_makanjuola@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""creative-arts"",""mental-health-wellbeing"",""travel"",""lgbtq"",""movies"",""poverty-inequality"",""environment"",""music""]}" +@drvolts@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""government-policy"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""technology"",""healthcare"",""weather"",""science"",""environment"",""law-justice""]}" +@wingyingchow@newsmast.social,"{""primary"":""academia-research"",""others"":[""physics"",""biology"",""chemistry"",""biodiversity-rewilding"",""science""]}" +@mitchell_ab@newsmast.social,"{""primary"":""politics"",""others"":[""social-sciences"",""news-comment-data"",""government-policy"",""philosophy"",""law-justice""]}" +@JeffreyPeel@newsmast.social,"{""primary"":""politics"",""others"":[""activism-civil-rights"",""government-policy"",""democracy-human-rights"",""technology"",""healthcare""]}" +@historian1914@newsmast.social,"{""primary"":""history"",""others"":[""sport"",""books-literature"",""government-policy"",""business"",""markets-finance"",""gaming"",""humanities""]}" +@lestermouse@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""weather""]}" +@Radwa@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""politics"",""immigrants-rights"",""democracy-human-rights"",""technology""]}" +@sarahhengel@newsmast.social,"{""primary"":""biology"",""others"":[""physics"",""space"",""chemistry"",""engineering"",""mathematics"",""science""]}" +@KyivIndependent@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""democracy-human-rights"",""mental-health-wellbeing"",""healthcare"",""black-voices"",""lgbtq"",""weather"",""poverty-inequality"",""environment"",""law-justice""]}" +@Ann_Aguirre@newsmast.social,"{""primary"":""women-voices"",""others"":[""social-sciences"",""space"",""lgbtq""]}" +@thisisqueerly@newsmast.social,"{""primary"":""lgbtq"",""others"":[""news-comment-data"",""tv-radio"",""travel"",""movies"",""music""]}" +@vidit@newsmast.social,"{""primary"":""mathematics"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""government-policy"",""business"",""chemistry"",""markets-finance"",""engineering"",""mental-health-wellbeing"",""technology"",""healthcare"",""weather"",""science"",""law-justice""]}" +@Hayfa_Sdiri@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""indigenous-peoples"",""social-sciences"",""business"",""immigrants-rights"",""markets-finance"",""technology""]}" +@Alan_Moran@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""politics"",""weather""]}" +@ProfTJCurry@newsmast.social,"{""primary"":""philosophy"",""others"":[""government-policy"",""mental-health-wellbeing"",""healthcare"",""humanities""]}" +@janerockhouse@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""social-sciences"",""women-voices"",""politics"",""activism-civil-rights"",""photography"",""music""]}" +@Unwanted_Life@newsmast.social,"{""primary"":""social-sciences"",""others"":[""disabled-voices"",""mental-health-wellbeing"",""black-voices""]}" +@KenShirriff@newsmast.social,"{""primary"":""technology"",""others"":[""physics"",""architecture-design"",""history"",""books-literature"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""science""]}" +@katieharbath@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""food-drink"",""news-comment-data"",""business"",""government-policy"",""technology""]}" +@elliemroberts@newsmast.social,"{""primary"":""history"",""others"":[""breaking-news"",""visual-arts"",""women-voices"",""disabled-voices"",""humanities""]}" +@Zamzam@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""immigrants-rights"",""creative-arts"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""black-voices"",""travel"",""poverty-inequality"",""environment""]}" +@simonerochembe@newsmast.social,"{""primary"":""women-voices"",""others"":[""ai"",""business"",""technology""]}" +@timakimoff@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""physics"",""social-sciences"",""history"",""books-literature"",""biology"",""space"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""science"",""energy-pollution"",""environment""]}" +@karlienoon@newsmast.social,"{""primary"":""space"",""others"":[""physics"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""mathematics"",""mental-health-wellbeing"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@actualbenj@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""social-sciences"",""ukraine-invasion"",""women-voices"",""politics"",""government-policy"",""workers-rights"",""lgbtq"",""science""]}" +@ipsc48@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""government-policy"",""immigrants-rights""]}" +@Kevin_Healey@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""news-comment-data"",""disabled-voices"",""technology"",""law-justice""]}" +@TerriGerstein@newsmast.social,"{""primary"":""workers-rights"",""others"":[""women-voices"",""activism-civil-rights"",""government-policy"",""immigrants-rights"",""law-justice""]}" +@dgainz@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""news-comment-data"",""space"",""government-policy"",""science""]}" +@Diamond1@newsmast.social,"{""primary"":""physics"",""others"":[""biology"",""football"",""chemistry"",""science""]}" +@JayFIO@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""breaking-news"",""news-comment-data"",""government-policy"",""lgbtq"",""weather"",""law-justice""]}" +@Destiny@newsmast.social,"{""primary"":""space"",""others"":[""physics"",""sport"",""food-drink"",""news-comment-data"",""football"",""pets"",""humour"",""mathematics"",""travel"",""lgbtq""]}" +@sallyhawkins@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""history"",""women-voices"",""philosophy"",""environment""]}" +@Lessig@newsmast.social,"{""primary"":""law-justice"",""others"":[""ai"",""ukraine-invasion"",""government-policy"",""technology"",""science""]}" +@aung@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics""]}" +@SWCWomen@newsmast.social,"{""primary"":""women-voices"",""others"":[""social-sciences"",""history"",""news-comment-data"",""books-literature"",""politics"",""disabled-voices"",""government-policy"",""workers-rights"",""immigrants-rights"",""mental-health-wellbeing"",""philosophy"",""black-voices"",""lgbtq"",""humanities"",""law-justice""]}" +@sciencebase@newsmast.social,"{""primary"":""photography"",""others"":[""nature-wildlife"",""news-comment-data"",""chemistry"",""biodiversity-rewilding"",""science"",""environment"",""music""]}" +@peter@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""ai"",""nature-wildlife"",""social-sciences"",""business"",""climate-change"",""technology"",""energy-pollution"",""environment""]}" +@jasonreiduk@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""news-comment-data"",""activism-civil-rights""]}" +@gabrielblau@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""politics"",""government-policy"",""markets-finance"",""climate-change"",""technology"",""energy-pollution"",""environment""]}" +@KieranRose@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""social-sciences"",""activism-civil-rights"",""democracy-human-rights"",""black-voices"",""lgbtq"",""poverty-inequality""]}" +@ccgh@newsmast.social,"{""primary"":""immigrants-rights"",""others"":[""social-sciences"",""news-comment-data"",""books-literature"",""politics"",""government-policy"",""democracy-human-rights"",""law-justice""]}" +@boroguide@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""photography"",""travel"",""music""]}" +@ksetiya@newsmast.social,"{""primary"":""philosophy"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@pot8um@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""visual-arts"",""social-sciences"",""news-comment-data"",""women-voices"",""space"",""gaming"",""lgbtq"",""movies"",""science"",""music""]}" +@PhilPlait@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""space"",""humour"",""climate-change""]}" +@rogerg44@newsmast.social,"{""primary"":""movies"",""others"":[""visual-arts"",""architecture-design"",""performing-arts"",""tv-radio"",""photography"",""music""]}" +@WildCard@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""nature-wildlife"",""climate-change"",""environment""]}" +@rewildingsam@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""nature-wildlife"",""hunger-disease-water"",""climate-change"",""photography"",""environment""]}" +@cate@newsmast.social,"{""primary"":""women-voices"",""others"":[""books-literature"",""activism-civil-rights"",""philosophy"",""poverty-inequality"",""humanities""]}" +@jeremygodwin@newsmast.social,"{""primary"":""social-sciences"",""others"":[""space"",""philosophy"",""technology"",""lgbtq"",""science""]}" +@candice_chirwa@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""hunger-disease-water"",""women-voices"",""activism-civil-rights"",""government-policy"",""black-voices"",""lgbtq"",""environment"",""humanities""]}" +@Crof@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""ai"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""politics"",""government-policy"",""immigrants-rights"",""climate-change"",""mental-health-wellbeing"",""healthcare"",""poverty-inequality"",""energy-pollution""]}" +@lgsmsec@newsmast.social,"{""primary"":""lgbtq"",""others"":[""news-comment-data"",""politics"",""activism-civil-rights"",""workers-rights"",""democracy-human-rights"",""energy-pollution"",""law-justice""]}" +@LeslieTay@newsmast.social,"{""primary"":""food-drink"",""others"":[""hunger-disease-water"",""photography"",""science"",""environment""]}" +@RhondaAlbom@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""humour"",""democracy-human-rights"",""photography"",""environment""]}" +@Dailyscandi@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""hunger-disease-water"",""poverty-inequality"",""environment""]}" +@Sam@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""ai"",""breaking-news"",""architecture-design"",""news-comment-data"",""politics"",""lgbtq""]}" +@samf@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""business"",""government-policy"",""pets"",""philosophy""]}" +@seema@newsmast.social,"{""primary"":""social-sciences"",""others"":[""biodiversity-rewilding"",""climate-change"",""environment""]}" +@tomy@newsmast.social,"{""primary"":""philosophy"",""others"":[""ai"",""physics"",""social-sciences"",""biology"",""space"",""science"",""humanities""]}" +@Kyaw@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""nature-wildlife"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""technology"",""healthcare"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@debgod@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""social-sciences"",""architecture-design"",""hunger-disease-water"",""performing-arts"",""democracy-human-rights"",""black-voices"",""lgbtq"",""music""]}" +@luisaropio@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""government-policy"",""democracy-human-rights"",""energy-pollution""]}" +@Nancie@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""pets"",""humour"",""mental-health-wellbeing""]}" +@TheCultofCalcio@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""news-comment-data"",""business"",""environment""]}" +@jaclynasiegel@newsmast.social,"{""primary"":""social-sciences"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""space"",""humour"",""mental-health-wellbeing"",""travel""]}" +@thelmzkitchen@newsmast.social,"{""primary"":""food-drink"",""others"":[""women-voices"",""creative-arts"",""mental-health-wellbeing"",""travel"",""music""]}" +@DrCarpineti@newsmast.social,"{""primary"":""space"",""others"":[""breaking-news"",""physics"",""news-comment-data"",""activism-civil-rights"",""democracy-human-rights"",""technology"",""lgbtq"",""science""]}" +@MKandHerBC@newsmast.social,"{""primary"":""pets"",""others"":[""social-sciences"",""puzzles"",""business"",""markets-finance"",""humour""]}" +@tillathenun@newsmast.social,"{""primary"":""technology"",""others"":[""nature-wildlife"",""climate-change"",""movies"",""science""]}" +@rebarkable@newsmast.social,"{""primary"":""pets"",""others"":[""food-drink"",""biology"",""science"",""environment""]}" +@QasimRashid@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""government-policy""]}" +@mweinbach@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""social-sciences"",""news-comment-data"",""space"",""politics"",""government-policy"",""business"",""markets-finance"",""engineering"",""mental-health-wellbeing"",""healthcare"",""weather"",""science"",""law-justice""]}" +@Anneliese@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""biodiversity-rewilding"",""climate-change"",""science"",""energy-pollution""]}" +@MummyMatters@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""pets"",""creative-arts"",""travel""]}" +@infobl@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""politics"",""technology"",""weather""]}" +@ShaggyShepherd@newsmast.social,"{""primary"":""books-literature"",""others"":[""nature-wildlife"",""social-sciences"",""immigrants-rights"",""biodiversity-rewilding""]}" +@ChrisB100@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""weather"",""poverty-inequality"",""environment""]}" +@petenothing@newsmast.social,"{""primary"":""books-literature"",""others"":[""nature-wildlife"",""architecture-design"",""food-drink"",""history"",""football"",""women-voices"",""puzzles"",""space"",""pets"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""tv-radio"",""travel"",""lgbtq"",""humanities"",""music""]}" +@ianwalker@newsmast.social,"{""primary"":""environment"",""others"":[""social-sciences"",""space"",""climate-change"",""technology"",""science"",""energy-pollution""]}" +@Randee@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""food-drink"",""news-comment-data"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""biodiversity-rewilding"",""humour"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""movies"",""environment"",""humanities"",""music""]}" +@docwinters@newsmast.social,"{""primary"":""history"",""others"":[""books-literature"",""philosophy"",""law-justice"",""humanities""]}" +@johnhawks@newsmast.social,"{""primary"":""biology"",""others"":[""ai"",""social-sciences"",""news-comment-data"",""space"",""science""]}" +@wjnewman@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""ai"",""hunger-disease-water"",""space"",""climate-change"",""technology""]}" +@BobGatty@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""ai"",""social-sciences"",""sport"",""hunger-disease-water"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""us-sport"",""philosophy"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@willwinter@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""government-policy""]}" +@ghutchis@newsmast.social,"{""primary"":""chemistry"",""others"":[""ai"",""physics"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""biology"",""puzzles"",""space"",""pets"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""technology"",""travel"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@Johnvink@newsmast.social,"{""primary"":""photography"",""others"":[""hunger-disease-water"",""news-comment-data"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""environment""]}" +@chrysalismama@newsmast.social,"{""primary"":""lgbtq"",""others"":[""nature-wildlife"",""news-comment-data"",""books-literature"",""women-voices"",""activism-civil-rights"",""creative-arts"",""democracy-human-rights"",""mental-health-wellbeing""]}" +@nowinaminute@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""social-sciences"",""women-voices"",""activism-civil-rights"",""pets"",""humour"",""mathematics"",""technology"",""lgbtq"",""science""]}" +@pennywalker@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""books-literature"",""government-policy"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""science"",""energy-pollution"",""law-justice""]}" +@mattskal@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""performing-arts"",""movies""]}" +@FemalesNFinance@newsmast.social,"{""primary"":""markets-finance"",""others"":[""news-comment-data"",""puzzles"",""mental-health-wellbeing""]}" +@sustainabilityx@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""business"",""immigrants-rights"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""technology"",""weather"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@arg02@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""chemistry"",""climate-change"",""engineering"",""technology"",""weather"",""science"",""environment""]}" +@Roamancing@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""indigenous-peoples"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""women-voices"",""biology"",""disabled-voices"",""government-policy"",""performing-arts"",""pets"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""mental-health-wellbeing"",""poverty-inequality"",""science"",""environment"",""humanities"",""music""]}" +@StephanHacker2@newsmast.social,"{""primary"":""chemistry""}" +@OpsMatters@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""breaking-news"",""news-comment-data"",""business"",""engineering"",""environment""]}" +@aliciahaydenart@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""visual-arts"",""books-literature"",""biology"",""biodiversity-rewilding"",""climate-change"",""photography"",""science"",""environment""]}" +@MotorcycleGuy@newsmast.social,"{""primary"":""healthcare"",""others"":[""breaking-news"",""ai"",""space"",""politics"",""activism-civil-rights"",""government-policy"",""business"",""mathematics"",""technology"",""lgbtq"",""science""]}" +@Ed_Rempel@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""ai"",""social-sciences"",""food-drink"",""news-comment-data"",""space"",""politics"",""government-policy"",""markets-finance"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""technology"",""travel"",""poverty-inequality""]}" +@OmarSakr@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""hunger-disease-water"",""politics"",""immigrants-rights"",""democracy-human-rights"",""tv-radio"",""movies"",""environment""]}" +@wdshow@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""politics"",""government-policy"",""mental-health-wellbeing"",""healthcare"",""law-justice""]}" +@PriyankaJoshi@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""books-literature"",""business"",""philosophy"",""environment""]}" +@JohnnieJae@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""democracy-human-rights"",""mental-health-wellbeing"",""tv-radio"",""healthcare"",""lgbtq"",""movies"",""law-justice""]}" +@DrHannahBB@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""government-policy"",""healthcare"",""lgbtq"",""music""]}" +@erica@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""books-literature"",""ukraine-invasion"",""politics"",""tv-radio"",""weather"",""humanities"",""music""]}" +@jackiealpers@newsmast.social,"{""primary"":""food-drink"",""others"":[""visual-arts"",""history"",""books-literature"",""photography""]}" +@francisco_blaha@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""climate-change"",""poverty-inequality"",""environment""]}" +@Pghlesbian@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""social-sciences"",""government-policy"",""mental-health-wellbeing"",""healthcare"",""environment"",""law-justice""]}" +@pam_palmater@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""news-comment-data"",""women-voices"",""activism-civil-rights"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""environment""]}" +@Mie_astrup@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""football"",""women-voices"",""government-policy"",""performing-arts"",""democracy-human-rights"",""movies"",""poverty-inequality"",""humanities""]}" +@deniseoberry@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""ai"",""social-sciences"",""news-comment-data"",""politics"",""government-policy"",""markets-finance"",""technology"",""law-justice""]}" +@KittyInTheMitty@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""social-sciences"",""disabled-voices"",""pets"",""tv-radio"",""poverty-inequality"",""humanities""]}" +@kalhan@newsmast.social,"{""primary"":""law-justice"",""others"":[""ai"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""politics"",""activism-civil-rights"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""technology"",""humanities""]}" +@contessalouise@newsmast.social,"{""primary"":""climate-change"",""others"":[""food-drink"",""disabled-voices"",""black-voices"",""environment""]}" +@RachelBranson@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""food-drink"",""biology"",""business"",""creative-arts"",""biodiversity-rewilding"",""technology"",""travel""]}" +@wytham_woods@newsmast.social,"{""primary"":""environment"",""others"":[""hunger-disease-water"",""biology"",""biodiversity-rewilding"",""climate-change"",""photography"",""science""]}" +@KevinWagar@newsmast.social,"{""primary"":""travel"",""others"":[""sport"",""space"",""mental-health-wellbeing"",""environment""]}" +@FrontSeatPhil@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""ukraine-invasion"",""news-comment-data"",""space""]}" +@uthi@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""ukraine-invasion"",""puzzles"",""politics"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""travel"",""weather""]}" +@JulieAtkinson@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""food-drink"",""pets"",""travel""]}" +@ipub@newsmast.social,"{""primary"":""government-policy"",""others"":[""news-comment-data"",""politics"",""markets-finance"",""technology""]}" +@SuperScienceGrl@newsmast.social,"{""primary"":""chemistry"",""others"":[""ai"",""social-sciences"",""technology"",""science""]}" +@gnasralla@newsmast.social,"{""primary"":""business"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""architecture-design"",""hunger-disease-water"",""history"",""performing-arts"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""philosophy"",""technology"",""photography"",""poverty-inequality"",""environment"",""humanities"",""music""]}" +@monicareinagel@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""ai"",""social-sciences"",""food-drink"",""books-literature"",""biology"",""humour"",""philosophy"",""technology"",""science""]}" +@JURISTnews@newsmast.social,"{""primary"":""law-justice"",""others"":[""breaking-news"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@crazyjane125@newsmast.social,"{""primary"":""science"",""others"":[""nature-wildlife"",""food-drink"",""biology"",""disabled-voices""]}" +@Sascha_Feldmann@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""visual-arts"",""chemistry"",""engineering""]}" +@Cam_Walker@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""indigenous-peoples"",""hunger-disease-water"",""ukraine-invasion"",""activism-civil-rights"",""government-policy"",""workers-rights"",""biodiversity-rewilding"",""climate-change"",""science"",""energy-pollution""]}" +@PlantInitiative@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""biodiversity-rewilding"",""climate-change"",""energy-pollution""]}" +@SJC@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""indigenous-peoples"",""women-voices"",""business"",""democracy-human-rights"",""black-voices"",""lgbtq"",""poverty-inequality""]}" +@soccerhub@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data""]}" +@catcafesandiego@newsmast.social,"{""primary"":""pets"",""others"":[""news-comment-data"",""business"",""photography"",""travel""]}" +@nyeinygn@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""weather""]}" +@vegannutrition@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""food-drink"",""hunger-disease-water"",""biology"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@Bell@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""physics"",""government-policy"",""business"",""engineering"",""mathematics"",""technology"",""environment""]}" +@jessa@newsmast.social,"{""primary"":""government-policy"",""others"":[""social-sciences"",""history"",""books-literature"",""women-voices"",""puzzles"",""disabled-voices"",""performing-arts"",""workers-rights"",""creative-arts"",""chemistry"",""humour"",""engineering"",""gaming"",""mental-health-wellbeing"",""lgbtq"",""science"",""humanities""]}" +@Iyad_Abumoghli@newsmast.social,"{""primary"":""environment"",""others"":[""hunger-disease-water"",""space"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""photography"",""science"",""energy-pollution"",""law-justice""]}" +@indiajade_68@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""hunger-disease-water"",""biology"",""chemistry"",""democracy-human-rights"",""climate-change"",""technology"",""photography"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@askchefdennis@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""breaking-news"",""food-drink""]}" +@aungmyatmoe@newsmast.social,"{""primary"":""government-policy"",""others"":[""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""mental-health-wellbeing"",""healthcare"",""black-voices"",""lgbtq"",""law-justice""]}" +@Superpolitics@newsmast.social,"{""primary"":""black-voices"",""others"":[""visual-arts"",""indigenous-peoples"",""architecture-design"",""sport"",""hunger-disease-water"",""football"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""workers-rights"",""immigrants-rights"",""democracy-human-rights"",""gaming"",""tv-radio"",""photography"",""lgbtq"",""movies"",""poverty-inequality"",""environment"",""music"",""law-justice""]}" +@thepetsnet@newsmast.social,"{""primary"":""pets"",""others"":[""nature-wildlife"",""humour"",""mental-health-wellbeing"",""travel""]}" +@mongabay@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""nature-wildlife"",""biology"",""biodiversity-rewilding"",""climate-change"",""environment""]}" +@PolGeoNow@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""physics"",""social-sciences"",""biology"",""space"",""politics"",""government-policy"",""immigrants-rights"",""chemistry"",""engineering"",""mathematics"",""science""]}" +@asausagehastwo@newsmast.social,"{""primary"":""food-drink"",""others"":[""nature-wildlife"",""news-comment-data"",""biodiversity-rewilding"",""climate-change"",""travel"",""environment""]}" +@robpollice@newsmast.social,"{""primary"":""chemistry"",""others"":[""physics"",""ai"",""mathematics"",""science""]}" +@dennisfparker@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""activism-civil-rights"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""weather"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@jsit@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@elisexavier@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""biology"",""pets"",""creative-arts""]}" +@ilovefilm@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""history"",""women-voices"",""space"",""government-policy"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""photography"",""lgbtq"",""movies"",""science"",""music""]}" +@RewildScotland@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""nature-wildlife"",""philosophy"",""environment""]}" +@vijay@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@oceanknigge@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""architecture-design"",""climate-change"",""environment""]}" +@mikea@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""nature-wildlife"",""politics"",""business"",""biodiversity-rewilding"",""technology"",""energy-pollution"",""environment""]}" +@allaroundoz@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""mental-health-wellbeing""]}" +@benogeh@newsmast.social,"{""primary"":""environment"",""others"":[""nature-wildlife"",""biodiversity-rewilding"",""climate-change"",""energy-pollution""]}" +@alanwelch@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""politics""]}" +@AFalcon@newsmast.social,"{""primary"":""creative-arts"",""others"":[""sport"",""football"",""politics"",""business"",""government-policy""]}" +@CanWCC@newsmast.social,"{""primary"":""women-voices"",""others"":[""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""democracy-human-rights"",""black-voices"",""lgbtq"",""poverty-inequality"",""environment""]}" +@WilmotsWay@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""food-drink"",""news-comment-data"",""puzzles"",""humour"",""tv-radio"",""travel"",""movies"",""weather"",""music""]}" +@devenperez@newsmast.social,"{""primary"":""engineering"",""others"":[""physics"",""ai"",""space"",""technology""]}" +@Aysegul@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""activism-civil-rights"",""workers-rights"",""creative-arts"",""democracy-human-rights"",""engineering"",""philosophy"",""tv-radio"",""lgbtq"",""movies"",""weather"",""science"",""music""]}" +@tderyugina@newsmast.social,"{""primary"":""social-sciences"",""others"":[""ukraine-invasion"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""energy-pollution"",""environment""]}" +@steve116@newsmast.social,"{""primary"":""visual-arts"",""others"":[""architecture-design"",""performing-arts"",""gaming"",""tv-radio"",""photography"",""movies"",""music"",""law-justice""]}" +@StephenScouted@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""history"",""travel""]}" +@Origami@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""news-comment-data"",""business"",""markets-finance"",""environment""]}" +@matt_cary@newsmast.social,"{""primary"":""law-justice"",""others"":[""ai"",""social-sciences"",""women-voices"",""politics"",""disabled-voices"",""government-policy"",""workers-rights"",""immigrants-rights"",""black-voices"",""lgbtq""]}" +@WestWeather@newsmast.social,"{""primary"":""weather"",""others"":[""nature-wildlife"",""biodiversity-rewilding"",""climate-change"",""energy-pollution"",""environment""]}" +@DrKylieSoanes@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""physics"",""nature-wildlife"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""chemistry"",""climate-change"",""engineering"",""mathematics"",""weather"",""science"",""energy-pollution"",""environment""]}" +@prabhakar@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@chloeariellle@newsmast.social,"{""primary"":""social-sciences"",""others"":[""ai"",""food-drink"",""news-comment-data"",""activism-civil-rights"",""biodiversity-rewilding"",""climate-change"",""mental-health-wellbeing"",""technology"",""science"",""environment""]}" +@arlettecontrers@newsmast.social,"{""primary"":""poverty-inequality"",""others"":[""ai"",""social-sciences"",""news-comment-data"",""politics""]}" +@Diva_7057@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""food-drink"",""performing-arts"",""humour"",""tv-radio"",""social-media"",""movies"",""weather"",""science""]}" +@LynnNanos@newsmast.social,"{""primary"":""social-sciences"",""others"":[""activism-civil-rights"",""government-policy"",""democracy-human-rights"",""mental-health-wellbeing"",""science"",""law-justice""]}" +@itsmarta101@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""news-comment-data"",""women-voices"",""activism-civil-rights"",""democracy-human-rights"",""tv-radio"",""movies"",""music""]}" +@clairejuliaart@newsmast.social,"{""primary"":""visual-arts"",""others"":[""nature-wildlife"",""social-sciences"",""books-literature"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""creative-arts"",""humour"",""mental-health-wellbeing"",""philosophy"",""travel"",""lgbtq"",""humanities""]}" +@jmenka@newsmast.social,"{""primary"":""visual-arts"",""others"":[""performing-arts"",""creative-arts"",""gaming"",""photography"",""lgbtq"",""movies""]}" +@DrGCrisp@newsmast.social,"{""primary"":""climate-change"",""others"":[""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""biology"",""space"",""biodiversity-rewilding"",""democracy-human-rights"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@CBhattacharji@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""history"",""news-comment-data"",""business"",""climate-change"",""science""]}" +@TheQueerBookish@newsmast.social,"{""primary"":""books-literature"",""others"":[""women-voices"",""disabled-voices"",""creative-arts"",""lgbtq""]}" +@SustMeme@newsmast.social,"{""primary"":""environment"",""others"":[""business"",""biodiversity-rewilding"",""climate-change"",""engineering"",""technology"",""science"",""energy-pollution""]}" +@michaelcohen@newsmast.social,"{""primary"":""history"",""others"":[""books-literature"",""space"",""politics"",""government-policy"",""climate-change"",""science"",""environment"",""humanities""]}" +@alawriedejesus@newsmast.social,"{""primary"":""lgbtq"",""others"":[""politics"",""activism-civil-rights"",""government-policy"",""music""]}" +@icey_mark@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""physics"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""space"",""government-policy"",""biodiversity-rewilding"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@TheEnglishLion@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data"",""movies""]}" +@AlexShvartsman@newsmast.social,"{""primary"":""books-literature"",""others"":[""ai"",""breaking-news"",""ukraine-invasion"",""technology"",""tv-radio"",""humanities""]}" +@jenandreacchi@newsmast.social,"{""primary"":""lgbtq"",""others"":[""social-sciences"",""books-literature"",""tv-radio"",""environment""]}" +@Reuben@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""sport"",""football"",""government-policy"",""healthcare""]}" +@nancymangano@newsmast.social,"{""primary"":""creative-arts"",""others"":[""news-comment-data"",""books-literature"",""government-policy"",""movies""]}" +@TasmanianTimes@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""nature-wildlife"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""energy-pollution""]}" +@dannyweller@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""sport"",""food-drink"",""history"",""politics"",""government-policy"",""performing-arts"",""workers-rights"",""immigrants-rights"",""creative-arts"",""travel"",""photography"",""movies"",""science"",""music""]}" +@fitinfounder@newsmast.social,"{""primary"":""women-voices"",""others"":[""indigenous-peoples"",""architecture-design"",""activism-civil-rights"",""disabled-voices"",""business"",""workers-rights"",""immigrants-rights"",""black-voices"",""lgbtq"",""environment"",""law-justice""]}" +@drshaunanderson@newsmast.social,"{""primary"":""sport"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""football"",""business"",""performing-arts"",""immigrants-rights"",""markets-finance"",""democracy-human-rights"",""gaming"",""tv-radio"",""photography"",""movies"",""poverty-inequality"",""environment"",""music""]}" +@beck@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""indigenous-peoples"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""technology"",""healthcare"",""black-voices"",""travel"",""lgbtq"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""law-justice""]}" +@GraceReckers@newsmast.social,"{""primary"":""workers-rights"",""others"":[""indigenous-peoples"",""social-sciences"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""tv-radio"",""healthcare"",""black-voices"",""photography"",""lgbtq"",""energy-pollution"",""environment"",""music"",""law-justice""]}" +@Calmsage@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""puzzles"",""pets"",""creative-arts""]}" +@business@newsmast.social,"{""primary"":""ai"",""others"":[""news-comment-data"",""business"",""government-policy"",""environment""]}" +@k_rose@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@ErichWeikert@newsmast.social,"{""primary"":""humanities"",""others"":[""ai"",""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""space"",""chemistry"",""biodiversity-rewilding"",""engineering"",""technology"",""photography"",""science"",""energy-pollution"",""environment""]}" +@lgbtq@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""indigenous-peoples"",""women-voices"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""black-voices"",""lgbtq""]}" +@wildlife@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""biodiversity-rewilding"",""climate-change"",""environment""]}" +@sport@newsmast.social,"{""primary"":""sport"",""others"":[""breaking-news"",""football"",""us-sport"",""tv-radio""]}" +@womens_voices@newsmast.social,"{""primary"":""women-voices"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""activism-civil-rights"",""disabled-voices"",""workers-rights"",""immigrants-rights"",""black-voices"",""lgbtq""]}" +@christina88@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""visual-arts"",""social-sciences"",""hunger-disease-water"",""books-literature"",""government-policy"",""pets"",""workers-rights"",""creative-arts"",""philosophy"",""tv-radio"",""lgbtq"",""poverty-inequality"",""humanities"",""music"",""law-justice""]}" +@jakeanders@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""news-comment-data"",""government-policy"",""technology"",""science""]}" +@itzme@newsmast.social,"{""primary"":""breaking-news"",""others"":[""democracy-human-rights"",""science"",""environment"",""law-justice""]}" +@AltonDrew@newsmast.social,"{""primary"":""government-policy"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""puzzles"",""politics"",""us-politics"",""performing-arts"",""pets"",""academia-research"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""healthcare"",""travel"",""photography"",""movies"",""music"",""law-justice""]}" +@claudianatasha_@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""humour"",""gaming"",""tv-radio"",""travel"",""photography"",""movies"",""music""]}" +@robbhoyy@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""physics"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""chemistry"",""democracy-human-rights"",""mathematics"",""philosophy"",""healthcare"",""social-media"",""weather"",""poverty-inequality"",""science"",""humanities"",""law-justice""]}" +@testmeme@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""us-politics"",""social-media"",""weather""]}" +@Grinch@newsmast.social,"{""primary"":""politics"",""others"":[""ukraine-invasion"",""us-politics"",""government-policy"",""social-media"",""black-voices"",""weather""]}" +@reverb@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""democracy-human-rights"",""engineering"",""gaming"",""us-sport"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""humanities"",""music"",""law-justice""]}" +@maketheswitchAU@newsmast.social,"{""primary"":""movies"",""others"":[""breaking-news"",""ai"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""sport"",""food-drink"",""history"",""books-literature"",""women-voices"",""biology"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mental-health-wellbeing"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""music"",""law-justice""]}" +@nyeinBinarylab@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""nature-wildlife"",""indigenous-peoples"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""healthcare"",""social-media"",""black-voices"",""travel"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@healthcare@newsmast.social,"{""primary"":""healthcare"",""others"":[""government-policy"",""mental-health-wellbeing"",""law-justice""]}" +@Nicolas@newsmast.social,"{""primary"":""engineering"",""others"":[""breaking-news"",""ai"",""food-drink"",""news-comment-data"",""creative-arts"",""technology"",""programming""]}" +@Gymbag4u@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""nature-wildlife"",""business"",""pets"",""creative-arts"",""markets-finance"",""humour"",""mental-health-wellbeing"",""travel""]}" +@chafafa@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""architecture-design"",""history"",""books-literature"",""chemistry"",""engineering"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""photography"",""programming"",""weather"",""science"",""humanities""]}" +@SummerS@newsmast.social,"{""primary"":""pets"",""others"":[""breaking-news"",""creative-arts"",""social-media"",""photography""]}" +@Laurairby@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""biodiversity-rewilding"",""humour"",""climate-change"",""engineering"",""gaming"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""programming"",""weather"",""energy-pollution"",""environment"",""music""]}" +@jessicanewmast@newsmast.social,"{""primary"":""climate-change"",""others"":[""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""business"",""immigrants-rights"",""markets-finance"",""engineering"",""technology"",""black-voices"",""lgbtq"",""programming"",""energy-pollution"",""environment""]}" +@luffy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""social-sciences"",""sport"",""food-drink"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""us-sport"",""philosophy"",""technology"",""social-media"",""programming"",""science"",""environment"",""humanities""]}" +@RafiqulMontu@newsmast.social,"{""primary"":""climate-change"",""others"":[""physics"",""space"",""biodiversity-rewilding"",""energy-pollution"",""environment""]}" +@jdp23@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""indigenous-peoples"",""social-sciences"",""women-voices"",""us-politics"",""immigrants-rights"",""democracy-human-rights"",""philosophy"",""technology"",""social-media"",""black-voices"",""lgbtq"",""law-justice""]}" +@minkhantBL@newsmast.social,"{""primary"":""breaking-news"",""others"":[""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""democracy-human-rights"",""social-media"",""weather"",""poverty-inequality""]}" +@putuu@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@yarzar@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""sport"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""pets"",""creative-arts"",""chemistry"",""humour"",""engineering"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""technology"",""social-media"",""travel"",""programming"",""weather"",""science""]}" +@enriqueanarte@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""democracy-human-rights""]}" +@Drizzleanddip@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""visual-arts"",""books-literature"",""creative-arts"",""travel"",""photography"",""movies"",""environment""]}" +@Emma_Samson@newsmast.social,"{""primary"":""environment"",""others"":[""social-sciences"",""business"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""energy-pollution""]}" +@iostest@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@LeanneKeddie@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""social-sciences"",""biodiversity-rewilding"",""weather"",""environment""]}" +@max_chaudhary@newsmast.social,"{""primary"":""government-policy"",""others"":[""history"",""politics"",""us-politics"",""academia-research"",""democracy-human-rights"",""healthcare"",""law-justice""]}" +@rach_garr@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""politics"",""government-policy"",""academia-research"",""climate-change"",""environment""]}" +@RossA@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""social-sciences"",""news-comment-data"",""books-literature"",""puzzles"",""performing-arts"",""biodiversity-rewilding"",""humour"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""social-media"",""photography"",""movies"",""weather"",""science"",""music""]}" +@jeffreyguard@newsmast.social,"{""primary"":""lgbtq"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""history"",""books-literature"",""performing-arts"",""philosophy"",""tv-radio"",""photography"",""movies"",""music""]}" +@gavinjmaguire@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""football"",""us-politics"",""government-policy"",""business"",""creative-arts"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""travel"",""poverty-inequality""]}" +@bryantout@newsmast.social,"{""primary"":""breaking-news"",""others"":[""books-literature"",""puzzles"",""politics"",""us-politics"",""government-policy"",""mental-health-wellbeing"",""technology"",""movies""]}" +@brettmirl@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""technology"",""tv-radio"",""black-voices"",""movies"",""weather"",""poverty-inequality"",""music""]}" +@artbol@newsmast.social,"{""primary"":""breaking-news"",""others"":[""architecture-design"",""space"",""gaming"",""technology"",""tv-radio"",""movies"",""programming"",""science"",""energy-pollution"",""environment"",""music""]}" +@pikarl13@newsmast.social,"{""primary"":""space"",""others"":[""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""biology"",""politics"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""technology"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@denn@newsmast.social,"{""primary"":""lgbtq"",""others"":[""ai"",""physics"",""indigenous-peoples"",""social-sciences"",""history"",""women-voices"",""biology"",""space"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""chemistry"",""engineering"",""mathematics"",""philosophy"",""technology"",""black-voices"",""programming"",""science"",""humanities""]}" +@Kyn@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@09SHEEHANM@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""news-comment-data"",""business"",""government-policy""]}" +@MichelleA@newsmast.social,"{""primary"":""healthcare"",""others"":[""breaking-news"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""chemistry"",""markets-finance"",""mathematics"",""social-media"",""weather"",""science"",""law-justice""]}" +@Migis4991@newsmast.social,"{""primary"":""social-sciences"",""others"":[""ai"",""history"",""politics"",""government-policy"",""academia-research"",""technology"",""programming"",""science""]}" +@Pyae000@newsmast.social,"{""primary"":""programming"",""others"":[""physics"",""engineering"",""mathematics"",""technology"",""science""]}" +@RonCharles@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@jonbreeze@newsmast.social,"{""primary"":""physics"",""others"":[""space"",""climate-change"",""technology"",""science"",""energy-pollution""]}" +@mikesplaces@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""mental-health-wellbeing"",""technology"",""social-media"",""travel"",""photography""]}" +@jetono@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""engineering"",""gaming"",""social-media"",""programming""]}" +@chloe_661@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""space"",""technology"",""programming""]}" +@AnnaScott@newsmast.social,"{""primary"":""music"",""others"":[""books-literature"",""performing-arts"",""tv-radio"",""photography"",""movies""]}" +@dleifohcs@newsmast.social,"{""primary"":""physics"",""others"":[""ai"",""space"",""technology"",""science""]}" +@jncomas@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""ukraine-invasion"",""us-politics"",""democracy-human-rights"",""philosophy"",""humanities"",""law-justice""]}" +@muzaffarab@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""government-policy"",""poverty-inequality""]}" +@wannely@newsmast.social,"{""primary"":""creative-arts"",""others"":[""hunger-disease-water"",""democracy-human-rights"",""science"",""poverty-inequality""]}" +@ryankhan@newsmast.social,"{""primary"":""academia-research"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""government-policy"",""democracy-human-rights"",""healthcare"",""poverty-inequality"",""law-justice""]}" +@nisemikol@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""history"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""technology"",""lgbtq"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@ifonlycom@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""history"",""biology"",""space"",""politics"",""us-politics"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""technology"",""healthcare"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@feuerkugel@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""space"",""technology"",""weather"",""science""]}" +@mental_health@newsmast.social,"{""primary"":""mental-health-wellbeing""}" +@Greg@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""social-sciences"",""news-comment-data"",""humour"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""programming"",""science"",""humanities""]}" +@marianaborges@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""physics"",""biology"",""space"",""government-policy"",""academia-research"",""chemistry"",""mathematics"",""healthcare"",""science""]}" +@ThomasFoster@newsmast.social,"{""primary"":""movies"",""others"":[""indigenous-peoples"",""ukraine-invasion"",""activism-civil-rights"",""academia-research"",""workers-rights"",""immigrants-rights"",""gaming""]}" +@fediverso@newsmast.social,"{""primary"":""academia-research"",""others"":[""ai"",""physics"",""social-sciences"",""biology"",""activism-civil-rights"",""government-policy"",""chemistry"",""mathematics"",""technology"",""humanities""]}" +@MichaelCaines@newsmast.social,"{""primary"":""books-literature"",""others"":[""visual-arts"",""performing-arts"",""photography"",""humanities"",""music""]}" +@robhoy@newsmast.social,"{""primary"":""movies"",""others"":[""breaking-news"",""ai"",""visual-arts"",""books-literature"",""engineering"",""gaming"",""technology"",""tv-radio"",""social-media"",""programming"",""weather""]}" +@foong@newsmast.social,"{""primary"":""ai"",""others"":[""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""books-literature"",""biology"",""puzzles"",""space"",""business"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""science"",""humanities"",""music""]}" +@jimmy@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@Sas99@newsmast.social,"{""primary"":""space"",""others"":[""sport"",""news-comment-data"",""football"",""social-media""]}" +@glecko@newsmast.social,"{""primary"":""football"",""others"":[""ai"",""biology"",""space"",""business"",""workers-rights"",""markets-finance"",""climate-change"",""gaming"",""us-sport"",""technology"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@MAD_Democracy@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""politics"",""us-politics"",""social-media"",""healthcare""]}" +@tgirl_696@newsmast.social,"{""primary"":""humour"",""others"":[""visual-arts"",""performing-arts"",""biodiversity-rewilding"",""travel""]}" +@realmaney344@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""politics"",""gaming"",""technology"",""tv-radio"",""movies"",""weather"",""music"",""law-justice""]}" +@Rinn@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""physics"",""nature-wildlife"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""biology"",""puzzles"",""space"",""business"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""travel"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@ewee@newsmast.social,"{""primary"":""music"",""others"":[""social-sciences"",""history"",""activism-civil-rights"",""lgbtq"",""movies"",""humanities""]}" +@dariusofz@newsmast.social,"{""primary"":""breaking-news""}" +@miscmisc@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""biology"",""football"",""democracy-human-rights"",""technology"",""science""]}" +@sai_myo_1993@newsmast.social,"{""primary"":""programming"",""others"":[""hunger-disease-water"",""engineering"",""climate-change"",""environment""]}" +@jhantytown89@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""politics"",""us-politics"",""disabled-voices"",""government-policy"",""academia-research"",""workers-rights"",""democracy-human-rights"",""mental-health-wellbeing"",""social-media"",""lgbtq"",""programming"",""poverty-inequality"",""science"",""law-justice""]}" +@Lady_IniQ@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""architecture-design"",""pets"",""gaming"",""travel"",""movies""]}" +@GiuliaTranchina@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""social-sciences"",""hunger-disease-water"",""poverty-inequality"",""law-justice"",""humanities""]}" +@LSelter@newsmast.social,"{""primary"":""engineering"",""others"":[""biodiversity-rewilding"",""climate-change"",""programming"",""environment""]}" +@benjamin@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""physics"",""biology"",""space"",""democracy-human-rights"",""us-sport"",""technology"",""programming"",""poverty-inequality"",""science""]}" +@jamesmullan@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""news-comment-data"",""gaming"",""tv-radio"",""movies"",""weather"",""music""]}" +@paige_travels@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""books-literature"",""photography""]}" +@OurSkyHaven@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""visual-arts"",""architecture-design"",""sport"",""books-literature"",""performing-arts"",""gaming"",""us-sport"",""tv-radio"",""photography"",""movies"",""music""]}" +@Zari_Jaipur@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""food-drink"",""puzzles"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""travel""]}" +@sheckmo@newsmast.social,"{""primary"":""climate-change"",""others"":[""us-politics"",""biodiversity-rewilding"",""science"",""energy-pollution"",""environment""]}" +@mariana_b@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""activism-civil-rights"",""government-policy"",""business"",""pets"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""black-voices"",""travel"",""lgbtq"",""movies"",""weather"",""music""]}" +@Douglas_1@newsmast.social,"{""primary"":""pets"",""others"":[""breaking-news"",""nature-wildlife"",""travel"",""weather""]}" +@heartlandnews@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@rydercashnews@newsmast.social,"{""primary"":""law-justice"",""others"":[""ai"",""activism-civil-rights"",""engineering"",""technology"",""programming""]}" +@DaMontayyer@newsmast.social,"{""primary"":""football"",""others"":[""visual-arts"",""architecture-design"",""sport"",""history"",""women-voices"",""politics"",""us-politics"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""us-sport"",""technology"",""tv-radio"",""healthcare"",""lgbtq"",""movies"",""programming"",""energy-pollution"",""environment"",""music""]}" +@markus@newsmast.social,"{""primary"":""ai"",""others"":[""creative-arts"",""engineering"",""technology"",""science""]}" +@lasp@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""visual-arts"",""social-sciences"",""architecture-design"",""books-literature"",""academia-research"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""movies"",""environment"",""humanities"",""music""]}" +@mguhlin@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""workers-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@Dade_Murphy@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news""]}" +@DFLS@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""puzzles"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""markets-finance"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""weather"",""music""]}" +@PB51@newsmast.social,"{""primary"":""books-literature"",""others"":[""us-politics"",""climate-change"",""us-sport"",""environment""]}" +@desire2undrstnd@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""football"",""humour"",""mental-health-wellbeing"",""us-sport""]}" +@toyin@newsmast.social,"{""primary"":""black-voices"",""others"":[""breaking-news"",""indigenous-peoples"",""social-sciences"",""history"",""news-comment-data"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""philosophy"",""social-media"",""lgbtq"",""humanities""]}" +@navayan@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@param_21@newsmast.social,"{""primary"":""markets-finance"",""others"":[""breaking-news"",""football"",""puzzles"",""government-policy"",""business"",""pets"",""academia-research"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""law-justice""]}" +@beta_123@newsmast.social,"{""primary"":""poverty-inequality"",""others"":[""breaking-news"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""democracy-human-rights"",""social-media"",""weather""]}" +@mpmilestogo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""technology"",""travel"",""photography""]}" +@Karia@newsmast.social,"{""primary"":""food-drink"",""others"":[""ai"",""nature-wildlife"",""social-sciences"",""history"",""puzzles"",""politics"",""us-politics"",""government-policy"",""pets"",""academia-research"",""creative-arts"",""humour"",""engineering"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""travel"",""programming"",""humanities"",""law-justice""]}" +@hfodndnd@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""black-voices"",""lgbtq""]}" +@reubenwr@newsmast.social,"{""primary"":""movies"",""others"":[""history"",""books-literature"",""activism-civil-rights"",""immigrants-rights"",""philosophy"",""humanities""]}" +@JenniferLawson@newsmast.social,"{""primary"":""humanities"",""others"":[""physics"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""women-voices"",""politics"",""disabled-voices"",""government-policy"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""healthcare"",""lgbtq"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@JHBernstein@newsmast.social,"{""primary"":""architecture-design"",""others"":[""physics"",""visual-arts"",""social-sciences"",""history"",""books-literature"",""biology"",""space"",""politics"",""us-politics"",""performing-arts"",""academia-research"",""chemistry"",""climate-change"",""gaming"",""mathematics"",""philosophy"",""tv-radio"",""photography"",""movies"",""science"",""environment"",""humanities"",""music"",""law-justice""]}" +@ppt556@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""ukraine-invasion"",""engineering"",""us-sport"",""technology"",""social-media"",""programming"",""weather""]}" +@kaunglay@newsmast.social,"{""primary"":""engineering""}" +@finserving@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""engineering"",""technology"",""healthcare"",""programming"",""law-justice""]}" +@sophia_robeet@newsmast.social,"{""primary"":""technology"",""others"":[""sport"",""business"",""government-policy"",""science""]}" +@canvasoul@newsmast.social,"{""primary"":""photography"",""others"":[""space"",""philosophy"",""humanities"",""music""]}" +@sean@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""biology"",""space"",""activism-civil-rights"",""pets"",""academia-research"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""travel"",""photography"",""lgbtq"",""movies"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@kijekijikokwe@newsmast.social,"{""primary"":""indigenous-peoples"",""others"":[""activism-civil-rights"",""disabled-voices"",""academia-research"",""democracy-human-rights"",""healthcare"",""lgbtq"",""law-justice""]}" +@TheBestLeiya@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""disabled-voices"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""healthcare"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities""]}" +@bobo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""activism-civil-rights"",""disabled-voices"",""business"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""social-media"",""black-voices"",""travel"",""lgbtq"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@flipflop@newsmast.social,"{""primary"":""puzzles"",""others"":[""breaking-news"",""physics"",""space"",""humour"",""mathematics"",""technology"",""tv-radio"",""science""]}" +@TheTravelBunny@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""biodiversity-rewilding"",""photography"",""environment""]}" +@BostonAbrams@newsmast.social,"{""primary"":""breaking-news"",""others"":[""food-drink"",""history"",""news-comment-data"",""books-literature"",""puzzles"",""space"",""philosophy"",""social-media"",""science"",""humanities""]}" +@FamilyFunTravel@newsmast.social,"{""primary"":""women-voices"",""others"":[""sport"",""football"",""immigrants-rights"",""us-sport""]}" +@vmatt@newsmast.social,"{""primary"":""books-literature"",""others"":[""ai"",""visual-arts"",""social-sciences"",""news-comment-data"",""football"",""puzzles"",""activism-civil-rights"",""democracy-human-rights"",""engineering"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""travel"",""lgbtq"",""movies"",""programming"",""humanities"",""music""]}" +@tomo@newsmast.social,"{""primary"":""social-media"",""others"":[""sport"",""technology"",""tv-radio"",""weather"",""music""]}" +@drbradtucker@newsmast.social,"{""primary"":""space"",""others"":[""physics"",""ai"",""social-sciences"",""science""]}" +@Maily@newsmast.social,"{""primary"":""women-voices"",""others"":[""ai"",""technology"",""movies"",""music""]}" +@MattSaltmarsh@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""politics"",""government-policy"",""democracy-human-rights""]}" +@Elioz@newsmast.social,"{""primary"":""creative-arts"",""others"":[""breaking-news"",""ai"",""visual-arts"",""architecture-design"",""books-literature"",""ukraine-invasion"",""activism-civil-rights"",""business"",""performing-arts"",""pets"",""humour"",""engineering"",""technology"",""tv-radio"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""environment"",""music""]}" +@psthisrocks@newsmast.social,"{""primary"":""architecture-design"",""others"":[""breaking-news"",""ai"",""visual-arts"",""nature-wildlife"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""puzzles"",""politics"",""us-politics"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""creative-arts"",""markets-finance"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""travel"",""photography"",""movies"",""programming"",""weather"",""poverty-inequality"",""humanities"",""music"",""law-justice""]}" +@lime360@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""engineering"",""philosophy"",""technology"",""social-media"",""weather"",""humanities""]}" +@ghiachan@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""business"",""creative-arts"",""mental-health-wellbeing"",""photography""]}" +@min_thu@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""immigrants-rights"",""black-voices"",""lgbtq""]}" +@weatherandradar@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""news-comment-data"",""climate-change"",""environment""]}" +@hannaka@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""sport"",""pets"",""weather""]}" +@NycciNellis@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""politics"",""us-politics"",""government-policy"",""performing-arts"",""democracy-human-rights"",""tv-radio"",""environment"",""law-justice""]}" +@andrzej1@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""ai"",""social-sciences"",""architecture-design"",""books-literature"",""democracy-human-rights"",""science"",""humanities""]}" +@Darling@newsmast.social,"{""primary"":""football"",""others"":[""ai"",""physics"",""sport"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""us-sport"",""technology"",""programming"",""science""]}" +@gayatravel@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""social-media"",""photography""]}" +@stb@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""sport"",""food-drink"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""pets"",""academia-research"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""humour"",""climate-change"",""engineering"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""social-media"",""black-voices"",""travel"",""lgbtq"",""programming"",""weather"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@Birdiana_Jonez@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""space"",""politics"",""government-policy"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""travel"",""photography"",""movies"",""science"",""environment"",""humanities"",""music"",""law-justice""]}" +@Catwisdom@newsmast.social,"{""primary"":""creative-arts"",""others"":[""nature-wildlife"",""food-drink"",""pets"",""humour"",""mental-health-wellbeing"",""travel""]}" +@Tony62Pineview@newsmast.social,"{""primary"":""environment"",""others"":[""news-comment-data"",""football"",""performing-arts"",""biodiversity-rewilding"",""climate-change"",""us-sport"",""tv-radio"",""energy-pollution"",""humanities"",""music""]}" +@posts@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@minkhantkyaw350@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""visual-arts"",""architecture-design"",""sport"",""books-literature"",""football"",""performing-arts"",""gaming"",""us-sport"",""technology"",""tv-radio"",""photography"",""movies"",""music""]}" +@MetalAddicts@newsmast.social,"{""primary"":""music"",""others"":[""visual-arts"",""performing-arts"",""gaming"",""movies""]}" +@WJAHOM@newsmast.social,"{""primary"":""music"",""others"":[""nature-wildlife"",""food-drink"",""history"",""news-comment-data"",""books-literature"",""football"",""women-voices"",""puzzles"",""politics"",""activism-civil-rights"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""democracy-human-rights"",""climate-change"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""social-media"",""lgbtq"",""movies"",""science"",""environment""]}" +@Paxivorian@newsmast.social,"{""primary"":""architecture-design"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""biology"",""space"",""performing-arts"",""chemistry"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""photography"",""movies"",""programming"",""weather"",""science"",""humanities"",""music""]}" +@Harriett@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""social-sciences"",""news-comment-data"",""ukraine-invasion"",""biology"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""healthcare"",""social-media"",""weather"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@ymt_12@newsmast.social,"{""primary"":""academia-research"",""others"":[""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""chemistry"",""democracy-human-rights"",""mathematics"",""healthcare"",""social-media"",""poverty-inequality"",""science"",""law-justice""]}" +@maique@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""space"",""politics"",""activism-civil-rights"",""performing-arts"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@tokenborn@newsmast.social,"{""primary"":""chemistry"",""others"":[""ai"",""physics"",""sport"",""biology"",""space"",""technology"",""science""]}" +@tijoantony@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""sport"",""food-drink"",""news-comment-data"",""football"",""puzzles"",""business"",""pets"",""creative-arts"",""humour"",""engineering"",""us-sport"",""mental-health-wellbeing"",""social-media"",""travel"",""programming""]}" +@_youssef_0k@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@fbitzi@newsmast.social,"{""primary"":""ai"",""others"":[""books-literature"",""technology"",""social-media"",""photography""]}" +@guzz@newsmast.social,"{""primary"":""photography"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""environment"",""humanities"",""music""]}" +@transfers@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""sport"",""news-comment-data"",""social-media""]}" +@PetsMag@newsmast.social,"{""primary"":""pets"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""performing-arts"",""creative-arts"",""chemistry"",""humour"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""programming"",""weather"",""science"",""music""]}" +@Rachael@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""creative-arts"",""travel"",""music""]}" +@caleblee@newsmast.social,"{""primary"":""performing-arts"",""others"":[""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""books-literature"",""puzzles"",""pets"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""travel"",""photography"",""movies"",""humanities"",""music""]}" +@Michael_E@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""social-sciences"",""history"",""hunger-disease-water"",""philosophy"",""poverty-inequality"",""environment""]}" +@TimBlack@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""news-comment-data"",""tv-radio"",""social-media"",""black-voices""]}" +@TheBeeGuy@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""books-literature"",""performing-arts"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""photography"",""science"",""energy-pollution"",""humanities"",""music""]}" +@mohammed@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""social-sciences"",""history"",""biology"",""philosophy"",""humanities""]}" +@Alomox@newsmast.social,"{""primary"":""architecture-design"",""others"":[""books-literature"",""gaming"",""movies"",""music""]}" +@Nil253259@newsmast.social,"{""primary"":""ai"",""others"":[""space"",""business"",""democracy-human-rights"",""climate-change"",""technology"",""science"",""environment""]}" +@box464@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""women-voices"",""disabled-voices"",""technology"",""tv-radio"",""lgbtq"",""music""]}" +@theshescribe@newsmast.social,"{""primary"":""women-voices"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""markets-finance"",""humour"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""humanities"",""music"",""law-justice""]}" +@latif@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""engineering"",""programming"",""humanities""]}" +@harrywall@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""food-drink"",""humour"",""travel""]}" +@b_o_b_o@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@Lambo@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""history"",""workers-rights"",""humanities""]}" +@Scotty@newsmast.social,"{""primary"":""pets"",""others"":[""ai"",""food-drink"",""space"",""humour"",""mental-health-wellbeing"",""science""]}" +@breaking_news_admin_3@newsmast.social,"{""primary"":""climate-change"",""others"":[""hunger-disease-water"",""biodiversity-rewilding"",""energy-pollution"",""environment""]}" +@ExpertPlus@newsmast.social,"{""primary"":""humour"",""others"":[""ai"",""nature-wildlife"",""indigenous-peoples"",""food-drink"",""women-voices"",""puzzles"",""activism-civil-rights"",""disabled-voices"",""pets"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mental-health-wellbeing"",""technology"",""black-voices"",""travel"",""programming"",""energy-pollution"",""environment""]}" +@jperlow@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""technology"",""social-media"",""programming"",""weather"",""science""]}" +@teeheehee@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""technology"",""programming"",""poverty-inequality"",""science"",""environment""]}" +@daniel@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""news-comment-data"",""space"",""democracy-human-rights"",""engineering"",""programming"",""science""]}" +@LaurelOld@newsmast.social,"{""primary"":""biology"",""others"":[""ai"",""breaking-news"",""news-comment-data"",""chemistry"",""engineering"",""science""]}" +@Themontyproject@newsmast.social,"{""primary"":""pets"",""others"":[""books-literature"",""workers-rights"",""biodiversity-rewilding"",""humour""]}" +@JayAySevenTwo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""space"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""democracy-human-rights"",""mathematics"",""philosophy"",""technology"",""black-voices"",""poverty-inequality"",""science"",""humanities""]}" +@akamar87@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""history"",""mathematics"",""philosophy"",""technology""]}" +@GJMPUBLISHER@newsmast.social,"{""primary"":""lgbtq"",""others"":[""ai"",""food-drink"",""business"",""creative-arts"",""travel""]}" +@rgallery@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""social-sciences"",""politics"",""social-media"",""humanities""]}" +@CakeBoy@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""nature-wildlife"",""hunger-disease-water"",""news-comment-data"",""creative-arts"",""democracy-human-rights"",""social-media"",""travel"",""weather"",""poverty-inequality""]}" +@Question@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""news-comment-data"",""football"",""us-politics"",""government-policy"",""technology"",""weather""]}" +@YOUME25@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@forgottenxi@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""football"",""democracy-human-rights"",""poverty-inequality""]}" +@TechRaptor@newsmast.social,"{""primary"":""gaming"",""others"":[""breaking-news"",""news-comment-data"",""technology""]}" +@NextGen@newsmast.social,"{""primary"":""food-drink"",""others"":[""physics"",""architecture-design"",""history"",""books-literature"",""climate-change"",""travel"",""science"",""energy-pollution"",""environment""]}" +@davidnaylorww@newsmast.social,"{""primary"":""biology"",""others"":[""physics"",""hunger-disease-water"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""technology"",""science"",""energy-pollution"",""environment""]}" +@bobbymcd@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""mathematics"",""climate-change"",""energy-pollution""]}" +@alternative@newsmast.social,"{""primary"":""technology"",""others"":[""social-sciences"",""architecture-design"",""engineering"",""tv-radio"",""movies"",""programming"",""music""]}" +@davidrees5761@newsmast.social,"{""primary"":""movies"",""others"":[""visual-arts"",""books-literature"",""tv-radio"",""music""]}" +@ChiefOldMist@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""social-sciences"",""history"",""news-comment-data"",""biology"",""space"",""government-policy"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""social-media"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@rileyhBat@newsmast.social,"{""primary"":""engineering"",""others"":[""breaking-news"",""business"",""markets-finance"",""technology""]}" +@Dragonfly@newsmast.social,"{""primary"":""climate-change"",""others"":[""hunger-disease-water"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@newsmast_public@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""physics"",""visual-arts"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""biology"",""space"",""politics"",""government-policy"",""academia-research"",""democracy-human-rights"",""engineering"",""gaming"",""tv-radio"",""social-media"",""photography"",""movies"",""programming"",""poverty-inequality"",""science"",""environment"",""music""]}" +@RevRobinDB@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""indigenous-peoples"",""history"",""news-comment-data"",""books-literature"",""women-voices"",""politics"",""activism-civil-rights"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""philosophy"",""black-voices"",""poverty-inequality""]}" +@maney_779@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""architecture-design"",""sport"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""biology"",""space"",""us-politics"",""government-policy"",""performing-arts"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""technology"",""tv-radio"",""healthcare"",""social-media"",""photography"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""music"",""law-justice""]}" +@elliottrichmond@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""physics"",""biology"",""space"",""business"",""workers-rights"",""chemistry"",""markets-finance"",""engineering"",""mathematics"",""technology"",""science""]}" +@maney_33@newsmast.social,"{""primary"":""us-politics"",""others"":[""physics"",""history"",""football"",""climate-change"",""technology"",""movies""]}" +@seasonssuppers@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""puzzles"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""philosophy"",""social-media"",""travel"",""weather"",""humanities""]}" +@josebilingue@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""physics"",""visual-arts"",""indigenous-peoples"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""academia-research"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""mathematics"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@Nusm@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""football"",""puzzles"",""us-politics"",""government-policy"",""humour"",""us-sport"",""technology"",""weather""]}" +@metalman@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""social-media""]}" +@sonia_sna0002@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""social-media"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities""]}" +@TexasHistoryL@newsmast.social,"{""primary"":""history"",""others"":[""visual-arts"",""social-sciences"",""books-literature"",""movies"",""humanities"",""music""]}" +@nclm@newsmast.social,"{""primary"":""architecture-design"",""others"":[""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""history"",""books-literature"",""women-voices"",""biology"",""activism-civil-rights"",""disabled-voices"",""performing-arts"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""photography"",""lgbtq"",""movies"",""science"",""environment"",""humanities"",""music""]}" +@sithubo_prodt@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""indigenous-peoples"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""business"",""workers-rights"",""immigrants-rights"",""markets-finance"",""engineering"",""technology"",""social-media"",""black-voices"",""lgbtq"",""programming"",""weather""]}" +@anujahooja@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""business"",""workers-rights"",""markets-finance"",""engineering"",""gaming"",""social-media"",""programming""]}" +@kirukarki2@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""technology"",""lgbtq"",""programming""]}" +@scharfnado@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""space"",""government-policy"",""academia-research"",""technology"",""travel"",""energy-pollution""]}" +@NoisyBits@newsmast.social,"{""primary"":""humanities"",""others"":[""visual-arts"",""social-sciences"",""history"",""activism-civil-rights"",""democracy-human-rights"",""philosophy"",""lgbtq"",""poverty-inequality""]}" +@backtobella@newsmast.social,"{""primary"":""visual-arts"",""others"":[""history"",""biology"",""space"",""performing-arts"",""biodiversity-rewilding"",""mathematics"",""tv-radio"",""movies"",""science"",""environment""]}" +@Acethe1st@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""academia-research"",""immigrants-rights"",""chemistry"",""gaming"",""mathematics"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""humanities"",""music"",""law-justice""]}" +@test12@newsmast.social,"{""primary"":""black-voices"",""others"":[""ai"",""indigenous-peoples"",""history"",""news-comment-data"",""us-politics"",""activism-civil-rights"",""government-policy"",""academia-research"",""democracy-human-rights"",""gaming"",""us-sport"",""technology"",""tv-radio"",""social-media"",""movies"",""humanities"",""music"",""law-justice""]}" +@yethiha@newsmast.social,"{""primary"":""engineering"",""others"":[""breaking-news"",""ai"",""physics"",""biology"",""space"",""chemistry"",""mathematics"",""technology"",""programming"",""science""]}" +@fxdpntthm@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""books-literature"",""biology"",""puzzles"",""space"",""performing-arts"",""workers-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""engineering"",""mathematics"",""social-media"",""travel"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""music""]}" +@mariabelfort@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""architecture-design"",""food-drink"",""puzzles"",""creative-arts"",""photography""]}" +@BobH@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@Oma@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""news-comment-data"",""women-voices"",""politics"",""activism-civil-rights"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""poverty-inequality"",""science""]}" +@kuzushi@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""ai"",""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""sport"",""hunger-disease-water"",""history"",""books-literature"",""biology"",""space"",""government-policy"",""performing-arts"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""mathematics"",""philosophy"",""healthcare"",""photography"",""movies"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@kiko@newsmast.social,"{""primary"":""football"",""others"":[""us-sport"",""technology"",""social-media"",""programming""]}" +@surya@newsmast.social,"{""primary"":""football"",""others"":[""ai"",""sport"",""technology"",""social-media""]}" +@markrubbo@newsmast.social,"{""primary"":""government-policy"",""others"":[""politics"",""us-politics"",""academia-research"",""healthcare"",""law-justice""]}" +@igs@newsmast.social,"{""primary"":""puzzles"",""others"":[""breaking-news"",""space"",""engineering"",""mathematics""]}" +@Nido@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""ai"",""physics"",""visual-arts"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""biology"",""politics"",""performing-arts"",""academia-research"",""biodiversity-rewilding"",""democracy-human-rights"",""engineering"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""social-media"",""photography"",""movies"",""programming"",""science"",""environment"",""humanities"",""music""]}" +@Aurefreepress@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""space"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""democracy-human-rights"",""climate-change"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""weather"",""science"",""energy-pollution"",""environment""]}" +@ftalk@newsmast.social,"{""primary"":""humour"",""others"":[""ai"",""nature-wildlife"",""sport"",""food-drink"",""football"",""puzzles"",""pets"",""creative-arts"",""engineering"",""us-sport"",""mental-health-wellbeing"",""technology"",""travel"",""programming""]}" +@vijaysingh@newsmast.social,"{""primary"":""politics"",""others"":[""us-politics"",""government-policy"",""academia-research"",""healthcare"",""law-justice""]}" +@davidadobbs@newsmast.social,"{""primary"":""science"",""others"":[""history"",""biodiversity-rewilding"",""climate-change"",""environment"",""humanities""]}" +@BillSaysThis@newsmast.social,"{""primary"":""sport"",""others"":[""breaking-news"",""politics"",""us-politics"",""law-justice""]}" +@Leslie_Jones@newsmast.social,"{""primary"":""law-justice"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""sport"",""food-drink"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""business"",""pets"",""academia-research"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""travel"",""photography"",""weather"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@tayndua@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""ai"",""social-sciences"",""books-literature"",""women-voices"",""politics"",""us-politics"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""markets-finance"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""social-media"",""black-voices"",""lgbtq"",""movies"",""poverty-inequality"",""humanities""]}" +@luidjy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""pets"",""creative-arts"",""chemistry"",""humour"",""engineering"",""mathematics"",""mental-health-wellbeing"",""technology"",""social-media"",""travel"",""programming"",""weather"",""science""]}" +@giff@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""social-sciences"",""history"",""news-comment-data"",""biology"",""space"",""politics"",""government-policy"",""chemistry"",""mathematics"",""us-sport"",""technology"",""healthcare"",""social-media"",""science""]}" +@SithuBoo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""democracy-human-rights"",""social-media"",""weather"",""poverty-inequality""]}" +@AndroidMobile@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@AndroidTest@newsmast.social,"{""primary"":""breaking-news"",""others"":[""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""democracy-human-rights"",""social-media"",""weather"",""poverty-inequality""]}" +@Simon@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""activism-civil-rights"",""disabled-voices"",""business"",""performing-arts"",""immigrants-rights"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""social-media"",""black-voices"",""photography"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""humanities"",""music""]}" +@game@newsmast.social,"{""primary"":""humour"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""puzzles"",""pets"",""creative-arts"",""mental-health-wellbeing"",""social-media"",""travel"",""weather""]}" +@violiver@newsmast.social,"{""primary"":""lgbtq"",""others"":[""activism-civil-rights"",""performing-arts"",""science"",""music""]}" +@Binary_MinKhant@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@sks1084@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""hunger-disease-water"",""ukraine-invasion"",""biodiversity-rewilding"",""climate-change"",""social-media"",""energy-pollution"",""environment""]}" +@aadyrocker@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""news-comment-data"",""football"",""us-sport""]}" +@MarciaHHendrick@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ukraine-invasion"",""us-politics"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@maungchawnwe@newsmast.social,"{""primary"":""engineering"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mathematics"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@stuckiniceland@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""business"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""photography""]}" +@marcin@newsmast.social,"{""primary"":""technology"",""others"":[""space"",""social-media""]}" +@HarveyJKaye@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""social-sciences"",""history"",""ukraine-invasion"",""us-politics"",""government-policy"",""humanities""]}" +@alemida30@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""democracy-human-rights"",""social-media"",""humanities""]}" +@CenTxHank@newsmast.social,"{""primary"":""history"",""others"":[""physics"",""space"",""philosophy"",""humanities""]}" +@puk4_heart@newsmast.social,"{""primary"":""social-media"",""others"":[""ai"",""food-drink"",""creative-arts"",""engineering"",""weather""]}" +@Test_App@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""nature-wildlife""]}" +@sithudev@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""weather"",""energy-pollution"",""environment"",""law-justice""]}" +@environmentfeed@newsmast.social,"{""primary"":""environment"",""others"":[""biodiversity-rewilding"",""climate-change"",""poverty-inequality"",""energy-pollution""]}" +@dpopa25@newsmast.social,"{""primary"":""humour"",""others"":[""visual-arts"",""social-sciences"",""food-drink"",""history"",""books-literature"",""creative-arts"",""biodiversity-rewilding"",""science"",""environment"",""humanities""]}" +@acastro@newsmast.social,"{""primary"":""ai"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""history"",""books-literature"",""puzzles"",""space"",""creative-arts"",""biodiversity-rewilding"",""humour"",""mental-health-wellbeing"",""philosophy"",""technology"",""energy-pollution"",""humanities"",""music""]}" +@cjapsmith@newsmast.social,"{""primary"":""philosophy"",""others"":[""democracy-human-rights"",""climate-change"",""poverty-inequality"",""environment"",""humanities""]}" +@impactphysio@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""weather""]}" +@eannac@newsmast.social,"{""primary"":""business"",""others"":[""ai"",""social-sciences"",""history"",""news-comment-data"",""space"",""politics"",""us-politics"",""government-policy"",""academia-research"",""climate-change"",""philosophy"",""technology"",""social-media"",""weather"",""science"",""energy-pollution"",""law-justice""]}" +@abchcz4p@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""sport"",""football"",""space"",""programming"",""science""]}" +@CELSET@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""humour"",""mental-health-wellbeing"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""movies"",""weather"",""music"",""law-justice""]}" +@marianaa@newsmast.social,"{""primary"":""lgbtq"",""others"":[""women-voices"",""business"",""democracy-human-rights"",""markets-finance""]}" +@j022@newsmast.social,"{""primary"":""workers-rights"",""others"":[""breaking-news"",""news-comment-data"",""markets-finance"",""weather""]}" +@JohnReynlds@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""visual-arts"",""social-sciences"",""hunger-disease-water"",""history"",""books-literature"",""performing-arts"",""climate-change"",""engineering"",""environment"",""humanities""]}" +@jelly427@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""sport"",""news-comment-data"",""football"",""ukraine-invasion"",""engineering"",""us-sport"",""technology"",""social-media"",""programming"",""weather""]}" +@shortstay@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""books-literature"",""climate-change"",""philosophy""]}" +@stevetough@newsmast.social,"{""primary"":""history"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@michaelleib@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""ai"",""politics"",""us-politics"",""government-policy"",""business"",""markets-finance"",""engineering"",""technology"",""programming"",""science""]}" +@Manjunatha@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""biology"",""humour""]}" +@magnor@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""ai"",""physics"",""history"",""news-comment-data"",""women-voices"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""academia-research"",""workers-rights"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""technology"",""social-media"",""lgbtq"",""programming"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@satnaing@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@wwrr@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""hunger-disease-water"",""politics"",""us-politics"",""government-policy"",""engineering"",""technology"",""healthcare"",""programming"",""poverty-inequality"",""law-justice""]}" +@wolfw@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""visual-arts"",""social-sciences"",""news-comment-data"",""books-literature"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""performing-arts"",""academia-research"",""workers-rights"",""philosophy"",""movies"",""music""]}" +@callum@newsmast.social,"{""primary"":""movies"",""others"":[""visual-arts"",""books-literature"",""performing-arts"",""gaming"",""tv-radio""]}" +@robbhoy@newsmast.social,"{""primary"":""movies"",""others"":[""ai"",""visual-arts"",""architecture-design"",""books-literature"",""ukraine-invasion"",""performing-arts"",""biodiversity-rewilding"",""climate-change"",""engineering"",""gaming"",""technology"",""tv-radio"",""social-media"",""photography"",""programming"",""weather"",""energy-pollution"",""environment"",""music""]}" +@HotCoffee@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""nature-wildlife"",""food-drink"",""ukraine-invasion"",""biology"",""space"",""pets"",""chemistry"",""humour"",""mental-health-wellbeing"",""technology"",""social-media"",""movies"",""science""]}" +@chriskenshin@newsmast.social,"{""primary"":""biology"",""others"":[""business"",""government-policy"",""workers-rights"",""technology"",""science"",""law-justice""]}" +@silly_hamster@newsmast.social,"{""primary"":""biology"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""space"",""democracy-human-rights"",""technology"",""social-media"",""poverty-inequality"",""science""]}" +@petroofrats@newsmast.social,"{""primary"":""biology"",""others"":[""biodiversity-rewilding"",""technology"",""programming"",""science"",""environment""]}" +@sharonk@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""business"",""workers-rights"",""immigrants-rights"",""technology"",""black-voices"",""lgbtq""]}" +@mortenfrisch@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""architecture-design"",""news-comment-data"",""politics"",""us-politics"",""academia-research"",""science""]}" +@sithu_dev3@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""news-comment-data"",""ukraine-invasion"",""politics"",""immigrants-rights"",""creative-arts"",""democracy-human-rights"",""mental-health-wellbeing"",""weather"",""poverty-inequality"",""environment""]}" +@WeCanFlipTS@newsmast.social,"{""primary"":""women-voices"",""others"":[""ai"",""social-sciences"",""politics"",""activism-civil-rights"",""government-policy"",""business"",""workers-rights"",""markets-finance"",""technology"",""humanities"",""law-justice""]}" +@0j22@newsmast.social,"{""primary"":""markets-finance"",""others"":[""architecture-design"",""books-literature"",""business"",""workers-rights""]}" +@DforDog@newsmast.social,"{""primary"":""pets"",""others"":[""puzzles"",""creative-arts"",""humour"",""philosophy"",""tv-radio""]}" +@kxgmdkvkg@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""democracy-human-rights"",""engineering"",""mathematics"",""technology"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science""]}" +@soundofamoped@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""biology"",""puzzles"",""space"",""government-policy"",""pets"",""academia-research"",""creative-arts"",""chemistry"",""humour"",""mathematics"",""mental-health-wellbeing"",""travel"",""photography"",""music""]}" +@vespula@newsmast.social,"{""primary"":""ai"",""others"":[""biology"",""space"",""engineering"",""technology"",""science""]}" +@Linguasia@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""puzzles"",""business"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""markets-finance"",""humour"",""climate-change"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""photography"",""movies"",""energy-pollution"",""environment"",""music""]}" +@btp@newsmast.social,"{""primary"":""programming"",""others"":[""physics"",""visual-arts"",""news-comment-data"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""markets-finance"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""technology"",""photography"",""science"",""music"",""law-justice""]}" +@torogbeck@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""social-sciences"",""history"",""news-comment-data"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""creative-arts"",""humour"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""lgbtq"",""movies"",""programming"",""weather"",""humanities"",""music"",""law-justice""]}" +@0j33@newsmast.social,"{""primary"":""ai"",""others"":[""business"",""markets-finance"",""engineering"",""programming""]}" +@ModernArtifice@newsmast.social,"{""primary"":""gaming"",""others"":[""ai"",""books-literature"",""technology"",""movies"",""science""]}" +@sahanakulur@newsmast.social,"{""primary"":""architecture-design"",""others"":[""visual-arts"",""nature-wildlife"",""food-drink"",""books-literature"",""performing-arts"",""pets"",""academia-research"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""gaming"",""tv-radio"",""photography"",""movies"",""environment""]}" +@MinMaungHein@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""physics"",""nature-wildlife"",""food-drink"",""puzzles"",""pets"",""academia-research"",""creative-arts"",""humour"",""climate-change"",""mental-health-wellbeing"",""travel"",""photography"",""lgbtq"",""environment"",""humanities""]}" +@SabahH@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""visual-arts"",""business"",""performing-arts"",""creative-arts"",""markets-finance"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""music""]}" +@Nyein@newsmast.social,"{""primary"":""chemistry"",""others"":[""visual-arts"",""social-sciences"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""football"",""ukraine-invasion"",""performing-arts"",""workers-rights"",""creative-arts"",""engineering"",""gaming"",""us-sport"",""philosophy"",""technology"",""tv-radio"",""social-media"",""photography"",""movies"",""programming"",""poverty-inequality"",""humanities"",""music""]}" +@tester_03@newsmast.social,"{""primary"":""government-policy"",""others"":[""history"",""philosophy"",""lgbtq"",""law-justice""]}" +@jasonbcfcufc@newsmast.social,"{""primary"":""breaking-news"",""others"":[""government-policy"",""engineering"",""technology"",""social-media""]}" +@Rich134@newsmast.social,"{""primary"":""movies"",""others"":[""visual-arts"",""gaming"",""tv-radio"",""photography""]}" +@joshmike35@newsmast.social,"{""primary"":""academia-research"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""government-policy"",""democracy-human-rights"",""healthcare"",""poverty-inequality"",""law-justice""]}" +@lanartri@newsmast.social,"{""primary"":""photography"",""others"":[""breaking-news"",""ai"",""visual-arts"",""architecture-design"",""books-literature"",""space"",""democracy-human-rights"",""technology"",""movies"",""programming"",""science"",""music""]}" +@beautycaters@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""pets"",""humour"",""mental-health-wellbeing""]}" +@Krusti@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""ai"",""nature-wildlife"",""food-drink"",""puzzles"",""pets"",""creative-arts"",""humour"",""engineering"",""technology"",""travel"",""programming""]}" +@roler34@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""indigenous-peoples"",""women-voices"",""disabled-voices"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""black-voices"",""lgbtq"",""energy-pollution"",""environment""]}" +@EdBowers101@newsmast.social,"{""primary"":""sport"",""others"":[""books-literature"",""football"",""business"",""markets-finance"",""mental-health-wellbeing""]}" +@CoopCoding@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""space"",""engineering"",""technology""]}" +@Sylkeweb@newsmast.social,"{""primary"":""food-drink"",""others"":[""breaking-news"",""nature-wildlife"",""social-sciences"",""history"",""ukraine-invasion"",""space"",""government-policy"",""democracy-human-rights"",""climate-change"",""technology"",""social-media"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@Gadget_Ry@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""breaking-news"",""politics""]}" +@Dameoutlaw@newsmast.social,"{""primary"":""black-voices"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""sport"",""activism-civil-rights"",""democracy-human-rights"",""engineering"",""us-sport"",""technology"",""social-media"",""programming""]}" +@marcie@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""breaking-news"",""women-voices"",""activism-civil-rights"",""democracy-human-rights""]}" +@JeffreyStreeter@newsmast.social,"{""primary"":""books-literature"",""others"":[""physics"",""visual-arts"",""social-sciences"",""history"",""space"",""movies"",""science""]}" +@HarleyWarren@newsmast.social,"{""primary"":""visual-arts"",""others"":[""breaking-news"",""books-literature"",""gaming"",""technology"",""movies"",""weather"",""music""]}" +@jimchapman@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""academia-research"",""workers-rights"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""engineering"",""gaming"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@Sven@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""biology"",""space"",""us-politics"",""business"",""mathematics"",""technology"",""healthcare"",""programming""]}" +@axonrg@newsmast.social,"{""primary"":""breaking-news"",""others"":[""politics"",""us-politics"",""gaming"",""technology"",""tv-radio"",""movies"",""programming"",""science""]}" +@railrecipe@newsmast.social,"{""primary"":""food-drink"",""others"":[""news-comment-data"",""business"",""travel"",""weather""]}" +@IEF_FIE@newsmast.social,"{""primary"":""us-politics"",""others"":[""indigenous-peoples"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""immigrants-rights"",""healthcare"",""black-voices""]}" +@GastroMedia@newsmast.social,"{""primary"":""food-drink"",""others"":[""ai"",""visual-arts"",""social-sciences"",""performing-arts"",""biodiversity-rewilding"",""climate-change"",""social-media"",""travel"",""photography"",""environment"",""humanities""]}" +@smartphonology@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""engineering"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""law-justice""]}" +@tthcreation@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""women-voices"",""business"",""markets-finance"",""mental-health-wellbeing"",""photography""]}" +@sandos@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""food-drink"",""books-literature"",""biology"",""puzzles"",""space"",""humour"",""gaming"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""environment"",""music""]}" +@spatial1@newsmast.social,"{""primary"":""business"",""others"":[""ai"",""markets-finance"",""engineering"",""technology""]}" +@magbeat@newsmast.social,"{""primary"":""engineering"",""others"":[""ai"",""breaking-news"",""news-comment-data"",""social-media"",""programming""]}" +@mikeffarrell@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""indigenous-peoples"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""black-voices"",""lgbtq"",""poverty-inequality"",""law-justice""]}" +@JimJQ@newsmast.social,"{""primary"":""us-politics"",""others"":[""breaking-news"",""politics"",""climate-change"",""technology"",""science""]}" +@travelpast50@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""history"",""news-comment-data"",""books-literature"",""mental-health-wellbeing"",""photography""]}" +@0j30@newsmast.social,"{""primary"":""workers-rights"",""others"":[""business"",""creative-arts"",""markets-finance"",""humour""]}" +@If_This_Goes_On@newsmast.social,"{""primary"":""books-literature"",""others"":[""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""history"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""performing-arts"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""gaming"",""philosophy"",""tv-radio"",""black-voices"",""photography"",""lgbtq"",""movies"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@patnawomens@newsmast.social,"{""primary"":""academia-research"",""others"":[""government-policy"",""biodiversity-rewilding"",""energy-pollution"",""law-justice""]}" +@gabbab1@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""academia-research"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""engineering"",""philosophy"",""technology"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""programming"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@scottcaneat@newsmast.social,"{""primary"":""food-drink"",""others"":[""nature-wildlife"",""architecture-design"",""creative-arts"",""travel""]}" +@DaleMurphy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""architecture-design"",""history"",""books-literature"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""us-politics"",""government-policy"",""business"",""pets"",""academia-research"",""creative-arts"",""humour"",""democracy-human-rights"",""engineering"",""us-sport"",""technology"",""tv-radio"",""healthcare"",""photography"",""movies"",""weather"",""science"",""energy-pollution"",""environment"",""music""]}" +@srijit@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""mathematics"",""healthcare"",""social-media"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@tbutler@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""social-sciences"",""history"",""ukraine-invasion"",""politics"",""us-politics"",""philosophy"",""technology"",""social-media"",""programming"",""humanities""]}" +@Mihajlo@newsmast.social,"{""primary"":""sport"",""others"":[""breaking-news"",""ai"",""football"",""technology"",""tv-radio"",""social-media"",""movies"",""weather"",""music""]}" +@incnews@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""markets-finance"",""healthcare"",""social-media"",""weather"",""law-justice""]}" +@leonfeuer@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""philosophy"",""healthcare"",""weather"",""humanities"",""law-justice""]}" +@Travelwisesr@newsmast.social,"{""primary"":""ai"",""others"":[""visual-arts"",""business"",""photography"",""music""]}" +@Annon@newsmast.social,"{""primary"":""programming"",""others"":[""visual-arts"",""nature-wildlife"",""social-sciences"",""food-drink"",""history"",""books-literature"",""puzzles"",""space"",""pets"",""creative-arts"",""humour"",""gaming"",""technology"",""movies"",""music""]}" +@DCC@newsmast.social,"{""primary"":""us-politics"",""others"":[""nature-wildlife"",""books-literature"",""mental-health-wellbeing"",""philosophy"",""technology""]}" +@Tom@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""books-literature"",""ukraine-invasion"",""social-media"",""movies"",""weather"",""environment"",""music""]}" +@davetechg@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""markets-finance"",""engineering""]}" +@WorldTravelFam@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""food-drink"",""pets"",""humour""]}" +@aunghtetnay@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""biodiversity-rewilding"",""climate-change"",""engineering"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""energy-pollution"",""environment"",""law-justice""]}" +@0j20@newsmast.social,"{""primary"":""business"",""others"":[""creative-arts"",""workers-rights"",""markets-finance"",""technology""]}" +@ahnay@newsmast.social,"{""primary"":""workers-rights"",""others"":[""business"",""biodiversity-rewilding"",""markets-finance"",""climate-change"",""energy-pollution"",""environment""]}" +@dko10440@newsmast.social,"{""primary"":""photography"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""architecture-design"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""space"",""creative-arts"",""humour"",""technology"",""tv-radio"",""travel"",""movies"",""science"",""music""]}" +@vile_person@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""news-comment-data"",""books-literature"",""women-voices"",""climate-change"",""gaming"",""mathematics"",""philosophy"",""photography"",""lgbtq"",""programming"",""poverty-inequality"",""energy-pollution"",""environment"",""music""]}" +@smikwily@newsmast.social,"{""primary"":""breaking-news"",""others"":[""puzzles"",""pets"",""humour"",""gaming"",""technology"",""tv-radio"",""social-media"",""movies""]}" +@LawyerSchiff@newsmast.social,"{""primary"":""law-justice"",""others"":[""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""business"",""performing-arts"",""academia-research"",""workers-rights"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""tv-radio"",""healthcare"",""social-media"",""travel"",""poverty-inequality"",""environment""]}" +@paradym3@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""pets"",""academia-research"",""workers-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""travel"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@TechFinancials@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""news-comment-data"",""technology"",""social-media""]}" +@ilwtm@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""ai"",""visual-arts"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""technology"",""photography"",""poverty-inequality"",""environment""]}" +@lunabase@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""ukraine-invasion"",""space"",""democracy-human-rights"",""engineering"",""technology"",""programming"",""science""]}" +@Frank_Zafiro@newsmast.social,"{""primary"":""books-literature"",""others"":[""ai"",""physics"",""social-sciences"",""sport"",""history"",""women-voices"",""space"",""creative-arts"",""humour"",""us-sport"",""philosophy"",""technology"",""tv-radio"",""lgbtq"",""movies"",""science"",""humanities"",""music""]}" +@whoosh@newsmast.social,"{""primary"":""humanities"",""others"":[""social-sciences"",""history"",""activism-civil-rights"",""academia-research"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""movies"",""weather"",""science"",""law-justice""]}" +@wooWike23@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""social-media""]}" +@desk_of_jak@newsmast.social,"{""primary"":""engineering"",""others"":[""space"",""philosophy"",""technology"",""science"",""humanities""]}" +@wingingittravel@newsmast.social,"{""primary"":""travel"",""others"":[""ai"",""food-drink"",""books-literature"",""activism-civil-rights"",""humour"",""mental-health-wellbeing"",""philosophy"",""technology"",""music""]}" +@kess111@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@isobelwalster@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""news-comment-data"",""books-literature"",""puzzles"",""pets"",""humour"",""mental-health-wellbeing"",""social-media"",""movies""]}" +@boribori@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""space"",""democracy-human-rights"",""technology"",""poverty-inequality"",""science""]}" +@Andi@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""physics"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""technology"",""programming"",""energy-pollution"",""environment""]}" +@Mercedes@newsmast.social,"{""primary"":""music"",""others"":[""visual-arts"",""architecture-design"",""hunger-disease-water"",""books-literature"",""performing-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""tv-radio"",""photography"",""movies"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@WayneDupreeShow@newsmast.social,"{""primary"":""us-politics"",""others"":[""breaking-news"",""food-drink"",""news-comment-data"",""politics"",""government-policy"",""mental-health-wellbeing"",""tv-radio"",""social-media"",""black-voices""]}" +@research@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""physics"",""news-comment-data"",""biology"",""space"",""chemistry"",""engineering"",""technology""]}" +@rogergraf@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""social-sciences"",""sport"",""food-drink"",""history"",""books-literature"",""football"",""puzzles"",""pets"",""creative-arts"",""humour"",""philosophy"",""technology"",""tv-radio"",""travel"",""movies"",""science"",""humanities"",""music""]}" +@r0yaL@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""government-policy"",""democracy-human-rights"",""science""]}" +@Tricolor7788@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""news-comment-data"",""space"",""creative-arts"",""humour"",""democracy-human-rights"",""engineering"",""mental-health-wellbeing"",""social-media"",""programming"",""science""]}" +@michael_blogger@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""physics"",""sport"",""food-drink"",""history"",""football"",""space"",""pets"",""creative-arts"",""markets-finance"",""us-sport"",""social-media""]}" +@hardindr@newsmast.social,"{""primary"":""chemistry"",""others"":[""breaking-news"",""physics"",""social-sciences"",""history"",""biology"",""us-politics"",""government-policy"",""democracy-human-rights"",""mathematics"",""philosophy"",""poverty-inequality"",""humanities"",""law-justice""]}" +@guchengsnakee@newsmast.social,"{""primary"":""ai"",""others"":[""markets-finance"",""mathematics"",""technology"",""programming"",""science""]}" +@DrMikeWatts@newsmast.social,"{""primary"":""ai"",""others"":[""biology"",""climate-change"",""programming"",""science""]}" +@JessJ@newsmast.social,"{""primary"":""lgbtq"",""others"":[""women-voices"",""activism-civil-rights"",""space"",""programming""]}" +@JimsPhotos@newsmast.social,"{""primary"":""nature-wildlife""}" +@Salexkenyon@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""news-comment-data"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""immigrants-rights"",""democracy-human-rights"",""philosophy"",""poverty-inequality"",""environment""]}" +@ballhaus@newsmast.social,"{""primary"":""music"",""others"":[""visual-arts"",""social-sciences"",""history"",""space"",""performing-arts"",""mathematics"",""philosophy"",""photography"",""movies"",""science""]}" +@ppttest456@newsmast.social,"{""primary"":""academia-research"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""government-policy"",""democracy-human-rights"",""healthcare"",""poverty-inequality"",""law-justice""]}" +@JohnJVaccaro@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""physics"",""biology"",""space"",""business"",""chemistry"",""climate-change"",""engineering"",""mathematics"",""technology"",""programming"",""energy-pollution""]}" +@suthit@newsmast.social,"{""primary"":""environment"",""others"":[""ai"",""hunger-disease-water"",""biodiversity-rewilding"",""climate-change"",""engineering"",""programming"",""poverty-inequality"",""energy-pollution""]}" +@tom_webler@newsmast.social,"{""primary"":""government-policy"",""others"":[""ai"",""us-politics"",""academia-research"",""climate-change"",""energy-pollution""]}" +@chatter@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""news-comment-data"",""social-media"",""weather""]}" +@dave42w@newsmast.social,"{""primary"":""programming"",""others"":[""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""energy-pollution""]}" +@aydnkocek@newsmast.social,"{""primary"":""politics"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""academia-research"",""democracy-human-rights""]}" +@nincodedo@newsmast.social,"{""primary"":""programming"",""others"":[""us-politics"",""humour"",""engineering"",""gaming"",""technology"",""healthcare""]}" +@sintrenton@newsmast.social,"{""primary"":""breaking-news"",""others"":[""social-sciences"",""politics"",""government-policy"",""democracy-human-rights"",""technology"",""humanities"",""law-justice""]}" +@Chourouk@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""visual-arts"",""indigenous-peoples"",""books-literature"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""performing-arts"",""immigrants-rights"",""climate-change"",""tv-radio"",""black-voices"",""lgbtq"",""movies"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@plus@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""markets-finance"",""humour"",""democracy-human-rights"",""engineering"",""gaming"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""humanities"",""music"",""law-justice""]}" +@moragakd@newsmast.social,"{""primary"":""breaking-news"",""others"":[""breaking-news"",""news-comment-data"",""us-politics"",""markets-finance"",""law-justice""]}" +@jt1p5@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""politics"",""us-politics"",""government-policy"",""law-justice""]}" +@SilverRainbow@newsmast.social,"{""primary"":""science"",""others"":[""history"",""space"",""technology"",""programming""]}" +@Empiricism@newsmast.social,"{""primary"":""science"",""others"":[""physics"",""social-sciences"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""mathematics"",""philosophy"",""energy-pollution"",""environment""]}" +@Eklektikos@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""nature-wildlife"",""social-sciences"",""sport"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""movies"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@FamilyLawExpert@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""social-sciences"",""social-media"",""poverty-inequality"",""humanities""]}" +@OFMagazine@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""history"",""business"",""social-media"",""music""]}" +@Startupradio@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""workers-rights"",""markets-finance"",""engineering"",""programming""]}" +@thejustinto@newsmast.social,"{""primary"":""engineering"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""mathematics"",""technology"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment""]}" +@Toex@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""space"",""social-media"",""weather""]}" +@vlp00@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""markets-finance"",""engineering"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""law-justice""]}" +@mombian@newsmast.social,"{""primary"":""lgbtq"",""others"":[""food-drink"",""history"",""books-literature"",""women-voices"",""activism-civil-rights"",""government-policy"",""democracy-human-rights""]}" +@n0no123@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@exakat@newsmast.social,"{""primary"":""programming"",""others"":[""physics"",""space"",""engineering"",""mathematics""]}" +@sitothebo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""democracy-human-rights"",""engineering"",""technology"",""social-media"",""programming"",""weather"",""poverty-inequality""]}" +@gospelsong@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""indigenous-peoples"",""sport"",""food-drink"",""news-comment-data"",""football"",""ukraine-invasion"",""women-voices"",""puzzles"",""activism-civil-rights"",""disabled-voices"",""business"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""markets-finance"",""humour"",""us-sport"",""mental-health-wellbeing"",""social-media"",""black-voices"",""travel"",""lgbtq"",""weather""]}" +@Gizmo42@newsmast.social,"{""primary"":""breaking-news"",""others"":[""visual-arts"",""architecture-design"",""books-literature"",""space"",""performing-arts"",""climate-change"",""technology"",""tv-radio"",""photography"",""movies"",""science"",""environment"",""music""]}" +@msafaksari@newsmast.social,"{""primary"":""ai"",""others"":[""social-sciences"",""history"",""photography"",""movies""]}" +@VaniaG@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""government-policy"",""healthcare"",""science""]}" +@DadeMutphy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""technology"",""social-media"",""programming"",""weather"",""science""]}" +@wootang71@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""space"",""gaming"",""technology"",""science"",""energy-pollution"",""environment""]}" +@strayegg@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""physics"",""nature-wildlife"",""social-sciences"",""food-drink"",""history"",""biology"",""space"",""pets"",""creative-arts"",""chemistry"",""humour"",""engineering"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""travel"",""lgbtq"",""science"",""humanities""]}" +@metilli@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""performing-arts"",""chemistry"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""photography"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""humanities"",""music"",""law-justice""]}" +@justinw@newsmast.social,"{""primary"":""movies"",""others"":[""breaking-news"",""ai"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""pets"",""academia-research"",""immigrants-rights"",""creative-arts"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""black-voices"",""travel"",""photography"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@qurquma@newsmast.social,"{""primary"":""football"",""others"":[""sport"",""us-sport"",""movies"",""science""]}" +@kevinbugati@newsmast.social,"{""primary"":""breaking-news"",""others"":[""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""academia-research"",""chemistry"",""democracy-human-rights"",""mathematics"",""healthcare"",""social-media"",""weather"",""poverty-inequality"",""science"",""law-justice""]}" +@doctorambient@newsmast.social,"{""primary"":""mathematics"",""others"":[""physics"",""social-sciences"",""history"",""academia-research"",""chemistry"",""science""]}" +@atom@newsmast.social,"{""primary"":""technology"",""others"":[""physics"",""biology"",""space"",""chemistry"",""mathematics"",""science""]}" +@bartfaitamas@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""physics"",""biology"",""space"",""politics"",""government-policy"",""chemistry"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""technology"",""poverty-inequality"",""science"",""environment""]}" +@roggim@newsmast.social,"{""primary"":""breaking-news"",""others"":[""football"",""humour"",""social-media"",""travel""]}" +@yemyatthu_cs@newsmast.social,"{""primary"":""football"",""others"":[""ai"",""sport"",""engineering"",""us-sport"",""technology"",""programming""]}" +@realgnomidad@newsmast.social,"{""primary"":""government-policy"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""academia-research"",""democracy-human-rights"",""poverty-inequality"",""law-justice""]}" +@niroran@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""news-comment-data"",""space"",""politics"",""us-politics"",""government-policy"",""business"",""markets-finance"",""democracy-human-rights"",""climate-change"",""technology"",""tv-radio"",""social-media"",""movies"",""science"",""environment"",""music""]}" +@evil_k@newsmast.social,"{""primary"":""space"",""others"":[""physics"",""social-sciences"",""history"",""philosophy"",""science""]}" +@group@newsmast.social,"{""primary"":""breaking-news""}" +@m0bi@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""ukraine-invasion"",""space"",""engineering"",""science""]}" +@emenikeng@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""hunger-disease-water"",""business"",""workers-rights"",""democracy-human-rights"",""engineering"",""technology"",""programming"",""poverty-inequality""]}" +@frejusdabord@newsmast.social,"{""primary"":""politics"",""others"":[""us-politics"",""government-policy"",""academia-research"",""healthcare"",""law-justice""]}" +@ritesh@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""food-drink"",""biology"",""mental-health-wellbeing"",""social-media""]}" +@testpp34@newsmast.social,"{""primary"":""government-policy"",""others"":[""politics"",""us-politics"",""academia-research"",""healthcare"",""law-justice""]}" +@buyingseafood@newsmast.social,"{""primary"":""food-drink"",""others"":[""space"",""gaming"",""us-sport"",""travel""]}" +@islandknabo@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""breaking-news"",""physics"",""news-comment-data"",""biology"",""space"",""chemistry"",""biodiversity-rewilding"",""mathematics"",""science""]}" +@Alex_Y@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""physics"",""breaking-news"",""architecture-design"",""movies""]}" +@peterthepainter@newsmast.social,"{""primary"":""breaking-news"",""others"":[""history"",""news-comment-data"",""ukraine-invasion"",""activism-civil-rights"",""democracy-human-rights"",""philosophy"",""humanities""]}" +@brasmus@newsmast.social,"{""primary"":""climate-change"",""others"":[""physics"",""hunger-disease-water"",""news-comment-data"",""biodiversity-rewilding"",""democracy-human-rights"",""weather"",""science"",""energy-pollution"",""environment""]}" +@marcelo@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""social-sciences"",""history"",""ukraine-invasion"",""news-comment-data"",""politics"",""philosophy""]}" +@ruslan@newsmast.social,"{""primary"":""music"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""books-literature"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""business"",""performing-arts"",""pets"",""workers-rights"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""science"",""humanities""]}" +@hermitary@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""politics"",""government-policy"",""democracy-human-rights""]}" +@noisediver@newsmast.social,"{""primary"":""science"",""others"":[""ai"",""physics"",""social-sciences"",""hunger-disease-water"",""ukraine-invasion"",""biology"",""space"",""disabled-voices"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""social-media"",""programming"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@HC_History@newsmast.social,"{""primary"":""history"",""others"":[""social-sciences"",""books-literature"",""women-voices"",""activism-civil-rights"",""business"",""markets-finance"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""black-voices"",""travel"",""humanities""]}" +@Andy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""news-comment-data"",""football"",""ukraine-invasion"",""politics"",""business"",""weather"",""science"",""environment""]}" +@bismillah345@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""engineering"",""technology"",""social-media"",""programming"",""weather""]}" +@chidreams@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""hunger-disease-water"",""democracy-human-rights"",""engineering"",""gaming"",""programming"",""poverty-inequality""]}" +@wfryer@newsmast.social,"{""primary"":""history"",""others"":[""ai"",""social-sciences"",""democracy-human-rights"",""philosophy""]}" +@darkjamal@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ukraine-invasion"",""social-media"",""photography"",""travel"",""weather"",""science""]}" +@Petinder@newsmast.social,"{""primary"":""social-sciences"",""others"":[""news-comment-data"",""social-media"",""environment"",""humanities""]}" +@ravi101@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""business"",""markets-finance"",""science""]}" +@Kschroeder@newsmast.social,"{""primary"":""space"",""others"":[""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""technology""]}" +@mattmoehr@newsmast.social,"{""primary"":""social-sciences"",""others"":[""physics"",""visual-arts"",""sport"",""history"",""books-literature"",""football"",""space"",""mathematics"",""us-sport"",""philosophy"",""photography"",""humanities""]}" +@kylesinlynn@newsmast.social,"{""primary"":""business"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""workers-rights"",""chemistry"",""markets-finance"",""engineering"",""mathematics"",""technology"",""social-media"",""programming"",""weather"",""science""]}" +@travtasy@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""architecture-design"",""food-drink"",""photography""]}" +@yethiha_codigo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@chino@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""space"",""business"",""markets-finance"",""technology"",""science""]}" +@Caramel@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""visual-arts"",""performing-arts"",""technology"",""tv-radio"",""photography"",""movies"",""music""]}" +@catherinerhyde@newsmast.social,"{""primary"":""space"",""others"":[""physics"",""technology"",""science"",""energy-pollution""]}" +@DarkAlomox@newsmast.social,"{""primary"":""architecture-design"",""others"":[""books-literature"",""gaming"",""movies"",""music""]}" +@nexstepphysio@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""ukraine-invasion"",""business"",""workers-rights"",""markets-finance"",""social-media"",""weather""]}" +@minusgefuel@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""pets"",""humour"",""engineering"",""mental-health-wellbeing"",""social-media"",""programming""]}" +@Hayleyk1970@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""women-voices"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""humour"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""music""]}" +@wbbdaily@newsmast.social,"{""primary"":""sport"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""books-literature"",""football"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""humour"",""engineering"",""gaming"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""humanities"",""music""]}" +@EiEi@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""physics"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""programming"",""science"",""environment""]}" +@EngineerFinance@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""nature-wildlife"",""food-drink"",""ukraine-invasion"",""puzzles"",""pets"",""creative-arts"",""humour"",""mental-health-wellbeing"",""social-media"",""travel"",""weather""]}" +@spacealgae@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""ai"",""physics"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""academia-research"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""engineering"",""mathematics"",""technology"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@SithuBo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@djape11@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""food-drink"",""markets-finance"",""climate-change"",""mental-health-wellbeing"",""travel""]}" +@Riccardo@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""social-media"",""weather"",""humanities""]}" +@babygirl@newsmast.social,"{""primary"":""creative-arts"",""others"":[""nature-wildlife"",""sport"",""food-drink"",""football"",""puzzles"",""pets"",""humour"",""us-sport"",""mental-health-wellbeing"",""travel""]}" +@KyawZinLinn123@newsmast.social,"{""primary"":""programming"",""others"":[""ai"",""physics"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""technology"",""science""]}" +@hrbrmstr@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""democracy-human-rights"",""engineering"",""healthcare"",""social-media"",""programming"",""weather"",""poverty-inequality"",""law-justice""]}" +@Downes@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""space"",""academia-research"",""philosophy"",""technology"",""social-media"",""programming"",""science""]}" +@mervemervemerve@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@mgye@newsmast.social,"{""primary"":""academia-research"",""others"":[""ai"",""physics"",""indigenous-peoples"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""workers-rights"",""immigrants-rights"",""chemistry"",""markets-finance"",""engineering"",""mathematics"",""technology"",""healthcare"",""black-voices"",""lgbtq"",""programming"",""science"",""law-justice""]}" +@janrif@newsmast.social,"{""primary"":""politics"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""us-politics"",""activism-civil-rights"",""government-policy"",""business"",""workers-rights"",""immigrants-rights"",""markets-finance"",""philosophy"",""technology"",""healthcare"",""social-media"",""weather"",""humanities"",""law-justice""]}" +@DadeMurphy@newsmast.social,"{""primary"":""breaking-news""}" +@seehearpodcast@newsmast.social,"{""primary"":""music"",""others"":[""physics"",""mathematics"",""philosophy"",""movies""]}" +@OhnMyint@newsmast.social,"{""primary"":""healthcare"",""others"":[""breaking-news"",""politics"",""us-politics"",""government-policy"",""academia-research"",""law-justice""]}" +@bridgeteam@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""news-comment-data"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""government-policy"",""performing-arts"",""pets"",""academia-research"",""creative-arts"",""chemistry"",""humour"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""travel"",""photography"",""movies"",""weather"",""science"",""humanities"",""music"",""law-justice""]}" +@deadsuperhero@newsmast.social,"{""primary"":""technology"",""others"":[""workers-rights"",""engineering"",""lgbtq"",""programming""]}" +@berot3@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""technology"",""social-media"",""programming"",""weather""]}" +@alzatari@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""puzzles"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""pets"",""creative-arts"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""healthcare"",""social-media"",""travel"",""photography"",""weather"",""poverty-inequality"",""humanities"",""law-justice""]}" +@textdump@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""physics"",""visual-arts"",""architecture-design"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""performing-arts"",""academia-research"",""chemistry"",""democracy-human-rights"",""gaming"",""mathematics"",""tv-radio"",""healthcare"",""social-media"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""music"",""law-justice""]}" +@dylan_thiam@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""biology"",""space"",""technology""]}" +@sophia@newsmast.social,"{""primary"":""environment"",""others"":[""ai"",""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""engineering"",""technology"",""black-voices"",""lgbtq"",""programming"",""energy-pollution""]}" +@zheka296@newsmast.social,"{""primary"":""weather"",""others"":[""breaking-news"",""immigrants-rights"",""chemistry"",""mathematics""]}" +@MilitaryAfrica@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""business"",""academia-research"",""workers-rights"",""markets-finance"",""healthcare"",""social-media"",""weather"",""law-justice""]}" +@worldbyisa@newsmast.social,"{""primary"":""travel"",""others"":[""nature-wildlife"",""architecture-design"",""books-literature"",""creative-arts""]}" +@emeraldphysio@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""news-comment-data"",""social-media"",""weather""]}" +@johnvoorhees@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""gaming"",""tv-radio"",""movies"",""music""]}" +@mohammadromjan@newsmast.social,"{""primary"":""travel"",""others"":[""breaking-news"",""nature-wildlife"",""ukraine-invasion"",""mental-health-wellbeing"",""philosophy""]}" +@Loukas@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""activism-civil-rights""]}" +@tatkotel@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""visual-arts"",""architecture-design"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""performing-arts"",""engineering"",""gaming"",""technology"",""tv-radio"",""social-media"",""photography"",""movies"",""programming"",""weather"",""music""]}" +@mattybob@newsmast.social,"{""primary"":""biology"",""others"":[""breaking-news"",""football"",""politics"",""us-politics"",""government-policy"",""climate-change"",""science""]}" +@true@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""biology"",""space"",""humour"",""travel"",""programming"",""science""]}" +@multimodal@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""social-sciences"",""philosophy"",""lgbtq"",""science""]}" +@khaled57@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""food-drink"",""hunger-disease-water"",""puzzles"",""pets"",""creative-arts"",""humour"",""democracy-human-rights"",""travel"",""poverty-inequality""]}" +@macelynne919@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""nature-wildlife"",""food-drink"",""puzzles"",""business"",""pets"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""markets-finance"",""humour"",""climate-change"",""travel"",""energy-pollution"",""environment""]}" +@Claudiademelo@newsmast.social,"{""primary"":""performing-arts"",""others"":[""breaking-news"",""visual-arts"",""architecture-design"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""biodiversity-rewilding"",""climate-change"",""gaming"",""tv-radio"",""healthcare"",""social-media"",""photography"",""movies"",""weather"",""energy-pollution"",""environment"",""music"",""law-justice""]}" +@justwatch@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""academia-research"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""technology"",""healthcare"",""social-media"",""black-voices"",""lgbtq"",""programming"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""law-justice""]}" +@fatemah@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""physics"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""government-policy"",""pets"",""creative-arts"",""chemistry"",""humour"",""democracy-human-rights"",""mathematics"",""philosophy"",""healthcare"",""travel"",""poverty-inequality"",""science"",""humanities"",""law-justice""]}" +@Abrikosoff@newsmast.social,"{""primary"":""physics"",""others"":[""ai"",""hunger-disease-water"",""space"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""technology"",""science"",""energy-pollution"",""environment""]}" +@weblink@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""space"",""disabled-voices"",""humour"",""engineering"",""mental-health-wellbeing"",""programming"",""science"",""energy-pollution"",""humanities""]}" +@xjxjxjx@newsmast.social,"{""primary"":""photography"",""others"":[""breaking-news"",""ai"",""visual-arts"",""social-sciences"",""architecture-design"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""performing-arts"",""engineering"",""gaming"",""philosophy"",""technology"",""tv-radio"",""social-media"",""movies"",""programming"",""weather"",""humanities"",""music""]}" +@Pavel@newsmast.social,"{""primary"":""philosophy"",""others"":[""ai"",""social-sciences"",""social-media"",""programming""]}" +@natbas@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""physics"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""politics"",""academia-research"",""democracy-human-rights"",""philosophy"",""weather"",""poverty-inequality"",""science"",""environment"",""humanities""]}" +@nigelp@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""food-drink"",""news-comment-data"",""ukraine-invasion"",""biology"",""chemistry"",""biodiversity-rewilding"",""humour"",""climate-change"",""engineering"",""gaming"",""social-media"",""photography"",""movies"",""programming"",""weather"",""science"",""energy-pollution"",""environment"",""music""]}" +@satvika@newsmast.social,"{""primary"":""technology""}" +@sttanner@newsmast.social,"{""primary"":""technology""}" +@petri@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""space"",""engineering"",""programming"",""weather"",""science""]}" +@snoopy@newsmast.social,"{""primary"":""gaming"",""others"":[""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""biology"",""space"",""disabled-voices"",""chemistry"",""mathematics"",""photography"",""movies"",""science"",""humanities""]}" +@lydiechen@newsmast.social,"{""primary"":""markets-finance"",""others"":[""ai"",""business"",""democracy-human-rights"",""technology""]}" +@kabtohin2020@newsmast.social,"{""primary"":""ai"",""others"":[""hunger-disease-water"",""football"",""climate-change"",""technology"",""energy-pollution"",""environment""]}" +@NurseTed@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@joanathx@newsmast.social,"{""primary"":""travel"",""others"":[""ai"",""nature-wildlife"",""engineering"",""mental-health-wellbeing"",""technology"",""programming""]}" +@dianirawan@newsmast.social,"{""primary"":""government-policy"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""academia-research"",""healthcare"",""social-media"",""weather"",""law-justice""]}" +@shoqv4@newsmast.social,"{""primary"":""us-politics"",""others"":[""breaking-news"",""news-comment-data"",""space"",""government-policy"",""social-media"",""science""]}" +@rajudbg@newsmast.social,"{""primary"":""ai"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@m2knmst@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""social-sciences"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""philosophy"",""social-media"",""black-voices"",""lgbtq"",""weather"",""humanities""]}" +@m2knewsmast@newsmast.social,"{""primary"":""breaking-news"",""others"":[""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""democracy-human-rights"",""healthcare"",""social-media"",""weather"",""poverty-inequality"",""law-justice""]}" +@poke@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""architecture-design"",""news-comment-data"",""us-politics"",""government-policy"",""business"",""workers-rights"",""markets-finance"",""democracy-human-rights"",""engineering"",""photography"",""movies"",""programming"",""science"",""music"",""law-justice""]}" +@irlrefuge@newsmast.social,"{""primary"":""technology""}" +@cbattlegear@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""physics"",""news-comment-data"",""space"",""business"",""engineering"",""mathematics"",""technology"",""science""]}" +@heimoshuiyu@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@mttaggart@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@LiveMessy2024@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""social-sciences"",""hunger-disease-water"",""history"",""women-voices"",""business"",""creative-arts"",""democracy-human-rights"",""mental-health-wellbeing"",""philosophy"",""lgbtq"",""weather"",""poverty-inequality"",""humanities""]}" +@1000pages@newsmast.social,"{""primary"":""women-voices"",""others"":[""social-sciences"",""history"",""books-literature"",""politics"",""activism-civil-rights"",""workers-rights"",""democracy-human-rights"",""technology"",""tv-radio"",""movies"",""humanities"",""music""]}" +@OpalTiger@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""breaking-news"",""visual-arts"",""architecture-design"",""hunger-disease-water"",""history"",""books-literature"",""politics"",""disabled-voices"",""performing-arts"",""creative-arts"",""democracy-human-rights"",""technology"",""tv-radio"",""poverty-inequality""]}" +@kakerlake@newsmast.social,"{""primary"":""technology"",""others"":[""visual-arts"",""engineering"",""photography"",""science""]}" +@WhiteMode@newsmast.social,"{""primary"":""academia-research"",""others"":[""nature-wildlife"",""news-comment-data"",""biology"",""politics"",""us-politics"",""government-policy"",""chemistry"",""biodiversity-rewilding"",""climate-change"",""engineering"",""technology"",""healthcare"",""photography"",""programming"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@Khomezturro@newsmast.social,"{""primary"":""sport"",""others"":[""breaking-news"",""football"",""social-media"",""travel""]}" +@fwd7@newsmast.social,"{""primary"":""law-justice"",""others"":[""breaking-news"",""ai"",""social-sciences"",""sport"",""books-literature"",""football"",""government-policy"",""academia-research"",""gaming"",""technology"",""music""]}" +@azizbnchikh@newsmast.social,"{""primary"":""academia-research"",""others"":[""ai"",""politics"",""us-politics"",""engineering"",""healthcare""]}" +@markr@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""biology"",""space"",""performing-arts"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""philosophy"",""technology"",""tv-radio"",""photography"",""movies"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@sebbz@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""social-sciences"",""news-comment-data"",""democracy-human-rights"",""engineering"",""programming"",""humanities""]}" +@mkk001@newsmast.social,"{""primary"":""breaking-news"",""others"":[""indigenous-peoples"",""hunger-disease-water"",""news-comment-data"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""social-media"",""black-voices"",""lgbtq"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@HariTulsidas@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""business"",""performing-arts"",""academia-research"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""travel"",""photography"",""movies"",""programming"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@ThirdTime@newsmast.social,"{""primary"":""breaking-news"",""others"":[""social-sciences"",""sport"",""food-drink"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""space"",""politics"",""us-politics"",""business"",""workers-rights"",""creative-arts"",""democracy-human-rights"",""climate-change"",""gaming"",""us-sport"",""technology"",""social-media"",""photography"",""lgbtq"",""programming"",""weather"",""poverty-inequality"",""science"",""environment""]}" +@jcblautomoto@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""architecture-design"",""food-drink"",""books-literature"",""puzzles"",""performing-arts"",""pets"",""creative-arts"",""humour"",""engineering"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""travel"",""photography"",""movies"",""programming"",""music""]}" +@Stregabor@newsmast.social,"{""primary"":""climate-change"",""others"":[""breaking-news"",""ai"",""indigenous-peoples"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""academia-research"",""workers-rights"",""immigrants-rights"",""engineering"",""technology"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""programming"",""environment"",""law-justice""]}" +@yanmoenaing@newsmast.social,"{""primary"":""ai"",""others"":[""physics"",""hunger-disease-water"",""biology"",""space"",""business"",""workers-rights"",""chemistry"",""markets-finance"",""democracy-human-rights"",""engineering"",""mathematics"",""technology"",""programming"",""poverty-inequality"",""science""]}" +@min2k09@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""social-media"",""weather""]}" +@therfff@newsmast.social,"{""primary"":""ai"",""others"":[""physics"",""biology"",""space"",""business"",""workers-rights"",""chemistry"",""markets-finance"",""engineering"",""mathematics"",""technology"",""programming"",""science""]}" +@Magda@newsmast.social,"{""primary"":""architecture-design"",""others"":[""nature-wildlife"",""history"",""news-comment-data"",""books-literature"",""government-policy"",""business"",""workers-rights"",""creative-arts"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""technology"",""travel"",""photography"",""movies"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@csu@newsmast.social,"{""primary"":""programming"",""others"":[""breaking-news"",""ai"",""news-comment-data"",""space"",""engineering"",""mathematics"",""technology"",""social-media"",""science""]}" +@clonnee@newsmast.social,"{""primary"":""ai"",""others"":[""physics"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""technology"",""programming"",""science""]}" +@ausgeo@newsmast.social,"{""primary"":""environment"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""history"",""news-comment-data"",""women-voices"",""biology"",""space"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""engineering"",""technology"",""healthcare"",""travel"",""photography"",""lgbtq"",""movies"",""weather"",""science"",""energy-pollution"",""humanities"",""music""]}" +@Kielingdegruen@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""social-sciences"",""history"",""politics"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""engineering"",""philosophy"",""technology"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@Johan@newsmast.social,"{""primary"":""ai"",""others"":[""politics"",""us-politics"",""government-policy"",""business"",""academia-research"",""workers-rights"",""markets-finance"",""engineering"",""technology"",""healthcare"",""programming"",""law-justice""]}" +@ShuaE@newsmast.social,"{""primary"":""engineering"",""others"":[""ai"",""pets"",""technology"",""programming""]}" +@daniellean@newsmast.social,"{""primary"":""lgbtq"",""others"":[""breaking-news"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""social-media"",""black-voices"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@PetRock@newsmast.social,"{""primary"":""nature-wildlife"",""others"":[""music""]}" +@Levicoisch@newsmast.social,"{""primary"":""breaking-news"",""others"":[""biodiversity-rewilding"",""climate-change"",""energy-pollution"",""environment""]}" +@instepphysio@newsmast.social,"{""primary"":""energy-pollution"",""others"":[""hunger-disease-water"",""politics"",""us-politics"",""government-policy"",""academia-research"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""healthcare"",""poverty-inequality"",""environment"",""law-justice""]}" +@ToposInstitute@newsmast.social,"{""primary"":""mathematics"",""others"":[""ai"",""social-sciences"",""democracy-human-rights"",""engineering"",""philosophy"",""technology"",""programming"",""poverty-inequality"",""science"",""humanities""]}" +@aaim@newsmast.social,"{""primary"":""hunger-disease-water"",""others"":[""mathematics"",""climate-change"",""science"",""poverty-inequality"",""energy-pollution""]}" +@Hwys2Railways@newsmast.social,"{""primary"":""environment"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""indigenous-peoples"",""social-sciences"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""government-policy"",""academia-research"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""philosophy"",""technology"",""healthcare"",""black-voices"",""lgbtq"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""humanities"",""law-justice""]}" +@valeriadepaiva@newsmast.social,"{""primary"":""mathematics"",""others"":[""ai"",""hunger-disease-water"",""programming"",""poverty-inequality""]}" +@Willow@newsmast.social,"{""primary"":""climate-change"",""others"":[""ai"",""visual-arts"",""social-sciences"",""architecture-design"",""books-literature"",""business"",""biodiversity-rewilding"",""philosophy"",""programming"",""environment""]}" +@_shannoncochran@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@Loretta@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@47photography@newsmast.social,"{""primary"":""photography"",""others"":[""breaking-news"",""creative-arts"",""social-media""]}" +@Natsurath@newsmast.social,"{""primary"":""lgbtq"",""others"":[""physics"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""activism-civil-rights"",""performing-arts"",""chemistry"",""democracy-human-rights"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""technology"",""tv-radio"",""social-media"",""black-voices"",""travel"",""movies"",""programming"",""weather"",""poverty-inequality"",""science""]}" +@JoeyJ0J0@newsmast.social,"{""primary"":""ukraine-invasion"",""others"":[""breaking-news"",""news-comment-data"",""politics"",""academia-research"",""technology"",""healthcare""]}" +@Anders_S@newsmast.social,"{""primary"":""books-literature"",""others"":[""social-sciences"",""architecture-design"",""history"",""biodiversity-rewilding"",""climate-change"",""movies"",""energy-pollution"",""environment"",""humanities""]}" +@jamalpp@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@momentumphysio@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@harvinhentry@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""indigenous-peoples"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""engineering"",""black-voices"",""lgbtq"",""programming""]}" +@Miaa@newsmast.social,"{""primary"":""breaking-news"",""others"":[""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""environment""]}" +@notiska@newsmast.social,"{""primary"":""ai"",""others"":[""business"",""workers-rights"",""markets-finance"",""engineering"",""technology"",""programming""]}" +@Polotman@newsmast.social,"{""primary"":""visual-arts"",""others"":[""social-sciences"",""history"",""performing-arts"",""photography""]}" +@neirda@newsmast.social,"{""primary"":""philosophy"",""others"":[""social-sciences"",""sport"",""history"",""football"",""us-sport"",""humanities""]}" +@michael@newsmast.social,"{""primary"":""social-media"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""women-voices"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""academia-research"",""democracy-human-rights"",""climate-change"",""photography"",""poverty-inequality"",""music""]}" +@Cappuccinogirl@newsmast.social,"{""primary"":""history"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""books-literature"",""women-voices"",""politics"",""activism-civil-rights"",""academia-research"",""workers-rights"",""philosophy"",""travel"",""photography"",""humanities"",""music""]}" +@TestTest@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ukraine-invasion"",""social-media"",""weather""]}" +@max@newsmast.social,"{""primary"":""technology"",""others"":[""breaking-news"",""ai"",""government-policy"",""academia-research"",""programming"",""science"",""environment""]}" +@not_so_social@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""physics"",""social-sciences"",""biology"",""space"",""chemistry"",""engineering"",""mathematics"",""programming"",""science"",""humanities""]}" +@tom2022@newsmast.social,"{""primary"":""lgbtq"",""others"":[""nature-wildlife"",""indigenous-peoples"",""social-media"",""black-voices""]}" +@luked522@newsmast.social,"{""primary"":""social-sciences"",""others"":[""architecture-design"",""biology"",""space"",""politics"",""government-policy"",""academia-research"",""gaming"",""philosophy"",""tv-radio"",""photography"",""lgbtq"",""science"",""humanities""]}" +@Rossoneroblog@newsmast.social,"{""primary"":""social-media"",""others"":[""ai"",""sport"",""football"",""technology""]}" +@Tms12@newsmast.social,"{""primary"":""performing-arts"",""others"":[""visual-arts"",""creative-arts"",""workers-rights"",""markets-finance"",""science""]}" +@miroslavglavic@newsmast.social,"{""primary"":""breaking-news"",""others"":[""news-comment-data"",""government-policy"",""weather"",""law-justice""]}" +@physioemerald@newsmast.social,"{""primary"":""chemistry"",""others"":[""physics"",""nature-wildlife"",""social-sciences"",""sport"",""food-drink"",""history"",""football"",""biology"",""puzzles"",""space"",""pets"",""creative-arts"",""humour"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""travel"",""science"",""humanities""]}" +@junctionpoint@newsmast.social,"{""primary"":""business"",""others"":[""ai"",""sport"",""football"",""workers-rights"",""markets-finance"",""engineering"",""us-sport"",""technology"",""programming""]}" +@yisem@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@stevebownan@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""food-drink"",""news-comment-data"",""books-literature"",""football"",""space"",""politics"",""technology"",""travel"",""movies"",""programming"",""poverty-inequality"",""science"",""music""]}" +@ahmed90@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""government-policy"",""business"",""markets-finance"",""engineering"",""healthcare"",""programming""]}" +@Jarhead2029@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""ai"",""physics"",""nature-wildlife"",""social-sciences"",""sport"",""ukraine-invasion"",""biology"",""puzzles"",""politics"",""us-politics"",""government-policy"",""pets"",""immigrants-rights"",""chemistry"",""humour"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""technology"",""healthcare"",""social-media"",""travel"",""weather"",""poverty-inequality"",""science"",""humanities"",""law-justice""]}" +@TuesdayReviewAU@newsmast.social,"{""primary"":""movies"",""others"":[""breaking-news"",""visual-arts"",""news-comment-data"",""books-literature"",""gaming"",""philosophy"",""technology"",""tv-radio"",""social-media"",""humanities""]}" +@GlobalRewilding@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""government-policy"",""academia-research"",""climate-change"",""science"",""environment""]}" +@Bubblefarts@newsmast.social,"{""primary"":""activism-civil-rights"",""others"":[""physics"",""biology"",""puzzles"",""creative-arts""]}" +@YNA@newsmast.social,"{""primary"":""technology"",""others"":[""engineering""]}" +@sev@newsmast.social,"{""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""news-comment-data"",""ukraine-invasion"",""creative-arts"",""biodiversity-rewilding"",""philosophy"",""social-media"",""weather""]}" +@ommo@newsmast.social,"{""primary"":""space"",""others"":[""engineering"",""technology"",""weather"",""science""]}" +@kaerypheur@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""breaking-news"",""ai"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""mathematics"",""philosophy"",""technology"",""healthcare"",""social-media"",""travel"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@channyeintun@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""ai"",""nature-wildlife"",""food-drink"",""hunger-disease-water"",""puzzles"",""politics"",""us-politics"",""government-policy"",""pets"",""academia-research"",""creative-arts"",""humour"",""democracy-human-rights"",""engineering"",""technology"",""healthcare"",""travel"",""programming"",""poverty-inequality"",""law-justice""]}" +@alemida44@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ai"",""ukraine-invasion"",""engineering"",""technology""]}" +@Serious_Feather@newsmast.social,"{""primary"":""politics"",""others"":[""visual-arts"",""social-sciences"",""architecture-design"",""history"",""books-literature"",""space"",""us-politics"",""business"",""performing-arts"",""workers-rights"",""creative-arts"",""markets-finance"",""gaming"",""philosophy"",""technology"",""social-media"",""photography"",""movies"",""poverty-inequality"",""science"",""humanities"",""music"",""law-justice""]}" +@diamondlewis@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""weather""]}" +@familyphysio@newsmast.social,"{""primary"":""law-justice"",""others"":[""breaking-news"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""academia-research"",""healthcare"",""social-media"",""weather""]}" +@John90@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""breaking-news"",""democracy-human-rights"",""climate-change"",""environment""]}" +@collected_cards@newsmast.social,"{""primary"":""lgbtq"",""others"":[""nature-wildlife"",""social-sciences"",""history"",""mental-health-wellbeing"",""philosophy"",""music""]}" +@physioedmonton@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@ivan@newsmast.social,"{""primary"":""breaking-news"",""others"":[""social-sciences"",""history"",""biodiversity-rewilding"",""democracy-human-rights""]}" +@Clarke617@newsmast.social,"{""primary"":""breaking-news"",""others"":[""nature-wildlife"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""puzzles"",""politics"",""us-politics"",""government-policy"",""pets"",""academia-research"",""creative-arts"",""humour"",""democracy-human-rights"",""mental-health-wellbeing"",""healthcare"",""social-media"",""travel"",""weather"",""poverty-inequality"",""law-justice""]}" +@Ypsilenna@newsmast.social,"{""primary"":""visual-arts"",""others"":[""performing-arts"",""gaming"",""photography"",""music""]}" +@martin3456@newsmast.social,"{""primary"":""workers-rights"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""football"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""business"",""performing-arts"",""pets"",""creative-arts"",""chemistry"",""markets-finance"",""humour"",""democracy-human-rights"",""gaming"",""mathematics"",""us-sport"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""social-media"",""travel"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""humanities"",""music""]}" +@sylphrenetic@newsmast.social,"{""primary"":""programming"",""others"":[""social-sciences"",""us-politics"",""academia-research"",""philosophy"",""technology"",""science""]}" +@egc25@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""breaking-news"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""academia-research"",""immigrants-rights"",""biodiversity-rewilding"",""climate-change"",""gaming"",""philosophy"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""weather"",""poverty-inequality"",""energy-pollution"",""environment"",""humanities""]}" +@Tyom@newsmast.social,"{""primary"":""social-sciences"",""others"":[""breaking-news"",""architecture-design"",""disabled-voices"",""philosophy"",""humanities""]}" +@0fj0@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""markets-finance"",""technology"",""social-media""]}" +@iop5@newsmast.social,"{""primary"":""democracy-human-rights"",""others"":[""hunger-disease-water"",""government-policy"",""academia-research"",""healthcare"",""poverty-inequality""]}" +@sunrisephysio@newsmast.social,"{""primary"":""business"",""others"":[""social-sciences"",""sport"",""history"",""football"",""workers-rights"",""markets-finance"",""us-sport"",""philosophy"",""humanities""]}" +@teowawki@newsmast.social,"{""primary"":""breaking-news"",""others"":[""social-sciences"",""history"",""biology"",""space"",""us-politics"",""government-policy"",""biodiversity-rewilding"",""climate-change"",""philosophy"",""technology"",""science"",""energy-pollution"",""environment""]}" +@tuckerm@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""physics"",""social-sciences"",""history"",""ukraine-invasion"",""biology"",""puzzles"",""space"",""pets"",""chemistry"",""mathematics"",""us-sport"",""philosophy"",""social-media"",""weather"",""science"",""humanities""]}" +@BlesthThySoul@newsmast.social,"{""primary"":""breaking-news"",""others"":[""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""politics"",""us-politics"",""government-policy"",""democracy-human-rights"",""programming"",""poverty-inequality"",""law-justice""]}" +@keithramsey@newsmast.social,"{""primary"":""history"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""architecture-design"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""women-voices"",""activism-civil-rights"",""disabled-voices"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""black-voices"",""photography"",""lgbtq"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities""]}" +@Sahqon@newsmast.social,"{""primary"":""science"",""others"":[""breaking-news"",""physics"",""biology"",""government-policy"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""energy-pollution"",""environment""]}" +@emuwasabi@newsmast.social,"{""primary"":""us-politics"",""others"":[""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""energy-pollution"",""environment""]}" +@burnitdownpls@newsmast.social,"{""primary"":""academia-research"",""others"":[""breaking-news"",""physics"",""visual-arts"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""biology"",""space"",""politics"",""us-politics"",""government-policy"",""performing-arts"",""chemistry"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""mathematics"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""photography"",""movies"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@jtarde23@newsmast.social,"{""primary"":""photography"",""others"":[""visual-arts"",""creative-arts"",""humour"",""travel""]}" +@john_90@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ukraine-invasion"",""news-comment-data"",""weather""]}" +@FreddieJ@newsmast.social,"{""primary"":""photography"",""others"":[""ai"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""workers-rights"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""technology"",""tv-radio"",""social-media"",""black-voices"",""movies"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@captnmnemo@newsmast.social,"{""primary"":""disabled-voices"",""others"":[""ai"",""visual-arts"",""news-comment-data"",""books-literature"",""women-voices"",""biodiversity-rewilding"",""gaming"",""programming"",""science""]}" +@kevinflynn@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""space"",""government-policy"",""technology"",""science""]}" +@shelldoor@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""ai"",""breaking-news"",""politics"",""engineering"",""technology"",""programming""]}" +@tkruck6@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ai"",""physics"",""biology"",""space"",""politics"",""chemistry"",""engineering"",""mathematics"",""technology"",""healthcare"",""programming"",""weather"",""science""]}" +@Yunandar@newsmast.social,"{""primary"":""biodiversity-rewilding"",""others"":[""hunger-disease-water"",""democracy-human-rights"",""climate-change"",""poverty-inequality"",""energy-pollution"",""environment""]}" +@Bassey_Ijomanta@newsmast.social,"{""primary"":""social-sciences"",""others"":[""politics"",""us-politics"",""government-policy"",""academia-research""]}" +@bbdjgfhjhhg@newsmast.social,"{""primary"":""social-media"",""others"":[""breaking-news"",""ai"",""hunger-disease-water"",""news-comment-data"",""ukraine-invasion"",""business"",""democracy-human-rights"",""engineering"",""technology"",""programming"",""weather"",""poverty-inequality""]}" +@2night@newsmast.social,"{""primary"":""business"",""others"":[""social-media""]}" +@goofy@newsmast.social,"{""primary"":""breaking-news"",""others"":[""ukraine-invasion"",""news-comment-data"",""social-media"",""weather""]}" +@saskia@newsmast.social,"{""primary"":""football"",""others"":[""breaking-news"",""nature-wildlife"",""sport"",""food-drink"",""history"",""news-comment-data"",""books-literature"",""women-voices"",""space"",""pets"",""immigrants-rights"",""biodiversity-rewilding"",""humour"",""climate-change"",""gaming"",""mental-health-wellbeing"",""tv-radio"",""social-media"",""photography"",""lgbtq"",""movies"",""science"",""energy-pollution"",""environment"",""music""]}" +@newsmast@newsmast.social,"{""primary"":""news-comment-data"",""others"":[""breaking-news"",""ai"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""sport"",""food-drink"",""hunger-disease-water"",""history"",""books-literature"",""football"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@skk@newsmast.social,"{""primary"":""social-media"",""others"":[""visual-arts"",""indigenous-peoples"",""history"",""books-literature"",""women-voices"",""biology"",""space"",""activism-civil-rights"",""performing-arts"",""immigrants-rights"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""gaming"",""technology"",""photography"",""movies"",""programming"",""science"",""energy-pollution"",""environment"",""humanities"",""music""]}" +@Blacktiger@newsmast.social,"{""primary"":""music"",""others"":[""sport"",""food-drink"",""tv-radio"",""photography""]}" +@WestWifey@newsmast.social,"{""primary"":""food-drink"",""others"":[""social-sciences"",""humour"",""mental-health-wellbeing"",""travel""]}" +@kaerisonic@newsmast.social,"{""primary"":""mental-health-wellbeing"",""others"":[""ai"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""pets"",""academia-research"",""workers-rights"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""mathematics"",""technology"",""social-media"",""travel"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""law-justice""]}" +@Zahid11@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""physics"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""ukraine-invasion"",""women-voices"",""biology"",""puzzles"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""pets"",""academia-research"",""workers-rights"",""immigrants-rights"",""creative-arts"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""humour"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""mathematics"",""mental-health-wellbeing"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""travel"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@bernardjensen@newsmast.social,"{""primary"":""breaking-news"",""others"":[""visual-arts"",""nature-wildlife"",""social-sciences"",""architecture-design"",""food-drink"",""hunger-disease-water"",""news-comment-data"",""books-literature"",""women-voices"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""performing-arts"",""academia-research"",""workers-rights"",""creative-arts"",""markets-finance"",""humour"",""democracy-human-rights"",""gaming"",""mental-health-wellbeing"",""philosophy"",""tv-radio"",""healthcare"",""social-media"",""travel"",""photography"",""movies"",""humanities"",""music"",""law-justice""]}" +@JenniferLLawson@newsmast.social,"{""primary"":""mathematics"",""others"":[""ai"",""physics"",""indigenous-peoples"",""hunger-disease-water"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""business"",""workers-rights"",""immigrants-rights"",""chemistry"",""biodiversity-rewilding"",""markets-finance"",""democracy-human-rights"",""climate-change"",""engineering"",""technology"",""healthcare"",""black-voices"",""lgbtq"",""programming"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""law-justice""]}" +@minkhantkyaw@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""news-comment-data"",""democracy-human-rights"",""poverty-inequality"",""environment""]}" +@pjoter9@newsmast.social,"{""primary"":""books-literature"",""others"":[""breaking-news"",""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""architecture-design"",""hunger-disease-water"",""history"",""news-comment-data"",""ukraine-invasion"",""women-voices"",""biology"",""space"",""politics"",""us-politics"",""activism-civil-rights"",""disabled-voices"",""government-policy"",""performing-arts"",""pets"",""academia-research"",""immigrants-rights"",""creative-arts"",""biodiversity-rewilding"",""democracy-human-rights"",""climate-change"",""engineering"",""gaming"",""philosophy"",""technology"",""tv-radio"",""healthcare"",""social-media"",""black-voices"",""photography"",""lgbtq"",""movies"",""programming"",""weather"",""poverty-inequality"",""science"",""energy-pollution"",""environment"",""humanities"",""music"",""law-justice""]}" +@anaslm10@newsmast.social,"{""primary"":""breaking-news"",""others"":[""sport"",""space"",""us-sport"",""science""]}" +@dadonthemoveph@newsmast.social,"{""primary"":""travel"",""others"":[""visual-arts"",""nature-wildlife"",""indigenous-peoples"",""social-sciences"",""food-drink"",""hunger-disease-water"",""history"",""news-comment-data"",""books-literature"",""biology"",""space"",""performing-arts"",""creative-arts"",""biodiversity-rewilding"",""humour"",""democracy-human-rights"",""climate-change"",""mental-health-wellbeing"",""philosophy"",""photography"",""movies"",""science"",""environment""]}" +@arizpe@newsmast.social,"{""primary"":""humour"",""others"":[""breaking-news"",""nature-wildlife"",""sport"",""food-drink"",""space"",""pets"",""technology"",""social-media"",""science""]}"